@northflank/js-client 0.7.3 → 0.7.4-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api-client.d.ts +1367 -581
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +1367 -581
- package/dist/esm/api-client.js +1 -1
- package/package.json +1 -1
package/dist/cjs/api-client.d.ts
CHANGED
|
@@ -205,7 +205,7 @@ type ListServicesResult = {
|
|
|
205
205
|
/** Details about the status of the most recent build. */
|
|
206
206
|
'build'?: {
|
|
207
207
|
/** The current status of the build. Example: "SUCCESS" */
|
|
208
|
-
'status': 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
208
|
+
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
209
209
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
210
210
|
'lastTransitionTime'?: string;
|
|
211
211
|
};
|
|
@@ -489,6 +489,281 @@ declare class NorthflankExecCommand {
|
|
|
489
489
|
private assertStartedWithNodejs;
|
|
490
490
|
}
|
|
491
491
|
|
|
492
|
+
type LogsRequestCommon = LogRequestTextFilters & {
|
|
493
|
+
lineLimit?: number;
|
|
494
|
+
startTime?: Date;
|
|
495
|
+
containerName?: string | 'all';
|
|
496
|
+
};
|
|
497
|
+
type LogsRangeRequestData = LogsRequestCommon & {
|
|
498
|
+
direction?: 'forward' | 'backward';
|
|
499
|
+
endTime?: Date;
|
|
500
|
+
duration?: number;
|
|
501
|
+
};
|
|
502
|
+
type LogsTailRequestData = LogsRequestCommon & {
|
|
503
|
+
direction?: never;
|
|
504
|
+
endTime?: never;
|
|
505
|
+
duration?: never;
|
|
506
|
+
};
|
|
507
|
+
type LogsRequestDataTextIncl = {
|
|
508
|
+
textIncludes?: string;
|
|
509
|
+
textNotIncludes?: never;
|
|
510
|
+
regexIncludes?: never;
|
|
511
|
+
regexNotIncludes?: never;
|
|
512
|
+
};
|
|
513
|
+
type LogsRequestDataTextExcl = {
|
|
514
|
+
textIncludes?: never;
|
|
515
|
+
textNotIncludes?: string;
|
|
516
|
+
regexIncludes?: never;
|
|
517
|
+
regexNotIncludes?: never;
|
|
518
|
+
};
|
|
519
|
+
type LogsRequestDataRegexIncl = {
|
|
520
|
+
textIncludes?: never;
|
|
521
|
+
textNotIncludes?: never;
|
|
522
|
+
regexIncludes?: string;
|
|
523
|
+
regexNotIncludes?: never;
|
|
524
|
+
};
|
|
525
|
+
type LogsRequestDataRegexExcl = {
|
|
526
|
+
textIncludes?: never;
|
|
527
|
+
textNotIncludes?: never;
|
|
528
|
+
regexIncludes?: never;
|
|
529
|
+
regexNotIncludes?: string;
|
|
530
|
+
};
|
|
531
|
+
type LogRequestTextFilters = LogsRequestDataTextIncl | LogsRequestDataTextExcl | LogsRequestDataRegexIncl | LogsRequestDataRegexExcl;
|
|
532
|
+
type LogsConfigCommon = {
|
|
533
|
+
projectId: string;
|
|
534
|
+
entityType: 'service' | 'job' | 'addon' | 'build';
|
|
535
|
+
entityId: string;
|
|
536
|
+
buildId?: string;
|
|
537
|
+
};
|
|
538
|
+
type LogsRangeConfig = LogsRangeRequestData & LogsConfigCommon & {
|
|
539
|
+
queryType: 'range';
|
|
540
|
+
};
|
|
541
|
+
type LogsTailConfig = LogsTailRequestData & LogsConfigCommon & {
|
|
542
|
+
queryType: 'tail';
|
|
543
|
+
};
|
|
544
|
+
type LogLine = {
|
|
545
|
+
containerId: string;
|
|
546
|
+
log: any;
|
|
547
|
+
ts: Date;
|
|
548
|
+
};
|
|
549
|
+
interface LogsClient extends EventEmitter {
|
|
550
|
+
on(event: 'logs-received', listener: (logLines: LogLine[]) => any): any;
|
|
551
|
+
on(event: 'error', listener: (error: any) => any): any;
|
|
552
|
+
on(event: 'open', listener: () => any): any;
|
|
553
|
+
on(event: 'close', listener: () => any): any;
|
|
554
|
+
}
|
|
555
|
+
declare class LogsClient extends EventEmitter {
|
|
556
|
+
private readonly baseUrl;
|
|
557
|
+
readonly logsConfig: LogsTailConfig;
|
|
558
|
+
private readonly token;
|
|
559
|
+
private remote;
|
|
560
|
+
private logSession;
|
|
561
|
+
private duplex;
|
|
562
|
+
constructor(baseUrl: string, logsConfig: LogsTailConfig, token: string);
|
|
563
|
+
static getLogsEndpoint(config: LogsTailConfig | LogsRangeConfig): string;
|
|
564
|
+
private get logsEndpoint();
|
|
565
|
+
stop: () => Promise<any>;
|
|
566
|
+
start(): Promise<void>;
|
|
567
|
+
private initialAuth;
|
|
568
|
+
private reset;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
type ApiCallLogRangeResponse = ApiCallResponse<LogLine[]>;
|
|
572
|
+
declare class NorthflankLogFetch {
|
|
573
|
+
private readonly contextProvider;
|
|
574
|
+
constructor(contextProvider: ApiClientContextProvider);
|
|
575
|
+
/** Fetches service container logs over a specific time span applying optional filters. */
|
|
576
|
+
getServiceLogs(parameters: {
|
|
577
|
+
projectId: string;
|
|
578
|
+
serviceId: string;
|
|
579
|
+
}, data: LogsRangeRequestData): Promise<ApiCallLogRangeResponse>;
|
|
580
|
+
/** Fetches service build container logs over a specific time span applying optional filters. */
|
|
581
|
+
getServiceBuildLogs(parameters: {
|
|
582
|
+
projectId: string;
|
|
583
|
+
serviceId: string;
|
|
584
|
+
buildId: string;
|
|
585
|
+
}, data: LogsRangeRequestData): Promise<ApiCallLogRangeResponse>;
|
|
586
|
+
/** Fetches job container logs over a specific time span applying optional filters. */
|
|
587
|
+
getJobLogs(parameters: {
|
|
588
|
+
projectId: string;
|
|
589
|
+
jobId: string;
|
|
590
|
+
}, data: LogsRangeRequestData): Promise<ApiCallLogRangeResponse>;
|
|
591
|
+
/** Fetches job build container logs over a specific time span applying optional filters. */
|
|
592
|
+
getJobBuildLogs(parameters: {
|
|
593
|
+
projectId: string;
|
|
594
|
+
jobId: string;
|
|
595
|
+
buildId: string;
|
|
596
|
+
}, data: LogsRangeRequestData): Promise<ApiCallLogRangeResponse>;
|
|
597
|
+
/** Fetches addon container logs over a specific time span applying optional filters. */
|
|
598
|
+
getAddonLogs(parameters: {
|
|
599
|
+
projectId: string;
|
|
600
|
+
addonId: string;
|
|
601
|
+
}, data: LogsRangeRequestData): Promise<ApiCallLogRangeResponse>;
|
|
602
|
+
logRange(parameters: {
|
|
603
|
+
projectId: string;
|
|
604
|
+
entityId: string;
|
|
605
|
+
buildId?: string;
|
|
606
|
+
}, data: LogsRangeRequestData, entityType: 'service' | 'build' | 'job' | 'addon'): Promise<ApiCallLogRangeResponse>;
|
|
607
|
+
tailServiceLogs(parameters: {
|
|
608
|
+
projectId: string;
|
|
609
|
+
serviceId: string;
|
|
610
|
+
}, data: LogsTailRequestData): Promise<LogsClient>;
|
|
611
|
+
/** Starts a log tail on a service build container. */
|
|
612
|
+
tailServiceBuildLogs(parameters: {
|
|
613
|
+
projectId: string;
|
|
614
|
+
serviceId: string;
|
|
615
|
+
buildId: string;
|
|
616
|
+
}, data: LogsTailRequestData): Promise<LogsClient>;
|
|
617
|
+
/** Starts a log tail on a job container. */
|
|
618
|
+
tailJobLogs(parameters: {
|
|
619
|
+
projectId: string;
|
|
620
|
+
jobId: string;
|
|
621
|
+
}, data: LogsTailRequestData): Promise<LogsClient>;
|
|
622
|
+
/** Starts a log tail on a job build container. */
|
|
623
|
+
tailJobBuildLogs(parameters: {
|
|
624
|
+
projectId: string;
|
|
625
|
+
jobId: string;
|
|
626
|
+
buildId: string;
|
|
627
|
+
}, data: LogsTailRequestData): Promise<LogsClient>;
|
|
628
|
+
/** Starts a log tail on an addon container. */
|
|
629
|
+
tailAddonLogs(parameters: {
|
|
630
|
+
projectId: string;
|
|
631
|
+
addonId: string;
|
|
632
|
+
}, data: LogsTailRequestData): Promise<LogsClient>;
|
|
633
|
+
/** Starts a log tail. */
|
|
634
|
+
logTail(parameters: {
|
|
635
|
+
projectId: string;
|
|
636
|
+
entityId: string;
|
|
637
|
+
buildId?: string;
|
|
638
|
+
}, data: LogsTailRequestData, entityType: 'service' | 'build' | 'job' | 'addon'): Promise<LogsClient>;
|
|
639
|
+
private assertStartedWithNodejs;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
type ApiCallMetricsResponse = ApiCallResponse<Record<MetricType, MetricsEntry>>;
|
|
643
|
+
declare enum MetricType {
|
|
644
|
+
Cpu = "cpu",
|
|
645
|
+
Memory = "memory",
|
|
646
|
+
NetworkIngress = "networkIngress",
|
|
647
|
+
NetworkEgress = "networkEgress",
|
|
648
|
+
TcpConnectionOpen = "tcpConnectionsOpen",
|
|
649
|
+
PvcUsage = "diskUsage",
|
|
650
|
+
Requests = "requests",
|
|
651
|
+
Http4xxResponses = "http4xxResponses",
|
|
652
|
+
Http5xxResponses = "http5xxResponses"
|
|
653
|
+
}
|
|
654
|
+
type MetricUnit = 'pct' | 'vCPU' | 'mb' | 'kbps' | 'rps' | 'count';
|
|
655
|
+
type MetricValue = {
|
|
656
|
+
metadata: {
|
|
657
|
+
containerId: string;
|
|
658
|
+
volumeId?: string;
|
|
659
|
+
};
|
|
660
|
+
data: {
|
|
661
|
+
value: string;
|
|
662
|
+
ts: Date;
|
|
663
|
+
}[];
|
|
664
|
+
};
|
|
665
|
+
type MetricsEntry = {
|
|
666
|
+
metricInfo: {
|
|
667
|
+
metricId: MetricType;
|
|
668
|
+
metricUnit: MetricUnit;
|
|
669
|
+
metricResolution?: number;
|
|
670
|
+
};
|
|
671
|
+
values: MetricValue[];
|
|
672
|
+
};
|
|
673
|
+
type MetricsRequestCommon = {
|
|
674
|
+
containerName?: string | 'all';
|
|
675
|
+
metricTypes: MetricType[];
|
|
676
|
+
};
|
|
677
|
+
type MetricsRangeRequestData = MetricsRequestCommon & {
|
|
678
|
+
startTime?: Date;
|
|
679
|
+
endTime?: Date;
|
|
680
|
+
timestamp?: never;
|
|
681
|
+
duration?: number;
|
|
682
|
+
};
|
|
683
|
+
type MetricsSingleRequestData = MetricsRequestCommon & {
|
|
684
|
+
timestamp?: Date;
|
|
685
|
+
startTime?: never;
|
|
686
|
+
endTime?: never;
|
|
687
|
+
duration?: never;
|
|
688
|
+
};
|
|
689
|
+
type MetricsConfigCommon = {
|
|
690
|
+
projectId: string;
|
|
691
|
+
entityType: 'service' | 'job' | 'addon' | 'build';
|
|
692
|
+
entityId: string;
|
|
693
|
+
buildId?: string;
|
|
694
|
+
};
|
|
695
|
+
type MetricsSingleConfig = MetricsSingleRequestData & MetricsConfigCommon & {
|
|
696
|
+
queryType: 'single';
|
|
697
|
+
};
|
|
698
|
+
declare class NorthflankMetricFetch {
|
|
699
|
+
private readonly contextProvider;
|
|
700
|
+
constructor(contextProvider: ApiClientContextProvider);
|
|
701
|
+
/** Fetches service container metrics over a specific time span applying optional filters. */
|
|
702
|
+
getServiceMetrics(parameters: {
|
|
703
|
+
projectId: string;
|
|
704
|
+
serviceId: string;
|
|
705
|
+
}, data: MetricsSingleRequestData): Promise<ApiCallMetricsResponse>;
|
|
706
|
+
/** Fetches service build container metrics over a specific time span applying optional filters. */
|
|
707
|
+
getServiceBuildMetrics(parameters: {
|
|
708
|
+
projectId: string;
|
|
709
|
+
serviceId: string;
|
|
710
|
+
buildId: string;
|
|
711
|
+
}, data: MetricsSingleRequestData): Promise<ApiCallMetricsResponse>;
|
|
712
|
+
/** Fetches job container metrics over a specific time span applying optional filters. */
|
|
713
|
+
getJobMetrics(parameters: {
|
|
714
|
+
projectId: string;
|
|
715
|
+
jobId: string;
|
|
716
|
+
}, data: MetricsSingleRequestData): Promise<ApiCallMetricsResponse>;
|
|
717
|
+
/** Fetches job build container metrics over a specific time span applying optional filters. */
|
|
718
|
+
getJobBuildMetrics(parameters: {
|
|
719
|
+
projectId: string;
|
|
720
|
+
jobId: string;
|
|
721
|
+
buildId: string;
|
|
722
|
+
}, data: MetricsSingleRequestData): Promise<ApiCallMetricsResponse>;
|
|
723
|
+
/** Fetches addon container metrics over a specific time span applying optional filters. */
|
|
724
|
+
getAddonMetrics(parameters: {
|
|
725
|
+
projectId: string;
|
|
726
|
+
addonId: string;
|
|
727
|
+
}, data: MetricsSingleConfig): Promise<ApiCallMetricsResponse>;
|
|
728
|
+
metricsSingle(parameters: {
|
|
729
|
+
projectId: string;
|
|
730
|
+
entityId: string;
|
|
731
|
+
}, data: MetricsSingleRequestData, entityType: 'service' | 'build' | 'job' | 'addon'): Promise<ApiCallMetricsResponse>;
|
|
732
|
+
getServiceMetricsRange(parameters: {
|
|
733
|
+
projectId: string;
|
|
734
|
+
serviceId: string;
|
|
735
|
+
}, data: MetricsRangeRequestData): Promise<ApiCallMetricsResponse>;
|
|
736
|
+
/** Get metrics range for a service build container. */
|
|
737
|
+
getServiceBuildMetricsRange(parameters: {
|
|
738
|
+
projectId: string;
|
|
739
|
+
serviceId: string;
|
|
740
|
+
buildId: string;
|
|
741
|
+
}, data: MetricsRangeRequestData): Promise<ApiCallMetricsResponse>;
|
|
742
|
+
/** Get metrics range for a job container. */
|
|
743
|
+
getJobMetricsRange(parameters: {
|
|
744
|
+
projectId: string;
|
|
745
|
+
jobId: string;
|
|
746
|
+
}, data: MetricsRangeRequestData): Promise<ApiCallMetricsResponse>;
|
|
747
|
+
/** Get metrics range for a job build container. */
|
|
748
|
+
getJobBuildMetricsRange(parameters: {
|
|
749
|
+
projectId: string;
|
|
750
|
+
jobId: string;
|
|
751
|
+
buildId: string;
|
|
752
|
+
}, data: MetricsRangeRequestData): Promise<ApiCallMetricsResponse>;
|
|
753
|
+
/** Get metrics range for an addon container. */
|
|
754
|
+
getAddonMetricsRange(parameters: {
|
|
755
|
+
projectId: string;
|
|
756
|
+
addonId: string;
|
|
757
|
+
}, data: MetricsRangeRequestData): Promise<ApiCallMetricsResponse>;
|
|
758
|
+
/** Fetches a series of metrics over a timerange. */
|
|
759
|
+
metricsRange(parameters: {
|
|
760
|
+
projectId: string;
|
|
761
|
+
entityId: string;
|
|
762
|
+
buildId?: string;
|
|
763
|
+
}, data: MetricsRangeRequestData, entityType: 'service' | 'build' | 'job' | 'addon'): Promise<ApiCallMetricsResponse>;
|
|
764
|
+
private getMetrics;
|
|
765
|
+
}
|
|
766
|
+
|
|
492
767
|
type ListProjectsResult = {
|
|
493
768
|
/** An array of projects. */
|
|
494
769
|
'projects': {
|
|
@@ -522,10 +797,23 @@ declare class ListProjectsEndpoint extends GetApiEndpoint<ListProjectsRequest, L
|
|
|
522
797
|
}
|
|
523
798
|
|
|
524
799
|
type CreateProjectResult = {
|
|
525
|
-
/**
|
|
526
|
-
'
|
|
527
|
-
/**
|
|
528
|
-
'
|
|
800
|
+
/** The name of the project. Example: "New Project" */
|
|
801
|
+
'name': string;
|
|
802
|
+
/** The description of the project. Example: "This is a new project." */
|
|
803
|
+
'description'?: string;
|
|
804
|
+
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
805
|
+
'color'?: string;
|
|
806
|
+
/** The region the project will be hosted in. Example: "europe-west" */
|
|
807
|
+
'region'?: string;
|
|
808
|
+
} | {
|
|
809
|
+
/** The name of the project. Example: "New Project" */
|
|
810
|
+
'name': string;
|
|
811
|
+
/** The description of the project. Example: "This is a new project." */
|
|
812
|
+
'description'?: string;
|
|
813
|
+
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
814
|
+
'color'?: string;
|
|
815
|
+
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
816
|
+
'clusterId'?: string;
|
|
529
817
|
};
|
|
530
818
|
type CreateProjectCall = (opts: CreateProjectRequest) => Promise<ApiCallResponse<CreateProjectResult>>;
|
|
531
819
|
type CreateProjectRequest = {
|
|
@@ -649,57 +937,64 @@ declare class DeleteProjectEndpoint extends DeleteApiEndpoint<DeleteProjectReque
|
|
|
649
937
|
}
|
|
650
938
|
|
|
651
939
|
type CreateAddonResult = {
|
|
652
|
-
/**
|
|
653
|
-
'id': string;
|
|
654
|
-
/** Addon name. Example: "Example Addon" */
|
|
940
|
+
/** The name of the addon. Example: "Example Addon" */
|
|
655
941
|
'name': string;
|
|
656
|
-
/**
|
|
657
|
-
'appId': string;
|
|
658
|
-
/** A short description of the addon. Example: "This is the addon description" */
|
|
942
|
+
/** A description of the addon. Example: "An addon description" */
|
|
659
943
|
'description'?: string;
|
|
660
|
-
/**
|
|
661
|
-
'
|
|
662
|
-
/**
|
|
663
|
-
'
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
};
|
|
944
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
945
|
+
'tags'?: string[];
|
|
946
|
+
/** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgres" */
|
|
947
|
+
'type': string;
|
|
948
|
+
/** 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" */
|
|
949
|
+
'version': string;
|
|
950
|
+
'billing': {
|
|
951
|
+
/** The ID of the deployment plan to use. Example: "nf-compute-20" */
|
|
952
|
+
'deploymentPlan': string;
|
|
953
|
+
/** The type of storage. Only configurable if the relevant feature flag is enabled for you account Example: "ssd" */
|
|
954
|
+
'storageClass'?: 'ssd' | 'hdd';
|
|
955
|
+
/** The size of the addon storage, in megabytes. Example: 4096 */
|
|
956
|
+
'storage': number;
|
|
957
|
+
/** The number of addon replicas to run. Example: 1 */
|
|
958
|
+
'replicas': number;
|
|
959
|
+
};
|
|
960
|
+
/** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
|
|
961
|
+
'source'?: {
|
|
962
|
+
/** ID of the addon to fork. Example: "existing-addon" */
|
|
963
|
+
'addonId': string;
|
|
964
|
+
/** ID of a backup belonging to that addon to use for the fork. Example: "existing-backup" */
|
|
965
|
+
'backupId': string;
|
|
966
|
+
};
|
|
967
|
+
/** Enables access to the addon via TLS (if supported by the addon type). */
|
|
968
|
+
'tlsEnabled'?: boolean;
|
|
969
|
+
/** Enables external access to the addon via TLS (if supported by the addon type). */
|
|
970
|
+
'externalAccessEnabled'?: boolean;
|
|
971
|
+
/** An array of IP address policies. */
|
|
972
|
+
'ipPolicies'?: {
|
|
973
|
+
/** An array of IP addresses used for this rule */
|
|
974
|
+
'addresses': string[];
|
|
975
|
+
/** The action for this rule. Example: "DENY" */
|
|
976
|
+
'action': 'ALLOW' | 'DENY';
|
|
977
|
+
}[];
|
|
978
|
+
/** Enables point-in-time recovery (PITR) for the addon (if supported by the addon type). */
|
|
979
|
+
'pitrEnabled'?: boolean;
|
|
980
|
+
'typeSpecificSettings'?: {
|
|
981
|
+
/** Postgres only: enable high-availability mode. */
|
|
982
|
+
'postgresHAEnabled'?: boolean;
|
|
700
983
|
};
|
|
701
|
-
|
|
984
|
+
'customCredentials'?: {
|
|
985
|
+
/** Custom database name. Not supported for all addon types. */
|
|
986
|
+
'dbName'?: string;
|
|
987
|
+
};
|
|
988
|
+
/** Identifier for the addon. Example: "example-addon" */
|
|
989
|
+
'id': string;
|
|
990
|
+
/** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
|
|
991
|
+
'appId': string;
|
|
992
|
+
/** The current state of the addon. Example: "running" */
|
|
702
993
|
'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
|
|
994
|
+
/** time of creation */
|
|
995
|
+
'createdAt'?: string;
|
|
996
|
+
/** time of update */
|
|
997
|
+
'updatedAt'?: string;
|
|
703
998
|
};
|
|
704
999
|
type CreateAddonCall = (opts: CreateAddonRequest) => Promise<ApiCallResponse<CreateAddonResult>>;
|
|
705
1000
|
type CreateAddonRequest = {
|
|
@@ -754,6 +1049,10 @@ type CreateAddonData = {
|
|
|
754
1049
|
/** Postgres only: enable high-availability mode. */
|
|
755
1050
|
'postgresHAEnabled'?: boolean;
|
|
756
1051
|
};
|
|
1052
|
+
'customCredentials'?: {
|
|
1053
|
+
/** Custom database name. Not supported for all addon types. */
|
|
1054
|
+
'dbName'?: string;
|
|
1055
|
+
};
|
|
757
1056
|
};
|
|
758
1057
|
/** Creates a new addon */
|
|
759
1058
|
declare class CreateAddonEndpoint extends PostApiEndpoint<CreateAddonRequest, CreateAddonResult> {
|
|
@@ -809,6 +1108,10 @@ type PutAddonResult = {
|
|
|
809
1108
|
/** Postgres only: enable high-availability mode. */
|
|
810
1109
|
'postgresHAEnabled'?: boolean;
|
|
811
1110
|
};
|
|
1111
|
+
'customCredentials'?: {
|
|
1112
|
+
/** Custom database name. Not supported for all addon types. */
|
|
1113
|
+
'dbName'?: string;
|
|
1114
|
+
};
|
|
812
1115
|
/** Identifier for the addon. Example: "example-addon" */
|
|
813
1116
|
'id': string;
|
|
814
1117
|
/** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
|
|
@@ -873,6 +1176,10 @@ type PutAddonData = {
|
|
|
873
1176
|
/** Postgres only: enable high-availability mode. */
|
|
874
1177
|
'postgresHAEnabled'?: boolean;
|
|
875
1178
|
};
|
|
1179
|
+
'customCredentials'?: {
|
|
1180
|
+
/** Custom database name. Not supported for all addon types. */
|
|
1181
|
+
'dbName'?: string;
|
|
1182
|
+
};
|
|
876
1183
|
};
|
|
877
1184
|
/** Creates or updates an addon */
|
|
878
1185
|
declare class PutAddonEndpoint extends PutApiEndpoint<PutAddonRequest, PutAddonResult> {
|
|
@@ -999,6 +1306,10 @@ type PatchAddonResult = {
|
|
|
999
1306
|
/** Postgres only: enable high-availability mode. */
|
|
1000
1307
|
'postgresHAEnabled'?: boolean;
|
|
1001
1308
|
};
|
|
1309
|
+
'customCredentials'?: {
|
|
1310
|
+
/** Custom database name. Not supported for all addon types. */
|
|
1311
|
+
'dbName'?: string;
|
|
1312
|
+
};
|
|
1002
1313
|
/** Identifier for the addon. Example: "example-addon" */
|
|
1003
1314
|
'id': string;
|
|
1004
1315
|
/** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
|
|
@@ -2837,6 +3148,8 @@ type ListJobsResult = {
|
|
|
2837
3148
|
'disabledCI': boolean;
|
|
2838
3149
|
/** Whether Continuous Deployment is disabled */
|
|
2839
3150
|
'disabledCD': boolean;
|
|
3151
|
+
/** Cron specific. Whether or not the job's automatic scheduling is suspended */
|
|
3152
|
+
'suspended'?: boolean;
|
|
2840
3153
|
}[];
|
|
2841
3154
|
};
|
|
2842
3155
|
type ListJobsCall = (opts: ListJobsRequest) => Promise<ApiCallResponse<ListJobsResult>>;
|
|
@@ -2974,6 +3287,8 @@ type GetJobResult = {
|
|
|
2974
3287
|
/** ID of the billing plan used by this job Example: "nf-compute-20" */
|
|
2975
3288
|
'deploymentPlan': string;
|
|
2976
3289
|
};
|
|
3290
|
+
/** Cron specific. Whether or not the job's automatic scheduling is suspended */
|
|
3291
|
+
'suspended'?: boolean;
|
|
2977
3292
|
/** Job settings */
|
|
2978
3293
|
'settings': {
|
|
2979
3294
|
/** Cron job specific settings */
|
|
@@ -3027,125 +3342,170 @@ declare class DeleteJobEndpoint extends DeleteApiEndpoint<DeleteJobRequest, Dele
|
|
|
3027
3342
|
}
|
|
3028
3343
|
|
|
3029
3344
|
type CreateJobManualResult = {
|
|
3030
|
-
/**
|
|
3031
|
-
'id': string;
|
|
3032
|
-
/** Full identifier used for job deployment Example: "/example-user/default-project/example-job" */
|
|
3033
|
-
'appId': string;
|
|
3034
|
-
/** Job name Example: "Example Job" */
|
|
3345
|
+
/** The name of the job. Example: "Example Job" */
|
|
3035
3346
|
'name': string;
|
|
3036
|
-
/** A
|
|
3347
|
+
/** A description of the job. Example: "A job description" */
|
|
3037
3348
|
'description'?: string;
|
|
3038
|
-
/**
|
|
3039
|
-
'
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
/** URL of the repository being built Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
3044
|
-
'projectUrl': string;
|
|
3045
|
-
/** VCS provider for the repo being built Example: "github" */
|
|
3046
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
3047
|
-
/** ID of the self-hosted VCS, if applicable. Example: "example-team/self-hosted-vcs" */
|
|
3048
|
-
'selfHostedVcsId'?: string;
|
|
3049
|
-
/** Branch of the repo being built Example: "master" */
|
|
3050
|
-
'projectBranch'?: string;
|
|
3051
|
-
/** Whether the repo is being accessed without authentication. */
|
|
3052
|
-
'publicRepo'?: boolean;
|
|
3053
|
-
/** Working directory used by the dockerfile Example: "/" */
|
|
3054
|
-
'dockerWorkDir': string;
|
|
3055
|
-
/** File path of the Dockerfile Example: "/Dockerfile" */
|
|
3056
|
-
'dockerFilePath': string;
|
|
3057
|
-
};
|
|
3058
|
-
'buildConfiguration'?: {
|
|
3059
|
-
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
3060
|
-
'pathIgnoreRules'?: string[];
|
|
3061
|
-
/** If `true`, the functionality of `pathIgnoreRules` will be inverted. A commit will only be built if a file has been changed that matches one or more of the rules in `pathIgnoreRules`. */
|
|
3062
|
-
'isAllowList'?: boolean;
|
|
3063
|
-
/** If `true`, enables commit ignore flags. If a commit message contains one or more of the flags in `ciIgnoreFlags`, that commit will not be built. */
|
|
3064
|
-
'ciIgnoreFlagsEnabled'?: boolean;
|
|
3065
|
-
/** 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]"] */
|
|
3066
|
-
'ciIgnoreFlags'?: string[];
|
|
3067
|
-
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
3068
|
-
'dockerfileTarget'?: string;
|
|
3069
|
-
/** Include .git folder inside the build context */
|
|
3070
|
-
'includeGitFolder'?: boolean;
|
|
3071
|
-
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
3072
|
-
'fullGitClone'?: boolean;
|
|
3349
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
3350
|
+
'tags'?: string[];
|
|
3351
|
+
'billing': {
|
|
3352
|
+
/** The ID of the deployment plan to use. Example: "nf-compute-20" */
|
|
3353
|
+
'deploymentPlan': string;
|
|
3073
3354
|
};
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
|
|
3080
|
-
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
3081
|
-
/** Array of custom Buildpacks used. */
|
|
3082
|
-
'buildpackLocators'?: string[];
|
|
3083
|
-
/** Should build dependencies be cached? */
|
|
3084
|
-
'useCache'?: boolean;
|
|
3085
|
-
};
|
|
3086
|
-
/** Details about Buildkit settings. */
|
|
3087
|
-
'buildkit'?: {
|
|
3088
|
-
/** Should intermediate image layers be cached? */
|
|
3089
|
-
'useCache'?: boolean;
|
|
3090
|
-
};
|
|
3091
|
-
/** Details about Kaniko settings. */
|
|
3092
|
-
'kaniko'?: {
|
|
3093
|
-
/** Should intermediate image layers be cached? */
|
|
3094
|
-
'useCache'?: boolean;
|
|
3095
|
-
};
|
|
3096
|
-
};
|
|
3097
|
-
/** Whether Continuous Integration is disabled */
|
|
3098
|
-
'disabledCI': boolean;
|
|
3099
|
-
/** Whether Continuous Deployment is disabled */
|
|
3100
|
-
'disabledCD': boolean;
|
|
3355
|
+
/** The number of attempts to rerun a job before it is marked as failed. */
|
|
3356
|
+
'backoffLimit': number;
|
|
3357
|
+
/** Configure when the job should be run if the source image changes. Example: "never" */
|
|
3358
|
+
'runOnSourceChange'?: 'never' | 'cd-promote' | 'always';
|
|
3359
|
+
/** The maximum amount of time, in seconds, for a job to run before it is marked as failed. Example: 600 */
|
|
3360
|
+
'activeDeadlineSeconds'?: number;
|
|
3101
3361
|
'deployment'?: {
|
|
3102
|
-
/**
|
|
3103
|
-
'region'?: string;
|
|
3104
|
-
/** Details about the Buildpack overrides for this deployment. */
|
|
3362
|
+
/** Allows for customization of buildpack runtime */
|
|
3105
3363
|
'buildpack'?: {
|
|
3106
|
-
/** Type of buildpack run configuration
|
|
3364
|
+
/** Type of buildpack run configuration */
|
|
3107
3365
|
'configType': 'default' | 'customProcess' | 'customCommand' | 'customEntrypointCustomCommand' | 'originalEntrypointCustomCommand';
|
|
3108
|
-
/** Custom process which should be run. */
|
|
3366
|
+
/** Custom process which should be run. Required in case where `configType` is `customProcess` */
|
|
3109
3367
|
'customProcess'?: string;
|
|
3110
|
-
/** Custom entrypoint which should be run. */
|
|
3368
|
+
/** Custom entrypoint which should be run. Required in case where `configType` is `customEntrypointCustomCommand` */
|
|
3111
3369
|
'customEntrypoint'?: string;
|
|
3112
|
-
/** Custom command which should be run. */
|
|
3370
|
+
/** Custom command which should be run. Required in case where `configType` is `customCommand`, `customEntrypointCustomCommand` or `originalEntrypointCustomCommand` */
|
|
3113
3371
|
'customCommand'?: string;
|
|
3114
3372
|
};
|
|
3115
|
-
/**
|
|
3373
|
+
/** Allows for customization of docker runtime */
|
|
3116
3374
|
'docker'?: {
|
|
3117
|
-
/**
|
|
3375
|
+
/** Type of entrypoint & command override configuration Example: "default" */
|
|
3118
3376
|
'configType': 'default' | 'customEntrypoint' | 'customCommand' | 'customEntrypointCustomCommand';
|
|
3119
|
-
/**
|
|
3377
|
+
/** Custom entrypoint which should be used. Required in case where `configType` is `customEntrypoint` or `customEntrypointCustomCommand` */
|
|
3120
3378
|
'customEntrypoint'?: string;
|
|
3121
|
-
/**
|
|
3379
|
+
/** Custom command which should be used. Required in case where `configType` is `customCommand` or `customEntrypointCustomCommand` */
|
|
3122
3380
|
'customCommand'?: string;
|
|
3123
3381
|
};
|
|
3124
|
-
/** Details about storage settings for this deployment. */
|
|
3125
3382
|
'storage'?: {
|
|
3126
|
-
/** Details about ephemeral storage settings for this deployment. */
|
|
3127
3383
|
'ephemeralStorage'?: {
|
|
3128
3384
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
3129
|
-
'storageSize'
|
|
3385
|
+
'storageSize'?: number;
|
|
3130
3386
|
};
|
|
3131
3387
|
};
|
|
3388
|
+
'vcs'?: {
|
|
3389
|
+
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
3390
|
+
'projectUrl': string;
|
|
3391
|
+
/** The VCS provider to use. Example: "github" */
|
|
3392
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
3393
|
+
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
3394
|
+
'selfHostedVcsId'?: string;
|
|
3395
|
+
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
|
|
3396
|
+
'accountLogin'?: string;
|
|
3397
|
+
/** The name of the branch to use. Example: "master" */
|
|
3398
|
+
'projectBranch': string;
|
|
3399
|
+
};
|
|
3400
|
+
'external'?: {
|
|
3401
|
+
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
3402
|
+
'imagePath': string;
|
|
3403
|
+
/** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
|
|
3404
|
+
'credentials'?: string;
|
|
3405
|
+
};
|
|
3406
|
+
'internal'?: {
|
|
3407
|
+
/** ID of the build service to deploy Example: "example-build-service" */
|
|
3408
|
+
'id'?: string;
|
|
3409
|
+
/** Branch to deploy Example: "master" */
|
|
3410
|
+
'branch'?: string;
|
|
3411
|
+
/** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
|
|
3412
|
+
'buildSHA'?: string | 'latest';
|
|
3413
|
+
/** ID of the build that should be deployed Example: "premium-guide-6393" */
|
|
3414
|
+
'buildId'?: string;
|
|
3415
|
+
};
|
|
3132
3416
|
};
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
|
|
3417
|
+
/** Whether CI should be disabled. Only relevant for jobs deploying directly from version control. */
|
|
3418
|
+
'disabledCI'?: boolean;
|
|
3419
|
+
'buildConfiguration'?: {
|
|
3420
|
+
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
3421
|
+
'pathIgnoreRules'?: string[];
|
|
3422
|
+
/** If `true`, the functionality of `pathIgnoreRules` will be inverted. A commit will only be built if a file has been changed that matches one or more of the rules in `pathIgnoreRules`. */
|
|
3423
|
+
'isAllowList'?: boolean;
|
|
3424
|
+
/** If `true`, enables commit ignore flags. If a commit message contains one or more of the flags in `ciIgnoreFlags`, that commit will not be built. */
|
|
3425
|
+
'ciIgnoreFlagsEnabled'?: boolean;
|
|
3426
|
+
/** 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]"] */
|
|
3427
|
+
'ciIgnoreFlags'?: string[];
|
|
3428
|
+
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
3429
|
+
'dockerfileTarget'?: string;
|
|
3430
|
+
/** Include .git folder inside the build context */
|
|
3431
|
+
'includeGitFolder'?: boolean;
|
|
3432
|
+
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
3433
|
+
'fullGitClone'?: boolean;
|
|
3136
3434
|
};
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
|
|
3144
|
-
|
|
3145
|
-
|
|
3435
|
+
'buildSettings'?: {
|
|
3436
|
+
'dockerfile': {
|
|
3437
|
+
/** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
|
|
3438
|
+
'buildEngine'?: 'kaniko' | 'buildkit';
|
|
3439
|
+
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
3440
|
+
'dockerFilePath': string;
|
|
3441
|
+
/** The working directory of the Dockerfile. Example: "/" */
|
|
3442
|
+
'dockerWorkDir': string;
|
|
3443
|
+
/** Should intermediate image layers be cached? */
|
|
3444
|
+
'useCache'?: boolean;
|
|
3445
|
+
};
|
|
3446
|
+
} | {
|
|
3447
|
+
'buildpack': {
|
|
3448
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
|
|
3449
|
+
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
3450
|
+
/** Array of custom Buildpacks to use. */
|
|
3451
|
+
'buildpackLocators'?: string[];
|
|
3452
|
+
/** The working directory to build in. Example: "/" */
|
|
3453
|
+
'buildContext'?: string;
|
|
3454
|
+
/** Should build dependencies be cached? */
|
|
3455
|
+
'useCache'?: boolean;
|
|
3456
|
+
};
|
|
3146
3457
|
};
|
|
3147
|
-
/**
|
|
3148
|
-
'
|
|
3458
|
+
/** 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"} */
|
|
3459
|
+
'runtimeEnvironment'?: any;
|
|
3460
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
3461
|
+
'runtimeFiles'?: any;
|
|
3462
|
+
/** An object containing the build arguments to set for the job. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"variable1":"abcdef","variable2":"12345"} */
|
|
3463
|
+
'buildArguments'?: any;
|
|
3464
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
3465
|
+
'buildFiles'?: any;
|
|
3466
|
+
/** An array of health checks. */
|
|
3467
|
+
'healthChecks'?: {
|
|
3468
|
+
/** The protocol to access the health check with. Example: "HTTP" */
|
|
3469
|
+
'protocol': 'HTTP' | 'CMD' | 'TCP';
|
|
3470
|
+
/** The type of health check. Example: "readinessProbe" */
|
|
3471
|
+
'type': 'livenessProbe' | 'readinessProbe' | 'startupProbe';
|
|
3472
|
+
/** The path of the health check endpoint. Required when protocol is HTTP. Example: "/health-check" */
|
|
3473
|
+
'path'?: string;
|
|
3474
|
+
/** The command to run for the health check. Required when protocol is CMD */
|
|
3475
|
+
'cmd'?: string;
|
|
3476
|
+
/** Port number for the health check endpoint. Required when protocol is HTTP. Example: 8080 */
|
|
3477
|
+
'port'?: number;
|
|
3478
|
+
/** Initial delay, in seconds, before the health check is first run. Example: 10 */
|
|
3479
|
+
'initialDelaySeconds': number;
|
|
3480
|
+
/** The time between each check, in seconds. Example: 60 */
|
|
3481
|
+
'periodSeconds': number;
|
|
3482
|
+
/** The time to wait for a response before marking the health check as a failure. Example: 1 */
|
|
3483
|
+
'timeoutSeconds': number;
|
|
3484
|
+
/** The maximum number of allowed failures. Example: 3 */
|
|
3485
|
+
'failureThreshold': number;
|
|
3486
|
+
/** The number of successes required to mark the health check as a success. Example: 1 */
|
|
3487
|
+
'successThreshold'?: number;
|
|
3488
|
+
}[];
|
|
3489
|
+
/** Type of the job (manual or manual) Example: "manual" */
|
|
3490
|
+
'jobType': 'manual';
|
|
3491
|
+
/** Identifier for the job Example: "example-job" */
|
|
3492
|
+
'id': string;
|
|
3493
|
+
/** Full identifier used for job deployment Example: "/example-user/default-project/example-job" */
|
|
3494
|
+
'appId': string;
|
|
3495
|
+
/** Details about the current job status. */
|
|
3496
|
+
'status': {
|
|
3497
|
+
/** Details about the status of the most recent build. */
|
|
3498
|
+
'build'?: {
|
|
3499
|
+
/** The current status of the build. Example: "SUCCESS" */
|
|
3500
|
+
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
3501
|
+
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
3502
|
+
'lastTransitionTime'?: string;
|
|
3503
|
+
};
|
|
3504
|
+
};
|
|
3505
|
+
/** time of creation */
|
|
3506
|
+
'createdAt'?: string;
|
|
3507
|
+
/** time of update */
|
|
3508
|
+
'updatedAt'?: string;
|
|
3149
3509
|
};
|
|
3150
3510
|
type CreateJobManualCall = (opts: CreateJobManualRequest) => Promise<ApiCallResponse<CreateJobManualResult>>;
|
|
3151
3511
|
type CreateJobManualRequest = {
|
|
@@ -3283,6 +3643,8 @@ type CreateJobManualData = {
|
|
|
3283
3643
|
'buildId'?: string;
|
|
3284
3644
|
};
|
|
3285
3645
|
} | any;
|
|
3646
|
+
/** Whether CI should be disabled. Only relevant for jobs deploying directly from version control. */
|
|
3647
|
+
'disabledCI'?: boolean;
|
|
3286
3648
|
'buildConfiguration'?: {
|
|
3287
3649
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
3288
3650
|
'pathIgnoreRules'?: string[];
|
|
@@ -3436,6 +3798,8 @@ type PutJobManualResult = {
|
|
|
3436
3798
|
'buildId'?: string;
|
|
3437
3799
|
};
|
|
3438
3800
|
};
|
|
3801
|
+
/** Whether CI should be disabled. Only relevant for jobs deploying directly from version control. */
|
|
3802
|
+
'disabledCI'?: boolean;
|
|
3439
3803
|
'buildConfiguration'?: {
|
|
3440
3804
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
3441
3805
|
'pathIgnoreRules'?: string[];
|
|
@@ -3517,7 +3881,7 @@ type PutJobManualResult = {
|
|
|
3517
3881
|
/** Details about the status of the most recent build. */
|
|
3518
3882
|
'build'?: {
|
|
3519
3883
|
/** The current status of the build. Example: "SUCCESS" */
|
|
3520
|
-
'status': 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
3884
|
+
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
3521
3885
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
3522
3886
|
'lastTransitionTime'?: string;
|
|
3523
3887
|
};
|
|
@@ -3663,6 +4027,8 @@ type PutJobManualData = {
|
|
|
3663
4027
|
'buildId'?: string;
|
|
3664
4028
|
};
|
|
3665
4029
|
} | any;
|
|
4030
|
+
/** Whether CI should be disabled. Only relevant for jobs deploying directly from version control. */
|
|
4031
|
+
'disabledCI'?: boolean;
|
|
3666
4032
|
'buildConfiguration'?: {
|
|
3667
4033
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
3668
4034
|
'pathIgnoreRules'?: string[];
|
|
@@ -3816,6 +4182,8 @@ type PatchJobManualResult = {
|
|
|
3816
4182
|
'buildId'?: string;
|
|
3817
4183
|
};
|
|
3818
4184
|
};
|
|
4185
|
+
/** Whether CI should be disabled. Only relevant for jobs deploying directly from version control. */
|
|
4186
|
+
'disabledCI'?: boolean;
|
|
3819
4187
|
'buildConfiguration'?: {
|
|
3820
4188
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
3821
4189
|
'pathIgnoreRules'?: string[];
|
|
@@ -3897,7 +4265,7 @@ type PatchJobManualResult = {
|
|
|
3897
4265
|
/** Details about the status of the most recent build. */
|
|
3898
4266
|
'build'?: {
|
|
3899
4267
|
/** The current status of the build. Example: "SUCCESS" */
|
|
3900
|
-
'status': 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
4268
|
+
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
3901
4269
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
3902
4270
|
'lastTransitionTime'?: string;
|
|
3903
4271
|
};
|
|
@@ -3932,6 +4300,8 @@ type PatchJobManualData = {
|
|
|
3932
4300
|
'runOnSourceChange'?: 'never' | 'cd-promote' | 'always';
|
|
3933
4301
|
/** The maximum amount of time, in seconds, for a job to run before it is marked as failed. Example: 600 */
|
|
3934
4302
|
'activeDeadlineSeconds'?: number;
|
|
4303
|
+
/** Whether CI should be disabled. Only relevant for jobs deploying directly from version control. */
|
|
4304
|
+
'disabledCI'?: boolean;
|
|
3935
4305
|
'buildConfiguration'?: {
|
|
3936
4306
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
3937
4307
|
'pathIgnoreRules'?: string[];
|
|
@@ -4006,131 +4376,176 @@ declare class PatchJobManualEndpoint extends PatchApiEndpoint<PatchJobManualRequ
|
|
|
4006
4376
|
}
|
|
4007
4377
|
|
|
4008
4378
|
type CreateJobCronResult = {
|
|
4009
|
-
/**
|
|
4010
|
-
'id': string;
|
|
4011
|
-
/** Full identifier used for job deployment Example: "/example-user/default-project/example-job" */
|
|
4012
|
-
'appId': string;
|
|
4013
|
-
/** Job name Example: "Example Job" */
|
|
4379
|
+
/** The name of the job. Example: "Example Job" */
|
|
4014
4380
|
'name': string;
|
|
4015
|
-
/** A
|
|
4381
|
+
/** A description of the job. Example: "A job description" */
|
|
4016
4382
|
'description'?: string;
|
|
4017
|
-
/**
|
|
4018
|
-
'
|
|
4019
|
-
|
|
4020
|
-
|
|
4021
|
-
|
|
4022
|
-
/** URL of the repository being built Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
4023
|
-
'projectUrl': string;
|
|
4024
|
-
/** VCS provider for the repo being built Example: "github" */
|
|
4025
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
4026
|
-
/** ID of the self-hosted VCS, if applicable. Example: "example-team/self-hosted-vcs" */
|
|
4027
|
-
'selfHostedVcsId'?: string;
|
|
4028
|
-
/** Branch of the repo being built Example: "master" */
|
|
4029
|
-
'projectBranch'?: string;
|
|
4030
|
-
/** Whether the repo is being accessed without authentication. */
|
|
4031
|
-
'publicRepo'?: boolean;
|
|
4032
|
-
/** Working directory used by the dockerfile Example: "/" */
|
|
4033
|
-
'dockerWorkDir': string;
|
|
4034
|
-
/** File path of the Dockerfile Example: "/Dockerfile" */
|
|
4035
|
-
'dockerFilePath': string;
|
|
4036
|
-
};
|
|
4037
|
-
'buildConfiguration'?: {
|
|
4038
|
-
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
4039
|
-
'pathIgnoreRules'?: string[];
|
|
4040
|
-
/** If `true`, the functionality of `pathIgnoreRules` will be inverted. A commit will only be built if a file has been changed that matches one or more of the rules in `pathIgnoreRules`. */
|
|
4041
|
-
'isAllowList'?: boolean;
|
|
4042
|
-
/** If `true`, enables commit ignore flags. If a commit message contains one or more of the flags in `ciIgnoreFlags`, that commit will not be built. */
|
|
4043
|
-
'ciIgnoreFlagsEnabled'?: boolean;
|
|
4044
|
-
/** 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]"] */
|
|
4045
|
-
'ciIgnoreFlags'?: string[];
|
|
4046
|
-
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
4047
|
-
'dockerfileTarget'?: string;
|
|
4048
|
-
/** Include .git folder inside the build context */
|
|
4049
|
-
'includeGitFolder'?: boolean;
|
|
4050
|
-
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
4051
|
-
'fullGitClone'?: boolean;
|
|
4383
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
4384
|
+
'tags'?: string[];
|
|
4385
|
+
'billing': {
|
|
4386
|
+
/** The ID of the deployment plan to use. Example: "nf-compute-20" */
|
|
4387
|
+
'deploymentPlan': string;
|
|
4052
4388
|
};
|
|
4053
|
-
|
|
4054
|
-
|
|
4055
|
-
|
|
4056
|
-
|
|
4389
|
+
/** The number of attempts to rerun a job before it is marked as failed. */
|
|
4390
|
+
'backoffLimit': number;
|
|
4391
|
+
/** Configure when the job should be run if the source image changes. Example: "never" */
|
|
4392
|
+
'runOnSourceChange'?: 'never' | 'cd-promote' | 'always';
|
|
4393
|
+
/** The maximum amount of time, in seconds, for a job to run before it is marked as failed. Example: 600 */
|
|
4394
|
+
'activeDeadlineSeconds'?: number;
|
|
4395
|
+
'deployment'?: {
|
|
4396
|
+
/** Allows for customization of buildpack runtime */
|
|
4057
4397
|
'buildpack'?: {
|
|
4058
|
-
/**
|
|
4059
|
-
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
4060
|
-
/** Array of custom Buildpacks used. */
|
|
4061
|
-
'buildpackLocators'?: string[];
|
|
4062
|
-
/** Should build dependencies be cached? */
|
|
4063
|
-
'useCache'?: boolean;
|
|
4064
|
-
};
|
|
4065
|
-
/** Details about Buildkit settings. */
|
|
4066
|
-
'buildkit'?: {
|
|
4067
|
-
/** Should intermediate image layers be cached? */
|
|
4068
|
-
'useCache'?: boolean;
|
|
4069
|
-
};
|
|
4070
|
-
/** Details about Kaniko settings. */
|
|
4071
|
-
'kaniko'?: {
|
|
4072
|
-
/** Should intermediate image layers be cached? */
|
|
4073
|
-
'useCache'?: boolean;
|
|
4074
|
-
};
|
|
4075
|
-
};
|
|
4076
|
-
/** Whether Continuous Integration is disabled */
|
|
4077
|
-
'disabledCI': boolean;
|
|
4078
|
-
/** Whether Continuous Deployment is disabled */
|
|
4079
|
-
'disabledCD': boolean;
|
|
4080
|
-
'deployment'?: {
|
|
4081
|
-
/** Region where this job is deployed and built Example: "europe-west" */
|
|
4082
|
-
'region'?: string;
|
|
4083
|
-
/** Details about the Buildpack overrides for this deployment. */
|
|
4084
|
-
'buildpack'?: {
|
|
4085
|
-
/** Type of buildpack run configuration. Example: "default" */
|
|
4398
|
+
/** Type of buildpack run configuration */
|
|
4086
4399
|
'configType': 'default' | 'customProcess' | 'customCommand' | 'customEntrypointCustomCommand' | 'originalEntrypointCustomCommand';
|
|
4087
|
-
/** Custom process which should be run. */
|
|
4400
|
+
/** Custom process which should be run. Required in case where `configType` is `customProcess` */
|
|
4088
4401
|
'customProcess'?: string;
|
|
4089
|
-
/** Custom entrypoint which should be run. */
|
|
4402
|
+
/** Custom entrypoint which should be run. Required in case where `configType` is `customEntrypointCustomCommand` */
|
|
4090
4403
|
'customEntrypoint'?: string;
|
|
4091
|
-
/** Custom command which should be run. */
|
|
4404
|
+
/** Custom command which should be run. Required in case where `configType` is `customCommand`, `customEntrypointCustomCommand` or `originalEntrypointCustomCommand` */
|
|
4092
4405
|
'customCommand'?: string;
|
|
4093
4406
|
};
|
|
4094
|
-
/**
|
|
4407
|
+
/** Allows for customization of docker runtime */
|
|
4095
4408
|
'docker'?: {
|
|
4096
|
-
/**
|
|
4409
|
+
/** Type of entrypoint & command override configuration Example: "default" */
|
|
4097
4410
|
'configType': 'default' | 'customEntrypoint' | 'customCommand' | 'customEntrypointCustomCommand';
|
|
4098
|
-
/**
|
|
4411
|
+
/** Custom entrypoint which should be used. Required in case where `configType` is `customEntrypoint` or `customEntrypointCustomCommand` */
|
|
4099
4412
|
'customEntrypoint'?: string;
|
|
4100
|
-
/**
|
|
4413
|
+
/** Custom command which should be used. Required in case where `configType` is `customCommand` or `customEntrypointCustomCommand` */
|
|
4101
4414
|
'customCommand'?: string;
|
|
4102
4415
|
};
|
|
4103
|
-
/** Details about storage settings for this deployment. */
|
|
4104
4416
|
'storage'?: {
|
|
4105
|
-
/** Details about ephemeral storage settings for this deployment. */
|
|
4106
4417
|
'ephemeralStorage'?: {
|
|
4107
4418
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
4108
|
-
'storageSize'
|
|
4419
|
+
'storageSize'?: number;
|
|
4109
4420
|
};
|
|
4110
4421
|
};
|
|
4422
|
+
'vcs'?: {
|
|
4423
|
+
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
4424
|
+
'projectUrl': string;
|
|
4425
|
+
/** The VCS provider to use. Example: "github" */
|
|
4426
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
4427
|
+
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
4428
|
+
'selfHostedVcsId'?: string;
|
|
4429
|
+
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
|
|
4430
|
+
'accountLogin'?: string;
|
|
4431
|
+
/** The name of the branch to use. Example: "master" */
|
|
4432
|
+
'projectBranch': string;
|
|
4433
|
+
};
|
|
4434
|
+
'external'?: {
|
|
4435
|
+
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
4436
|
+
'imagePath': string;
|
|
4437
|
+
/** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
|
|
4438
|
+
'credentials'?: string;
|
|
4439
|
+
};
|
|
4440
|
+
'internal'?: {
|
|
4441
|
+
/** ID of the build service to deploy Example: "example-build-service" */
|
|
4442
|
+
'id'?: string;
|
|
4443
|
+
/** Branch to deploy Example: "master" */
|
|
4444
|
+
'branch'?: string;
|
|
4445
|
+
/** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
|
|
4446
|
+
'buildSHA'?: string | 'latest';
|
|
4447
|
+
/** ID of the build that should be deployed Example: "premium-guide-6393" */
|
|
4448
|
+
'buildId'?: string;
|
|
4449
|
+
};
|
|
4111
4450
|
};
|
|
4112
|
-
|
|
4113
|
-
|
|
4114
|
-
|
|
4451
|
+
/** Whether CI should be disabled. Only relevant for jobs deploying directly from version control. */
|
|
4452
|
+
'disabledCI'?: boolean;
|
|
4453
|
+
'buildConfiguration'?: {
|
|
4454
|
+
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
4455
|
+
'pathIgnoreRules'?: string[];
|
|
4456
|
+
/** If `true`, the functionality of `pathIgnoreRules` will be inverted. A commit will only be built if a file has been changed that matches one or more of the rules in `pathIgnoreRules`. */
|
|
4457
|
+
'isAllowList'?: boolean;
|
|
4458
|
+
/** If `true`, enables commit ignore flags. If a commit message contains one or more of the flags in `ciIgnoreFlags`, that commit will not be built. */
|
|
4459
|
+
'ciIgnoreFlagsEnabled'?: boolean;
|
|
4460
|
+
/** 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]"] */
|
|
4461
|
+
'ciIgnoreFlags'?: string[];
|
|
4462
|
+
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
4463
|
+
'dockerfileTarget'?: string;
|
|
4464
|
+
/** Include .git folder inside the build context */
|
|
4465
|
+
'includeGitFolder'?: boolean;
|
|
4466
|
+
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
4467
|
+
'fullGitClone'?: boolean;
|
|
4115
4468
|
};
|
|
4116
|
-
|
|
4117
|
-
|
|
4118
|
-
|
|
4119
|
-
|
|
4120
|
-
/** The
|
|
4121
|
-
'
|
|
4122
|
-
/**
|
|
4123
|
-
'
|
|
4469
|
+
'buildSettings'?: {
|
|
4470
|
+
'dockerfile': {
|
|
4471
|
+
/** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
|
|
4472
|
+
'buildEngine'?: 'kaniko' | 'buildkit';
|
|
4473
|
+
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
4474
|
+
'dockerFilePath': string;
|
|
4475
|
+
/** The working directory of the Dockerfile. Example: "/" */
|
|
4476
|
+
'dockerWorkDir': string;
|
|
4477
|
+
/** Should intermediate image layers be cached? */
|
|
4478
|
+
'useCache'?: boolean;
|
|
4479
|
+
};
|
|
4480
|
+
} | {
|
|
4481
|
+
'buildpack': {
|
|
4482
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
|
|
4483
|
+
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
4484
|
+
/** Array of custom Buildpacks to use. */
|
|
4485
|
+
'buildpackLocators'?: string[];
|
|
4486
|
+
/** The working directory to build in. Example: "/" */
|
|
4487
|
+
'buildContext'?: string;
|
|
4488
|
+
/** Should build dependencies be cached? */
|
|
4489
|
+
'useCache'?: boolean;
|
|
4124
4490
|
};
|
|
4125
|
-
/** The number of attempts to rerun a job before it is marked as failed. */
|
|
4126
|
-
'backoffLimit': number;
|
|
4127
|
-
/** The maximum amount of time, in seconds, for a job to run before it is marked as failed. Example: 600 */
|
|
4128
|
-
'activeDeadlineSeconds': number;
|
|
4129
4491
|
};
|
|
4492
|
+
/** 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"} */
|
|
4493
|
+
'runtimeEnvironment'?: any;
|
|
4494
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
4495
|
+
'runtimeFiles'?: any;
|
|
4496
|
+
/** An object containing the build arguments to set for the job. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"variable1":"abcdef","variable2":"12345"} */
|
|
4497
|
+
'buildArguments'?: any;
|
|
4498
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
4499
|
+
'buildFiles'?: any;
|
|
4500
|
+
/** An array of health checks. */
|
|
4501
|
+
'healthChecks'?: {
|
|
4502
|
+
/** The protocol to access the health check with. Example: "HTTP" */
|
|
4503
|
+
'protocol': 'HTTP' | 'CMD' | 'TCP';
|
|
4504
|
+
/** The type of health check. Example: "readinessProbe" */
|
|
4505
|
+
'type': 'livenessProbe' | 'readinessProbe' | 'startupProbe';
|
|
4506
|
+
/** The path of the health check endpoint. Required when protocol is HTTP. Example: "/health-check" */
|
|
4507
|
+
'path'?: string;
|
|
4508
|
+
/** The command to run for the health check. Required when protocol is CMD */
|
|
4509
|
+
'cmd'?: string;
|
|
4510
|
+
/** Port number for the health check endpoint. Required when protocol is HTTP. Example: 8080 */
|
|
4511
|
+
'port'?: number;
|
|
4512
|
+
/** Initial delay, in seconds, before the health check is first run. Example: 10 */
|
|
4513
|
+
'initialDelaySeconds': number;
|
|
4514
|
+
/** The time between each check, in seconds. Example: 60 */
|
|
4515
|
+
'periodSeconds': number;
|
|
4516
|
+
/** The time to wait for a response before marking the health check as a failure. Example: 1 */
|
|
4517
|
+
'timeoutSeconds': number;
|
|
4518
|
+
/** The maximum number of allowed failures. Example: 3 */
|
|
4519
|
+
'failureThreshold': number;
|
|
4520
|
+
/** The number of successes required to mark the health check as a success. Example: 1 */
|
|
4521
|
+
'successThreshold'?: number;
|
|
4522
|
+
}[];
|
|
4523
|
+
/** The cron timer scheduling when to run the job. Example: "30 8 * * *" */
|
|
4524
|
+
'schedule': string;
|
|
4525
|
+
/** Whether the cron's automatic scheduling is suspended */
|
|
4526
|
+
'suspended'?: boolean;
|
|
4527
|
+
/** Whether this job should run when another instance of the job is already running. `allow` will enable multiple instances of this job to run. `forbid` will keep the current instance of the job running and stop a new instance from being run. `replace` will terminate any currently running instance of the job and start a new one. Example: "forbid" */
|
|
4528
|
+
'concurrencyPolicy': 'allow' | 'forbid' | 'replace';
|
|
4130
4529
|
/** Type of the job (manual or cron) Example: "cron" */
|
|
4131
|
-
'jobType': '
|
|
4132
|
-
/**
|
|
4133
|
-
'
|
|
4530
|
+
'jobType': 'cron';
|
|
4531
|
+
/** Identifier for the job Example: "example-job" */
|
|
4532
|
+
'id': string;
|
|
4533
|
+
/** Full identifier used for job deployment Example: "/example-user/default-project/example-job" */
|
|
4534
|
+
'appId': string;
|
|
4535
|
+
/** Details about the current job status. */
|
|
4536
|
+
'status': {
|
|
4537
|
+
/** Details about the status of the most recent build. */
|
|
4538
|
+
'build'?: {
|
|
4539
|
+
/** The current status of the build. Example: "SUCCESS" */
|
|
4540
|
+
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
4541
|
+
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
4542
|
+
'lastTransitionTime'?: string;
|
|
4543
|
+
};
|
|
4544
|
+
};
|
|
4545
|
+
/** time of creation */
|
|
4546
|
+
'createdAt'?: string;
|
|
4547
|
+
/** time of update */
|
|
4548
|
+
'updatedAt'?: string;
|
|
4134
4549
|
};
|
|
4135
4550
|
type CreateJobCronCall = (opts: CreateJobCronRequest) => Promise<ApiCallResponse<CreateJobCronResult>>;
|
|
4136
4551
|
type CreateJobCronRequest = {
|
|
@@ -4268,6 +4683,8 @@ type CreateJobCronData = {
|
|
|
4268
4683
|
'buildId'?: string;
|
|
4269
4684
|
};
|
|
4270
4685
|
} | any;
|
|
4686
|
+
/** Whether CI should be disabled. Only relevant for jobs deploying directly from version control. */
|
|
4687
|
+
'disabledCI'?: boolean;
|
|
4271
4688
|
'buildConfiguration'?: {
|
|
4272
4689
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
4273
4690
|
'pathIgnoreRules'?: string[];
|
|
@@ -4340,6 +4757,8 @@ type CreateJobCronData = {
|
|
|
4340
4757
|
}[];
|
|
4341
4758
|
/** The cron timer scheduling when to run the job. Example: "30 8 * * *" */
|
|
4342
4759
|
'schedule': string;
|
|
4760
|
+
/** Whether the cron's automatic scheduling is suspended */
|
|
4761
|
+
'suspended'?: boolean;
|
|
4343
4762
|
/** Whether this job should run when another instance of the job is already running. `allow` will enable multiple instances of this job to run. `forbid` will keep the current instance of the job running and stop a new instance from being run. `replace` will terminate any currently running instance of the job and start a new one. Example: "forbid" */
|
|
4344
4763
|
'concurrencyPolicy': 'allow' | 'forbid' | 'replace';
|
|
4345
4764
|
};
|
|
@@ -4425,6 +4844,8 @@ type PutJobCronResult = {
|
|
|
4425
4844
|
'buildId'?: string;
|
|
4426
4845
|
};
|
|
4427
4846
|
};
|
|
4847
|
+
/** Whether CI should be disabled. Only relevant for jobs deploying directly from version control. */
|
|
4848
|
+
'disabledCI'?: boolean;
|
|
4428
4849
|
'buildConfiguration'?: {
|
|
4429
4850
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
4430
4851
|
'pathIgnoreRules'?: string[];
|
|
@@ -4497,6 +4918,8 @@ type PutJobCronResult = {
|
|
|
4497
4918
|
}[];
|
|
4498
4919
|
/** The cron timer scheduling when to run the job. Example: "30 8 * * *" */
|
|
4499
4920
|
'schedule': string;
|
|
4921
|
+
/** Whether the cron's automatic scheduling is suspended */
|
|
4922
|
+
'suspended'?: boolean;
|
|
4500
4923
|
/** Whether this job should run when another instance of the job is already running. `allow` will enable multiple instances of this job to run. `forbid` will keep the current instance of the job running and stop a new instance from being run. `replace` will terminate any currently running instance of the job and start a new one. Example: "forbid" */
|
|
4501
4924
|
'concurrencyPolicy': 'allow' | 'forbid' | 'replace';
|
|
4502
4925
|
/** Type of the job (manual or cron) Example: "cron" */
|
|
@@ -4510,7 +4933,7 @@ type PutJobCronResult = {
|
|
|
4510
4933
|
/** Details about the status of the most recent build. */
|
|
4511
4934
|
'build'?: {
|
|
4512
4935
|
/** The current status of the build. Example: "SUCCESS" */
|
|
4513
|
-
'status': 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
4936
|
+
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
4514
4937
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
4515
4938
|
'lastTransitionTime'?: string;
|
|
4516
4939
|
};
|
|
@@ -4656,6 +5079,8 @@ type PutJobCronData = {
|
|
|
4656
5079
|
'buildId'?: string;
|
|
4657
5080
|
};
|
|
4658
5081
|
} | any;
|
|
5082
|
+
/** Whether CI should be disabled. Only relevant for jobs deploying directly from version control. */
|
|
5083
|
+
'disabledCI'?: boolean;
|
|
4659
5084
|
'buildConfiguration'?: {
|
|
4660
5085
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
4661
5086
|
'pathIgnoreRules'?: string[];
|
|
@@ -4728,6 +5153,8 @@ type PutJobCronData = {
|
|
|
4728
5153
|
}[];
|
|
4729
5154
|
/** The cron timer scheduling when to run the job. Example: "30 8 * * *" */
|
|
4730
5155
|
'schedule': string;
|
|
5156
|
+
/** Whether the cron's automatic scheduling is suspended */
|
|
5157
|
+
'suspended'?: boolean;
|
|
4731
5158
|
/** Whether this job should run when another instance of the job is already running. `allow` will enable multiple instances of this job to run. `forbid` will keep the current instance of the job running and stop a new instance from being run. `replace` will terminate any currently running instance of the job and start a new one. Example: "forbid" */
|
|
4732
5159
|
'concurrencyPolicy': 'allow' | 'forbid' | 'replace';
|
|
4733
5160
|
};
|
|
@@ -4813,6 +5240,8 @@ type PatchJobCronResult = {
|
|
|
4813
5240
|
'buildId'?: string;
|
|
4814
5241
|
};
|
|
4815
5242
|
};
|
|
5243
|
+
/** Whether CI should be disabled. Only relevant for jobs deploying directly from version control. */
|
|
5244
|
+
'disabledCI'?: boolean;
|
|
4816
5245
|
'buildConfiguration'?: {
|
|
4817
5246
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
4818
5247
|
'pathIgnoreRules'?: string[];
|
|
@@ -4885,6 +5314,8 @@ type PatchJobCronResult = {
|
|
|
4885
5314
|
}[];
|
|
4886
5315
|
/** The cron timer scheduling when to run the job. Example: "30 8 * * *" */
|
|
4887
5316
|
'schedule': string;
|
|
5317
|
+
/** Whether the cron's automatic scheduling is suspended */
|
|
5318
|
+
'suspended'?: boolean;
|
|
4888
5319
|
/** Whether this job should run when another instance of the job is already running. `allow` will enable multiple instances of this job to run. `forbid` will keep the current instance of the job running and stop a new instance from being run. `replace` will terminate any currently running instance of the job and start a new one. Example: "forbid" */
|
|
4889
5320
|
'concurrencyPolicy': 'allow' | 'forbid' | 'replace';
|
|
4890
5321
|
/** Type of the job (manual or cron) Example: "cron" */
|
|
@@ -4898,7 +5329,7 @@ type PatchJobCronResult = {
|
|
|
4898
5329
|
/** Details about the status of the most recent build. */
|
|
4899
5330
|
'build'?: {
|
|
4900
5331
|
/** The current status of the build. Example: "SUCCESS" */
|
|
4901
|
-
'status': 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
5332
|
+
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
4902
5333
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
4903
5334
|
'lastTransitionTime'?: string;
|
|
4904
5335
|
};
|
|
@@ -4933,6 +5364,8 @@ type PatchJobCronData = {
|
|
|
4933
5364
|
'runOnSourceChange'?: 'never' | 'cd-promote' | 'always';
|
|
4934
5365
|
/** The maximum amount of time, in seconds, for a job to run before it is marked as failed. Example: 600 */
|
|
4935
5366
|
'activeDeadlineSeconds'?: number;
|
|
5367
|
+
/** Whether CI should be disabled. Only relevant for jobs deploying directly from version control. */
|
|
5368
|
+
'disabledCI'?: boolean;
|
|
4936
5369
|
'buildConfiguration'?: {
|
|
4937
5370
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
4938
5371
|
'pathIgnoreRules'?: string[];
|
|
@@ -4996,6 +5429,8 @@ type PatchJobCronData = {
|
|
|
4996
5429
|
/** The number of successes required to mark the health check as a success. Example: 1 */
|
|
4997
5430
|
'successThreshold'?: number;
|
|
4998
5431
|
}[];
|
|
5432
|
+
/** Whether the cron's automatic scheduling is suspended */
|
|
5433
|
+
'suspended'?: boolean;
|
|
4999
5434
|
/** Whether this job should run when another instance of the job is already running. `allow` will enable multiple instances of this job to run. `forbid` will keep the current instance of the job running and stop a new instance from being run. `replace` will terminate any currently running instance of the job and start a new one. Example: "forbid" */
|
|
5000
5435
|
'concurrencyPolicy'?: 'allow' | 'forbid' | 'replace';
|
|
5001
5436
|
};
|
|
@@ -5466,7 +5901,7 @@ type GetJobBuildsResult = {
|
|
|
5466
5901
|
/** ID of the pull request the commit belongs to. */
|
|
5467
5902
|
'pullRequestId'?: number;
|
|
5468
5903
|
/** The status of the build. Example: "SUCCESS" */
|
|
5469
|
-
'status'?: 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
5904
|
+
'status'?: 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
5470
5905
|
/** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
|
|
5471
5906
|
'sha'?: string;
|
|
5472
5907
|
/** Whether the build has finished. Example: true */
|
|
@@ -5563,7 +5998,7 @@ type GetJobBuildResult = {
|
|
|
5563
5998
|
/** ID of the pull request the commit belongs to. */
|
|
5564
5999
|
'pullRequestId'?: number;
|
|
5565
6000
|
/** The status of the build. Example: "SUCCESS" */
|
|
5566
|
-
'status'?: 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
6001
|
+
'status'?: 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
5567
6002
|
/** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
|
|
5568
6003
|
'sha'?: string;
|
|
5569
6004
|
/** Whether the build has finished. Example: true */
|
|
@@ -7568,11 +8003,15 @@ type GetReleaseflowResult = {
|
|
|
7568
8003
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
7569
8004
|
'arguments'?: any;
|
|
7570
8005
|
'spec': any;
|
|
8006
|
+
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
8007
|
+
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
7571
8008
|
/** The stage of the pipeline this release flow belongs to. Example: "Development" */
|
|
7572
8009
|
'stage'?: string;
|
|
7573
|
-
/**
|
|
8010
|
+
/** Status of the template run Example: "success" */
|
|
8011
|
+
'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
|
|
8012
|
+
/** Timestamp the template was created at. Example: "2021-01-01 12:00:00.000Z" */
|
|
7574
8013
|
'createdAt': string;
|
|
7575
|
-
/**
|
|
8014
|
+
/** Timestamp the template was last updated at. Example: "2021-01-01 12:00:00.000Z" */
|
|
7576
8015
|
'updatedAt': string;
|
|
7577
8016
|
};
|
|
7578
8017
|
type GetReleaseflowCall = (opts: GetReleaseflowRequest) => Promise<ApiCallResponse<GetReleaseflowResult>>;
|
|
@@ -7616,6 +8055,8 @@ type UpdateReleaseflowData = {
|
|
|
7616
8055
|
'arguments'?: any;
|
|
7617
8056
|
'spec': any;
|
|
7618
8057
|
};
|
|
8058
|
+
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
8059
|
+
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
7619
8060
|
};
|
|
7620
8061
|
/** Updates a release flow */
|
|
7621
8062
|
declare class UpdateReleaseflowEndpoint extends PostApiEndpoint<UpdateReleaseflowRequest, UpdateReleaseflowResult> {
|
|
@@ -7669,11 +8110,17 @@ type ListReleaseflowrunsResult = {
|
|
|
7669
8110
|
'name'?: string;
|
|
7670
8111
|
/** Optional description for the release flow run Example: "This is an example description" */
|
|
7671
8112
|
'description'?: string;
|
|
7672
|
-
/** Status of the
|
|
7673
|
-
'status': 'pending' | 'running' | 'success' | 'failure';
|
|
7674
|
-
/**
|
|
8113
|
+
/** Status of the template run Example: "success" */
|
|
8114
|
+
'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
|
|
8115
|
+
/** Timestamp the run started at. Example: "2021-01-01 12:01:00.000Z" */
|
|
8116
|
+
'startedAt'?: string;
|
|
8117
|
+
/** Whether the run has concluded (aborted, success, failed) Example: true */
|
|
8118
|
+
'concluded': boolean;
|
|
8119
|
+
/** Timestamp the run concluded at. Example: "2021-01-01 12:10:00.000Z" */
|
|
8120
|
+
'concludedAt'?: string;
|
|
8121
|
+
/** Timestamp the run was created at. Example: "2021-01-01 12:00:00.000Z" */
|
|
7675
8122
|
'createdAt': string;
|
|
7676
|
-
/**
|
|
8123
|
+
/** Timestamp the run was last updated at. Example: "2021-01-01 12:00:00.000Z" */
|
|
7677
8124
|
'updatedAt': string;
|
|
7678
8125
|
}[];
|
|
7679
8126
|
};
|
|
@@ -7719,11 +8166,17 @@ type GetReleaseflowrunResult = {
|
|
|
7719
8166
|
'name'?: string;
|
|
7720
8167
|
/** Optional description for the release flow run Example: "This is an example description" */
|
|
7721
8168
|
'description'?: string;
|
|
7722
|
-
/** Status of the
|
|
7723
|
-
'status': 'pending' | 'running' | 'success' | 'failure';
|
|
7724
|
-
/**
|
|
8169
|
+
/** Status of the template run Example: "success" */
|
|
8170
|
+
'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
|
|
8171
|
+
/** Timestamp the run started at. Example: "2021-01-01 12:01:00.000Z" */
|
|
8172
|
+
'startedAt'?: string;
|
|
8173
|
+
/** Whether the run has concluded (aborted, success, failed) Example: true */
|
|
8174
|
+
'concluded': boolean;
|
|
8175
|
+
/** Timestamp the run concluded at. Example: "2021-01-01 12:10:00.000Z" */
|
|
8176
|
+
'concludedAt'?: string;
|
|
8177
|
+
/** Timestamp the run was created at. Example: "2021-01-01 12:00:00.000Z" */
|
|
7725
8178
|
'createdAt': string;
|
|
7726
|
-
/**
|
|
8179
|
+
/** Timestamp the run was last updated at. Example: "2021-01-01 12:00:00.000Z" */
|
|
7727
8180
|
'updatedAt': string;
|
|
7728
8181
|
};
|
|
7729
8182
|
type GetReleaseflowrunCall = (opts: GetReleaseflowrunRequest) => Promise<ApiCallResponse<GetReleaseflowrunResult>>;
|
|
@@ -7739,7 +8192,7 @@ type GetReleaseflowrunParameters = {
|
|
|
7739
8192
|
/** ID of the release flow run */
|
|
7740
8193
|
'runId': string;
|
|
7741
8194
|
};
|
|
7742
|
-
/** Get
|
|
8195
|
+
/** Get information about the given release flow run */
|
|
7743
8196
|
declare class GetReleaseflowrunEndpoint extends GetApiEndpoint<GetReleaseflowrunRequest, GetReleaseflowrunResult> {
|
|
7744
8197
|
description: string;
|
|
7745
8198
|
withAuth: boolean;
|
|
@@ -7748,6 +8201,54 @@ declare class GetReleaseflowrunEndpoint extends GetApiEndpoint<GetReleaseflowrun
|
|
|
7748
8201
|
body: () => undefined;
|
|
7749
8202
|
}
|
|
7750
8203
|
|
|
8204
|
+
type AbortReleaseflowrunResult = {
|
|
8205
|
+
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
8206
|
+
'apiVersion': 'v1';
|
|
8207
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
8208
|
+
'arguments'?: any;
|
|
8209
|
+
'spec': any;
|
|
8210
|
+
'refs'?: any;
|
|
8211
|
+
/** ID of the release flow run Example: "110ddb52-bdcd-482d-8ac2-05ba580afe2f" */
|
|
8212
|
+
'id': string;
|
|
8213
|
+
/** Optional name for the release flow run Example: "Example run" */
|
|
8214
|
+
'name'?: string;
|
|
8215
|
+
/** Optional description for the release flow run Example: "This is an example description" */
|
|
8216
|
+
'description'?: string;
|
|
8217
|
+
/** Status of the template run Example: "success" */
|
|
8218
|
+
'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
|
|
8219
|
+
/** Timestamp the run started at. Example: "2021-01-01 12:01:00.000Z" */
|
|
8220
|
+
'startedAt'?: string;
|
|
8221
|
+
/** Whether the run has concluded (aborted, success, failed) Example: true */
|
|
8222
|
+
'concluded': boolean;
|
|
8223
|
+
/** Timestamp the run concluded at. Example: "2021-01-01 12:10:00.000Z" */
|
|
8224
|
+
'concludedAt'?: string;
|
|
8225
|
+
/** Timestamp the run was created at. Example: "2021-01-01 12:00:00.000Z" */
|
|
8226
|
+
'createdAt': string;
|
|
8227
|
+
/** Timestamp the run was last updated at. Example: "2021-01-01 12:00:00.000Z" */
|
|
8228
|
+
'updatedAt': string;
|
|
8229
|
+
};
|
|
8230
|
+
type AbortReleaseflowrunCall = (opts: AbortReleaseflowrunRequest) => Promise<ApiCallResponse<AbortReleaseflowrunResult>>;
|
|
8231
|
+
type AbortReleaseflowrunRequest = {
|
|
8232
|
+
parameters: AbortReleaseflowrunParameters;
|
|
8233
|
+
};
|
|
8234
|
+
type AbortReleaseflowrunParameters = {
|
|
8235
|
+
/** ID of the project */ 'projectId': string;
|
|
8236
|
+
/** ID of the pipeline */
|
|
8237
|
+
'pipelineId': string;
|
|
8238
|
+
/** Stage of the pipeline */
|
|
8239
|
+
'stage': string;
|
|
8240
|
+
/** ID of the release flow run */
|
|
8241
|
+
'runId': string;
|
|
8242
|
+
};
|
|
8243
|
+
/** Abort the given release flow run */
|
|
8244
|
+
declare class AbortReleaseflowrunEndpoint extends PostApiEndpoint<AbortReleaseflowrunRequest, AbortReleaseflowrunResult> {
|
|
8245
|
+
description: string;
|
|
8246
|
+
withAuth: boolean;
|
|
8247
|
+
requiredPermissions: string;
|
|
8248
|
+
endpointUrl: (opts: AbortReleaseflowrunRequest) => string;
|
|
8249
|
+
body: () => undefined;
|
|
8250
|
+
}
|
|
8251
|
+
|
|
7751
8252
|
type ListSecretsResult = {
|
|
7752
8253
|
/** An array of secret groups */
|
|
7753
8254
|
'secrets': {
|
|
@@ -7803,20 +8304,18 @@ declare class ListSecretsEndpoint extends GetApiEndpoint<ListSecretsRequest, Lis
|
|
|
7803
8304
|
}
|
|
7804
8305
|
|
|
7805
8306
|
type CreateSecretResult = {
|
|
7806
|
-
/**
|
|
7807
|
-
'id': string;
|
|
7808
|
-
/** Secret group name Example: "Example secret group" */
|
|
8307
|
+
/** The name of the secret. Example: "Example Secret" */
|
|
7809
8308
|
'name': string;
|
|
7810
|
-
/** A
|
|
8309
|
+
/** A description of the secret. Example: "A description" */
|
|
7811
8310
|
'description'?: string;
|
|
7812
|
-
/**
|
|
8311
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
8312
|
+
'tags'?: string[];
|
|
8313
|
+
/** The type of the created secret Example: "environment" */
|
|
7813
8314
|
'secretType': 'environment-arguments' | 'environment' | 'arguments';
|
|
7814
|
-
/**
|
|
7815
|
-
'projectId': string;
|
|
7816
|
-
/** The priority with which different secret groups will be merged Example: 10 */
|
|
8315
|
+
/** The priority with which different secrets will be merged. Example: 10 */
|
|
7817
8316
|
'priority': number;
|
|
7818
8317
|
/** Restriction settings of the secret */
|
|
7819
|
-
'restrictions'
|
|
8318
|
+
'restrictions'?: {
|
|
7820
8319
|
/** Is the secret restricted Example: true */
|
|
7821
8320
|
'restricted'?: boolean;
|
|
7822
8321
|
/** List of Northflank services & jobs the secret is restricted to */
|
|
@@ -7827,6 +8326,30 @@ type CreateSecretResult = {
|
|
|
7827
8326
|
'type': 'service' | 'job';
|
|
7828
8327
|
}[];
|
|
7829
8328
|
};
|
|
8329
|
+
/** An array of addons to link to this secret group. */
|
|
8330
|
+
'addonDependencies'?: {
|
|
8331
|
+
/** The id of the addon to link. Example: "example-addon" */
|
|
8332
|
+
'addonId': string;
|
|
8333
|
+
/** An array of objects containing details about the keys to link to this secret group. */
|
|
8334
|
+
'keys': {
|
|
8335
|
+
/** The name of the key to link. Example: "USERNAME" */
|
|
8336
|
+
'keyName': string;
|
|
8337
|
+
/** An array of aliases for the key. */
|
|
8338
|
+
'aliases'?: string[];
|
|
8339
|
+
}[];
|
|
8340
|
+
}[];
|
|
8341
|
+
'secrets'?: {
|
|
8342
|
+
/** Secret variables as JSON object, encrypted at rest. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"NODE_ENV":"production","MONGO_DB":"some_connection_string"} */
|
|
8343
|
+
'variables'?: any;
|
|
8344
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
8345
|
+
'files'?: any;
|
|
8346
|
+
};
|
|
8347
|
+
/** Identifier for the secret group Example: "example-secret-group" */
|
|
8348
|
+
'id': string;
|
|
8349
|
+
/** time of creation */
|
|
8350
|
+
'createdAt'?: string;
|
|
8351
|
+
/** time of update */
|
|
8352
|
+
'updatedAt'?: string;
|
|
7830
8353
|
} | any;
|
|
7831
8354
|
type CreateSecretCall = (opts: CreateSecretRequest) => Promise<ApiCallResponse<CreateSecretResult>>;
|
|
7832
8355
|
type CreateSecretRequest = {
|
|
@@ -8401,114 +8924,120 @@ declare class DeleteSecretlinkEndpoint extends DeleteApiEndpoint<DeleteSecretlin
|
|
|
8401
8924
|
}
|
|
8402
8925
|
|
|
8403
8926
|
type CreateServiceCombinedResult = {
|
|
8404
|
-
/**
|
|
8405
|
-
'id': string;
|
|
8406
|
-
/** Full identifier used for service deployment Example: "/example-user/default-project/example-service" */
|
|
8407
|
-
'appId': string;
|
|
8408
|
-
/** Service name Example: "Example Service" */
|
|
8927
|
+
/** The name of the service. Example: "Example Service" */
|
|
8409
8928
|
'name': string;
|
|
8410
|
-
/** A
|
|
8929
|
+
/** A description of the service. Example: "A service description" */
|
|
8411
8930
|
'description'?: string;
|
|
8412
|
-
/**
|
|
8413
|
-
'
|
|
8414
|
-
/** The time the service was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
8415
|
-
'createdAt': string;
|
|
8416
|
-
/** Whether Continuous Integration is disabled */
|
|
8417
|
-
'disabledCI': boolean;
|
|
8418
|
-
/** Whether Continuous Deployment is disabled */
|
|
8419
|
-
'disabledCD': boolean;
|
|
8931
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
8932
|
+
'tags'?: string[];
|
|
8420
8933
|
'billing': {
|
|
8421
|
-
/** ID of the
|
|
8934
|
+
/** The ID of the deployment plan to use. Example: "nf-compute-20" */
|
|
8422
8935
|
'deploymentPlan': string;
|
|
8423
8936
|
};
|
|
8424
|
-
|
|
8425
|
-
|
|
8426
|
-
|
|
8427
|
-
|
|
8428
|
-
/** The current status of the build. Example: "SUCCESS" */
|
|
8429
|
-
'status': 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
8430
|
-
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
8431
|
-
'lastTransitionTime'?: string;
|
|
8432
|
-
};
|
|
8433
|
-
/** Details about the current deployment status. */
|
|
8434
|
-
'deployment'?: {
|
|
8435
|
-
/** The current status of the deployment. Example: "COMPLETED" */
|
|
8436
|
-
'status': 'PENDING' | 'IN_PROGRESS' | 'COMPLETED' | 'FAILED';
|
|
8437
|
-
/** The reason the current deployment was started. Example: "DEPLOYING" */
|
|
8438
|
-
'reason': 'SCALING' | 'DEPLOYING';
|
|
8439
|
-
/** The timestamp of when the deployment reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
8440
|
-
'lastTransitionTime'?: string;
|
|
8441
|
-
};
|
|
8442
|
-
};
|
|
8443
|
-
/** Is the service paused? */
|
|
8444
|
-
'servicePaused': boolean;
|
|
8445
|
-
/** Type of the service (combined, build or deployment) Example: "combined" */
|
|
8446
|
-
'serviceType': 'combined' | 'build' | 'deployment';
|
|
8447
|
-
'vcsData'?: {
|
|
8448
|
-
/** URL of the repository being built Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
8449
|
-
'projectUrl': string;
|
|
8450
|
-
/** VCS provider for the repo being built Example: "github" */
|
|
8451
|
-
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
8452
|
-
/** ID of the self-hosted VCS, if applicable. Example: "example-team/self-hosted-vcs" */
|
|
8453
|
-
'selfHostedVcsId'?: string;
|
|
8454
|
-
/** Branch of the repo being built Example: "master" */
|
|
8455
|
-
'projectBranch'?: string;
|
|
8456
|
-
/** Whether the repo is being accessed without authentication. */
|
|
8457
|
-
'publicRepo'?: boolean;
|
|
8458
|
-
/** Working directory used by the dockerfile Example: "/" */
|
|
8459
|
-
'dockerWorkDir': string;
|
|
8460
|
-
/** File path of the Dockerfile Example: "/Dockerfile" */
|
|
8461
|
-
'dockerFilePath': string;
|
|
8462
|
-
};
|
|
8463
|
-
'deployment'?: {
|
|
8464
|
-
/** Region where this service is deployed and/or built Example: "europe-west" */
|
|
8465
|
-
'region'?: string;
|
|
8466
|
-
/** Number of instances/replicas running Example: 1 */
|
|
8467
|
-
'instances'?: number;
|
|
8468
|
-
'internal'?: {
|
|
8469
|
-
/** Database ID of deployed entity Example: "example-service" */
|
|
8470
|
-
'nfObjectId': string;
|
|
8471
|
-
/** Type of deployed entity Example: "service" */
|
|
8472
|
-
'nfObjectType': 'service';
|
|
8473
|
-
/** URL of the repository being deployed Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
8474
|
-
'repository': string;
|
|
8475
|
-
/** Branch of the repo being deployed Example: "master" */
|
|
8476
|
-
'branch': string;
|
|
8477
|
-
/** Commit SHA to be deployed. `latest` means the latest commit is automatically being deployed. Example: "latest" */
|
|
8478
|
-
'buildSHA': string;
|
|
8479
|
-
/** Currently deployed commit SHA. If buildSHA is set to `latest`, this will show the SHA of the latest commit. Example: "262ed9817b3cad5142fbceabe0c9e371e390d616" */
|
|
8480
|
-
'deployedSHA'?: string;
|
|
8481
|
-
};
|
|
8482
|
-
/** Details about the Docker overrides for this deployment. */
|
|
8483
|
-
'docker'?: {
|
|
8484
|
-
/** Override configuration which is used at runtime. Example: "default" */
|
|
8485
|
-
'configType': 'default' | 'customEntrypoint' | 'customCommand' | 'customEntrypointCustomCommand';
|
|
8486
|
-
/** The CMD to run instead of the default if entrypoint override is enabled. */
|
|
8487
|
-
'customEntrypoint'?: string;
|
|
8488
|
-
/** The CMD to run instead of the default if CMD override is enabled. */
|
|
8489
|
-
'customCommand'?: string;
|
|
8490
|
-
};
|
|
8491
|
-
/** Details about the Buildpack overrides for this deployment. */
|
|
8937
|
+
'deployment': {
|
|
8938
|
+
/** The number of instances to run the service on. Example: 1 */
|
|
8939
|
+
'instances': number;
|
|
8940
|
+
/** Allows for customization of buildpack runtime */
|
|
8492
8941
|
'buildpack'?: {
|
|
8493
|
-
/** Type of buildpack run configuration
|
|
8942
|
+
/** Type of buildpack run configuration */
|
|
8494
8943
|
'configType': 'default' | 'customProcess' | 'customCommand' | 'customEntrypointCustomCommand' | 'originalEntrypointCustomCommand';
|
|
8495
|
-
/** Custom process which should be run. */
|
|
8944
|
+
/** Custom process which should be run. Required in case where `configType` is `customProcess` */
|
|
8496
8945
|
'customProcess'?: string;
|
|
8497
|
-
/** Custom entrypoint which should be run. */
|
|
8946
|
+
/** Custom entrypoint which should be run. Required in case where `configType` is `customEntrypointCustomCommand` */
|
|
8498
8947
|
'customEntrypoint'?: string;
|
|
8499
|
-
/** Custom command which should be run. */
|
|
8948
|
+
/** Custom command which should be run. Required in case where `configType` is `customCommand`, `customEntrypointCustomCommand` or `originalEntrypointCustomCommand` */
|
|
8949
|
+
'customCommand'?: string;
|
|
8950
|
+
};
|
|
8951
|
+
/** Allows for customization of docker runtime */
|
|
8952
|
+
'docker'?: {
|
|
8953
|
+
/** Type of entrypoint & command override configuration Example: "default" */
|
|
8954
|
+
'configType': 'default' | 'customEntrypoint' | 'customCommand' | 'customEntrypointCustomCommand';
|
|
8955
|
+
/** Custom entrypoint which should be used. Required in case where `configType` is `customEntrypoint` or `customEntrypointCustomCommand` */
|
|
8956
|
+
'customEntrypoint'?: string;
|
|
8957
|
+
/** Custom command which should be used. Required in case where `configType` is `customCommand` or `customEntrypointCustomCommand` */
|
|
8500
8958
|
'customCommand'?: string;
|
|
8501
8959
|
};
|
|
8502
|
-
/** Details about storage settings for this deployment. */
|
|
8503
8960
|
'storage'?: {
|
|
8504
|
-
/** Details about ephemeral storage settings for this deployment. */
|
|
8505
8961
|
'ephemeralStorage'?: {
|
|
8506
8962
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
8507
|
-
'storageSize'
|
|
8963
|
+
'storageSize'?: number;
|
|
8508
8964
|
};
|
|
8509
8965
|
};
|
|
8966
|
+
'strategy'?: {
|
|
8967
|
+
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
8968
|
+
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
8969
|
+
};
|
|
8970
|
+
};
|
|
8971
|
+
'ports'?: {
|
|
8972
|
+
/** The name used to identify the port. Example: "port-1" */
|
|
8973
|
+
'name': string;
|
|
8974
|
+
/** The port number. Example: 8080 */
|
|
8975
|
+
'internalPort': number;
|
|
8976
|
+
/** If true, the port will be exposed publicly. Example: true */
|
|
8977
|
+
'public'?: boolean;
|
|
8978
|
+
'security'?: {
|
|
8979
|
+
/** An array of credentials to access the service. */
|
|
8980
|
+
'credentials'?: {
|
|
8981
|
+
/** The username to access the service Example: "admin" */
|
|
8982
|
+
'username': string;
|
|
8983
|
+
/** The password to access the service with this username. Example: "password123" */
|
|
8984
|
+
'password': string;
|
|
8985
|
+
/** The type of authentication used Example: "basic-auth" */
|
|
8986
|
+
'type': 'basic-auth';
|
|
8987
|
+
}[];
|
|
8988
|
+
/** An array of IP address policies. */
|
|
8989
|
+
'policies'?: {
|
|
8990
|
+
/** An array of IP addresses used for this rule */
|
|
8991
|
+
'addresses': string[];
|
|
8992
|
+
/** The action for this rule. Example: "DENY" */
|
|
8993
|
+
'action': 'ALLOW' | 'DENY';
|
|
8994
|
+
}[];
|
|
8995
|
+
};
|
|
8996
|
+
/** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
|
|
8997
|
+
'domains'?: string[];
|
|
8998
|
+
/** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
|
|
8999
|
+
'disableNfDomain'?: boolean;
|
|
9000
|
+
/** The protocol to use for the port. Example: "HTTP" */
|
|
9001
|
+
'protocol': 'HTTP' | 'HTTP/2' | 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
|
|
9002
|
+
}[];
|
|
9003
|
+
/** Whether CI (continuous integration) should be disabled. */
|
|
9004
|
+
'disabledCI'?: boolean;
|
|
9005
|
+
'vcsData': {
|
|
9006
|
+
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
9007
|
+
'projectUrl': string;
|
|
9008
|
+
/** The VCS provider to use. Example: "github" */
|
|
9009
|
+
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
9010
|
+
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
9011
|
+
'selfHostedVcsId'?: string;
|
|
9012
|
+
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
|
|
9013
|
+
'accountLogin'?: string;
|
|
9014
|
+
/** The name of the branch to use. Example: "master" */
|
|
9015
|
+
'projectBranch': string;
|
|
9016
|
+
};
|
|
9017
|
+
'buildSettings': {
|
|
9018
|
+
'dockerfile': {
|
|
9019
|
+
/** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
|
|
9020
|
+
'buildEngine'?: 'kaniko' | 'buildkit';
|
|
9021
|
+
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
9022
|
+
'dockerFilePath': string;
|
|
9023
|
+
/** The working directory of the Dockerfile. Example: "/" */
|
|
9024
|
+
'dockerWorkDir': string;
|
|
9025
|
+
/** Should intermediate image layers be cached? */
|
|
9026
|
+
'useCache'?: boolean;
|
|
9027
|
+
};
|
|
9028
|
+
} | {
|
|
9029
|
+
'buildpack': {
|
|
9030
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
|
|
9031
|
+
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
9032
|
+
/** Array of custom Buildpacks to use. */
|
|
9033
|
+
'buildpackLocators'?: string[];
|
|
9034
|
+
/** The working directory to build in. Example: "/" */
|
|
9035
|
+
'buildContext'?: string;
|
|
9036
|
+
/** Should build dependencies be cached? */
|
|
9037
|
+
'useCache'?: boolean;
|
|
9038
|
+
};
|
|
8510
9039
|
};
|
|
8511
|
-
'buildConfiguration'
|
|
9040
|
+
'buildConfiguration'?: {
|
|
8512
9041
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
8513
9042
|
'pathIgnoreRules'?: string[];
|
|
8514
9043
|
/** If `true`, the functionality of `pathIgnoreRules` will be inverted. A commit will only be built if a file has been changed that matches one or more of the rules in `pathIgnoreRules`. */
|
|
@@ -8524,33 +9053,93 @@ type CreateServiceCombinedResult = {
|
|
|
8524
9053
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
8525
9054
|
'fullGitClone'?: boolean;
|
|
8526
9055
|
};
|
|
8527
|
-
|
|
8528
|
-
|
|
8529
|
-
|
|
8530
|
-
|
|
8531
|
-
|
|
8532
|
-
|
|
8533
|
-
|
|
8534
|
-
|
|
8535
|
-
|
|
8536
|
-
|
|
8537
|
-
|
|
9056
|
+
/** 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"} */
|
|
9057
|
+
'runtimeEnvironment'?: any;
|
|
9058
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
9059
|
+
'runtimeFiles'?: any;
|
|
9060
|
+
/** An object containing the build arguments to set for the service. Keys may only contain letters, numbers, hyphens, forward slashes and dots. Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
|
|
9061
|
+
'buildArguments'?: any;
|
|
9062
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
9063
|
+
'buildFiles'?: any;
|
|
9064
|
+
/** An array of health checks. */
|
|
9065
|
+
'healthChecks'?: {
|
|
9066
|
+
/** The protocol to access the health check with. Example: "HTTP" */
|
|
9067
|
+
'protocol': 'HTTP' | 'CMD' | 'TCP';
|
|
9068
|
+
/** The type of health check. Example: "readinessProbe" */
|
|
9069
|
+
'type': 'livenessProbe' | 'readinessProbe' | 'startupProbe';
|
|
9070
|
+
/** The path of the health check endpoint. Required when protocol is HTTP. Example: "/health-check" */
|
|
9071
|
+
'path'?: string;
|
|
9072
|
+
/** The command to run for the health check. Required when protocol is CMD */
|
|
9073
|
+
'cmd'?: string;
|
|
9074
|
+
/** Port number for the health check endpoint. Required when protocol is HTTP. Example: 8080 */
|
|
9075
|
+
'port'?: number;
|
|
9076
|
+
/** Initial delay, in seconds, before the health check is first run. Example: 10 */
|
|
9077
|
+
'initialDelaySeconds': number;
|
|
9078
|
+
/** The time between each check, in seconds. Example: 60 */
|
|
9079
|
+
'periodSeconds': number;
|
|
9080
|
+
/** The time to wait for a response before marking the health check as a failure. Example: 1 */
|
|
9081
|
+
'timeoutSeconds': number;
|
|
9082
|
+
/** The maximum number of allowed failures. Example: 3 */
|
|
9083
|
+
'failureThreshold': number;
|
|
9084
|
+
/** The number of successes required to mark the health check as a success. Example: 1 */
|
|
9085
|
+
'successThreshold'?: number;
|
|
9086
|
+
}[];
|
|
9087
|
+
/** Describes all autoscaling configurations */
|
|
9088
|
+
'autoscaling'?: {
|
|
9089
|
+
/** Describes the horizontal autoscaling configuration */
|
|
9090
|
+
'horizontal'?: {
|
|
9091
|
+
/** Whether horizontal autoscaling should be enabled */
|
|
9092
|
+
'enabled': boolean;
|
|
9093
|
+
/** Minimum number of replicas which should be running at any time */
|
|
9094
|
+
'minReplicas': number;
|
|
9095
|
+
/** Maximum number of replicas which can be running at any time */
|
|
9096
|
+
'maxReplicas': number;
|
|
9097
|
+
'cpu'?: {
|
|
9098
|
+
/** Whether autoscaling should take into account cpu usage */
|
|
9099
|
+
'enabled': boolean;
|
|
9100
|
+
/** Threshold CPU usage percentage at which the workload will be scaled */
|
|
9101
|
+
'thresholdPercentage': number;
|
|
9102
|
+
};
|
|
9103
|
+
'memory'?: {
|
|
9104
|
+
/** Whether autoscaling should take into account memory usage */
|
|
9105
|
+
'enabled': boolean;
|
|
9106
|
+
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
9107
|
+
'thresholdPercentage': number;
|
|
9108
|
+
};
|
|
8538
9109
|
};
|
|
8539
|
-
|
|
8540
|
-
|
|
8541
|
-
|
|
8542
|
-
|
|
9110
|
+
};
|
|
9111
|
+
'deploymentSysctlSettings'?: {
|
|
9112
|
+
'vm.max_map_count'?: number;
|
|
9113
|
+
};
|
|
9114
|
+
/** Type of the service (combined, build or deployment) Example: "combined" */
|
|
9115
|
+
'serviceType': 'combined';
|
|
9116
|
+
/** Identifier for the service Example: "example-service" */
|
|
9117
|
+
'id': string;
|
|
9118
|
+
/** Full identifier used for service deployment Example: "/example-user/default-project/example-service" */
|
|
9119
|
+
'appId': string;
|
|
9120
|
+
/** time of creation */
|
|
9121
|
+
'createdAt'?: string;
|
|
9122
|
+
/** time of update */
|
|
9123
|
+
'updatedAt'?: string;
|
|
9124
|
+
/** Details about the current service status. */
|
|
9125
|
+
'status': {
|
|
9126
|
+
/** Details about the status of the most recent build. */
|
|
9127
|
+
'build'?: {
|
|
9128
|
+
/** The current status of the build. Example: "SUCCESS" */
|
|
9129
|
+
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
9130
|
+
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
9131
|
+
'lastTransitionTime'?: string;
|
|
8543
9132
|
};
|
|
8544
|
-
/** Details about
|
|
8545
|
-
'
|
|
8546
|
-
/**
|
|
8547
|
-
'
|
|
9133
|
+
/** Details about the current deployment status. */
|
|
9134
|
+
'deployment'?: {
|
|
9135
|
+
/** The current status of the deployment. Example: "COMPLETED" */
|
|
9136
|
+
'status': 'PENDING' | 'IN_PROGRESS' | 'COMPLETED' | 'FAILED';
|
|
9137
|
+
/** The reason the current deployment was started. Example: "DEPLOYING" */
|
|
9138
|
+
'reason': 'SCALING' | 'DEPLOYING';
|
|
9139
|
+
/** The timestamp of when the deployment reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
9140
|
+
'lastTransitionTime'?: string;
|
|
8548
9141
|
};
|
|
8549
9142
|
};
|
|
8550
|
-
/** Whether the service will be built immediately Example: true */
|
|
8551
|
-
'buildInitiated': boolean;
|
|
8552
|
-
/** The ID of the initial build of the service. Example: "joyous-view-6290" */
|
|
8553
|
-
'buildId'?: string;
|
|
8554
9143
|
} | any;
|
|
8555
9144
|
type CreateServiceCombinedCall = (opts: CreateServiceCombinedRequest) => Promise<ApiCallResponse<CreateServiceCombinedResult>>;
|
|
8556
9145
|
type CreateServiceCombinedRequest = {
|
|
@@ -8637,6 +9226,8 @@ type CreateServiceCombinedData = {
|
|
|
8637
9226
|
/** The protocol to use for the port. Example: "HTTP" */
|
|
8638
9227
|
'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
|
|
8639
9228
|
}[];
|
|
9229
|
+
/** Whether CI (continuous integration) should be disabled. */
|
|
9230
|
+
'disabledCI'?: boolean;
|
|
8640
9231
|
'vcsData': {
|
|
8641
9232
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
8642
9233
|
'projectUrl': string;
|
|
@@ -8830,6 +9421,8 @@ type PutServiceCombinedResult = {
|
|
|
8830
9421
|
/** The protocol to use for the port. Example: "HTTP" */
|
|
8831
9422
|
'protocol': 'HTTP' | 'HTTP/2' | 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
|
|
8832
9423
|
}[];
|
|
9424
|
+
/** Whether CI (continuous integration) should be disabled. */
|
|
9425
|
+
'disabledCI'?: boolean;
|
|
8833
9426
|
'vcsData': {
|
|
8834
9427
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
8835
9428
|
'projectUrl': string;
|
|
@@ -8954,7 +9547,7 @@ type PutServiceCombinedResult = {
|
|
|
8954
9547
|
/** Details about the status of the most recent build. */
|
|
8955
9548
|
'build'?: {
|
|
8956
9549
|
/** The current status of the build. Example: "SUCCESS" */
|
|
8957
|
-
'status': 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
9550
|
+
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
8958
9551
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
8959
9552
|
'lastTransitionTime'?: string;
|
|
8960
9553
|
};
|
|
@@ -9054,6 +9647,8 @@ type PutServiceCombinedData = {
|
|
|
9054
9647
|
/** The protocol to use for the port. Example: "HTTP" */
|
|
9055
9648
|
'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
|
|
9056
9649
|
}[];
|
|
9650
|
+
/** Whether CI (continuous integration) should be disabled. */
|
|
9651
|
+
'disabledCI'?: boolean;
|
|
9057
9652
|
'vcsData': {
|
|
9058
9653
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
9059
9654
|
'projectUrl': string;
|
|
@@ -9247,6 +9842,8 @@ type PatchServiceCombinedResult = {
|
|
|
9247
9842
|
/** The protocol to use for the port. Example: "HTTP" */
|
|
9248
9843
|
'protocol': 'HTTP' | 'HTTP/2' | 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
|
|
9249
9844
|
}[];
|
|
9845
|
+
/** Whether CI (continuous integration) should be disabled. */
|
|
9846
|
+
'disabledCI'?: boolean;
|
|
9250
9847
|
'vcsData': {
|
|
9251
9848
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
9252
9849
|
'projectUrl': string;
|
|
@@ -9371,7 +9968,7 @@ type PatchServiceCombinedResult = {
|
|
|
9371
9968
|
/** Details about the status of the most recent build. */
|
|
9372
9969
|
'build'?: {
|
|
9373
9970
|
/** The current status of the build. Example: "SUCCESS" */
|
|
9374
|
-
'status': 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
9971
|
+
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
9375
9972
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
9376
9973
|
'lastTransitionTime'?: string;
|
|
9377
9974
|
};
|
|
@@ -9462,6 +10059,8 @@ type PatchServiceCombinedData = {
|
|
|
9462
10059
|
/** The protocol to use for the port. Example: "HTTP" */
|
|
9463
10060
|
'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
|
|
9464
10061
|
}[];
|
|
10062
|
+
/** Whether CI (continuous integration) should be disabled. */
|
|
10063
|
+
'disabledCI'?: boolean;
|
|
9465
10064
|
'vcsData'?: {
|
|
9466
10065
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
9467
10066
|
'projectUrl'?: string;
|
|
@@ -9570,106 +10169,174 @@ declare class PatchServiceCombinedEndpoint extends PatchApiEndpoint<PatchService
|
|
|
9570
10169
|
}
|
|
9571
10170
|
|
|
9572
10171
|
type CreateServiceDeploymentResult = {
|
|
9573
|
-
/**
|
|
9574
|
-
'id': string;
|
|
9575
|
-
/** Full identifier used for service deployment Example: "/example-user/default-project/example-service" */
|
|
9576
|
-
'appId': string;
|
|
9577
|
-
/** Service name Example: "Example Service" */
|
|
10172
|
+
/** The name of the service. Example: "Example Service" */
|
|
9578
10173
|
'name': string;
|
|
9579
|
-
/** A
|
|
10174
|
+
/** A description of the service. Example: "A service description" */
|
|
9580
10175
|
'description'?: string;
|
|
9581
|
-
/**
|
|
9582
|
-
'
|
|
9583
|
-
/** The time the service was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
9584
|
-
'createdAt': string;
|
|
9585
|
-
/** Whether Continuous Integration is disabled */
|
|
9586
|
-
'disabledCI': boolean;
|
|
9587
|
-
/** Whether Continuous Deployment is disabled */
|
|
9588
|
-
'disabledCD': boolean;
|
|
10176
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
10177
|
+
'tags'?: string[];
|
|
9589
10178
|
'billing': {
|
|
9590
|
-
/** ID of the
|
|
10179
|
+
/** The ID of the deployment plan to use. Example: "nf-compute-20" */
|
|
9591
10180
|
'deploymentPlan': string;
|
|
9592
10181
|
};
|
|
9593
|
-
|
|
9594
|
-
|
|
9595
|
-
|
|
9596
|
-
|
|
9597
|
-
/** The current status of the build. Example: "SUCCESS" */
|
|
9598
|
-
'status': 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
9599
|
-
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
9600
|
-
'lastTransitionTime'?: string;
|
|
9601
|
-
};
|
|
9602
|
-
/** Details about the current deployment status. */
|
|
9603
|
-
'deployment'?: {
|
|
9604
|
-
/** The current status of the deployment. Example: "COMPLETED" */
|
|
9605
|
-
'status': 'PENDING' | 'IN_PROGRESS' | 'COMPLETED' | 'FAILED';
|
|
9606
|
-
/** The reason the current deployment was started. Example: "DEPLOYING" */
|
|
9607
|
-
'reason': 'SCALING' | 'DEPLOYING';
|
|
9608
|
-
/** The timestamp of when the deployment reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
9609
|
-
'lastTransitionTime'?: string;
|
|
9610
|
-
};
|
|
9611
|
-
};
|
|
9612
|
-
/** Is the service paused? */
|
|
9613
|
-
'servicePaused': boolean;
|
|
9614
|
-
/** Type of the service (combined, build or deployment) Example: "deployment" */
|
|
9615
|
-
'serviceType': 'combined' | 'build' | 'deployment';
|
|
9616
|
-
'deployment'?: {
|
|
9617
|
-
/** Region where this service is deployed and/or built Example: "europe-west" */
|
|
9618
|
-
'region'?: string;
|
|
9619
|
-
/** Number of instances/replicas running Example: 1 */
|
|
9620
|
-
'instances'?: number;
|
|
9621
|
-
/** Data about a deployment from an external registry. */
|
|
9622
|
-
'external'?: {
|
|
9623
|
-
/** Path of the external image excluding the hostname */
|
|
9624
|
-
'imagePath': string;
|
|
9625
|
-
/** Registry provider hosting the external image */
|
|
9626
|
-
'registryProvider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
9627
|
-
/** Does the image require authentication */
|
|
9628
|
-
'privateImage': boolean;
|
|
9629
|
-
};
|
|
9630
|
-
'internal'?: {
|
|
9631
|
-
/** Database ID of deployed entity Example: "example-service" */
|
|
9632
|
-
'nfObjectId': string;
|
|
9633
|
-
/** Type of deployed entity Example: "service" */
|
|
9634
|
-
'nfObjectType': 'service';
|
|
9635
|
-
/** URL of the repository being deployed Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
9636
|
-
'repository': string;
|
|
9637
|
-
/** Branch of the repo being deployed Example: "master" */
|
|
9638
|
-
'branch': string;
|
|
9639
|
-
/** Commit SHA to be deployed. `latest` means the latest commit is automatically being deployed. Example: "latest" */
|
|
9640
|
-
'buildSHA': string;
|
|
9641
|
-
/** Currently deployed commit SHA. If buildSHA is set to `latest`, this will show the SHA of the latest commit. Example: "262ed9817b3cad5142fbceabe0c9e371e390d616" */
|
|
9642
|
-
'deployedSHA'?: string;
|
|
9643
|
-
};
|
|
9644
|
-
/** Details about the Docker overrides for this deployment. */
|
|
9645
|
-
'docker'?: {
|
|
9646
|
-
/** Override configuration which is used at runtime. Example: "default" */
|
|
9647
|
-
'configType': 'default' | 'customEntrypoint' | 'customCommand' | 'customEntrypointCustomCommand';
|
|
9648
|
-
/** The CMD to run instead of the default if entrypoint override is enabled. */
|
|
9649
|
-
'customEntrypoint'?: string;
|
|
9650
|
-
/** The CMD to run instead of the default if CMD override is enabled. */
|
|
9651
|
-
'customCommand'?: string;
|
|
9652
|
-
};
|
|
9653
|
-
/** Details about the Buildpack overrides for this deployment. */
|
|
10182
|
+
'deployment': {
|
|
10183
|
+
/** The number of instances to run the service on. Example: 1 */
|
|
10184
|
+
'instances': number;
|
|
10185
|
+
/** Allows for customization of buildpack runtime */
|
|
9654
10186
|
'buildpack'?: {
|
|
9655
|
-
/** Type of buildpack run configuration
|
|
10187
|
+
/** Type of buildpack run configuration */
|
|
9656
10188
|
'configType': 'default' | 'customProcess' | 'customCommand' | 'customEntrypointCustomCommand' | 'originalEntrypointCustomCommand';
|
|
9657
|
-
/** Custom process which should be run. */
|
|
10189
|
+
/** Custom process which should be run. Required in case where `configType` is `customProcess` */
|
|
9658
10190
|
'customProcess'?: string;
|
|
9659
|
-
/** Custom entrypoint which should be run. */
|
|
10191
|
+
/** Custom entrypoint which should be run. Required in case where `configType` is `customEntrypointCustomCommand` */
|
|
9660
10192
|
'customEntrypoint'?: string;
|
|
9661
|
-
/** Custom command which should be run. */
|
|
10193
|
+
/** Custom command which should be run. Required in case where `configType` is `customCommand`, `customEntrypointCustomCommand` or `originalEntrypointCustomCommand` */
|
|
10194
|
+
'customCommand'?: string;
|
|
10195
|
+
};
|
|
10196
|
+
/** Allows for customization of docker runtime */
|
|
10197
|
+
'docker'?: {
|
|
10198
|
+
/** Type of entrypoint & command override configuration Example: "default" */
|
|
10199
|
+
'configType': 'default' | 'customEntrypoint' | 'customCommand' | 'customEntrypointCustomCommand';
|
|
10200
|
+
/** Custom entrypoint which should be used. Required in case where `configType` is `customEntrypoint` or `customEntrypointCustomCommand` */
|
|
10201
|
+
'customEntrypoint'?: string;
|
|
10202
|
+
/** Custom command which should be used. Required in case where `configType` is `customCommand` or `customEntrypointCustomCommand` */
|
|
9662
10203
|
'customCommand'?: string;
|
|
9663
10204
|
};
|
|
9664
|
-
/** Details about storage settings for this deployment. */
|
|
9665
10205
|
'storage'?: {
|
|
9666
|
-
/** Details about ephemeral storage settings for this deployment. */
|
|
9667
10206
|
'ephemeralStorage'?: {
|
|
9668
10207
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
9669
|
-
'storageSize'
|
|
10208
|
+
'storageSize'?: number;
|
|
10209
|
+
};
|
|
10210
|
+
};
|
|
10211
|
+
'strategy'?: {
|
|
10212
|
+
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
10213
|
+
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
10214
|
+
};
|
|
10215
|
+
'internal'?: {
|
|
10216
|
+
/** ID of the build service to deploy Example: "example-build-service" */
|
|
10217
|
+
'id'?: string;
|
|
10218
|
+
/** Branch to deploy Example: "master" */
|
|
10219
|
+
'branch'?: string;
|
|
10220
|
+
/** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
|
|
10221
|
+
'buildSHA'?: string | 'latest';
|
|
10222
|
+
/** ID of the build that should be deployed Example: "premium-guide-6393" */
|
|
10223
|
+
'buildId'?: string;
|
|
10224
|
+
};
|
|
10225
|
+
'external'?: {
|
|
10226
|
+
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
10227
|
+
'imagePath': string;
|
|
10228
|
+
/** ID of the saved credentials to use to access this external image. Example: "example-credentials" */
|
|
10229
|
+
'credentials'?: string;
|
|
10230
|
+
};
|
|
10231
|
+
};
|
|
10232
|
+
'ports'?: {
|
|
10233
|
+
/** The name used to identify the port. Example: "port-1" */
|
|
10234
|
+
'name': string;
|
|
10235
|
+
/** The port number. Example: 8080 */
|
|
10236
|
+
'internalPort': number;
|
|
10237
|
+
/** If true, the port will be exposed publicly. Example: true */
|
|
10238
|
+
'public'?: boolean;
|
|
10239
|
+
'security'?: {
|
|
10240
|
+
/** An array of credentials to access the service. */
|
|
10241
|
+
'credentials'?: {
|
|
10242
|
+
/** The username to access the service Example: "admin" */
|
|
10243
|
+
'username': string;
|
|
10244
|
+
/** The password to access the service with this username. Example: "password123" */
|
|
10245
|
+
'password': string;
|
|
10246
|
+
/** The type of authentication used Example: "basic-auth" */
|
|
10247
|
+
'type': 'basic-auth';
|
|
10248
|
+
}[];
|
|
10249
|
+
/** An array of IP address policies. */
|
|
10250
|
+
'policies'?: {
|
|
10251
|
+
/** An array of IP addresses used for this rule */
|
|
10252
|
+
'addresses': string[];
|
|
10253
|
+
/** The action for this rule. Example: "DENY" */
|
|
10254
|
+
'action': 'ALLOW' | 'DENY';
|
|
10255
|
+
}[];
|
|
10256
|
+
};
|
|
10257
|
+
/** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
|
|
10258
|
+
'domains'?: string[];
|
|
10259
|
+
/** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
|
|
10260
|
+
'disableNfDomain'?: boolean;
|
|
10261
|
+
/** The protocol to use for the port. Example: "HTTP" */
|
|
10262
|
+
'protocol': 'HTTP' | 'HTTP/2' | 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
|
|
10263
|
+
}[];
|
|
10264
|
+
/** An object containing the runtime environment to set for the service Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
|
|
10265
|
+
'runtimeEnvironment'?: any;
|
|
10266
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
10267
|
+
'runtimeFiles'?: any;
|
|
10268
|
+
/** An array of health checks. */
|
|
10269
|
+
'healthChecks'?: {
|
|
10270
|
+
/** The protocol to access the health check with. Example: "HTTP" */
|
|
10271
|
+
'protocol': 'HTTP' | 'CMD' | 'TCP';
|
|
10272
|
+
/** The type of health check. Example: "readinessProbe" */
|
|
10273
|
+
'type': 'livenessProbe' | 'readinessProbe' | 'startupProbe';
|
|
10274
|
+
/** The path of the health check endpoint. Required when protocol is HTTP. Example: "/health-check" */
|
|
10275
|
+
'path'?: string;
|
|
10276
|
+
/** The command to run for the health check. Required when protocol is CMD */
|
|
10277
|
+
'cmd'?: string;
|
|
10278
|
+
/** Port number for the health check endpoint. Required when protocol is HTTP. Example: 8080 */
|
|
10279
|
+
'port'?: number;
|
|
10280
|
+
/** Initial delay, in seconds, before the health check is first run. Example: 10 */
|
|
10281
|
+
'initialDelaySeconds': number;
|
|
10282
|
+
/** The time between each check, in seconds. Example: 60 */
|
|
10283
|
+
'periodSeconds': number;
|
|
10284
|
+
/** The time to wait for a response before marking the health check as a failure. Example: 1 */
|
|
10285
|
+
'timeoutSeconds': number;
|
|
10286
|
+
/** The maximum number of allowed failures. Example: 3 */
|
|
10287
|
+
'failureThreshold': number;
|
|
10288
|
+
/** The number of successes required to mark the health check as a success. Example: 1 */
|
|
10289
|
+
'successThreshold'?: number;
|
|
10290
|
+
}[];
|
|
10291
|
+
/** Describes all autoscaling configurations */
|
|
10292
|
+
'autoscaling'?: {
|
|
10293
|
+
/** Describes the horizontal autoscaling configuration */
|
|
10294
|
+
'horizontal'?: {
|
|
10295
|
+
/** Whether horizontal autoscaling should be enabled */
|
|
10296
|
+
'enabled': boolean;
|
|
10297
|
+
/** Minimum number of replicas which should be running at any time */
|
|
10298
|
+
'minReplicas': number;
|
|
10299
|
+
/** Maximum number of replicas which can be running at any time */
|
|
10300
|
+
'maxReplicas': number;
|
|
10301
|
+
'cpu'?: {
|
|
10302
|
+
/** Whether autoscaling should take into account cpu usage */
|
|
10303
|
+
'enabled': boolean;
|
|
10304
|
+
/** Threshold CPU usage percentage at which the workload will be scaled */
|
|
10305
|
+
'thresholdPercentage': number;
|
|
10306
|
+
};
|
|
10307
|
+
'memory'?: {
|
|
10308
|
+
/** Whether autoscaling should take into account memory usage */
|
|
10309
|
+
'enabled': boolean;
|
|
10310
|
+
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
10311
|
+
'thresholdPercentage': number;
|
|
9670
10312
|
};
|
|
9671
10313
|
};
|
|
9672
10314
|
};
|
|
10315
|
+
'deploymentSysctlSettings'?: {
|
|
10316
|
+
'vm.max_map_count'?: number;
|
|
10317
|
+
};
|
|
10318
|
+
/** Type of the service (combined, build or deployment) Example: "deployment" */
|
|
10319
|
+
'serviceType': 'deployment';
|
|
10320
|
+
/** Identifier for the service Example: "example-service" */
|
|
10321
|
+
'id': string;
|
|
10322
|
+
/** Full identifier used for service deployment Example: "/example-user/default-project/example-service" */
|
|
10323
|
+
'appId': string;
|
|
10324
|
+
/** time of creation */
|
|
10325
|
+
'createdAt'?: string;
|
|
10326
|
+
/** time of update */
|
|
10327
|
+
'updatedAt'?: string;
|
|
10328
|
+
/** Details about the current service status. */
|
|
10329
|
+
'status': {
|
|
10330
|
+
/** Details about the current deployment status. */
|
|
10331
|
+
'deployment'?: {
|
|
10332
|
+
/** The current status of the deployment. Example: "COMPLETED" */
|
|
10333
|
+
'status': 'PENDING' | 'IN_PROGRESS' | 'COMPLETED' | 'FAILED';
|
|
10334
|
+
/** The reason the current deployment was started. Example: "DEPLOYING" */
|
|
10335
|
+
'reason': 'SCALING' | 'DEPLOYING';
|
|
10336
|
+
/** The timestamp of when the deployment reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
10337
|
+
'lastTransitionTime'?: string;
|
|
10338
|
+
};
|
|
10339
|
+
};
|
|
9673
10340
|
} | any;
|
|
9674
10341
|
type CreateServiceDeploymentCall = (opts: CreateServiceDeploymentRequest) => Promise<ApiCallResponse<CreateServiceDeploymentResult>>;
|
|
9675
10342
|
type CreateServiceDeploymentRequest = {
|
|
@@ -10580,91 +11247,93 @@ declare class PatchServiceDeploymentEndpoint extends PatchApiEndpoint<PatchServi
|
|
|
10580
11247
|
}
|
|
10581
11248
|
|
|
10582
11249
|
type CreateServiceBuildResult = {
|
|
10583
|
-
/**
|
|
10584
|
-
'id': string;
|
|
10585
|
-
/** Full identifier used for service deployment Example: "/example-user/default-project/example-service" */
|
|
10586
|
-
'appId': string;
|
|
10587
|
-
/** Service name Example: "Example Service" */
|
|
11250
|
+
/** The name of the service. Example: "Example Service" */
|
|
10588
11251
|
'name': string;
|
|
10589
|
-
/** A
|
|
11252
|
+
/** A description of the service. Example: "A service description" */
|
|
10590
11253
|
'description'?: string;
|
|
10591
|
-
/**
|
|
10592
|
-
'
|
|
10593
|
-
/** The time the service was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
10594
|
-
'createdAt': string;
|
|
10595
|
-
/** Whether Continuous Integration is disabled */
|
|
10596
|
-
'disabledCI': boolean;
|
|
10597
|
-
/** Whether Continuous Deployment is disabled */
|
|
10598
|
-
'disabledCD': boolean;
|
|
11254
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
11255
|
+
'tags'?: string[];
|
|
10599
11256
|
'billing': {
|
|
10600
|
-
/** ID of the
|
|
11257
|
+
/** The ID of the deployment plan to use. Example: "nf-compute-20" */
|
|
10601
11258
|
'deploymentPlan': string;
|
|
10602
11259
|
};
|
|
10603
|
-
/**
|
|
10604
|
-
'
|
|
10605
|
-
|
|
10606
|
-
|
|
10607
|
-
/** The current status of the build. Example: "SUCCESS" */
|
|
10608
|
-
'status': 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
10609
|
-
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
10610
|
-
'lastTransitionTime'?: string;
|
|
10611
|
-
};
|
|
10612
|
-
/** Details about the current deployment status. */
|
|
10613
|
-
'deployment'?: {
|
|
10614
|
-
/** The current status of the deployment. Example: "COMPLETED" */
|
|
10615
|
-
'status': 'PENDING' | 'IN_PROGRESS' | 'COMPLETED' | 'FAILED';
|
|
10616
|
-
/** The reason the current deployment was started. Example: "DEPLOYING" */
|
|
10617
|
-
'reason': 'SCALING' | 'DEPLOYING';
|
|
10618
|
-
/** The timestamp of when the deployment reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
10619
|
-
'lastTransitionTime'?: string;
|
|
10620
|
-
};
|
|
10621
|
-
};
|
|
10622
|
-
/** Is the service paused? */
|
|
10623
|
-
'servicePaused': boolean;
|
|
10624
|
-
/** Type of the service (combined, build or deployment) Example: "build" */
|
|
10625
|
-
'serviceType': 'combined' | 'build' | 'deployment';
|
|
10626
|
-
'vcsData'?: {
|
|
10627
|
-
/** URL of the repository being built Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
11260
|
+
/** Whether CI (continuous integration) should be disabled. */
|
|
11261
|
+
'disabledCI'?: boolean;
|
|
11262
|
+
'vcsData': {
|
|
11263
|
+
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
10628
11264
|
'projectUrl': string;
|
|
10629
|
-
/** VCS provider
|
|
11265
|
+
/** The VCS provider to use. Example: "github" */
|
|
10630
11266
|
'projectType': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
10631
|
-
/**
|
|
11267
|
+
/** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
|
|
10632
11268
|
'selfHostedVcsId'?: string;
|
|
10633
|
-
/**
|
|
10634
|
-
'
|
|
10635
|
-
/** Whether the repo is being accessed without authentication. */
|
|
10636
|
-
'publicRepo'?: boolean;
|
|
10637
|
-
/** Working directory used by the dockerfile Example: "/" */
|
|
10638
|
-
'dockerWorkDir': string;
|
|
10639
|
-
/** File path of the Dockerfile Example: "/Dockerfile" */
|
|
10640
|
-
'dockerFilePath': string;
|
|
10641
|
-
};
|
|
10642
|
-
'buildConfiguration'?: {
|
|
10643
|
-
'branchRestrictions'?: string[];
|
|
10644
|
-
'prRestrictions'?: string[];
|
|
10645
|
-
'pathIgnoreRules': string[];
|
|
11269
|
+
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
|
|
11270
|
+
'accountLogin'?: string;
|
|
10646
11271
|
};
|
|
10647
|
-
'
|
|
10648
|
-
|
|
10649
|
-
|
|
10650
|
-
|
|
10651
|
-
|
|
10652
|
-
|
|
11272
|
+
'buildSettings': {
|
|
11273
|
+
'dockerfile': {
|
|
11274
|
+
/** Build engine to use. Defaults to recommended build engine `kaniko` Example: "kaniko" */
|
|
11275
|
+
'buildEngine'?: 'kaniko' | 'buildkit';
|
|
11276
|
+
/** The file path of the Dockerfile. Example: "/Dockerfile" */
|
|
11277
|
+
'dockerFilePath': string;
|
|
11278
|
+
/** The working directory of the Dockerfile. Example: "/" */
|
|
11279
|
+
'dockerWorkDir': string;
|
|
11280
|
+
/** Should intermediate image layers be cached? */
|
|
11281
|
+
'useCache'?: boolean;
|
|
11282
|
+
};
|
|
11283
|
+
} | {
|
|
11284
|
+
'buildpack': {
|
|
11285
|
+
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22_CLASSIC`. Example: "HEROKU_22_CLASSIC" */
|
|
10653
11286
|
'builder'?: 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
|
|
10654
|
-
/** Array of custom Buildpacks
|
|
11287
|
+
/** Array of custom Buildpacks to use. */
|
|
10655
11288
|
'buildpackLocators'?: string[];
|
|
11289
|
+
/** The working directory to build in. Example: "/" */
|
|
11290
|
+
'buildContext'?: string;
|
|
10656
11291
|
/** Should build dependencies be cached? */
|
|
10657
11292
|
'useCache'?: boolean;
|
|
10658
11293
|
};
|
|
10659
|
-
|
|
10660
|
-
|
|
10661
|
-
|
|
10662
|
-
|
|
10663
|
-
|
|
10664
|
-
|
|
10665
|
-
|
|
10666
|
-
|
|
10667
|
-
|
|
11294
|
+
};
|
|
11295
|
+
'buildConfiguration'?: {
|
|
11296
|
+
/** An array of pull request build rules. Only supported for build services. Each commit belonging to a pull request on a branch that matches one of the provided build rules will be built automatically. */
|
|
11297
|
+
'prRestrictions'?: string[];
|
|
11298
|
+
/** An array of branch build rules. Only supported for build services. Each commit belonging to a branch that matches one of the provided build rules will be built automatically. */
|
|
11299
|
+
'branchRestrictions'?: string[];
|
|
11300
|
+
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
11301
|
+
'pathIgnoreRules'?: string[];
|
|
11302
|
+
/** If `true`, the functionality of `pathIgnoreRules` will be inverted. A commit will only be built if a file has been changed that matches one or more of the rules in `pathIgnoreRules`. */
|
|
11303
|
+
'isAllowList'?: boolean;
|
|
11304
|
+
/** If `true`, enables commit ignore flags. If a commit message contains one or more of the flags in `ciIgnoreFlags`, that commit will not be built. */
|
|
11305
|
+
'ciIgnoreFlagsEnabled'?: boolean;
|
|
11306
|
+
/** 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]"] */
|
|
11307
|
+
'ciIgnoreFlags'?: string[];
|
|
11308
|
+
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
11309
|
+
'dockerfileTarget'?: string;
|
|
11310
|
+
/** Include .git folder inside the build context */
|
|
11311
|
+
'includeGitFolder'?: boolean;
|
|
11312
|
+
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
11313
|
+
'fullGitClone'?: boolean;
|
|
11314
|
+
};
|
|
11315
|
+
/** An object containing the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
|
|
11316
|
+
'buildArguments'?: any;
|
|
11317
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}} */
|
|
11318
|
+
'buildFiles'?: any;
|
|
11319
|
+
/** Type of the service (combined, build or deployment) Example: "build" */
|
|
11320
|
+
'serviceType': 'build';
|
|
11321
|
+
/** Identifier for the service Example: "example-service" */
|
|
11322
|
+
'id': string;
|
|
11323
|
+
/** Full identifier used for service deployment Example: "/example-user/default-project/example-service" */
|
|
11324
|
+
'appId': string;
|
|
11325
|
+
/** time of creation */
|
|
11326
|
+
'createdAt'?: string;
|
|
11327
|
+
/** time of update */
|
|
11328
|
+
'updatedAt'?: string;
|
|
11329
|
+
/** Details about the current service status. */
|
|
11330
|
+
'status': {
|
|
11331
|
+
/** Details about the status of the most recent build. */
|
|
11332
|
+
'build'?: {
|
|
11333
|
+
/** The current status of the build. Example: "SUCCESS" */
|
|
11334
|
+
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
11335
|
+
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
11336
|
+
'lastTransitionTime'?: string;
|
|
10668
11337
|
};
|
|
10669
11338
|
};
|
|
10670
11339
|
} | any;
|
|
@@ -10687,6 +11356,8 @@ type CreateServiceBuildData = {
|
|
|
10687
11356
|
/** The ID of the deployment plan to use. Example: "nf-compute-20" */
|
|
10688
11357
|
'deploymentPlan': string;
|
|
10689
11358
|
};
|
|
11359
|
+
/** Whether CI (continuous integration) should be disabled. */
|
|
11360
|
+
'disabledCI'?: boolean;
|
|
10690
11361
|
'vcsData': {
|
|
10691
11362
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
10692
11363
|
'projectUrl': string;
|
|
@@ -10765,6 +11436,8 @@ type PutServiceBuildResult = {
|
|
|
10765
11436
|
/** The ID of the deployment plan to use. Example: "nf-compute-20" */
|
|
10766
11437
|
'deploymentPlan': string;
|
|
10767
11438
|
};
|
|
11439
|
+
/** Whether CI (continuous integration) should be disabled. */
|
|
11440
|
+
'disabledCI'?: boolean;
|
|
10768
11441
|
'vcsData': {
|
|
10769
11442
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
10770
11443
|
'projectUrl': string;
|
|
@@ -10837,7 +11510,7 @@ type PutServiceBuildResult = {
|
|
|
10837
11510
|
/** Details about the status of the most recent build. */
|
|
10838
11511
|
'build'?: {
|
|
10839
11512
|
/** The current status of the build. Example: "SUCCESS" */
|
|
10840
|
-
'status': 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
11513
|
+
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
10841
11514
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
10842
11515
|
'lastTransitionTime'?: string;
|
|
10843
11516
|
};
|
|
@@ -10862,6 +11535,8 @@ type PutServiceBuildData = {
|
|
|
10862
11535
|
/** The ID of the deployment plan to use. Example: "nf-compute-20" */
|
|
10863
11536
|
'deploymentPlan': string;
|
|
10864
11537
|
};
|
|
11538
|
+
/** Whether CI (continuous integration) should be disabled. */
|
|
11539
|
+
'disabledCI'?: boolean;
|
|
10865
11540
|
'vcsData': {
|
|
10866
11541
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
10867
11542
|
'projectUrl': string;
|
|
@@ -10940,6 +11615,8 @@ type PatchServiceBuildResult = {
|
|
|
10940
11615
|
/** The ID of the deployment plan to use. Example: "nf-compute-20" */
|
|
10941
11616
|
'deploymentPlan': string;
|
|
10942
11617
|
};
|
|
11618
|
+
/** Whether CI (continuous integration) should be disabled. */
|
|
11619
|
+
'disabledCI'?: boolean;
|
|
10943
11620
|
'vcsData': {
|
|
10944
11621
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
10945
11622
|
'projectUrl': string;
|
|
@@ -11012,7 +11689,7 @@ type PatchServiceBuildResult = {
|
|
|
11012
11689
|
/** Details about the status of the most recent build. */
|
|
11013
11690
|
'build'?: {
|
|
11014
11691
|
/** The current status of the build. Example: "SUCCESS" */
|
|
11015
|
-
'status': 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
11692
|
+
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
11016
11693
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
11017
11694
|
'lastTransitionTime'?: string;
|
|
11018
11695
|
};
|
|
@@ -11037,6 +11714,8 @@ type PatchServiceBuildData = {
|
|
|
11037
11714
|
/** The ID of the deployment plan to use. Example: "nf-compute-20" */
|
|
11038
11715
|
'deploymentPlan'?: string;
|
|
11039
11716
|
};
|
|
11717
|
+
/** Whether CI (continuous integration) should be disabled. */
|
|
11718
|
+
'disabledCI'?: boolean;
|
|
11040
11719
|
'vcsData'?: {
|
|
11041
11720
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
11042
11721
|
'projectUrl'?: string;
|
|
@@ -11125,7 +11804,7 @@ type GetServiceResult = {
|
|
|
11125
11804
|
/** Details about the status of the most recent build. */
|
|
11126
11805
|
'build'?: {
|
|
11127
11806
|
/** The current status of the build. Example: "SUCCESS" */
|
|
11128
|
-
'status': 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
11807
|
+
'status': 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
11129
11808
|
/** The timestamp of when the build reached this status. Example: "2021-11-29T11:47:16.624Z" */
|
|
11130
11809
|
'lastTransitionTime'?: string;
|
|
11131
11810
|
};
|
|
@@ -11975,7 +12654,7 @@ type GetServiceBuildsResult = {
|
|
|
11975
12654
|
/** ID of the pull request the commit belongs to. */
|
|
11976
12655
|
'pullRequestId'?: number;
|
|
11977
12656
|
/** The status of the build. Example: "SUCCESS" */
|
|
11978
|
-
'status'?: 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
12657
|
+
'status'?: 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
11979
12658
|
/** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
|
|
11980
12659
|
'sha'?: string;
|
|
11981
12660
|
/** Whether the build has finished. Example: true */
|
|
@@ -12080,7 +12759,7 @@ type GetServiceBuildResult = {
|
|
|
12080
12759
|
/** ID of the pull request the commit belongs to. */
|
|
12081
12760
|
'pullRequestId'?: number;
|
|
12082
12761
|
/** The status of the build. Example: "SUCCESS" */
|
|
12083
|
-
'status'?: 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
12762
|
+
'status'?: 'QUEUED' | 'PENDING' | 'STARTING' | 'CLONING' | 'BUILDING' | 'UPLOADING' | 'ABORTED' | 'FAILURE' | 'SUBMISSION_FAILURE' | 'SUCCESS' | 'CRASHED';
|
|
12084
12763
|
/** The sha of the built commit. Example: "12c15e7ee25fd78f567ebf87f9178b8ad70025b3" */
|
|
12085
12764
|
'sha'?: string;
|
|
12086
12765
|
/** Whether the build has finished. Example: true */
|
|
@@ -12284,6 +12963,8 @@ type ListTemplatesResult = {
|
|
|
12284
12963
|
'apiVersion': 'v1';
|
|
12285
12964
|
/** Identifier for the template Example: "example-template" */
|
|
12286
12965
|
'id': string;
|
|
12966
|
+
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
12967
|
+
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
12287
12968
|
/** time of creation */
|
|
12288
12969
|
'createdAt'?: string;
|
|
12289
12970
|
/** time of update */
|
|
@@ -12366,6 +13047,8 @@ type CreateTemplateResult = {
|
|
|
12366
13047
|
/** The SHA of the current commit that is being used for the template. Example: "8c7e040ee3737ddc3a713363ae72bbe960e9fb16" */
|
|
12367
13048
|
'templateSha': string;
|
|
12368
13049
|
};
|
|
13050
|
+
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
13051
|
+
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
12369
13052
|
'options': {
|
|
12370
13053
|
/** Whether autorun is enabled */
|
|
12371
13054
|
'autorun': boolean;
|
|
@@ -12415,12 +13098,14 @@ type CreateTemplateResult = {
|
|
|
12415
13098
|
'id': string;
|
|
12416
13099
|
/** Identifier for the template Example: "example-template" */
|
|
12417
13100
|
'templateId': string;
|
|
12418
|
-
/** Status of the template run Example: "
|
|
12419
|
-
'status': 'pending' | 'running' | 'success' | 'failure';
|
|
12420
|
-
/**
|
|
12421
|
-
'
|
|
12422
|
-
/**
|
|
12423
|
-
'
|
|
13101
|
+
/** Status of the template run Example: "success" */
|
|
13102
|
+
'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
|
|
13103
|
+
/** Whether the run has concluded (aborted, success, failed) Example: true */
|
|
13104
|
+
'concluded': boolean;
|
|
13105
|
+
/** Timestamp the run was created at. Example: "2021-01-01 12:00:00.000Z" */
|
|
13106
|
+
'createdAt': string;
|
|
13107
|
+
/** Timestamp the run was last updated at. Example: "2021-01-01 12:00:00.000Z" */
|
|
13108
|
+
'updatedAt': string;
|
|
12424
13109
|
};
|
|
12425
13110
|
};
|
|
12426
13111
|
type CreateTemplateCall = (opts: CreateTemplateRequest) => Promise<ApiCallResponse<CreateTemplateResult>>;
|
|
@@ -12462,6 +13147,8 @@ type CreateTemplateData = {
|
|
|
12462
13147
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
12463
13148
|
'arguments'?: any;
|
|
12464
13149
|
'spec': any;
|
|
13150
|
+
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
13151
|
+
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
12465
13152
|
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
|
|
12466
13153
|
'argumentOverrides'?: any;
|
|
12467
13154
|
/** Additional options for the template creation. */
|
|
@@ -12508,6 +13195,8 @@ type CreateTemplateData = {
|
|
|
12508
13195
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
12509
13196
|
'arguments'?: any;
|
|
12510
13197
|
'spec': any;
|
|
13198
|
+
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
13199
|
+
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
12511
13200
|
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
|
|
12512
13201
|
'argumentOverrides'?: any;
|
|
12513
13202
|
/** Additional options for the template creation. */
|
|
@@ -12539,6 +13228,8 @@ type CreateTemplateData = {
|
|
|
12539
13228
|
'name': string;
|
|
12540
13229
|
/** Description of the template. Example: "This is a sample template." */
|
|
12541
13230
|
'description'?: string;
|
|
13231
|
+
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
13232
|
+
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
12542
13233
|
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
|
|
12543
13234
|
'argumentOverrides'?: any;
|
|
12544
13235
|
/** Additional options for the template creation. */
|
|
@@ -12628,6 +13319,8 @@ type GetTemplateResult = {
|
|
|
12628
13319
|
/** The SHA of the current commit that is being used for the template. Example: "8c7e040ee3737ddc3a713363ae72bbe960e9fb16" */
|
|
12629
13320
|
'templateSha': string;
|
|
12630
13321
|
};
|
|
13322
|
+
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
13323
|
+
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
12631
13324
|
'options': {
|
|
12632
13325
|
/** Whether autorun is enabled */
|
|
12633
13326
|
'autorun': boolean;
|
|
@@ -12717,6 +13410,8 @@ type UpdateTemplateResult = {
|
|
|
12717
13410
|
/** The SHA of the current commit that is being used for the template. Example: "8c7e040ee3737ddc3a713363ae72bbe960e9fb16" */
|
|
12718
13411
|
'templateSha': string;
|
|
12719
13412
|
};
|
|
13413
|
+
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
13414
|
+
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
12720
13415
|
'options': {
|
|
12721
13416
|
/** Whether autorun is enabled */
|
|
12722
13417
|
'autorun': boolean;
|
|
@@ -12766,12 +13461,14 @@ type UpdateTemplateResult = {
|
|
|
12766
13461
|
'id': string;
|
|
12767
13462
|
/** Identifier for the template Example: "example-template" */
|
|
12768
13463
|
'templateId': string;
|
|
12769
|
-
/** Status of the template run Example: "
|
|
12770
|
-
'status': 'pending' | 'running' | 'success' | 'failure';
|
|
12771
|
-
/**
|
|
12772
|
-
'
|
|
12773
|
-
/**
|
|
12774
|
-
'
|
|
13464
|
+
/** Status of the template run Example: "success" */
|
|
13465
|
+
'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
|
|
13466
|
+
/** Whether the run has concluded (aborted, success, failed) Example: true */
|
|
13467
|
+
'concluded': boolean;
|
|
13468
|
+
/** Timestamp the run was created at. Example: "2021-01-01 12:00:00.000Z" */
|
|
13469
|
+
'createdAt': string;
|
|
13470
|
+
/** Timestamp the run was last updated at. Example: "2021-01-01 12:00:00.000Z" */
|
|
13471
|
+
'updatedAt': string;
|
|
12775
13472
|
};
|
|
12776
13473
|
};
|
|
12777
13474
|
type UpdateTemplateCall = (opts: UpdateTemplateRequest) => Promise<ApiCallResponse<UpdateTemplateResult>>;
|
|
@@ -12817,6 +13514,8 @@ type UpdateTemplateData = {
|
|
|
12817
13514
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
12818
13515
|
'arguments'?: any;
|
|
12819
13516
|
'spec': any;
|
|
13517
|
+
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
13518
|
+
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
12820
13519
|
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
|
|
12821
13520
|
'argumentOverrides'?: any;
|
|
12822
13521
|
/** Additional options for the template creation. */
|
|
@@ -12859,6 +13558,8 @@ type UpdateTemplateData = {
|
|
|
12859
13558
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
12860
13559
|
'arguments'?: any;
|
|
12861
13560
|
'spec': any;
|
|
13561
|
+
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
13562
|
+
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
12862
13563
|
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
|
|
12863
13564
|
'argumentOverrides'?: any;
|
|
12864
13565
|
/** Additional options for the template creation. */
|
|
@@ -12886,6 +13587,8 @@ type UpdateTemplateData = {
|
|
|
12886
13587
|
'name': string;
|
|
12887
13588
|
/** Description of the template. Example: "This is a sample template." */
|
|
12888
13589
|
'description'?: string;
|
|
13590
|
+
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
13591
|
+
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
12889
13592
|
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
|
|
12890
13593
|
'argumentOverrides'?: any;
|
|
12891
13594
|
/** Additional options for the template creation. */
|
|
@@ -12975,12 +13678,14 @@ type RunTemplateResult = {
|
|
|
12975
13678
|
'id': string;
|
|
12976
13679
|
/** Identifier for the template Example: "example-template" */
|
|
12977
13680
|
'templateId': string;
|
|
12978
|
-
/** Status of the template run Example: "
|
|
12979
|
-
'status': 'pending' | 'running' | 'success' | 'failure';
|
|
12980
|
-
/**
|
|
12981
|
-
'
|
|
12982
|
-
/**
|
|
12983
|
-
'
|
|
13681
|
+
/** Status of the template run Example: "success" */
|
|
13682
|
+
'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
|
|
13683
|
+
/** Whether the run has concluded (aborted, success, failed) Example: true */
|
|
13684
|
+
'concluded': boolean;
|
|
13685
|
+
/** Timestamp the run was created at. Example: "2021-01-01 12:00:00.000Z" */
|
|
13686
|
+
'createdAt': string;
|
|
13687
|
+
/** Timestamp the run was last updated at. Example: "2021-01-01 12:00:00.000Z" */
|
|
13688
|
+
'updatedAt': string;
|
|
12984
13689
|
};
|
|
12985
13690
|
type RunTemplateCall = (opts: RunTemplateRequest) => Promise<ApiCallResponse<RunTemplateResult>>;
|
|
12986
13691
|
type RunTemplateRequest = {
|
|
@@ -13016,12 +13721,18 @@ type ListTemplaterunsResult = {
|
|
|
13016
13721
|
'id': string;
|
|
13017
13722
|
/** Identifier for the template Example: "example-template" */
|
|
13018
13723
|
'templateId': string;
|
|
13019
|
-
/** Status of the template run Example: "
|
|
13020
|
-
'status': 'pending' | 'running' | 'success' | 'failure';
|
|
13021
|
-
/**
|
|
13022
|
-
'
|
|
13023
|
-
/**
|
|
13024
|
-
'
|
|
13724
|
+
/** Status of the template run Example: "success" */
|
|
13725
|
+
'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
|
|
13726
|
+
/** Timestamp the run started at. Example: "2021-01-01 12:01:00.000Z" */
|
|
13727
|
+
'startedAt'?: string;
|
|
13728
|
+
/** Whether the run has concluded (aborted, success, failed) Example: true */
|
|
13729
|
+
'concluded': boolean;
|
|
13730
|
+
/** Timestamp the run concluded at. Example: "2021-01-01 12:10:00.000Z" */
|
|
13731
|
+
'concludedAt'?: string;
|
|
13732
|
+
/** Timestamp the run was created at. Example: "2021-01-01 12:00:00.000Z" */
|
|
13733
|
+
'createdAt': string;
|
|
13734
|
+
/** Timestamp the run was last updated at. Example: "2021-01-01 12:00:00.000Z" */
|
|
13735
|
+
'updatedAt': string;
|
|
13025
13736
|
}[];
|
|
13026
13737
|
};
|
|
13027
13738
|
type ListTemplaterunsCall = (opts: ListTemplaterunsRequest) => Promise<ApiCallResponse<ListTemplaterunsResult>>;
|
|
@@ -13089,12 +13800,14 @@ type GetTemplaterunResult = {
|
|
|
13089
13800
|
'id': string;
|
|
13090
13801
|
/** Identifier for the template Example: "example-template" */
|
|
13091
13802
|
'templateId': string;
|
|
13092
|
-
/** Status of the template run Example: "
|
|
13093
|
-
'status': 'pending' | 'running' | 'success' | 'failure';
|
|
13094
|
-
/**
|
|
13095
|
-
'
|
|
13096
|
-
/**
|
|
13097
|
-
'
|
|
13803
|
+
/** Status of the template run Example: "success" */
|
|
13804
|
+
'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
|
|
13805
|
+
/** Whether the run has concluded (aborted, success, failed) Example: true */
|
|
13806
|
+
'concluded': boolean;
|
|
13807
|
+
/** Timestamp the run was created at. Example: "2021-01-01 12:00:00.000Z" */
|
|
13808
|
+
'createdAt': string;
|
|
13809
|
+
/** Timestamp the run was last updated at. Example: "2021-01-01 12:00:00.000Z" */
|
|
13810
|
+
'updatedAt': string;
|
|
13098
13811
|
};
|
|
13099
13812
|
type GetTemplaterunCall = (opts: GetTemplaterunRequest) => Promise<ApiCallResponse<GetTemplaterunResult>>;
|
|
13100
13813
|
type GetTemplaterunRequest = {
|
|
@@ -13114,6 +13827,73 @@ declare class GetTemplaterunEndpoint extends GetApiEndpoint<GetTemplaterunReques
|
|
|
13114
13827
|
body: () => undefined;
|
|
13115
13828
|
}
|
|
13116
13829
|
|
|
13830
|
+
type AbortTemplaterunResult = {
|
|
13831
|
+
/** Name of the template. Example: "Example Template" */
|
|
13832
|
+
'name': string;
|
|
13833
|
+
/** Description of the template. Example: "This is a sample template." */
|
|
13834
|
+
'description'?: string;
|
|
13835
|
+
/** The version of the Northflank API to run the template against. Example: "v1" */
|
|
13836
|
+
'apiVersion': 'v1';
|
|
13837
|
+
/** Details of the project the template will run in. */
|
|
13838
|
+
'project': {
|
|
13839
|
+
/** The ID of the project to use. */
|
|
13840
|
+
'id': string;
|
|
13841
|
+
} | {
|
|
13842
|
+
'spec': {
|
|
13843
|
+
/** The name of the project. Example: "New Project" */
|
|
13844
|
+
'name': string;
|
|
13845
|
+
/** The description of the project. Example: "This is a new project." */
|
|
13846
|
+
'description'?: string;
|
|
13847
|
+
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
13848
|
+
'color'?: string;
|
|
13849
|
+
/** The region the project will be hosted in. Example: "europe-west" */
|
|
13850
|
+
'region'?: string;
|
|
13851
|
+
} | {
|
|
13852
|
+
/** The name of the project. Example: "New Project" */
|
|
13853
|
+
'name': string;
|
|
13854
|
+
/** The description of the project. Example: "This is a new project." */
|
|
13855
|
+
'description'?: string;
|
|
13856
|
+
/** The color of the project in the Northflank App. Example: "#EF233C" */
|
|
13857
|
+
'color'?: string;
|
|
13858
|
+
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
13859
|
+
'clusterId'?: string;
|
|
13860
|
+
};
|
|
13861
|
+
};
|
|
13862
|
+
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
13863
|
+
'arguments'?: any;
|
|
13864
|
+
'spec': any;
|
|
13865
|
+
'refs'?: any;
|
|
13866
|
+
/** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
|
|
13867
|
+
'id': string;
|
|
13868
|
+
/** Identifier for the template Example: "example-template" */
|
|
13869
|
+
'templateId': string;
|
|
13870
|
+
/** Status of the template run Example: "success" */
|
|
13871
|
+
'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
|
|
13872
|
+
/** Whether the run has concluded (aborted, success, failed) Example: true */
|
|
13873
|
+
'concluded': boolean;
|
|
13874
|
+
/** Timestamp the run was created at. Example: "2021-01-01 12:00:00.000Z" */
|
|
13875
|
+
'createdAt': string;
|
|
13876
|
+
/** Timestamp the run was last updated at. Example: "2021-01-01 12:00:00.000Z" */
|
|
13877
|
+
'updatedAt': string;
|
|
13878
|
+
};
|
|
13879
|
+
type AbortTemplaterunCall = (opts: AbortTemplaterunRequest) => Promise<ApiCallResponse<AbortTemplaterunResult>>;
|
|
13880
|
+
type AbortTemplaterunRequest = {
|
|
13881
|
+
parameters: AbortTemplaterunParameters;
|
|
13882
|
+
};
|
|
13883
|
+
type AbortTemplaterunParameters = {
|
|
13884
|
+
/** ID of the template */ 'templateId': string;
|
|
13885
|
+
/** ID of the template run */
|
|
13886
|
+
'templateRunId': string;
|
|
13887
|
+
};
|
|
13888
|
+
/** Abort the given template run. */
|
|
13889
|
+
declare class AbortTemplaterunEndpoint extends PostApiEndpoint<AbortTemplaterunRequest, AbortTemplaterunResult> {
|
|
13890
|
+
description: string;
|
|
13891
|
+
withAuth: boolean;
|
|
13892
|
+
requiredPermissions: string;
|
|
13893
|
+
endpointUrl: (opts: AbortTemplaterunRequest) => string;
|
|
13894
|
+
body: () => undefined;
|
|
13895
|
+
}
|
|
13896
|
+
|
|
13117
13897
|
type ListReposResult = {
|
|
13118
13898
|
/** A list of accessible repositories. */
|
|
13119
13899
|
'repos'?: {
|
|
@@ -13757,6 +14537,8 @@ declare class ApiClient {
|
|
|
13757
14537
|
contextProvider: ApiClientContextProvider;
|
|
13758
14538
|
forwarding: NorthflankPortForwarder;
|
|
13759
14539
|
exec: NorthflankExecCommand;
|
|
14540
|
+
logs: NorthflankLogFetch;
|
|
14541
|
+
metrics: NorthflankMetricFetch;
|
|
13760
14542
|
list: {
|
|
13761
14543
|
projects: ListProjectsCall;
|
|
13762
14544
|
addons: ListAddonsCall;
|
|
@@ -13989,9 +14771,11 @@ declare class ApiClient {
|
|
|
13989
14771
|
run: AbortJobRunCall;
|
|
13990
14772
|
build: AbortJobBuildCall;
|
|
13991
14773
|
};
|
|
14774
|
+
releaseFlowRun: AbortReleaseflowrunCall;
|
|
13992
14775
|
service: {
|
|
13993
14776
|
build: AbortServiceBuildCall;
|
|
13994
14777
|
};
|
|
14778
|
+
templateRun: AbortTemplaterunCall;
|
|
13995
14779
|
};
|
|
13996
14780
|
retain: {
|
|
13997
14781
|
addon: {
|
|
@@ -14274,9 +15058,11 @@ declare class ApiClient {
|
|
|
14274
15058
|
run: AbortJobRunEndpoint;
|
|
14275
15059
|
build: AbortJobBuildEndpoint;
|
|
14276
15060
|
};
|
|
15061
|
+
releaseFlowRun: AbortReleaseflowrunEndpoint;
|
|
14277
15062
|
service: {
|
|
14278
15063
|
build: AbortServiceBuildEndpoint;
|
|
14279
15064
|
};
|
|
15065
|
+
templateRun: AbortTemplaterunEndpoint;
|
|
14280
15066
|
};
|
|
14281
15067
|
retain: {
|
|
14282
15068
|
addon: {
|
|
@@ -14335,4 +15121,4 @@ type ApiClientOpts = {
|
|
|
14335
15121
|
customUserAgent?: string;
|
|
14336
15122
|
};
|
|
14337
15123
|
|
|
14338
|
-
export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistryCall, AddRegistryData, AddRegistryEndpoint, AddRegistryRequest, AddRegistryResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateClusterCall, CreateClusterData, CreateClusterEndpoint, CreateClusterRequest, CreateClusterResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateIntegrationCall, CreateIntegrationData, CreateIntegrationEndpoint, CreateIntegrationRequest, CreateIntegrationResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, CreateProjectCall, CreateProjectData, CreateProjectEndpoint, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretEndpoint, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildEndpoint, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedEndpoint, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentEndpoint, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTemplateCall, CreateTemplateData, CreateTemplateEndpoint, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleEndpoint, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteClusterCall, DeleteClusterEndpoint, DeleteClusterParameters, DeleteClusterRequest, DeleteClusterResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteIntegrationCall, DeleteIntegrationEndpoint, DeleteIntegrationParameters, DeleteIntegrationRequest, DeleteIntegrationResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistryCall, DeleteRegistryEndpoint, DeleteRegistryParameters, DeleteRegistryRequest, DeleteRegistryResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonParameters, GetAddonPitrwindowCall, GetAddonPitrwindowEndpoint, GetAddonPitrwindowParameters, GetAddonPitrwindowRequest, GetAddonPitrwindowResult, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetClusterCall, GetClusterEndpoint, GetClusterParameters, GetClusterRequest, GetClusterResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetIntegrationCall, GetIntegrationEndpoint, GetIntegrationParameters, GetIntegrationRequest, GetIntegrationResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistryCall, GetRegistryEndpoint, GetRegistryParameters, GetRegistryRequest, GetRegistryResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainRequest, GetSubdomainResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListClustersCall, ListClustersEndpoint, ListClustersOptions, ListClustersRequest, ListClustersResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListIntegrationsCall, ListIntegrationsEndpoint, ListIntegrationsOptions, ListIntegrationsRequest, ListIntegrationsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListPipelinesCall, ListPipelinesEndpoint, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListProvidersCall, ListProvidersEndpoint, ListProvidersRequest, ListProvidersResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistriesCall, ListRegistriesEndpoint, ListRegistriesOptions, ListRegistriesRequest, ListRegistriesResult, ListReleaseflowrunsCall, ListReleaseflowrunsEndpoint, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, NorthflankApiCallError, NorthflankExecCommand, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobEndpoint, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkEndpoint, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupEndpoint, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowEndpoint, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateEndpoint, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartAddonPitrCall, StartAddonPitrData, StartAddonPitrEndpoint, StartAddonPitrParameters, StartAddonPitrRequest, StartAddonPitrResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobEndpoint, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateClusterCall, UpdateClusterData, UpdateClusterEndpoint, UpdateClusterParameters, UpdateClusterRequest, UpdateClusterResult, UpdateIntegrationCall, UpdateIntegrationData, UpdateIntegrationEndpoint, UpdateIntegrationParameters, UpdateIntegrationRequest, UpdateIntegrationResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateRegistryCall, UpdateRegistryData, UpdateRegistryEndpoint, UpdateRegistryParameters, UpdateRegistryRequest, UpdateRegistryResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
|
|
15124
|
+
export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortReleaseflowrunCall, AbortReleaseflowrunEndpoint, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunEndpoint, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistryCall, AddRegistryData, AddRegistryEndpoint, AddRegistryRequest, AddRegistryResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateClusterCall, CreateClusterData, CreateClusterEndpoint, CreateClusterRequest, CreateClusterResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateIntegrationCall, CreateIntegrationData, CreateIntegrationEndpoint, CreateIntegrationRequest, CreateIntegrationResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, CreateProjectCall, CreateProjectData, CreateProjectEndpoint, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretEndpoint, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildEndpoint, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedEndpoint, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentEndpoint, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTemplateCall, CreateTemplateData, CreateTemplateEndpoint, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleEndpoint, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteClusterCall, DeleteClusterEndpoint, DeleteClusterParameters, DeleteClusterRequest, DeleteClusterResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteIntegrationCall, DeleteIntegrationEndpoint, DeleteIntegrationParameters, DeleteIntegrationRequest, DeleteIntegrationResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistryCall, DeleteRegistryEndpoint, DeleteRegistryParameters, DeleteRegistryRequest, DeleteRegistryResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonParameters, GetAddonPitrwindowCall, GetAddonPitrwindowEndpoint, GetAddonPitrwindowParameters, GetAddonPitrwindowRequest, GetAddonPitrwindowResult, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetClusterCall, GetClusterEndpoint, GetClusterParameters, GetClusterRequest, GetClusterResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetIntegrationCall, GetIntegrationEndpoint, GetIntegrationParameters, GetIntegrationRequest, GetIntegrationResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistryCall, GetRegistryEndpoint, GetRegistryParameters, GetRegistryRequest, GetRegistryResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainRequest, GetSubdomainResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListClustersCall, ListClustersEndpoint, ListClustersOptions, ListClustersRequest, ListClustersResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListIntegrationsCall, ListIntegrationsEndpoint, ListIntegrationsOptions, ListIntegrationsRequest, ListIntegrationsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListPipelinesCall, ListPipelinesEndpoint, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListProvidersCall, ListProvidersEndpoint, ListProvidersRequest, ListProvidersResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistriesCall, ListRegistriesEndpoint, ListRegistriesOptions, ListRegistriesRequest, ListRegistriesResult, ListReleaseflowrunsCall, ListReleaseflowrunsEndpoint, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobEndpoint, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkEndpoint, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupEndpoint, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowEndpoint, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateEndpoint, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartAddonPitrCall, StartAddonPitrData, StartAddonPitrEndpoint, StartAddonPitrParameters, StartAddonPitrRequest, StartAddonPitrResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobEndpoint, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateClusterCall, UpdateClusterData, UpdateClusterEndpoint, UpdateClusterParameters, UpdateClusterRequest, UpdateClusterResult, UpdateIntegrationCall, UpdateIntegrationData, UpdateIntegrationEndpoint, UpdateIntegrationParameters, UpdateIntegrationRequest, UpdateIntegrationResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateRegistryCall, UpdateRegistryData, UpdateRegistryEndpoint, UpdateRegistryParameters, UpdateRegistryRequest, UpdateRegistryResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
|