@northflank/js-client 0.7.11 → 0.7.13
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 +1584 -213
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +1584 -213
- package/dist/esm/api-client.js +1 -1
- package/package.json +1 -1
package/dist/cjs/api-client.d.ts
CHANGED
|
@@ -192,6 +192,8 @@ type ListServicesResult = {
|
|
|
192
192
|
'projectId': string;
|
|
193
193
|
/** Service name Example: "Example Service" */
|
|
194
194
|
'name': string;
|
|
195
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
196
|
+
'tags': string[];
|
|
195
197
|
/** A short description of the service Example: "This is the service description" */
|
|
196
198
|
'description'?: string;
|
|
197
199
|
/** Type of the service (combined, build or deployment) Example: "combined" */
|
|
@@ -255,6 +257,8 @@ type ListAddonsResult = {
|
|
|
255
257
|
'name': string;
|
|
256
258
|
/** Full identifier for the addon. Example: "/example-user/default-project/example-job" */
|
|
257
259
|
'appId': string;
|
|
260
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
261
|
+
'tags': string[];
|
|
258
262
|
/** A short description of the addon. Example: "This is the addon description" */
|
|
259
263
|
'description'?: string;
|
|
260
264
|
/** Details about the addon's specifications. */
|
|
@@ -500,6 +504,30 @@ type JobLogsRangeRequestData = LogsRequestCommon & {
|
|
|
500
504
|
containerName?: string | 'all';
|
|
501
505
|
runId?: undefined | string;
|
|
502
506
|
buildId?: never;
|
|
507
|
+
backupId?: never;
|
|
508
|
+
restoreId?: never;
|
|
509
|
+
isBuild?: false;
|
|
510
|
+
};
|
|
511
|
+
type AddonBackupLogsRangeRequestData = LogsRequestCommon & {
|
|
512
|
+
direction?: never;
|
|
513
|
+
endTime?: never;
|
|
514
|
+
duration?: never;
|
|
515
|
+
containerName?: never;
|
|
516
|
+
runId?: never;
|
|
517
|
+
buildId?: never;
|
|
518
|
+
backupId?: string;
|
|
519
|
+
restoreId?: never;
|
|
520
|
+
isBuild?: false;
|
|
521
|
+
};
|
|
522
|
+
type AddonRestoresLogsRangeRequestData = LogsRequestCommon & {
|
|
523
|
+
direction?: never;
|
|
524
|
+
endTime?: never;
|
|
525
|
+
duration?: never;
|
|
526
|
+
containerName?: never;
|
|
527
|
+
runId?: never;
|
|
528
|
+
buildId?: never;
|
|
529
|
+
backupId?: string;
|
|
530
|
+
restoreId?: string;
|
|
503
531
|
isBuild?: false;
|
|
504
532
|
};
|
|
505
533
|
type LogsRangeRequestData = JobLogsRangeRequestData & {
|
|
@@ -512,6 +540,8 @@ type BuildLogsRangeRequestData = LogsRequestCommon & {
|
|
|
512
540
|
containerName?: never;
|
|
513
541
|
runId?: never;
|
|
514
542
|
buildId?: string;
|
|
543
|
+
backupId?: never;
|
|
544
|
+
restoreId?: never;
|
|
515
545
|
isBuild?: true;
|
|
516
546
|
};
|
|
517
547
|
type JobLogsTailRequestData = LogsRequestCommon & {
|
|
@@ -521,6 +551,30 @@ type JobLogsTailRequestData = LogsRequestCommon & {
|
|
|
521
551
|
containerName?: string | 'all';
|
|
522
552
|
runId?: undefined | string;
|
|
523
553
|
buildId?: never;
|
|
554
|
+
backupId?: never;
|
|
555
|
+
restoreId?: never;
|
|
556
|
+
isBuild?: false;
|
|
557
|
+
};
|
|
558
|
+
type AddonBackupLogsTailRequestData = LogsRequestCommon & {
|
|
559
|
+
direction?: never;
|
|
560
|
+
endTime?: never;
|
|
561
|
+
duration?: never;
|
|
562
|
+
containerName?: never;
|
|
563
|
+
runId?: never;
|
|
564
|
+
buildId?: never;
|
|
565
|
+
backupId?: string;
|
|
566
|
+
restoreId?: never;
|
|
567
|
+
isBuild?: false;
|
|
568
|
+
};
|
|
569
|
+
type AddonRestoresLogsTailRequestData = LogsRequestCommon & {
|
|
570
|
+
direction?: never;
|
|
571
|
+
endTime?: never;
|
|
572
|
+
duration?: never;
|
|
573
|
+
containerName?: never;
|
|
574
|
+
runId?: never;
|
|
575
|
+
buildId?: never;
|
|
576
|
+
backupId?: string;
|
|
577
|
+
restoreId?: string;
|
|
524
578
|
isBuild?: false;
|
|
525
579
|
};
|
|
526
580
|
type LogsTailRequestData = JobLogsTailRequestData & {
|
|
@@ -533,6 +587,8 @@ type BuildLogsTailRequestData = LogsRequestCommon & {
|
|
|
533
587
|
containerName?: never;
|
|
534
588
|
runId?: never;
|
|
535
589
|
buildId?: string;
|
|
590
|
+
backupId?: never;
|
|
591
|
+
restoreId?: never;
|
|
536
592
|
isBuild?: true;
|
|
537
593
|
};
|
|
538
594
|
type LogsRequestDataTextIncl = {
|
|
@@ -562,15 +618,15 @@ type LogsRequestDataRegexExcl = {
|
|
|
562
618
|
type LogRequestTextFilters = LogsRequestDataTextIncl | LogsRequestDataTextExcl | LogsRequestDataRegexIncl | LogsRequestDataRegexExcl;
|
|
563
619
|
type LogsConfigCommon = {
|
|
564
620
|
projectId: string;
|
|
565
|
-
entityType: 'service' | 'job' | 'addon' | 'build';
|
|
621
|
+
entityType: 'service' | 'job' | 'addon' | 'build' | 'addonBackup' | 'addonRestore';
|
|
566
622
|
entityId: string;
|
|
567
623
|
};
|
|
568
624
|
type LogsRangeConfig = LogsConfigCommon & {
|
|
569
625
|
queryType: 'range';
|
|
570
|
-
} & (LogsRangeRequestData | BuildLogsRangeRequestData | JobLogsRangeRequestData);
|
|
626
|
+
} & (LogsRangeRequestData | BuildLogsRangeRequestData | JobLogsRangeRequestData | AddonBackupLogsRangeRequestData | AddonRestoresLogsRangeRequestData);
|
|
571
627
|
type LogsTailConfig = LogsConfigCommon & {
|
|
572
628
|
queryType: 'tail';
|
|
573
|
-
} & (LogsTailRequestData | BuildLogsTailRequestData | JobLogsTailRequestData);
|
|
629
|
+
} & (LogsTailRequestData | BuildLogsTailRequestData | JobLogsTailRequestData | AddonBackupLogsTailRequestData | AddonRestoresLogsTailRequestData);
|
|
574
630
|
type LogLine = {
|
|
575
631
|
containerId: string;
|
|
576
632
|
log: any;
|
|
@@ -668,6 +724,40 @@ type TailAddonLogsCall = (opts: {
|
|
|
668
724
|
};
|
|
669
725
|
options?: LogsTailRequestData;
|
|
670
726
|
}) => Promise<LogsClient>;
|
|
727
|
+
type GetAddonBackupLogsCall = (opts: {
|
|
728
|
+
parameters: {
|
|
729
|
+
projectId: string;
|
|
730
|
+
addonId: string;
|
|
731
|
+
backupId: string;
|
|
732
|
+
};
|
|
733
|
+
options?: LogsRangeRequestData;
|
|
734
|
+
}) => Promise<ApiCallLogRangeResponse>;
|
|
735
|
+
type TailAddonBackupLogsCall = (opts: {
|
|
736
|
+
parameters: {
|
|
737
|
+
projectId: string;
|
|
738
|
+
addonId: string;
|
|
739
|
+
backupId: string;
|
|
740
|
+
};
|
|
741
|
+
options?: LogsTailRequestData;
|
|
742
|
+
}) => Promise<LogsClient>;
|
|
743
|
+
type GetAddonRestoresLogsCall = (opts: {
|
|
744
|
+
parameters: {
|
|
745
|
+
projectId: string;
|
|
746
|
+
addonId: string;
|
|
747
|
+
backupId: string;
|
|
748
|
+
restoreId: string;
|
|
749
|
+
};
|
|
750
|
+
options?: LogsRangeRequestData;
|
|
751
|
+
}) => Promise<ApiCallLogRangeResponse>;
|
|
752
|
+
type TailAddonRestoresLogsCall = (opts: {
|
|
753
|
+
parameters: {
|
|
754
|
+
projectId: string;
|
|
755
|
+
addonId: string;
|
|
756
|
+
backupId: string;
|
|
757
|
+
restoreId: string;
|
|
758
|
+
};
|
|
759
|
+
options?: LogsTailRequestData;
|
|
760
|
+
}) => Promise<LogsClient>;
|
|
671
761
|
declare class NorthflankLogFetch {
|
|
672
762
|
private readonly contextProvider;
|
|
673
763
|
constructor(contextProvider: ApiClientContextProvider);
|
|
@@ -711,10 +801,29 @@ declare class NorthflankLogFetch {
|
|
|
711
801
|
};
|
|
712
802
|
options?: LogsRangeRequestData | undefined;
|
|
713
803
|
}) => Promise<ApiCallLogRangeResponse>;
|
|
804
|
+
/** Fetches addon backup logs */
|
|
805
|
+
getAddonBackupLogs: (opts: {
|
|
806
|
+
parameters: {
|
|
807
|
+
projectId: string;
|
|
808
|
+
addonId: string;
|
|
809
|
+
backupId: string;
|
|
810
|
+
};
|
|
811
|
+
options?: Omit<AddonBackupLogsRangeRequestData, "backupId"> | undefined;
|
|
812
|
+
}) => Promise<ApiCallLogRangeResponse>;
|
|
813
|
+
/** Fetches addon restore logs */
|
|
814
|
+
getAddonRestoresLogs: (opts: {
|
|
815
|
+
parameters: {
|
|
816
|
+
projectId: string;
|
|
817
|
+
addonId: string;
|
|
818
|
+
backupId: string;
|
|
819
|
+
restoreId: string;
|
|
820
|
+
};
|
|
821
|
+
options?: Omit<AddonRestoresLogsRangeRequestData, "backupId" | "restoreId"> | undefined;
|
|
822
|
+
}) => Promise<ApiCallLogRangeResponse>;
|
|
714
823
|
logRange: (parameters: {
|
|
715
824
|
projectId: string;
|
|
716
825
|
entityId: string;
|
|
717
|
-
}, data: LogsRangeRequestData | BuildLogsRangeRequestData | JobLogsRangeRequestData
|
|
826
|
+
}, data: LogsRangeRequestData | BuildLogsRangeRequestData | JobLogsRangeRequestData | AddonBackupLogsRangeRequestData | AddonRestoresLogsRangeRequestData, entityType: LogsConfigCommon['entityType']) => Promise<ApiCallLogRangeResponse>;
|
|
718
827
|
tailServiceLogs: (opts: {
|
|
719
828
|
parameters: {
|
|
720
829
|
projectId: string;
|
|
@@ -754,11 +863,30 @@ declare class NorthflankLogFetch {
|
|
|
754
863
|
};
|
|
755
864
|
options?: LogsTailRequestData | undefined;
|
|
756
865
|
}) => Promise<LogsClient>;
|
|
866
|
+
/** Starts a log tail on an addon backup. */
|
|
867
|
+
tailAddonBackupLogs: (opts: {
|
|
868
|
+
parameters: {
|
|
869
|
+
projectId: string;
|
|
870
|
+
addonId: string;
|
|
871
|
+
backupId: string;
|
|
872
|
+
};
|
|
873
|
+
options?: Omit<AddonBackupLogsTailRequestData, "backupId"> | undefined;
|
|
874
|
+
}) => Promise<LogsClient>;
|
|
875
|
+
/** Starts a log tail on an addon restore. */
|
|
876
|
+
tailAddonRestoresLogs: (opts: {
|
|
877
|
+
parameters: {
|
|
878
|
+
projectId: string;
|
|
879
|
+
addonId: string;
|
|
880
|
+
backupId: string;
|
|
881
|
+
restoreId: string;
|
|
882
|
+
};
|
|
883
|
+
options?: Omit<AddonRestoresLogsTailRequestData, "backupId" | "restoreId"> | undefined;
|
|
884
|
+
}) => Promise<LogsClient>;
|
|
757
885
|
/** Starts a log tail. */
|
|
758
886
|
logTail: (parameters: {
|
|
759
887
|
projectId: string;
|
|
760
888
|
entityId: string;
|
|
761
|
-
}, data: LogsTailRequestData | BuildLogsTailRequestData | JobLogsTailRequestData
|
|
889
|
+
}, data: LogsTailRequestData | BuildLogsTailRequestData | JobLogsTailRequestData | AddonBackupLogsTailRequestData | AddonRestoresLogsTailRequestData, entityType: LogsConfigCommon['entityType']) => Promise<LogsClient>;
|
|
762
890
|
private assertStartedWithNodejs;
|
|
763
891
|
}
|
|
764
892
|
|
|
@@ -772,7 +900,9 @@ declare enum MetricType {
|
|
|
772
900
|
PvcUsage = "diskUsage",
|
|
773
901
|
Requests = "requests",
|
|
774
902
|
Http4xxResponses = "http4xxResponses",
|
|
775
|
-
Http5xxResponses = "http5xxResponses"
|
|
903
|
+
Http5xxResponses = "http5xxResponses",
|
|
904
|
+
Bandwidth = "bandwidth",
|
|
905
|
+
BandwidthVolume = "bandwidthVolume"
|
|
776
906
|
}
|
|
777
907
|
type MetricUnit = 'pct' | 'vCPU' | 'mb' | 'kbps' | 'rps' | 'count';
|
|
778
908
|
type MetricValue = {
|
|
@@ -1243,7 +1373,7 @@ declare class GetInvoiceDetailsEndpoint extends GetApiEndpoint<GetInvoiceDetails
|
|
|
1243
1373
|
body: () => undefined;
|
|
1244
1374
|
}
|
|
1245
1375
|
|
|
1246
|
-
type
|
|
1376
|
+
type ListCloudProvidersResult = {
|
|
1247
1377
|
/** An array of supported cloud providers */
|
|
1248
1378
|
'providers': {
|
|
1249
1379
|
/** The ID of the provider. Example: "aws" */
|
|
@@ -1252,12 +1382,8 @@ type ListProvidersResult = {
|
|
|
1252
1382
|
'name': string;
|
|
1253
1383
|
/** The kubernetes engine used. Example: "Elastic Kubernetes Service (EKS)" */
|
|
1254
1384
|
'engine': string;
|
|
1255
|
-
/** An array of available regions */
|
|
1256
|
-
'regions': string[];
|
|
1257
1385
|
/** An array of available kubernetes versions */
|
|
1258
1386
|
'kubernetesVersions': string[];
|
|
1259
|
-
/** An array of supported node types */
|
|
1260
|
-
'nodeTypes': string[];
|
|
1261
1387
|
/** An array of supported node disk sizes */
|
|
1262
1388
|
'diskSizes': number[];
|
|
1263
1389
|
/** An object with feature flags to indicate (un)supported features */
|
|
@@ -1269,18 +1395,18 @@ type ListProvidersResult = {
|
|
|
1269
1395
|
};
|
|
1270
1396
|
}[];
|
|
1271
1397
|
};
|
|
1272
|
-
type
|
|
1273
|
-
type
|
|
1398
|
+
type ListCloudProvidersCall = (opts: ListCloudProvidersRequest) => Promise<ApiCallResponse<ListCloudProvidersResult>>;
|
|
1399
|
+
type ListCloudProvidersRequest = {};
|
|
1274
1400
|
/** Lists supported cloud providers */
|
|
1275
|
-
declare class
|
|
1401
|
+
declare class ListCloudProvidersEndpoint extends GetApiEndpoint<ListCloudProvidersRequest, ListCloudProvidersResult> {
|
|
1276
1402
|
description: string;
|
|
1277
1403
|
withAuth: boolean;
|
|
1278
1404
|
requiredPermissions: string;
|
|
1279
|
-
endpointUrl: (opts:
|
|
1405
|
+
endpointUrl: (opts: ListCloudProvidersRequest) => string;
|
|
1280
1406
|
body: () => undefined;
|
|
1281
1407
|
}
|
|
1282
1408
|
|
|
1283
|
-
type
|
|
1409
|
+
type ListCloudClustersResult = {
|
|
1284
1410
|
/** An array of clusters. */
|
|
1285
1411
|
'clusters': {
|
|
1286
1412
|
/** Identifier for the cluster. Example: "gcp-cluster-1" */
|
|
@@ -1313,7 +1439,7 @@ type ListClustersResult = {
|
|
|
1313
1439
|
/** When 'provider' is 'azure', at least one system node pool is required per cluster. */
|
|
1314
1440
|
'systemPool'?: boolean;
|
|
1315
1441
|
/** Zones in which the node pool should be provisioned. */
|
|
1316
|
-
'availabilityZones'
|
|
1442
|
+
'availabilityZones': string[];
|
|
1317
1443
|
/** Set of label keys and values that can be used to determine scheduling via resource tags. */
|
|
1318
1444
|
'labels'?: any;
|
|
1319
1445
|
/** ID of existing node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
@@ -1332,11 +1458,11 @@ type ListClustersResult = {
|
|
|
1332
1458
|
'deletionRequested': boolean;
|
|
1333
1459
|
}[];
|
|
1334
1460
|
};
|
|
1335
|
-
type
|
|
1336
|
-
type
|
|
1337
|
-
options?:
|
|
1461
|
+
type ListCloudClustersCall = (opts: ListCloudClustersRequest) => Promise<ApiCallResponse<ListCloudClustersResult>>;
|
|
1462
|
+
type ListCloudClustersRequest = {
|
|
1463
|
+
options?: ListCloudClustersOptions;
|
|
1338
1464
|
};
|
|
1339
|
-
type
|
|
1465
|
+
type ListCloudClustersOptions = {
|
|
1340
1466
|
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
1341
1467
|
'per_page'?: number;
|
|
1342
1468
|
/** The page number to access. */
|
|
@@ -1345,15 +1471,15 @@ type ListClustersOptions = {
|
|
|
1345
1471
|
'cursor'?: string;
|
|
1346
1472
|
};
|
|
1347
1473
|
/** Lists clusters for the authenticated user or team. */
|
|
1348
|
-
declare class
|
|
1474
|
+
declare class ListCloudClustersEndpoint extends GetApiEndpoint<ListCloudClustersRequest, ListCloudClustersResult> {
|
|
1349
1475
|
description: string;
|
|
1350
1476
|
withAuth: boolean;
|
|
1351
1477
|
requiredPermissions: string;
|
|
1352
|
-
endpointUrl: (opts:
|
|
1478
|
+
endpointUrl: (opts: ListCloudClustersRequest) => string;
|
|
1353
1479
|
body: () => undefined;
|
|
1354
1480
|
}
|
|
1355
1481
|
|
|
1356
|
-
type
|
|
1482
|
+
type CreateCloudClusterResult = {
|
|
1357
1483
|
/** Identifier for the cluster. Example: "gcp-cluster-1" */
|
|
1358
1484
|
'id': string;
|
|
1359
1485
|
/** The name of the cluster. Example: "GCP Cluster 1" */
|
|
@@ -1384,7 +1510,7 @@ type CreateClusterResult = {
|
|
|
1384
1510
|
/** When 'provider' is 'azure', at least one system node pool is required per cluster. */
|
|
1385
1511
|
'systemPool'?: boolean;
|
|
1386
1512
|
/** Zones in which the node pool should be provisioned. */
|
|
1387
|
-
'availabilityZones'
|
|
1513
|
+
'availabilityZones': string[];
|
|
1388
1514
|
/** Set of label keys and values that can be used to determine scheduling via resource tags. */
|
|
1389
1515
|
'labels'?: any;
|
|
1390
1516
|
/** ID of existing node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
@@ -1402,11 +1528,11 @@ type CreateClusterResult = {
|
|
|
1402
1528
|
/** Indicates if provider resource deletion has been requested by the user. */
|
|
1403
1529
|
'deletionRequested': boolean;
|
|
1404
1530
|
};
|
|
1405
|
-
type
|
|
1406
|
-
type
|
|
1407
|
-
data:
|
|
1531
|
+
type CreateCloudClusterCall = (opts: CreateCloudClusterRequest) => Promise<ApiCallResponse<CreateCloudClusterResult>>;
|
|
1532
|
+
type CreateCloudClusterRequest = {
|
|
1533
|
+
data: CreateCloudClusterData;
|
|
1408
1534
|
};
|
|
1409
|
-
type
|
|
1535
|
+
type CreateCloudClusterData = {
|
|
1410
1536
|
/** The name of the cluster. Example: "GCP Cluster 1" */
|
|
1411
1537
|
'name': string;
|
|
1412
1538
|
/** The description of the cluster. Example: "This is a new cluster." */
|
|
@@ -1451,7 +1577,7 @@ type CreateClusterData = {
|
|
|
1451
1577
|
/** When 'provider' is 'azure', at least one system node pool is required per cluster. */
|
|
1452
1578
|
'systemPool'?: boolean;
|
|
1453
1579
|
/** Zones in which the node pool should be provisioned. */
|
|
1454
|
-
'availabilityZones'
|
|
1580
|
+
'availabilityZones': string[];
|
|
1455
1581
|
/** Set of label keys and values that can be used to determine scheduling via resource tags. */
|
|
1456
1582
|
'labels'?: any;
|
|
1457
1583
|
}[];
|
|
@@ -1460,7 +1586,7 @@ type CreateClusterData = {
|
|
|
1460
1586
|
'mode'?: 'paas' | 'internal' | 'build-cluster';
|
|
1461
1587
|
/** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
|
|
1462
1588
|
'plan'?: string;
|
|
1463
|
-
/** Cluster to use for scheduling builds
|
|
1589
|
+
/** Cluster to use for scheduling builds */
|
|
1464
1590
|
'clusterId'?: string;
|
|
1465
1591
|
};
|
|
1466
1592
|
'registry'?: {
|
|
@@ -1470,12 +1596,13 @@ type CreateClusterData = {
|
|
|
1470
1596
|
};
|
|
1471
1597
|
'logging'?: {
|
|
1472
1598
|
'mode'?: 'paas' | 'loki';
|
|
1599
|
+
/** Required data for loki setting. */
|
|
1473
1600
|
'loki'?: {
|
|
1474
1601
|
's3BucketName': string;
|
|
1475
1602
|
's3AccessKey': string;
|
|
1476
1603
|
's3SecretKey': string;
|
|
1477
1604
|
's3Region': string;
|
|
1478
|
-
}
|
|
1605
|
+
};
|
|
1479
1606
|
};
|
|
1480
1607
|
};
|
|
1481
1608
|
/** GCP specific data. Required when `provider` is `gcp`. */
|
|
@@ -1485,15 +1612,15 @@ type CreateClusterData = {
|
|
|
1485
1612
|
};
|
|
1486
1613
|
};
|
|
1487
1614
|
/** Creates a new cluster. */
|
|
1488
|
-
declare class
|
|
1615
|
+
declare class CreateCloudClusterEndpoint extends PostApiEndpoint<CreateCloudClusterRequest, CreateCloudClusterResult> {
|
|
1489
1616
|
description: string;
|
|
1490
1617
|
withAuth: boolean;
|
|
1491
1618
|
requiredPermissions: string;
|
|
1492
|
-
endpointUrl: (opts:
|
|
1493
|
-
body: (payload:
|
|
1619
|
+
endpointUrl: (opts: CreateCloudClusterRequest) => string;
|
|
1620
|
+
body: (payload: CreateCloudClusterRequest) => string;
|
|
1494
1621
|
}
|
|
1495
1622
|
|
|
1496
|
-
type
|
|
1623
|
+
type GetCloudClusterResult = {
|
|
1497
1624
|
/** Identifier for the cluster. Example: "gcp-cluster-1" */
|
|
1498
1625
|
'id': string;
|
|
1499
1626
|
/** The name of the cluster. Example: "GCP Cluster 1" */
|
|
@@ -1524,7 +1651,7 @@ type GetClusterResult = {
|
|
|
1524
1651
|
/** When 'provider' is 'azure', at least one system node pool is required per cluster. */
|
|
1525
1652
|
'systemPool'?: boolean;
|
|
1526
1653
|
/** Zones in which the node pool should be provisioned. */
|
|
1527
|
-
'availabilityZones'
|
|
1654
|
+
'availabilityZones': string[];
|
|
1528
1655
|
/** Set of label keys and values that can be used to determine scheduling via resource tags. */
|
|
1529
1656
|
'labels'?: any;
|
|
1530
1657
|
/** ID of existing node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
@@ -1542,23 +1669,23 @@ type GetClusterResult = {
|
|
|
1542
1669
|
/** Indicates if provider resource deletion has been requested by the user. */
|
|
1543
1670
|
'deletionRequested': boolean;
|
|
1544
1671
|
};
|
|
1545
|
-
type
|
|
1546
|
-
type
|
|
1547
|
-
parameters:
|
|
1672
|
+
type GetCloudClusterCall = (opts: GetCloudClusterRequest) => Promise<ApiCallResponse<GetCloudClusterResult>>;
|
|
1673
|
+
type GetCloudClusterRequest = {
|
|
1674
|
+
parameters: GetCloudClusterParameters;
|
|
1548
1675
|
};
|
|
1549
|
-
type
|
|
1676
|
+
type GetCloudClusterParameters = {
|
|
1550
1677
|
/** ID of the cluster */ 'clusterId': string;
|
|
1551
1678
|
};
|
|
1552
1679
|
/** Get information about the given cluster */
|
|
1553
|
-
declare class
|
|
1680
|
+
declare class GetCloudClusterEndpoint extends GetApiEndpoint<GetCloudClusterRequest, GetCloudClusterResult> {
|
|
1554
1681
|
description: string;
|
|
1555
1682
|
withAuth: boolean;
|
|
1556
1683
|
requiredPermissions: string;
|
|
1557
|
-
endpointUrl: (opts:
|
|
1684
|
+
endpointUrl: (opts: GetCloudClusterRequest) => string;
|
|
1558
1685
|
body: () => undefined;
|
|
1559
1686
|
}
|
|
1560
1687
|
|
|
1561
|
-
type
|
|
1688
|
+
type UpdateCloudClusterResult = {
|
|
1562
1689
|
/** Identifier for the cluster. Example: "gcp-cluster-1" */
|
|
1563
1690
|
'id': string;
|
|
1564
1691
|
/** The name of the cluster. Example: "GCP Cluster 1" */
|
|
@@ -1589,7 +1716,7 @@ type UpdateClusterResult = {
|
|
|
1589
1716
|
/** When 'provider' is 'azure', at least one system node pool is required per cluster. */
|
|
1590
1717
|
'systemPool'?: boolean;
|
|
1591
1718
|
/** Zones in which the node pool should be provisioned. */
|
|
1592
|
-
'availabilityZones'
|
|
1719
|
+
'availabilityZones': string[];
|
|
1593
1720
|
/** Set of label keys and values that can be used to determine scheduling via resource tags. */
|
|
1594
1721
|
'labels'?: any;
|
|
1595
1722
|
/** ID of existing node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
@@ -1607,15 +1734,15 @@ type UpdateClusterResult = {
|
|
|
1607
1734
|
/** Indicates if provider resource deletion has been requested by the user. */
|
|
1608
1735
|
'deletionRequested': boolean;
|
|
1609
1736
|
};
|
|
1610
|
-
type
|
|
1611
|
-
type
|
|
1612
|
-
parameters:
|
|
1613
|
-
data:
|
|
1737
|
+
type UpdateCloudClusterCall = (opts: UpdateCloudClusterRequest) => Promise<ApiCallResponse<UpdateCloudClusterResult>>;
|
|
1738
|
+
type UpdateCloudClusterRequest = {
|
|
1739
|
+
parameters: UpdateCloudClusterParameters;
|
|
1740
|
+
data: UpdateCloudClusterData;
|
|
1614
1741
|
};
|
|
1615
|
-
type
|
|
1742
|
+
type UpdateCloudClusterParameters = {
|
|
1616
1743
|
/** ID of the cluster */ 'clusterId': string;
|
|
1617
1744
|
};
|
|
1618
|
-
type
|
|
1745
|
+
type UpdateCloudClusterData = {
|
|
1619
1746
|
/** The description of the cluster. Example: "This is an updated description." */
|
|
1620
1747
|
'description'?: string;
|
|
1621
1748
|
'nodePools'?: {
|
|
@@ -1638,7 +1765,7 @@ type UpdateClusterData = {
|
|
|
1638
1765
|
/** When 'provider' is 'azure', at least one system node pool is required per cluster. */
|
|
1639
1766
|
'systemPool'?: boolean;
|
|
1640
1767
|
/** Zones in which the node pool should be provisioned. */
|
|
1641
|
-
'availabilityZones'
|
|
1768
|
+
'availabilityZones': string[];
|
|
1642
1769
|
/** Set of label keys and values that can be used to determine scheduling via resource tags. */
|
|
1643
1770
|
'labels'?: any;
|
|
1644
1771
|
/** ID of existing node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "6aa96121-0345-43ad-bade-af36d540c222" */
|
|
@@ -1649,7 +1776,7 @@ type UpdateClusterData = {
|
|
|
1649
1776
|
'mode'?: 'paas' | 'internal' | 'build-cluster';
|
|
1650
1777
|
/** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
|
|
1651
1778
|
'plan'?: string;
|
|
1652
|
-
/** Cluster to use for scheduling builds
|
|
1779
|
+
/** Cluster to use for scheduling builds */
|
|
1653
1780
|
'clusterId'?: string;
|
|
1654
1781
|
};
|
|
1655
1782
|
'registry'?: {
|
|
@@ -1659,42 +1786,168 @@ type UpdateClusterData = {
|
|
|
1659
1786
|
};
|
|
1660
1787
|
'logging'?: {
|
|
1661
1788
|
'mode'?: 'paas' | 'loki';
|
|
1789
|
+
/** Required data for loki setting. */
|
|
1662
1790
|
'loki'?: {
|
|
1663
1791
|
's3BucketName': string;
|
|
1664
1792
|
's3AccessKey': string;
|
|
1665
1793
|
's3SecretKey': string;
|
|
1666
1794
|
's3Region': string;
|
|
1667
|
-
}
|
|
1795
|
+
};
|
|
1668
1796
|
};
|
|
1669
1797
|
};
|
|
1670
1798
|
};
|
|
1671
1799
|
/** Update an existing cluster. */
|
|
1672
|
-
declare class
|
|
1800
|
+
declare class UpdateCloudClusterEndpoint extends PostApiEndpoint<UpdateCloudClusterRequest, UpdateCloudClusterResult> {
|
|
1673
1801
|
description: string;
|
|
1674
1802
|
withAuth: boolean;
|
|
1675
1803
|
requiredPermissions: string;
|
|
1676
|
-
endpointUrl: (opts:
|
|
1677
|
-
body: (payload:
|
|
1804
|
+
endpointUrl: (opts: UpdateCloudClusterRequest) => string;
|
|
1805
|
+
body: (payload: UpdateCloudClusterRequest) => string;
|
|
1678
1806
|
}
|
|
1679
1807
|
|
|
1680
|
-
type
|
|
1681
|
-
type
|
|
1682
|
-
type
|
|
1683
|
-
parameters:
|
|
1808
|
+
type DeleteCloudClusterResult = any | any;
|
|
1809
|
+
type DeleteCloudClusterCall = (opts: DeleteCloudClusterRequest) => Promise<ApiCallResponse<DeleteCloudClusterResult>>;
|
|
1810
|
+
type DeleteCloudClusterRequest = {
|
|
1811
|
+
parameters: DeleteCloudClusterParameters;
|
|
1684
1812
|
};
|
|
1685
|
-
type
|
|
1813
|
+
type DeleteCloudClusterParameters = {
|
|
1686
1814
|
/** ID of the cluster */ 'clusterId': string;
|
|
1687
1815
|
};
|
|
1688
1816
|
/** Delete the given cluster. Fails if the cluster has associated projects. */
|
|
1689
|
-
declare class
|
|
1817
|
+
declare class DeleteCloudClusterEndpoint extends DeleteApiEndpoint<DeleteCloudClusterRequest, DeleteCloudClusterResult> {
|
|
1690
1818
|
description: string;
|
|
1691
1819
|
withAuth: boolean;
|
|
1692
1820
|
requiredPermissions: string;
|
|
1693
|
-
endpointUrl: (opts:
|
|
1821
|
+
endpointUrl: (opts: DeleteCloudClusterRequest) => string;
|
|
1694
1822
|
body: () => undefined;
|
|
1695
1823
|
}
|
|
1696
1824
|
|
|
1697
|
-
type
|
|
1825
|
+
type ListCloudDockerregistryResult = {
|
|
1826
|
+
/** An array of integrations. */
|
|
1827
|
+
'registries': {
|
|
1828
|
+
/** Identifier for the docker registry. Example: "gcp-integration" */
|
|
1829
|
+
'id': string;
|
|
1830
|
+
/** The name of the docker registry. Example: "GCP integration" */
|
|
1831
|
+
'name': string;
|
|
1832
|
+
/** A short description of the docker registry. Example: "The docker registry description" */
|
|
1833
|
+
'description'?: string;
|
|
1834
|
+
/** The cloud provider to which this docker registry belongs to. Example: "aws" */
|
|
1835
|
+
'provider'?: string;
|
|
1836
|
+
/** The region in which this registry was created. Example: "eu-west-1" */
|
|
1837
|
+
'region'?: string;
|
|
1838
|
+
/** The time the docker registry was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
1839
|
+
'createdAt': string;
|
|
1840
|
+
}[];
|
|
1841
|
+
};
|
|
1842
|
+
type ListCloudDockerregistryCall = (opts: ListCloudDockerregistryRequest) => Promise<ApiCallResponse<ListCloudDockerregistryResult>>;
|
|
1843
|
+
type ListCloudDockerregistryRequest = {
|
|
1844
|
+
options?: ListCloudDockerregistryOptions;
|
|
1845
|
+
};
|
|
1846
|
+
type ListCloudDockerregistryOptions = {
|
|
1847
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
1848
|
+
'per_page'?: number;
|
|
1849
|
+
/** The page number to access. */
|
|
1850
|
+
'page'?: number;
|
|
1851
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
1852
|
+
'cursor'?: string;
|
|
1853
|
+
};
|
|
1854
|
+
/** Lists docker registries for the authenticated user or team. */
|
|
1855
|
+
declare class ListCloudDockerregistryEndpoint extends GetApiEndpoint<ListCloudDockerregistryRequest, ListCloudDockerregistryResult> {
|
|
1856
|
+
description: string;
|
|
1857
|
+
withAuth: boolean;
|
|
1858
|
+
requiredPermissions: string;
|
|
1859
|
+
endpointUrl: (opts: ListCloudDockerregistryRequest) => string;
|
|
1860
|
+
body: () => undefined;
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
type CreateCloudDockerregistryResult = {
|
|
1864
|
+
/** Identifier for the docker registry. Example: "gcp-integration" */
|
|
1865
|
+
'id': string;
|
|
1866
|
+
/** The name of the docker registry. Example: "GCP integration" */
|
|
1867
|
+
'name': string;
|
|
1868
|
+
/** A short description of the docker registry. Example: "The registry description" */
|
|
1869
|
+
'description'?: string;
|
|
1870
|
+
/** The cloud provider to which this docker registry belongs to. Example: "aws" */
|
|
1871
|
+
'provider'?: string;
|
|
1872
|
+
/** The region in which this registry was created. Example: "eu-west-1" */
|
|
1873
|
+
'region'?: string;
|
|
1874
|
+
/** The time the registry was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
1875
|
+
'createdAt': string;
|
|
1876
|
+
};
|
|
1877
|
+
type CreateCloudDockerregistryCall = (opts: CreateCloudDockerregistryRequest) => Promise<ApiCallResponse<CreateCloudDockerregistryResult>>;
|
|
1878
|
+
type CreateCloudDockerregistryRequest = {
|
|
1879
|
+
data: CreateCloudDockerregistryData;
|
|
1880
|
+
};
|
|
1881
|
+
type CreateCloudDockerregistryData = {
|
|
1882
|
+
/** The name of the cloud provider integration. Example: "New Integration" */
|
|
1883
|
+
'name': string;
|
|
1884
|
+
/** The description of the integration. Example: "This is a new cloud provider integration." */
|
|
1885
|
+
'description'?: string;
|
|
1886
|
+
/** Cloud provider to be used for the selected resource */
|
|
1887
|
+
'provider': 'gcp' | 'aws' | 'azure' | 'do';
|
|
1888
|
+
'region': string;
|
|
1889
|
+
/** Existing integration to use for this registry. Example: "gcp-integration" */
|
|
1890
|
+
'integrationId'?: string;
|
|
1891
|
+
/** The type of provider integration. Example: "cluster" */
|
|
1892
|
+
'type'?: 'cluster' | 'domain' | 'registry' | 'cdn';
|
|
1893
|
+
};
|
|
1894
|
+
/** Creates a new docker registry. */
|
|
1895
|
+
declare class CreateCloudDockerregistryEndpoint extends PostApiEndpoint<CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult> {
|
|
1896
|
+
description: string;
|
|
1897
|
+
withAuth: boolean;
|
|
1898
|
+
requiredPermissions: string;
|
|
1899
|
+
endpointUrl: (opts: CreateCloudDockerregistryRequest) => string;
|
|
1900
|
+
body: (payload: CreateCloudDockerregistryRequest) => string;
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
type GetCloudDockerregistryResult = {
|
|
1904
|
+
/** Identifier for the docker registry. Example: "gcp-integration" */
|
|
1905
|
+
'id': string;
|
|
1906
|
+
/** The name of the docker registry. Example: "GCP integration" */
|
|
1907
|
+
'name': string;
|
|
1908
|
+
/** A short description of the docker registry. Example: "The registry description" */
|
|
1909
|
+
'description'?: string;
|
|
1910
|
+
/** The cloud provider to which this docker registry belongs to. Example: "aws" */
|
|
1911
|
+
'provider'?: string;
|
|
1912
|
+
/** The region in which this registry was created. Example: "eu-west-1" */
|
|
1913
|
+
'region'?: string;
|
|
1914
|
+
/** The time the registry was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
1915
|
+
'createdAt': string;
|
|
1916
|
+
};
|
|
1917
|
+
type GetCloudDockerregistryCall = (opts: GetCloudDockerregistryRequest) => Promise<ApiCallResponse<GetCloudDockerregistryResult>>;
|
|
1918
|
+
type GetCloudDockerregistryRequest = {
|
|
1919
|
+
parameters: GetCloudDockerregistryParameters;
|
|
1920
|
+
};
|
|
1921
|
+
type GetCloudDockerregistryParameters = {
|
|
1922
|
+
/** ID of the docker registry */ 'registryId': string;
|
|
1923
|
+
};
|
|
1924
|
+
/** Get information about the given docker registry */
|
|
1925
|
+
declare class GetCloudDockerregistryEndpoint extends GetApiEndpoint<GetCloudDockerregistryRequest, GetCloudDockerregistryResult> {
|
|
1926
|
+
description: string;
|
|
1927
|
+
withAuth: boolean;
|
|
1928
|
+
requiredPermissions: string;
|
|
1929
|
+
endpointUrl: (opts: GetCloudDockerregistryRequest) => string;
|
|
1930
|
+
body: () => undefined;
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
type DeleteCloudDockerregistryResult = any | any;
|
|
1934
|
+
type DeleteCloudDockerregistryCall = (opts: DeleteCloudDockerregistryRequest) => Promise<ApiCallResponse<DeleteCloudDockerregistryResult>>;
|
|
1935
|
+
type DeleteCloudDockerregistryRequest = {
|
|
1936
|
+
parameters: DeleteCloudDockerregistryParameters;
|
|
1937
|
+
};
|
|
1938
|
+
type DeleteCloudDockerregistryParameters = {
|
|
1939
|
+
/** ID of the docker registry */ 'registryId': string;
|
|
1940
|
+
};
|
|
1941
|
+
/** Delete the given docker registry. Fails if the docker registry is associated with existing clusters. */
|
|
1942
|
+
declare class DeleteCloudDockerregistryEndpoint extends DeleteApiEndpoint<DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult> {
|
|
1943
|
+
description: string;
|
|
1944
|
+
withAuth: boolean;
|
|
1945
|
+
requiredPermissions: string;
|
|
1946
|
+
endpointUrl: (opts: DeleteCloudDockerregistryRequest) => string;
|
|
1947
|
+
body: () => undefined;
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1950
|
+
type ListCloudIntegrationsResult = {
|
|
1698
1951
|
/** An array of integrations. */
|
|
1699
1952
|
'integrations': {
|
|
1700
1953
|
/** Identifier for the integration. Example: "gcp-integration" */
|
|
@@ -1709,11 +1962,11 @@ type ListIntegrationsResult = {
|
|
|
1709
1962
|
'createdAt': string;
|
|
1710
1963
|
}[];
|
|
1711
1964
|
};
|
|
1712
|
-
type
|
|
1713
|
-
type
|
|
1714
|
-
options?:
|
|
1965
|
+
type ListCloudIntegrationsCall = (opts: ListCloudIntegrationsRequest) => Promise<ApiCallResponse<ListCloudIntegrationsResult>>;
|
|
1966
|
+
type ListCloudIntegrationsRequest = {
|
|
1967
|
+
options?: ListCloudIntegrationsOptions;
|
|
1715
1968
|
};
|
|
1716
|
-
type
|
|
1969
|
+
type ListCloudIntegrationsOptions = {
|
|
1717
1970
|
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
1718
1971
|
'per_page'?: number;
|
|
1719
1972
|
/** The page number to access. */
|
|
@@ -1722,15 +1975,15 @@ type ListIntegrationsOptions = {
|
|
|
1722
1975
|
'cursor'?: string;
|
|
1723
1976
|
};
|
|
1724
1977
|
/** Lists integrations for the authenticated user or team. */
|
|
1725
|
-
declare class
|
|
1978
|
+
declare class ListCloudIntegrationsEndpoint extends GetApiEndpoint<ListCloudIntegrationsRequest, ListCloudIntegrationsResult> {
|
|
1726
1979
|
description: string;
|
|
1727
1980
|
withAuth: boolean;
|
|
1728
1981
|
requiredPermissions: string;
|
|
1729
|
-
endpointUrl: (opts:
|
|
1982
|
+
endpointUrl: (opts: ListCloudIntegrationsRequest) => string;
|
|
1730
1983
|
body: () => undefined;
|
|
1731
1984
|
}
|
|
1732
1985
|
|
|
1733
|
-
type
|
|
1986
|
+
type CreateCloudIntegrationResult = {
|
|
1734
1987
|
/** Identifier for the integration. Example: "gcp-integration" */
|
|
1735
1988
|
'id': string;
|
|
1736
1989
|
/** The name of the integration. Example: "GCP integration" */
|
|
@@ -1751,17 +2004,19 @@ type CreateIntegrationResult = {
|
|
|
1751
2004
|
/** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
1752
2005
|
'createdAt': string;
|
|
1753
2006
|
};
|
|
1754
|
-
type
|
|
1755
|
-
type
|
|
1756
|
-
data:
|
|
2007
|
+
type CreateCloudIntegrationCall = (opts: CreateCloudIntegrationRequest) => Promise<ApiCallResponse<CreateCloudIntegrationResult>>;
|
|
2008
|
+
type CreateCloudIntegrationRequest = {
|
|
2009
|
+
data: CreateCloudIntegrationData;
|
|
1757
2010
|
};
|
|
1758
|
-
type
|
|
2011
|
+
type CreateCloudIntegrationData = {
|
|
1759
2012
|
/** The name of the cloud provider integration. Example: "New Integration" */
|
|
1760
2013
|
'name': string;
|
|
1761
2014
|
/** The description of the integration. Example: "This is a new cloud provider integration." */
|
|
1762
2015
|
'description'?: string;
|
|
1763
2016
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
1764
2017
|
'provider': 'gcp' | 'aws' | 'azure' | 'do';
|
|
2018
|
+
/** The type of provider integration. Example: "cluster" */
|
|
2019
|
+
'type'?: 'cluster' | 'domain' | 'registry' | 'cdn';
|
|
1765
2020
|
/** Cloud provider credential input, required fields dependent on which provider is chosen. */
|
|
1766
2021
|
'credentials': {
|
|
1767
2022
|
/** Contents of a GCP key file. */
|
|
@@ -1780,15 +2035,15 @@ type CreateIntegrationData = {
|
|
|
1780
2035
|
};
|
|
1781
2036
|
};
|
|
1782
2037
|
/** Creates a new integration. */
|
|
1783
|
-
declare class
|
|
2038
|
+
declare class CreateCloudIntegrationEndpoint extends PostApiEndpoint<CreateCloudIntegrationRequest, CreateCloudIntegrationResult> {
|
|
1784
2039
|
description: string;
|
|
1785
2040
|
withAuth: boolean;
|
|
1786
2041
|
requiredPermissions: string;
|
|
1787
|
-
endpointUrl: (opts:
|
|
1788
|
-
body: (payload:
|
|
2042
|
+
endpointUrl: (opts: CreateCloudIntegrationRequest) => string;
|
|
2043
|
+
body: (payload: CreateCloudIntegrationRequest) => string;
|
|
1789
2044
|
}
|
|
1790
2045
|
|
|
1791
|
-
type
|
|
2046
|
+
type GetCloudIntegrationResult = {
|
|
1792
2047
|
/** Identifier for the integration. Example: "gcp-integration" */
|
|
1793
2048
|
'id': string;
|
|
1794
2049
|
/** The name of the integration. Example: "GCP integration" */
|
|
@@ -1809,23 +2064,23 @@ type GetIntegrationResult = {
|
|
|
1809
2064
|
/** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
1810
2065
|
'createdAt': string;
|
|
1811
2066
|
};
|
|
1812
|
-
type
|
|
1813
|
-
type
|
|
1814
|
-
parameters:
|
|
2067
|
+
type GetCloudIntegrationCall = (opts: GetCloudIntegrationRequest) => Promise<ApiCallResponse<GetCloudIntegrationResult>>;
|
|
2068
|
+
type GetCloudIntegrationRequest = {
|
|
2069
|
+
parameters: GetCloudIntegrationParameters;
|
|
1815
2070
|
};
|
|
1816
|
-
type
|
|
2071
|
+
type GetCloudIntegrationParameters = {
|
|
1817
2072
|
/** ID of the provider integration */ 'integrationId': string;
|
|
1818
2073
|
};
|
|
1819
2074
|
/** Get information about the given integration */
|
|
1820
|
-
declare class
|
|
2075
|
+
declare class GetCloudIntegrationEndpoint extends GetApiEndpoint<GetCloudIntegrationRequest, GetCloudIntegrationResult> {
|
|
1821
2076
|
description: string;
|
|
1822
2077
|
withAuth: boolean;
|
|
1823
2078
|
requiredPermissions: string;
|
|
1824
|
-
endpointUrl: (opts:
|
|
2079
|
+
endpointUrl: (opts: GetCloudIntegrationRequest) => string;
|
|
1825
2080
|
body: () => undefined;
|
|
1826
2081
|
}
|
|
1827
2082
|
|
|
1828
|
-
type
|
|
2083
|
+
type UpdateCloudIntegrationResult = {
|
|
1829
2084
|
/** Identifier for the integration. Example: "gcp-integration" */
|
|
1830
2085
|
'id': string;
|
|
1831
2086
|
/** The name of the integration. Example: "GCP integration" */
|
|
@@ -1846,15 +2101,15 @@ type UpdateIntegrationResult = {
|
|
|
1846
2101
|
/** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
1847
2102
|
'createdAt': string;
|
|
1848
2103
|
};
|
|
1849
|
-
type
|
|
1850
|
-
type
|
|
1851
|
-
parameters:
|
|
1852
|
-
data:
|
|
2104
|
+
type UpdateCloudIntegrationCall = (opts: UpdateCloudIntegrationRequest) => Promise<ApiCallResponse<UpdateCloudIntegrationResult>>;
|
|
2105
|
+
type UpdateCloudIntegrationRequest = {
|
|
2106
|
+
parameters: UpdateCloudIntegrationParameters;
|
|
2107
|
+
data: UpdateCloudIntegrationData;
|
|
1853
2108
|
};
|
|
1854
|
-
type
|
|
2109
|
+
type UpdateCloudIntegrationParameters = {
|
|
1855
2110
|
/** ID of the provider integration */ 'integrationId': string;
|
|
1856
2111
|
};
|
|
1857
|
-
type
|
|
2112
|
+
type UpdateCloudIntegrationData = {
|
|
1858
2113
|
/** The description of the integration. Example: "This is a new description." */
|
|
1859
2114
|
'description'?: string;
|
|
1860
2115
|
/** Cloud provider credential input, required fields dependent on which provider is chosen. */
|
|
@@ -1870,28 +2125,112 @@ type UpdateIntegrationData = {
|
|
|
1870
2125
|
};
|
|
1871
2126
|
};
|
|
1872
2127
|
/** Update information about the given integration */
|
|
1873
|
-
declare class
|
|
2128
|
+
declare class UpdateCloudIntegrationEndpoint extends PostApiEndpoint<UpdateCloudIntegrationRequest, UpdateCloudIntegrationResult> {
|
|
1874
2129
|
description: string;
|
|
1875
2130
|
withAuth: boolean;
|
|
1876
2131
|
requiredPermissions: string;
|
|
1877
|
-
endpointUrl: (opts:
|
|
1878
|
-
body: (payload:
|
|
2132
|
+
endpointUrl: (opts: UpdateCloudIntegrationRequest) => string;
|
|
2133
|
+
body: (payload: UpdateCloudIntegrationRequest) => string;
|
|
1879
2134
|
}
|
|
1880
2135
|
|
|
1881
|
-
type
|
|
1882
|
-
type
|
|
1883
|
-
type
|
|
1884
|
-
parameters:
|
|
2136
|
+
type DeleteCloudIntegrationResult = any | any;
|
|
2137
|
+
type DeleteCloudIntegrationCall = (opts: DeleteCloudIntegrationRequest) => Promise<ApiCallResponse<DeleteCloudIntegrationResult>>;
|
|
2138
|
+
type DeleteCloudIntegrationRequest = {
|
|
2139
|
+
parameters: DeleteCloudIntegrationParameters;
|
|
1885
2140
|
};
|
|
1886
|
-
type
|
|
2141
|
+
type DeleteCloudIntegrationParameters = {
|
|
1887
2142
|
/** ID of the provider integration */ 'integrationId': string;
|
|
1888
2143
|
};
|
|
1889
2144
|
/** Delete the given integration. Fails if the integration is associated with existing clusters. */
|
|
1890
|
-
declare class
|
|
2145
|
+
declare class DeleteCloudIntegrationEndpoint extends DeleteApiEndpoint<DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult> {
|
|
2146
|
+
description: string;
|
|
2147
|
+
withAuth: boolean;
|
|
2148
|
+
requiredPermissions: string;
|
|
2149
|
+
endpointUrl: (opts: DeleteCloudIntegrationRequest) => string;
|
|
2150
|
+
body: () => undefined;
|
|
2151
|
+
}
|
|
2152
|
+
|
|
2153
|
+
type ListCloudNodetypesResult = {
|
|
2154
|
+
/** An array of supported cloud provider node types */
|
|
2155
|
+
'providers': {
|
|
2156
|
+
/** The ID of the node type Example: "n2-standard-8" */
|
|
2157
|
+
'id': string;
|
|
2158
|
+
/** The name of the node type Example: "n2-standard-8" */
|
|
2159
|
+
'name': string;
|
|
2160
|
+
/** An listing the resources of this node type */
|
|
2161
|
+
'resources': {
|
|
2162
|
+
/** Number of vCPU of this node type Example: 8 */
|
|
2163
|
+
'vcpu'?: number;
|
|
2164
|
+
/** Amount of memory capacity in GB of this node type Example: 32 */
|
|
2165
|
+
'memory'?: number;
|
|
2166
|
+
};
|
|
2167
|
+
/** Processor family of the node type Example: "intel" */
|
|
2168
|
+
'processorFamily': string;
|
|
2169
|
+
/** Workload this node type is optimized for Example: "general-purpose" */
|
|
2170
|
+
'workloadType': string;
|
|
2171
|
+
}[];
|
|
2172
|
+
};
|
|
2173
|
+
type ListCloudNodetypesCall = (opts: ListCloudNodetypesRequest) => Promise<ApiCallResponse<ListCloudNodetypesResult>>;
|
|
2174
|
+
type ListCloudNodetypesRequest = {
|
|
2175
|
+
options?: ListCloudNodetypesOptions;
|
|
2176
|
+
};
|
|
2177
|
+
type ListCloudNodetypesOptions = {
|
|
2178
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
2179
|
+
'per_page'?: number;
|
|
2180
|
+
/** The page number to access. */
|
|
2181
|
+
'page'?: number;
|
|
2182
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
2183
|
+
'cursor'?: string;
|
|
2184
|
+
/** If provided, only returns items belonging to this cloud provider. */
|
|
2185
|
+
'provider'?: string;
|
|
2186
|
+
/** If provided, only returns items available in this region. */
|
|
2187
|
+
'region'?: string;
|
|
2188
|
+
};
|
|
2189
|
+
/** Lists supported cloud provider node types */
|
|
2190
|
+
declare class ListCloudNodetypesEndpoint extends GetApiEndpoint<ListCloudNodetypesRequest, ListCloudNodetypesResult> {
|
|
2191
|
+
description: string;
|
|
2192
|
+
withAuth: boolean;
|
|
2193
|
+
requiredPermissions: string;
|
|
2194
|
+
endpointUrl: (opts: ListCloudNodetypesRequest) => string;
|
|
2195
|
+
body: () => undefined;
|
|
2196
|
+
}
|
|
2197
|
+
|
|
2198
|
+
type ListCloudRegionsResult = {
|
|
2199
|
+
/** An array of supported cloud provider regions */
|
|
2200
|
+
'providers': {
|
|
2201
|
+
/** The ID of the region Example: "europe-west1" */
|
|
2202
|
+
'id': string;
|
|
2203
|
+
/** The name of the region Example: "europe-west1" */
|
|
2204
|
+
'name': string;
|
|
2205
|
+
/** The availability zones belonging to this region */
|
|
2206
|
+
'availabilityZones': {
|
|
2207
|
+
/** The id of the availability zone Example: "europe-west1-b" */
|
|
2208
|
+
'id': string;
|
|
2209
|
+
/** The name of the availability zone Example: "europe-west1-b" */
|
|
2210
|
+
'name': string;
|
|
2211
|
+
}[];
|
|
2212
|
+
}[];
|
|
2213
|
+
};
|
|
2214
|
+
type ListCloudRegionsCall = (opts: ListCloudRegionsRequest) => Promise<ApiCallResponse<ListCloudRegionsResult>>;
|
|
2215
|
+
type ListCloudRegionsRequest = {
|
|
2216
|
+
options?: ListCloudRegionsOptions;
|
|
2217
|
+
};
|
|
2218
|
+
type ListCloudRegionsOptions = {
|
|
2219
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
2220
|
+
'per_page'?: number;
|
|
2221
|
+
/** The page number to access. */
|
|
2222
|
+
'page'?: number;
|
|
2223
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
2224
|
+
'cursor'?: string;
|
|
2225
|
+
/** If provided, only returns items belonging to this cloud provider. */
|
|
2226
|
+
'provider'?: string;
|
|
2227
|
+
};
|
|
2228
|
+
/** Lists supported cloud provider regions */
|
|
2229
|
+
declare class ListCloudRegionsEndpoint extends GetApiEndpoint<ListCloudRegionsRequest, ListCloudRegionsResult> {
|
|
1891
2230
|
description: string;
|
|
1892
2231
|
withAuth: boolean;
|
|
1893
2232
|
requiredPermissions: string;
|
|
1894
|
-
endpointUrl: (opts:
|
|
2233
|
+
endpointUrl: (opts: ListCloudRegionsRequest) => string;
|
|
1895
2234
|
body: () => undefined;
|
|
1896
2235
|
}
|
|
1897
2236
|
|
|
@@ -1950,9 +2289,29 @@ type CreateDomainResult = {
|
|
|
1950
2289
|
/** The status of the domain verification. Example: "pending" */
|
|
1951
2290
|
'status': 'pending' | 'verified';
|
|
1952
2291
|
/** The hostname to add to your domain's DNS records as a TXT record to verify the domain. Example: "nfverify1608026055" */
|
|
1953
|
-
'hostname'
|
|
2292
|
+
'hostname'?: string;
|
|
1954
2293
|
/** The token to add as the content of the TXT record to verify the domain. Example: "e596987b52855a4a773ef580ce2985d7746b37ce8b2a443d20fa27b913d8f57" */
|
|
1955
|
-
'token'
|
|
2294
|
+
'token'?: string;
|
|
2295
|
+
/** Configuration regarding the domain redirect set up. */
|
|
2296
|
+
'redirect'?: {
|
|
2297
|
+
/** Domain redirect mode. Example: "default" */
|
|
2298
|
+
'mode': string;
|
|
2299
|
+
'target'?: {
|
|
2300
|
+
/** Expected CNAME target of the wildcard redirect. */
|
|
2301
|
+
'record'?: string;
|
|
2302
|
+
};
|
|
2303
|
+
};
|
|
2304
|
+
/** Configuration regarding the domain certificate set up. */
|
|
2305
|
+
'certificates'?: {
|
|
2306
|
+
/** Domain certificate mode. Example: "default" */
|
|
2307
|
+
'mode': string;
|
|
2308
|
+
/** DCV CNAME record used to provision wildcard certificates. */
|
|
2309
|
+
'dcvRecord'?: string;
|
|
2310
|
+
'dcvTarget'?: {
|
|
2311
|
+
/** Expected CNAME target of the dcvRecord. */
|
|
2312
|
+
'record'?: string;
|
|
2313
|
+
};
|
|
2314
|
+
};
|
|
1956
2315
|
} | any;
|
|
1957
2316
|
type CreateDomainCall = (opts: CreateDomainRequest) => Promise<ApiCallResponse<CreateDomainResult>>;
|
|
1958
2317
|
type CreateDomainRequest = {
|
|
@@ -1961,6 +2320,30 @@ type CreateDomainRequest = {
|
|
|
1961
2320
|
type CreateDomainData = {
|
|
1962
2321
|
/** The domain name to register. Example: "example.com" */
|
|
1963
2322
|
'domain': string;
|
|
2323
|
+
/** Optional configuration regarding the domain redirect set up. */
|
|
2324
|
+
'redirect'?: {
|
|
2325
|
+
/** Domain redirect mode to be used. Example: "default" */
|
|
2326
|
+
'mode'?: 'wildcard' | 'default';
|
|
2327
|
+
/** Northflank PaaS region the wildcard redirect should be pointed at. */
|
|
2328
|
+
'region'?: string;
|
|
2329
|
+
/** BYOC cluster the wildcard redirect should be pointed at. */
|
|
2330
|
+
'cluster'?: string;
|
|
2331
|
+
};
|
|
2332
|
+
/** Optional configuration regarding the domain certificate set up. */
|
|
2333
|
+
'certificates'?: {
|
|
2334
|
+
/** Certificate provisioning mode to be used. Example: "default" */
|
|
2335
|
+
'mode'?: 'wildcard' | 'wildcard-import' | 'default';
|
|
2336
|
+
'certificateInput'?: {
|
|
2337
|
+
/** Certificate data - required when `mode` is set to `wildcard-import` */
|
|
2338
|
+
'certificateInput'?: {
|
|
2339
|
+
'is'?: any;
|
|
2340
|
+
'then': {
|
|
2341
|
+
'privateKey': string;
|
|
2342
|
+
'certificateChain': string;
|
|
2343
|
+
};
|
|
2344
|
+
};
|
|
2345
|
+
};
|
|
2346
|
+
};
|
|
1964
2347
|
};
|
|
1965
2348
|
/** Registers a new domain */
|
|
1966
2349
|
declare class CreateDomainEndpoint extends PostApiEndpoint<CreateDomainRequest, CreateDomainResult> {
|
|
@@ -1974,12 +2357,32 @@ declare class CreateDomainEndpoint extends PostApiEndpoint<CreateDomainRequest,
|
|
|
1974
2357
|
type GetDomainResult = {
|
|
1975
2358
|
/** The domain name. Example: "example.com" */
|
|
1976
2359
|
'name': string;
|
|
1977
|
-
/** The status of the domain verification. Example: "
|
|
2360
|
+
/** The status of the domain verification. Example: "pending" */
|
|
1978
2361
|
'status': 'pending' | 'verified';
|
|
1979
2362
|
/** The hostname to add to your domain's DNS records as a TXT record to verify the domain. Example: "nfverify1608026055" */
|
|
1980
|
-
'hostname'
|
|
2363
|
+
'hostname'?: string;
|
|
1981
2364
|
/** The token to add as the content of the TXT record to verify the domain. Example: "e596987b52855a4a773ef580ce2985d7746b37ce8b2a443d20fa27b913d8f57" */
|
|
1982
|
-
'token'
|
|
2365
|
+
'token'?: string;
|
|
2366
|
+
/** Configuration regarding the domain redirect set up. */
|
|
2367
|
+
'redirect'?: {
|
|
2368
|
+
/** Domain redirect mode. Example: "default" */
|
|
2369
|
+
'mode': string;
|
|
2370
|
+
'target'?: {
|
|
2371
|
+
/** Expected CNAME target of the wildcard redirect. */
|
|
2372
|
+
'record'?: string;
|
|
2373
|
+
};
|
|
2374
|
+
};
|
|
2375
|
+
/** Configuration regarding the domain certificate set up. */
|
|
2376
|
+
'certificates'?: {
|
|
2377
|
+
/** Domain certificate mode. Example: "default" */
|
|
2378
|
+
'mode': string;
|
|
2379
|
+
/** DCV CNAME record used to provision wildcard certificates. */
|
|
2380
|
+
'dcvRecord'?: string;
|
|
2381
|
+
'dcvTarget'?: {
|
|
2382
|
+
/** Expected CNAME target of the dcvRecord. */
|
|
2383
|
+
'record'?: string;
|
|
2384
|
+
};
|
|
2385
|
+
};
|
|
1983
2386
|
/** A list of subdomains added to this domain. */
|
|
1984
2387
|
'subdomains': {
|
|
1985
2388
|
/** The subdomain added, or -default for the empty subdomain. Example: "app" */
|
|
@@ -2256,7 +2659,7 @@ type ListLogsinksResult = {
|
|
|
2256
2659
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2257
2660
|
'projects': string[];
|
|
2258
2661
|
/** The type of the log sink. Example: "loki" */
|
|
2259
|
-
'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'logtail' | 'honeycomb' | 'logzio';
|
|
2662
|
+
'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'logtail' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
|
|
2260
2663
|
/** Timestamp of when the log sink was created. Example: "2022-06-14 15:10:42.842Z" */
|
|
2261
2664
|
'createdAt': string;
|
|
2262
2665
|
/** Timestamp of when the log sink was last updated. Example: "2022-06-14 15:10:42.842Z" */
|
|
@@ -2301,6 +2704,8 @@ type CreateLogsinkData = {
|
|
|
2301
2704
|
'restricted'?: boolean;
|
|
2302
2705
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2303
2706
|
'useCustomLabels'?: boolean;
|
|
2707
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2708
|
+
'forwardAccessLogs'?: boolean;
|
|
2304
2709
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2305
2710
|
'projects'?: string[];
|
|
2306
2711
|
/** The type of the log sink. Example: "loki" */
|
|
@@ -2333,6 +2738,8 @@ type CreateLogsinkData = {
|
|
|
2333
2738
|
'restricted'?: boolean;
|
|
2334
2739
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2335
2740
|
'useCustomLabels'?: boolean;
|
|
2741
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2742
|
+
'forwardAccessLogs'?: boolean;
|
|
2336
2743
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2337
2744
|
'projects'?: string[];
|
|
2338
2745
|
/** The type of the log sink. Example: "datadog_logs" */
|
|
@@ -2353,6 +2760,8 @@ type CreateLogsinkData = {
|
|
|
2353
2760
|
'restricted'?: boolean;
|
|
2354
2761
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2355
2762
|
'useCustomLabels'?: boolean;
|
|
2763
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2764
|
+
'forwardAccessLogs'?: boolean;
|
|
2356
2765
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2357
2766
|
'projects'?: string[];
|
|
2358
2767
|
/** The type of the log sink. Example: "papertrail" */
|
|
@@ -2382,6 +2791,8 @@ type CreateLogsinkData = {
|
|
|
2382
2791
|
'restricted'?: boolean;
|
|
2383
2792
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2384
2793
|
'useCustomLabels'?: boolean;
|
|
2794
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2795
|
+
'forwardAccessLogs'?: boolean;
|
|
2385
2796
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2386
2797
|
'projects'?: string[];
|
|
2387
2798
|
/** The type of the log sink. Example: "aws_s3" */
|
|
@@ -2413,6 +2824,8 @@ type CreateLogsinkData = {
|
|
|
2413
2824
|
'restricted'?: boolean;
|
|
2414
2825
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2415
2826
|
'useCustomLabels'?: boolean;
|
|
2827
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2828
|
+
'forwardAccessLogs'?: boolean;
|
|
2416
2829
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2417
2830
|
'projects'?: string[];
|
|
2418
2831
|
/** The type of the log sink. Example: "http" */
|
|
@@ -2452,6 +2865,8 @@ type CreateLogsinkData = {
|
|
|
2452
2865
|
'restricted'?: boolean;
|
|
2453
2866
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2454
2867
|
'useCustomLabels'?: boolean;
|
|
2868
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2869
|
+
'forwardAccessLogs'?: boolean;
|
|
2455
2870
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2456
2871
|
'projects'?: string[];
|
|
2457
2872
|
/** The type of the log sink. Example: "logdna" */
|
|
@@ -2470,6 +2885,8 @@ type CreateLogsinkData = {
|
|
|
2470
2885
|
'restricted'?: boolean;
|
|
2471
2886
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2472
2887
|
'useCustomLabels'?: boolean;
|
|
2888
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2889
|
+
'forwardAccessLogs'?: boolean;
|
|
2473
2890
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2474
2891
|
'projects'?: string[];
|
|
2475
2892
|
/** The type of the log sink. Example: "logtail" */
|
|
@@ -2488,6 +2905,8 @@ type CreateLogsinkData = {
|
|
|
2488
2905
|
'restricted'?: boolean;
|
|
2489
2906
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2490
2907
|
'useCustomLabels'?: boolean;
|
|
2908
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2909
|
+
'forwardAccessLogs'?: boolean;
|
|
2491
2910
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2492
2911
|
'projects'?: string[];
|
|
2493
2912
|
/** The type of the log sink. Example: "honeycomb" */
|
|
@@ -2508,6 +2927,8 @@ type CreateLogsinkData = {
|
|
|
2508
2927
|
'restricted'?: boolean;
|
|
2509
2928
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2510
2929
|
'useCustomLabels'?: boolean;
|
|
2930
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2931
|
+
'forwardAccessLogs'?: boolean;
|
|
2511
2932
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2512
2933
|
'projects'?: string[];
|
|
2513
2934
|
/** The type of the log sink. Example: "logzio" */
|
|
@@ -2519,6 +2940,56 @@ type CreateLogsinkData = {
|
|
|
2519
2940
|
/** The Log Shipping Token of the account you want to ship to Example: "sNFijNFgNFoNFrMsNFbNFObNFcgNFqoa" */
|
|
2520
2941
|
'token': string;
|
|
2521
2942
|
};
|
|
2943
|
+
} | {
|
|
2944
|
+
/** Name of the log sink. Example: "example-log-sink" */
|
|
2945
|
+
'name': string;
|
|
2946
|
+
/** Description of the log sink. Example: "This is an example log sink." */
|
|
2947
|
+
'description'?: string;
|
|
2948
|
+
/** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
|
|
2949
|
+
'restricted'?: boolean;
|
|
2950
|
+
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2951
|
+
'useCustomLabels'?: boolean;
|
|
2952
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2953
|
+
'forwardAccessLogs'?: boolean;
|
|
2954
|
+
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2955
|
+
'projects'?: string[];
|
|
2956
|
+
/** The type of the log sink. Example: "axiom" */
|
|
2957
|
+
'sinkType': 'axiom';
|
|
2958
|
+
/** Details about the Axiom log sink. */
|
|
2959
|
+
'sinkData': {
|
|
2960
|
+
/** Name of the data Example: "staging" */
|
|
2961
|
+
'dataset': string;
|
|
2962
|
+
/** Axiom API/Personal token Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
|
|
2963
|
+
'token': string;
|
|
2964
|
+
/** Using a personal token */
|
|
2965
|
+
'tokenType': 'personal' | 'api';
|
|
2966
|
+
/** The ID of the organisation, required if using a personal token */
|
|
2967
|
+
'orgId'?: string;
|
|
2968
|
+
/** The Axiom url to use. Only change if self hosting axiom. */
|
|
2969
|
+
'url': string;
|
|
2970
|
+
};
|
|
2971
|
+
} | {
|
|
2972
|
+
/** Name of the log sink. Example: "example-log-sink" */
|
|
2973
|
+
'name': string;
|
|
2974
|
+
/** Description of the log sink. Example: "This is an example log sink." */
|
|
2975
|
+
'description'?: string;
|
|
2976
|
+
/** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
|
|
2977
|
+
'restricted'?: boolean;
|
|
2978
|
+
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2979
|
+
'useCustomLabels'?: boolean;
|
|
2980
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2981
|
+
'forwardAccessLogs'?: boolean;
|
|
2982
|
+
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2983
|
+
'projects'?: string[];
|
|
2984
|
+
/** The type of the log sink. Example: "newRelic" */
|
|
2985
|
+
'sinkType': 'newRelic';
|
|
2986
|
+
/** Details about the undefined log sink. */
|
|
2987
|
+
'sinkData': {
|
|
2988
|
+
/** New Relic Account ID Example: "b1dd3feb585asd1a3e9" */
|
|
2989
|
+
'accountId': string;
|
|
2990
|
+
/** New Relic License Key Example: "b1dd3feb585asd1a3e9" */
|
|
2991
|
+
'licenseKey': string;
|
|
2992
|
+
};
|
|
2522
2993
|
};
|
|
2523
2994
|
/** Creates a new log sink. */
|
|
2524
2995
|
declare class CreateLogsinkEndpoint extends PostApiEndpoint<CreateLogsinkRequest, CreateLogsinkResult> {
|
|
@@ -2543,7 +3014,7 @@ type GetLogsinkResult = {
|
|
|
2543
3014
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2544
3015
|
'projects': string[];
|
|
2545
3016
|
/** The type of the log sink. Example: "loki" */
|
|
2546
|
-
'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'logtail' | 'honeycomb' | 'logzio';
|
|
3017
|
+
'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'logtail' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
|
|
2547
3018
|
/** Timestamp of when the log sink was created. Example: "2022-06-14 15:10:42.842Z" */
|
|
2548
3019
|
'createdAt': string;
|
|
2549
3020
|
/** Timestamp of when the log sink was last updated. Example: "2022-06-14 15:10:42.842Z" */
|
|
@@ -2622,6 +3093,17 @@ type GetLogsinkResult = {
|
|
|
2622
3093
|
'api_key': string;
|
|
2623
3094
|
/** Name of the dataset Example: "staging-logs" */
|
|
2624
3095
|
'dataset': string;
|
|
3096
|
+
} | {
|
|
3097
|
+
/** Name of the data Example: "staging" */
|
|
3098
|
+
'dataset': string;
|
|
3099
|
+
/** Axiom API/Personal token Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
|
|
3100
|
+
'token': string;
|
|
3101
|
+
/** Using a personal token */
|
|
3102
|
+
'tokenType': 'personal' | 'api';
|
|
3103
|
+
/** The ID of the organisation, required if using a personal token */
|
|
3104
|
+
'orgId'?: string;
|
|
3105
|
+
/** The Axiom url to use. Only change if self hosting axiom. */
|
|
3106
|
+
'url': string;
|
|
2625
3107
|
};
|
|
2626
3108
|
};
|
|
2627
3109
|
type GetLogsinkCall = (opts: GetLogsinkRequest) => Promise<ApiCallResponse<GetLogsinkResult>>;
|
|
@@ -2776,6 +3258,17 @@ type UpdateLogsinkData = {
|
|
|
2776
3258
|
'api_key': string;
|
|
2777
3259
|
/** Name of the dataset Example: "staging-logs" */
|
|
2778
3260
|
'dataset': string;
|
|
3261
|
+
} | {
|
|
3262
|
+
/** Name of the data Example: "staging" */
|
|
3263
|
+
'dataset': string;
|
|
3264
|
+
/** Axiom API/Personal token Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
|
|
3265
|
+
'token': string;
|
|
3266
|
+
/** Using a personal token */
|
|
3267
|
+
'tokenType': 'personal' | 'api';
|
|
3268
|
+
/** The ID of the organisation, required if using a personal token */
|
|
3269
|
+
'orgId'?: string;
|
|
3270
|
+
/** The Axiom url to use. Only change if self hosting axiom. */
|
|
3271
|
+
'url': string;
|
|
2779
3272
|
};
|
|
2780
3273
|
/** If `true`, and the log sink is currently paused, the log sink will be resumed after updating. */
|
|
2781
3274
|
'resumeLogSink'?: boolean;
|
|
@@ -2789,7 +3282,442 @@ declare class UpdateLogsinkEndpoint extends PostApiEndpoint<UpdateLogsinkRequest
|
|
|
2789
3282
|
body: (payload: UpdateLogsinkRequest) => string;
|
|
2790
3283
|
}
|
|
2791
3284
|
|
|
2792
|
-
type
|
|
3285
|
+
type ListNotificationsResult = {
|
|
3286
|
+
/** An array of notification integrations on the account. */
|
|
3287
|
+
'notificationIntegrations': {
|
|
3288
|
+
/** The name of the notification integration. Example: "Example Notification" */
|
|
3289
|
+
'name': string;
|
|
3290
|
+
/** The ID of the notification integration. Example: "example-notification" */
|
|
3291
|
+
'id': string;
|
|
3292
|
+
/** The provider to send webhooks to. `RAW_WEBHOOK` allows you to send webhooks to a url of your choice, or you can choose a specific provider. Example: "RAW_WEBHOOK" */
|
|
3293
|
+
'type': 'RAW_WEBHOOK' | 'SLACK' | 'DISCORD' | 'TEAMS';
|
|
3294
|
+
/** The URL where webhooks will be sent. Example: "https://example.com/webhooks" */
|
|
3295
|
+
'webhook': string;
|
|
3296
|
+
/** Information on the current webhook status. */
|
|
3297
|
+
'status'?: {
|
|
3298
|
+
/** Is the webhook currently disabled? */
|
|
3299
|
+
'disabled'?: boolean;
|
|
3300
|
+
/** Why the webhook was disabled. */
|
|
3301
|
+
'reason'?: boolean;
|
|
3302
|
+
};
|
|
3303
|
+
/** Creation date Example: "2023-09-12T16:39:44.166Z\"" */
|
|
3304
|
+
'createdAt': string;
|
|
3305
|
+
/** Last update date Example: "2023-09-12T16:39:44.166Z\"" */
|
|
3306
|
+
'updatedAt': string;
|
|
3307
|
+
}[];
|
|
3308
|
+
};
|
|
3309
|
+
type ListNotificationsCall = (opts: ListNotificationsRequest) => Promise<ApiCallResponse<ListNotificationsResult>>;
|
|
3310
|
+
type ListNotificationsRequest = {
|
|
3311
|
+
options?: ListNotificationsOptions;
|
|
3312
|
+
};
|
|
3313
|
+
type ListNotificationsOptions = {
|
|
3314
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
3315
|
+
'per_page'?: number;
|
|
3316
|
+
/** The page number to access. */
|
|
3317
|
+
'page'?: number;
|
|
3318
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
3319
|
+
'cursor'?: string;
|
|
3320
|
+
};
|
|
3321
|
+
/** Lists notification integrations for the authenticated user or team. */
|
|
3322
|
+
declare class ListNotificationsEndpoint extends GetApiEndpoint<ListNotificationsRequest, ListNotificationsResult> {
|
|
3323
|
+
description: string;
|
|
3324
|
+
withAuth: boolean;
|
|
3325
|
+
requiredPermissions: string;
|
|
3326
|
+
endpointUrl: (opts: ListNotificationsRequest) => string;
|
|
3327
|
+
body: () => undefined;
|
|
3328
|
+
}
|
|
3329
|
+
|
|
3330
|
+
type CreateNotificationResult = {
|
|
3331
|
+
/** The name of the notification integration. Example: "Example Notification" */
|
|
3332
|
+
'name': string;
|
|
3333
|
+
/** The ID of the notification integration. Example: "example-notification" */
|
|
3334
|
+
'id': string;
|
|
3335
|
+
/** The provider to send webhooks to. `RAW_WEBHOOK` allows you to send webhooks to a url of your choice, or you can choose a specific provider. Example: "RAW_WEBHOOK" */
|
|
3336
|
+
'type': 'RAW_WEBHOOK' | 'SLACK' | 'DISCORD' | 'TEAMS';
|
|
3337
|
+
/** The URL where webhooks will be sent. Example: "https://example.com/webhooks" */
|
|
3338
|
+
'webhook': string;
|
|
3339
|
+
/** Creation date Example: "2023-09-12T16:39:44.166Z\"" */
|
|
3340
|
+
'createdAt': string;
|
|
3341
|
+
/** Last update date Example: "2023-09-12T16:39:44.166Z\"" */
|
|
3342
|
+
'updatedAt': string;
|
|
3343
|
+
'status'?: {
|
|
3344
|
+
/** Is the webhook currently disabled? */
|
|
3345
|
+
'disabled'?: boolean;
|
|
3346
|
+
/** Why the webhook was disabled. */
|
|
3347
|
+
'reason'?: boolean;
|
|
3348
|
+
/** The timestamp of the first failed webhook request. */
|
|
3349
|
+
'timeOfFirstFailedRequest'?: string;
|
|
3350
|
+
/** The number of failed webhook requests. */
|
|
3351
|
+
'numberOfFailedRequests'?: number;
|
|
3352
|
+
};
|
|
3353
|
+
/** Should notifications be sent only for specific projects? Example: true */
|
|
3354
|
+
'restricted': boolean;
|
|
3355
|
+
/** An array of projects that notifications will be sent for. */
|
|
3356
|
+
'projects': string[];
|
|
3357
|
+
/** Which events should notifications be sent for? */
|
|
3358
|
+
'events': {
|
|
3359
|
+
'trigger:service:autoscaling:event'?: boolean;
|
|
3360
|
+
'trigger:service:deployment:status-update'?: boolean;
|
|
3361
|
+
'trigger:addon-backup:start'?: boolean;
|
|
3362
|
+
'trigger:addon-backup:success'?: boolean;
|
|
3363
|
+
'trigger:addon-backup:failure'?: boolean;
|
|
3364
|
+
'trigger:addon-backup:abort'?: boolean;
|
|
3365
|
+
'trigger:build:start'?: boolean;
|
|
3366
|
+
'trigger:build:success'?: boolean;
|
|
3367
|
+
'trigger:build:failure'?: boolean;
|
|
3368
|
+
'trigger:build:abort'?: boolean;
|
|
3369
|
+
'trigger:job-run:start'?: boolean;
|
|
3370
|
+
'trigger:job-run:success'?: boolean;
|
|
3371
|
+
'trigger:job-run:failure'?: boolean;
|
|
3372
|
+
'trigger:job-run:abort'?: boolean;
|
|
3373
|
+
'trigger:job-run:terminate'?: boolean;
|
|
3374
|
+
'trigger:release-flow-template-run:start'?: boolean;
|
|
3375
|
+
'trigger:release-flow-template-run:update'?: boolean;
|
|
3376
|
+
'trigger:release-flow-template-run:success'?: boolean;
|
|
3377
|
+
'trigger:release-flow-template-run:failure'?: boolean;
|
|
3378
|
+
'trigger:release-flow-template-run:aborted'?: boolean;
|
|
3379
|
+
'trigger:template-run:queued'?: boolean;
|
|
3380
|
+
'trigger:template-run:start'?: boolean;
|
|
3381
|
+
'trigger:template-run:update'?: boolean;
|
|
3382
|
+
'trigger:template-run:success'?: boolean;
|
|
3383
|
+
'trigger:template-run:failure'?: boolean;
|
|
3384
|
+
'trigger:resource:certificate-success'?: boolean;
|
|
3385
|
+
'trigger:resource:certificate-final-failure'?: boolean;
|
|
3386
|
+
'trigger:cdn:action-success'?: boolean;
|
|
3387
|
+
'trigger:cdn:action-failure'?: boolean;
|
|
3388
|
+
'trigger:cdn:action-delay'?: boolean;
|
|
3389
|
+
'trigger:log-sink:paused'?: boolean;
|
|
3390
|
+
'trigger:billing:billing-alert-exceeded'?: boolean;
|
|
3391
|
+
'trigger:billing:invoice-payment-action-required'?: boolean;
|
|
3392
|
+
'trigger:billing:invoice-payment-failed'?: boolean;
|
|
3393
|
+
'trigger:billing:invoice-paid'?: boolean;
|
|
3394
|
+
'trigger:billing:invoice-carried-over'?: boolean;
|
|
3395
|
+
'trigger:infrastructure:service:container-crash'?: boolean;
|
|
3396
|
+
'trigger:infrastructure:service:container-eviction'?: boolean;
|
|
3397
|
+
'trigger:infrastructure:addon:container-crash'?: boolean;
|
|
3398
|
+
'trigger:infrastructure:addon:container-eviction'?: boolean;
|
|
3399
|
+
'trigger:infrastructure:job:container-crash'?: boolean;
|
|
3400
|
+
'trigger:infrastructure:job:container-eviction'?: boolean;
|
|
3401
|
+
'trigger:infrastructure:service:container-cpuSpike90'?: boolean;
|
|
3402
|
+
'trigger:infrastructure:service:container-cpuSustained90'?: boolean;
|
|
3403
|
+
'trigger:infrastructure:job:container-cpuSpike90'?: boolean;
|
|
3404
|
+
'trigger:infrastructure:job:container-cpuSustained90'?: boolean;
|
|
3405
|
+
'trigger:infrastructure:addon:container-cpuSpike90'?: boolean;
|
|
3406
|
+
'trigger:infrastructure:addon:container-cpuSustained90'?: boolean;
|
|
3407
|
+
'trigger:infrastructure:service:container-memorySpike90'?: boolean;
|
|
3408
|
+
'trigger:infrastructure:service:container-memorySustained90'?: boolean;
|
|
3409
|
+
'trigger:infrastructure:job:container-memorySpike90'?: boolean;
|
|
3410
|
+
'trigger:infrastructure:job:container-memorySustained90'?: boolean;
|
|
3411
|
+
'trigger:infrastructure:addon-volume:usage-75-exceeded'?: boolean;
|
|
3412
|
+
'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
|
|
3413
|
+
'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
|
|
3414
|
+
'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
|
|
3415
|
+
'trigger:infrastructure:cluster:scheduling'?: boolean;
|
|
3416
|
+
};
|
|
3417
|
+
};
|
|
3418
|
+
type CreateNotificationCall = (opts: CreateNotificationRequest) => Promise<ApiCallResponse<CreateNotificationResult>>;
|
|
3419
|
+
type CreateNotificationRequest = {
|
|
3420
|
+
parameters: CreateNotificationParameters;
|
|
3421
|
+
data: CreateNotificationData;
|
|
3422
|
+
};
|
|
3423
|
+
type CreateNotificationParameters = {
|
|
3424
|
+
/** ID of the notification integration */ 'notificationId': string;
|
|
3425
|
+
};
|
|
3426
|
+
type CreateNotificationData = {
|
|
3427
|
+
/** The name of the notification integration. Example: "Example Notification" */
|
|
3428
|
+
'name': string;
|
|
3429
|
+
/** The provider to send webhooks to. `RAW_WEBHOOK` allows you to send webhooks to a url of your choice, or you can choose a specific provider. Example: "RAW_WEBHOOK" */
|
|
3430
|
+
'type': 'RAW_WEBHOOK' | 'DISCORD' | 'TEAMS';
|
|
3431
|
+
/** The URL where webhooks will be sent. Example: "https://example.com/webhooks" */
|
|
3432
|
+
'webhook': string;
|
|
3433
|
+
/** An optional secret that will be sent in the webhook header for verification. Supports `RAW_WEBHOOK` only. */
|
|
3434
|
+
'secret'?: string;
|
|
3435
|
+
/** Should notifications be sent only for specific projects? Example: true */
|
|
3436
|
+
'restricted'?: boolean;
|
|
3437
|
+
/** An array of projects that notifications will be sent for. */
|
|
3438
|
+
'projects'?: string[];
|
|
3439
|
+
/** Which events should notifications be sent for? */
|
|
3440
|
+
'events': {
|
|
3441
|
+
'trigger:service:autoscaling:event'?: boolean;
|
|
3442
|
+
'trigger:service:deployment:status-update'?: boolean;
|
|
3443
|
+
'trigger:addon-backup:start'?: boolean;
|
|
3444
|
+
'trigger:addon-backup:success'?: boolean;
|
|
3445
|
+
'trigger:addon-backup:failure'?: boolean;
|
|
3446
|
+
'trigger:addon-backup:abort'?: boolean;
|
|
3447
|
+
'trigger:build:start'?: boolean;
|
|
3448
|
+
'trigger:build:success'?: boolean;
|
|
3449
|
+
'trigger:build:failure'?: boolean;
|
|
3450
|
+
'trigger:build:abort'?: boolean;
|
|
3451
|
+
'trigger:job-run:start'?: boolean;
|
|
3452
|
+
'trigger:job-run:success'?: boolean;
|
|
3453
|
+
'trigger:job-run:failure'?: boolean;
|
|
3454
|
+
'trigger:job-run:abort'?: boolean;
|
|
3455
|
+
'trigger:job-run:terminate'?: boolean;
|
|
3456
|
+
'trigger:release-flow-template-run:start'?: boolean;
|
|
3457
|
+
'trigger:release-flow-template-run:update'?: boolean;
|
|
3458
|
+
'trigger:release-flow-template-run:success'?: boolean;
|
|
3459
|
+
'trigger:release-flow-template-run:failure'?: boolean;
|
|
3460
|
+
'trigger:release-flow-template-run:aborted'?: boolean;
|
|
3461
|
+
'trigger:template-run:queued'?: boolean;
|
|
3462
|
+
'trigger:template-run:start'?: boolean;
|
|
3463
|
+
'trigger:template-run:update'?: boolean;
|
|
3464
|
+
'trigger:template-run:success'?: boolean;
|
|
3465
|
+
'trigger:template-run:failure'?: boolean;
|
|
3466
|
+
'trigger:resource:certificate-success'?: boolean;
|
|
3467
|
+
'trigger:resource:certificate-final-failure'?: boolean;
|
|
3468
|
+
'trigger:cdn:action-success'?: boolean;
|
|
3469
|
+
'trigger:cdn:action-failure'?: boolean;
|
|
3470
|
+
'trigger:cdn:action-delay'?: boolean;
|
|
3471
|
+
'trigger:log-sink:paused'?: boolean;
|
|
3472
|
+
'trigger:billing:billing-alert-exceeded'?: boolean;
|
|
3473
|
+
'trigger:billing:invoice-payment-action-required'?: boolean;
|
|
3474
|
+
'trigger:billing:invoice-payment-failed'?: boolean;
|
|
3475
|
+
'trigger:billing:invoice-paid'?: boolean;
|
|
3476
|
+
'trigger:billing:invoice-carried-over'?: boolean;
|
|
3477
|
+
'trigger:infrastructure:service:container-crash'?: boolean;
|
|
3478
|
+
'trigger:infrastructure:service:container-eviction'?: boolean;
|
|
3479
|
+
'trigger:infrastructure:addon:container-crash'?: boolean;
|
|
3480
|
+
'trigger:infrastructure:addon:container-eviction'?: boolean;
|
|
3481
|
+
'trigger:infrastructure:job:container-crash'?: boolean;
|
|
3482
|
+
'trigger:infrastructure:job:container-eviction'?: boolean;
|
|
3483
|
+
'trigger:infrastructure:service:container-cpuSpike90'?: boolean;
|
|
3484
|
+
'trigger:infrastructure:service:container-cpuSustained90'?: boolean;
|
|
3485
|
+
'trigger:infrastructure:job:container-cpuSpike90'?: boolean;
|
|
3486
|
+
'trigger:infrastructure:job:container-cpuSustained90'?: boolean;
|
|
3487
|
+
'trigger:infrastructure:addon:container-cpuSpike90'?: boolean;
|
|
3488
|
+
'trigger:infrastructure:addon:container-cpuSustained90'?: boolean;
|
|
3489
|
+
'trigger:infrastructure:service:container-memorySpike90'?: boolean;
|
|
3490
|
+
'trigger:infrastructure:service:container-memorySustained90'?: boolean;
|
|
3491
|
+
'trigger:infrastructure:job:container-memorySpike90'?: boolean;
|
|
3492
|
+
'trigger:infrastructure:job:container-memorySustained90'?: boolean;
|
|
3493
|
+
'trigger:infrastructure:addon-volume:usage-75-exceeded'?: boolean;
|
|
3494
|
+
'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
|
|
3495
|
+
'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
|
|
3496
|
+
'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
|
|
3497
|
+
'trigger:infrastructure:cluster:scheduling'?: boolean;
|
|
3498
|
+
};
|
|
3499
|
+
};
|
|
3500
|
+
/** Create a new notification integration. */
|
|
3501
|
+
declare class CreateNotificationEndpoint extends PostApiEndpoint<CreateNotificationRequest, CreateNotificationResult> {
|
|
3502
|
+
description: string;
|
|
3503
|
+
withAuth: boolean;
|
|
3504
|
+
requiredPermissions: string;
|
|
3505
|
+
endpointUrl: (opts: CreateNotificationRequest) => string;
|
|
3506
|
+
body: (payload: CreateNotificationRequest) => string;
|
|
3507
|
+
}
|
|
3508
|
+
|
|
3509
|
+
type GetNotificationResult = {
|
|
3510
|
+
/** The name of the notification integration. Example: "Example Notification" */
|
|
3511
|
+
'name': string;
|
|
3512
|
+
/** The ID of the notification integration. Example: "example-notification" */
|
|
3513
|
+
'id': string;
|
|
3514
|
+
/** The provider to send webhooks to. `RAW_WEBHOOK` allows you to send webhooks to a url of your choice, or you can choose a specific provider. Example: "RAW_WEBHOOK" */
|
|
3515
|
+
'type': 'RAW_WEBHOOK' | 'SLACK' | 'DISCORD' | 'TEAMS';
|
|
3516
|
+
/** The URL where webhooks will be sent. Example: "https://example.com/webhooks" */
|
|
3517
|
+
'webhook': string;
|
|
3518
|
+
/** Creation date Example: "2023-09-12T16:39:44.166Z\"" */
|
|
3519
|
+
'createdAt': string;
|
|
3520
|
+
/** Last update date Example: "2023-09-12T16:39:44.166Z\"" */
|
|
3521
|
+
'updatedAt': string;
|
|
3522
|
+
'status'?: {
|
|
3523
|
+
/** Is the webhook currently disabled? */
|
|
3524
|
+
'disabled'?: boolean;
|
|
3525
|
+
/** Why the webhook was disabled. */
|
|
3526
|
+
'reason'?: boolean;
|
|
3527
|
+
/** The timestamp of the first failed webhook request. */
|
|
3528
|
+
'timeOfFirstFailedRequest'?: string;
|
|
3529
|
+
/** The number of failed webhook requests. */
|
|
3530
|
+
'numberOfFailedRequests'?: number;
|
|
3531
|
+
};
|
|
3532
|
+
/** Should notifications be sent only for specific projects? Example: true */
|
|
3533
|
+
'restricted': boolean;
|
|
3534
|
+
/** An array of projects that notifications will be sent for. */
|
|
3535
|
+
'projects': string[];
|
|
3536
|
+
/** Which events should notifications be sent for? */
|
|
3537
|
+
'events': {
|
|
3538
|
+
'trigger:service:autoscaling:event'?: boolean;
|
|
3539
|
+
'trigger:service:deployment:status-update'?: boolean;
|
|
3540
|
+
'trigger:addon-backup:start'?: boolean;
|
|
3541
|
+
'trigger:addon-backup:success'?: boolean;
|
|
3542
|
+
'trigger:addon-backup:failure'?: boolean;
|
|
3543
|
+
'trigger:addon-backup:abort'?: boolean;
|
|
3544
|
+
'trigger:build:start'?: boolean;
|
|
3545
|
+
'trigger:build:success'?: boolean;
|
|
3546
|
+
'trigger:build:failure'?: boolean;
|
|
3547
|
+
'trigger:build:abort'?: boolean;
|
|
3548
|
+
'trigger:job-run:start'?: boolean;
|
|
3549
|
+
'trigger:job-run:success'?: boolean;
|
|
3550
|
+
'trigger:job-run:failure'?: boolean;
|
|
3551
|
+
'trigger:job-run:abort'?: boolean;
|
|
3552
|
+
'trigger:job-run:terminate'?: boolean;
|
|
3553
|
+
'trigger:release-flow-template-run:start'?: boolean;
|
|
3554
|
+
'trigger:release-flow-template-run:update'?: boolean;
|
|
3555
|
+
'trigger:release-flow-template-run:success'?: boolean;
|
|
3556
|
+
'trigger:release-flow-template-run:failure'?: boolean;
|
|
3557
|
+
'trigger:release-flow-template-run:aborted'?: boolean;
|
|
3558
|
+
'trigger:template-run:queued'?: boolean;
|
|
3559
|
+
'trigger:template-run:start'?: boolean;
|
|
3560
|
+
'trigger:template-run:update'?: boolean;
|
|
3561
|
+
'trigger:template-run:success'?: boolean;
|
|
3562
|
+
'trigger:template-run:failure'?: boolean;
|
|
3563
|
+
'trigger:resource:certificate-success'?: boolean;
|
|
3564
|
+
'trigger:resource:certificate-final-failure'?: boolean;
|
|
3565
|
+
'trigger:cdn:action-success'?: boolean;
|
|
3566
|
+
'trigger:cdn:action-failure'?: boolean;
|
|
3567
|
+
'trigger:cdn:action-delay'?: boolean;
|
|
3568
|
+
'trigger:log-sink:paused'?: boolean;
|
|
3569
|
+
'trigger:billing:billing-alert-exceeded'?: boolean;
|
|
3570
|
+
'trigger:billing:invoice-payment-action-required'?: boolean;
|
|
3571
|
+
'trigger:billing:invoice-payment-failed'?: boolean;
|
|
3572
|
+
'trigger:billing:invoice-paid'?: boolean;
|
|
3573
|
+
'trigger:billing:invoice-carried-over'?: boolean;
|
|
3574
|
+
'trigger:infrastructure:service:container-crash'?: boolean;
|
|
3575
|
+
'trigger:infrastructure:service:container-eviction'?: boolean;
|
|
3576
|
+
'trigger:infrastructure:addon:container-crash'?: boolean;
|
|
3577
|
+
'trigger:infrastructure:addon:container-eviction'?: boolean;
|
|
3578
|
+
'trigger:infrastructure:job:container-crash'?: boolean;
|
|
3579
|
+
'trigger:infrastructure:job:container-eviction'?: boolean;
|
|
3580
|
+
'trigger:infrastructure:service:container-cpuSpike90'?: boolean;
|
|
3581
|
+
'trigger:infrastructure:service:container-cpuSustained90'?: boolean;
|
|
3582
|
+
'trigger:infrastructure:job:container-cpuSpike90'?: boolean;
|
|
3583
|
+
'trigger:infrastructure:job:container-cpuSustained90'?: boolean;
|
|
3584
|
+
'trigger:infrastructure:addon:container-cpuSpike90'?: boolean;
|
|
3585
|
+
'trigger:infrastructure:addon:container-cpuSustained90'?: boolean;
|
|
3586
|
+
'trigger:infrastructure:service:container-memorySpike90'?: boolean;
|
|
3587
|
+
'trigger:infrastructure:service:container-memorySustained90'?: boolean;
|
|
3588
|
+
'trigger:infrastructure:job:container-memorySpike90'?: boolean;
|
|
3589
|
+
'trigger:infrastructure:job:container-memorySustained90'?: boolean;
|
|
3590
|
+
'trigger:infrastructure:addon-volume:usage-75-exceeded'?: boolean;
|
|
3591
|
+
'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
|
|
3592
|
+
'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
|
|
3593
|
+
'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
|
|
3594
|
+
'trigger:infrastructure:cluster:scheduling'?: boolean;
|
|
3595
|
+
};
|
|
3596
|
+
};
|
|
3597
|
+
type GetNotificationCall = (opts: GetNotificationRequest) => Promise<ApiCallResponse<GetNotificationResult>>;
|
|
3598
|
+
type GetNotificationRequest = {
|
|
3599
|
+
parameters: GetNotificationParameters;
|
|
3600
|
+
};
|
|
3601
|
+
type GetNotificationParameters = {
|
|
3602
|
+
/** ID of the notification integration */ 'notificationId': string;
|
|
3603
|
+
};
|
|
3604
|
+
/** Get details about a notification integration. */
|
|
3605
|
+
declare class GetNotificationEndpoint extends GetApiEndpoint<GetNotificationRequest, GetNotificationResult> {
|
|
3606
|
+
description: string;
|
|
3607
|
+
withAuth: boolean;
|
|
3608
|
+
requiredPermissions: string;
|
|
3609
|
+
endpointUrl: (opts: GetNotificationRequest) => string;
|
|
3610
|
+
body: () => undefined;
|
|
3611
|
+
}
|
|
3612
|
+
|
|
3613
|
+
type UpdateNotificationResult = any;
|
|
3614
|
+
type UpdateNotificationCall = (opts: UpdateNotificationRequest) => Promise<ApiCallResponse<UpdateNotificationResult>>;
|
|
3615
|
+
type UpdateNotificationRequest = {
|
|
3616
|
+
parameters: UpdateNotificationParameters;
|
|
3617
|
+
data: UpdateNotificationData;
|
|
3618
|
+
};
|
|
3619
|
+
type UpdateNotificationParameters = {
|
|
3620
|
+
/** ID of the notification integration */ 'notificationId': string;
|
|
3621
|
+
};
|
|
3622
|
+
type UpdateNotificationData = {
|
|
3623
|
+
/** The name of the notification integration. Example: "Example Notification" */
|
|
3624
|
+
'name'?: string;
|
|
3625
|
+
/** The URL where webhooks will be sent. Example: "https://example.com/webhooks" */
|
|
3626
|
+
'webhook'?: string;
|
|
3627
|
+
/** An optional secret that will be sent in the webhook header for verification. Supports `RAW_WEBHOOK` only. */
|
|
3628
|
+
'secret'?: string;
|
|
3629
|
+
/** Should notifications be sent only for specific projects? Example: true */
|
|
3630
|
+
'restricted'?: boolean;
|
|
3631
|
+
/** An array of projects that notifications will be sent for. */
|
|
3632
|
+
'projects'?: string[];
|
|
3633
|
+
/** Which events should notifications be sent for? */
|
|
3634
|
+
'events'?: {
|
|
3635
|
+
'trigger:service:autoscaling:event'?: boolean;
|
|
3636
|
+
'trigger:service:deployment:status-update'?: boolean;
|
|
3637
|
+
'trigger:addon-backup:start'?: boolean;
|
|
3638
|
+
'trigger:addon-backup:success'?: boolean;
|
|
3639
|
+
'trigger:addon-backup:failure'?: boolean;
|
|
3640
|
+
'trigger:addon-backup:abort'?: boolean;
|
|
3641
|
+
'trigger:build:start'?: boolean;
|
|
3642
|
+
'trigger:build:success'?: boolean;
|
|
3643
|
+
'trigger:build:failure'?: boolean;
|
|
3644
|
+
'trigger:build:abort'?: boolean;
|
|
3645
|
+
'trigger:job-run:start'?: boolean;
|
|
3646
|
+
'trigger:job-run:success'?: boolean;
|
|
3647
|
+
'trigger:job-run:failure'?: boolean;
|
|
3648
|
+
'trigger:job-run:abort'?: boolean;
|
|
3649
|
+
'trigger:job-run:terminate'?: boolean;
|
|
3650
|
+
'trigger:release-flow-template-run:start'?: boolean;
|
|
3651
|
+
'trigger:release-flow-template-run:update'?: boolean;
|
|
3652
|
+
'trigger:release-flow-template-run:success'?: boolean;
|
|
3653
|
+
'trigger:release-flow-template-run:failure'?: boolean;
|
|
3654
|
+
'trigger:release-flow-template-run:aborted'?: boolean;
|
|
3655
|
+
'trigger:template-run:queued'?: boolean;
|
|
3656
|
+
'trigger:template-run:start'?: boolean;
|
|
3657
|
+
'trigger:template-run:update'?: boolean;
|
|
3658
|
+
'trigger:template-run:success'?: boolean;
|
|
3659
|
+
'trigger:template-run:failure'?: boolean;
|
|
3660
|
+
'trigger:resource:certificate-success'?: boolean;
|
|
3661
|
+
'trigger:resource:certificate-final-failure'?: boolean;
|
|
3662
|
+
'trigger:cdn:action-success'?: boolean;
|
|
3663
|
+
'trigger:cdn:action-failure'?: boolean;
|
|
3664
|
+
'trigger:cdn:action-delay'?: boolean;
|
|
3665
|
+
'trigger:log-sink:paused'?: boolean;
|
|
3666
|
+
'trigger:billing:billing-alert-exceeded'?: boolean;
|
|
3667
|
+
'trigger:billing:invoice-payment-action-required'?: boolean;
|
|
3668
|
+
'trigger:billing:invoice-payment-failed'?: boolean;
|
|
3669
|
+
'trigger:billing:invoice-paid'?: boolean;
|
|
3670
|
+
'trigger:billing:invoice-carried-over'?: boolean;
|
|
3671
|
+
'trigger:infrastructure:service:container-crash'?: boolean;
|
|
3672
|
+
'trigger:infrastructure:service:container-eviction'?: boolean;
|
|
3673
|
+
'trigger:infrastructure:addon:container-crash'?: boolean;
|
|
3674
|
+
'trigger:infrastructure:addon:container-eviction'?: boolean;
|
|
3675
|
+
'trigger:infrastructure:job:container-crash'?: boolean;
|
|
3676
|
+
'trigger:infrastructure:job:container-eviction'?: boolean;
|
|
3677
|
+
'trigger:infrastructure:service:container-cpuSpike90'?: boolean;
|
|
3678
|
+
'trigger:infrastructure:service:container-cpuSustained90'?: boolean;
|
|
3679
|
+
'trigger:infrastructure:job:container-cpuSpike90'?: boolean;
|
|
3680
|
+
'trigger:infrastructure:job:container-cpuSustained90'?: boolean;
|
|
3681
|
+
'trigger:infrastructure:addon:container-cpuSpike90'?: boolean;
|
|
3682
|
+
'trigger:infrastructure:addon:container-cpuSustained90'?: boolean;
|
|
3683
|
+
'trigger:infrastructure:service:container-memorySpike90'?: boolean;
|
|
3684
|
+
'trigger:infrastructure:service:container-memorySustained90'?: boolean;
|
|
3685
|
+
'trigger:infrastructure:job:container-memorySpike90'?: boolean;
|
|
3686
|
+
'trigger:infrastructure:job:container-memorySustained90'?: boolean;
|
|
3687
|
+
'trigger:infrastructure:addon-volume:usage-75-exceeded'?: boolean;
|
|
3688
|
+
'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
|
|
3689
|
+
'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
|
|
3690
|
+
'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
|
|
3691
|
+
'trigger:infrastructure:cluster:scheduling'?: boolean;
|
|
3692
|
+
};
|
|
3693
|
+
};
|
|
3694
|
+
/** Updates a notification integration */
|
|
3695
|
+
declare class UpdateNotificationEndpoint extends PostApiEndpoint<UpdateNotificationRequest, UpdateNotificationResult> {
|
|
3696
|
+
description: string;
|
|
3697
|
+
withAuth: boolean;
|
|
3698
|
+
requiredPermissions: string;
|
|
3699
|
+
endpointUrl: (opts: UpdateNotificationRequest) => string;
|
|
3700
|
+
body: (payload: UpdateNotificationRequest) => string;
|
|
3701
|
+
}
|
|
3702
|
+
|
|
3703
|
+
type DeleteNotificationResult = any;
|
|
3704
|
+
type DeleteNotificationCall = (opts: DeleteNotificationRequest) => Promise<ApiCallResponse<DeleteNotificationResult>>;
|
|
3705
|
+
type DeleteNotificationRequest = {
|
|
3706
|
+
parameters: DeleteNotificationParameters;
|
|
3707
|
+
};
|
|
3708
|
+
type DeleteNotificationParameters = {
|
|
3709
|
+
/** ID of the notification integration */ 'notificationId': string;
|
|
3710
|
+
};
|
|
3711
|
+
/** Deletes a notification integration */
|
|
3712
|
+
declare class DeleteNotificationEndpoint extends DeleteApiEndpoint<DeleteNotificationRequest, DeleteNotificationResult> {
|
|
3713
|
+
description: string;
|
|
3714
|
+
withAuth: boolean;
|
|
3715
|
+
requiredPermissions: string;
|
|
3716
|
+
endpointUrl: (opts: DeleteNotificationRequest) => string;
|
|
3717
|
+
body: () => undefined;
|
|
3718
|
+
}
|
|
3719
|
+
|
|
3720
|
+
type ListRegistrycredentialsResult = {
|
|
2793
3721
|
/** An array of credentials saved to this account. */
|
|
2794
3722
|
'credentials': {
|
|
2795
3723
|
/** Identifier for the credentials. Example: "example-credentials" */
|
|
@@ -2809,11 +3737,11 @@ type ListRegistriesResult = {
|
|
|
2809
3737
|
'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
2810
3738
|
}[];
|
|
2811
3739
|
};
|
|
2812
|
-
type
|
|
2813
|
-
type
|
|
2814
|
-
options?:
|
|
3740
|
+
type ListRegistrycredentialsCall = (opts: ListRegistrycredentialsRequest) => Promise<ApiCallResponse<ListRegistrycredentialsResult>>;
|
|
3741
|
+
type ListRegistrycredentialsRequest = {
|
|
3742
|
+
options?: ListRegistrycredentialsOptions;
|
|
2815
3743
|
};
|
|
2816
|
-
type
|
|
3744
|
+
type ListRegistrycredentialsOptions = {
|
|
2817
3745
|
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
2818
3746
|
'per_page'?: number;
|
|
2819
3747
|
/** The page number to access. */
|
|
@@ -2822,15 +3750,15 @@ type ListRegistriesOptions = {
|
|
|
2822
3750
|
'cursor'?: string;
|
|
2823
3751
|
};
|
|
2824
3752
|
/** Lists the container registry credentials saved to this account. Does not display secrets. */
|
|
2825
|
-
declare class
|
|
3753
|
+
declare class ListRegistrycredentialsEndpoint extends GetApiEndpoint<ListRegistrycredentialsRequest, ListRegistrycredentialsResult> {
|
|
2826
3754
|
description: string;
|
|
2827
3755
|
withAuth: boolean;
|
|
2828
3756
|
requiredPermissions: string;
|
|
2829
|
-
endpointUrl: (opts:
|
|
3757
|
+
endpointUrl: (opts: ListRegistrycredentialsRequest) => string;
|
|
2830
3758
|
body: () => undefined;
|
|
2831
3759
|
}
|
|
2832
3760
|
|
|
2833
|
-
type
|
|
3761
|
+
type AddRegistrycredentialsResult = {
|
|
2834
3762
|
/** Identifier for the credentials. Example: "example-credentials" */
|
|
2835
3763
|
'id': string;
|
|
2836
3764
|
/** Name of the saved credentials. Example: "Example Credentials" */
|
|
@@ -2847,11 +3775,11 @@ type AddRegistryResult = {
|
|
|
2847
3775
|
/** The registry provider associated with this set of credentials. Example: "dockerhub" */
|
|
2848
3776
|
'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
2849
3777
|
};
|
|
2850
|
-
type
|
|
2851
|
-
type
|
|
2852
|
-
data:
|
|
3778
|
+
type AddRegistrycredentialsCall = (opts: AddRegistrycredentialsRequest) => Promise<ApiCallResponse<AddRegistrycredentialsResult>>;
|
|
3779
|
+
type AddRegistrycredentialsRequest = {
|
|
3780
|
+
data: AddRegistrycredentialsData;
|
|
2853
3781
|
};
|
|
2854
|
-
type
|
|
3782
|
+
type AddRegistrycredentialsData = {
|
|
2855
3783
|
/** Name of the credentials. Example: "Example Credentials" */
|
|
2856
3784
|
'name': string;
|
|
2857
3785
|
/** Description of the credentials. Example: "This is a set of saved credentials." */
|
|
@@ -2907,15 +3835,15 @@ type AddRegistryData = {
|
|
|
2907
3835
|
'auths': any;
|
|
2908
3836
|
};
|
|
2909
3837
|
/** Adds a new set of container registry credentials to this account. */
|
|
2910
|
-
declare class
|
|
3838
|
+
declare class AddRegistrycredentialsEndpoint extends PostApiEndpoint<AddRegistrycredentialsRequest, AddRegistrycredentialsResult> {
|
|
2911
3839
|
description: string;
|
|
2912
3840
|
withAuth: boolean;
|
|
2913
3841
|
requiredPermissions: string;
|
|
2914
|
-
endpointUrl: (opts:
|
|
2915
|
-
body: (payload:
|
|
3842
|
+
endpointUrl: (opts: AddRegistrycredentialsRequest) => string;
|
|
3843
|
+
body: (payload: AddRegistrycredentialsRequest) => string;
|
|
2916
3844
|
}
|
|
2917
3845
|
|
|
2918
|
-
type
|
|
3846
|
+
type GetRegistrycredentialsResult = {
|
|
2919
3847
|
/** Identifier for the credentials. Example: "example-credentials" */
|
|
2920
3848
|
'id': string;
|
|
2921
3849
|
/** Name of the saved credentials. Example: "Example Credentials" */
|
|
@@ -2934,49 +3862,49 @@ type GetRegistryResult = {
|
|
|
2934
3862
|
/** The `auths` data extracted from your Docker config file. Example: {"https://index.docker.io/v1/":{"auth":"[YOUR AUTH KEY]"}} */
|
|
2935
3863
|
'auths'?: any;
|
|
2936
3864
|
};
|
|
2937
|
-
type
|
|
2938
|
-
type
|
|
2939
|
-
parameters:
|
|
3865
|
+
type GetRegistrycredentialsCall = (opts: GetRegistrycredentialsRequest) => Promise<ApiCallResponse<GetRegistrycredentialsResult>>;
|
|
3866
|
+
type GetRegistrycredentialsRequest = {
|
|
3867
|
+
parameters: GetRegistrycredentialsParameters;
|
|
2940
3868
|
};
|
|
2941
|
-
type
|
|
3869
|
+
type GetRegistrycredentialsParameters = {
|
|
2942
3870
|
/** ID of the registry credential */ 'credentialId': string;
|
|
2943
3871
|
};
|
|
2944
3872
|
/** Views a set of registry credential data. */
|
|
2945
|
-
declare class
|
|
3873
|
+
declare class GetRegistrycredentialsEndpoint extends GetApiEndpoint<GetRegistrycredentialsRequest, GetRegistrycredentialsResult> {
|
|
2946
3874
|
description: string;
|
|
2947
3875
|
withAuth: boolean;
|
|
2948
3876
|
requiredPermissions: string;
|
|
2949
|
-
endpointUrl: (opts:
|
|
3877
|
+
endpointUrl: (opts: GetRegistrycredentialsRequest) => string;
|
|
2950
3878
|
body: () => undefined;
|
|
2951
3879
|
}
|
|
2952
3880
|
|
|
2953
|
-
type
|
|
2954
|
-
type
|
|
2955
|
-
type
|
|
2956
|
-
parameters:
|
|
3881
|
+
type DeleteRegistrycredentialsResult = any;
|
|
3882
|
+
type DeleteRegistrycredentialsCall = (opts: DeleteRegistrycredentialsRequest) => Promise<ApiCallResponse<DeleteRegistrycredentialsResult>>;
|
|
3883
|
+
type DeleteRegistrycredentialsRequest = {
|
|
3884
|
+
parameters: DeleteRegistrycredentialsParameters;
|
|
2957
3885
|
};
|
|
2958
|
-
type
|
|
3886
|
+
type DeleteRegistrycredentialsParameters = {
|
|
2959
3887
|
/** ID of the registry credential */ 'credentialId': string;
|
|
2960
3888
|
};
|
|
2961
3889
|
/** Deletes a set of registry credential data. */
|
|
2962
|
-
declare class
|
|
3890
|
+
declare class DeleteRegistrycredentialsEndpoint extends DeleteApiEndpoint<DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult> {
|
|
2963
3891
|
description: string;
|
|
2964
3892
|
withAuth: boolean;
|
|
2965
3893
|
requiredPermissions: string;
|
|
2966
|
-
endpointUrl: (opts:
|
|
3894
|
+
endpointUrl: (opts: DeleteRegistrycredentialsRequest) => string;
|
|
2967
3895
|
body: () => undefined;
|
|
2968
3896
|
}
|
|
2969
3897
|
|
|
2970
|
-
type
|
|
2971
|
-
type
|
|
2972
|
-
type
|
|
2973
|
-
parameters:
|
|
2974
|
-
data:
|
|
3898
|
+
type UpdateRegistrycredentialsResult = any;
|
|
3899
|
+
type UpdateRegistrycredentialsCall = (opts: UpdateRegistrycredentialsRequest) => Promise<ApiCallResponse<UpdateRegistrycredentialsResult>>;
|
|
3900
|
+
type UpdateRegistrycredentialsRequest = {
|
|
3901
|
+
parameters: UpdateRegistrycredentialsParameters;
|
|
3902
|
+
data: UpdateRegistrycredentialsData;
|
|
2975
3903
|
};
|
|
2976
|
-
type
|
|
3904
|
+
type UpdateRegistrycredentialsParameters = {
|
|
2977
3905
|
/** ID of the registry credential */ 'credentialId': string;
|
|
2978
3906
|
};
|
|
2979
|
-
type
|
|
3907
|
+
type UpdateRegistrycredentialsData = {
|
|
2980
3908
|
/** Description of the credentials. Example: "This is a set of saved credentials." */
|
|
2981
3909
|
'description'?: string;
|
|
2982
3910
|
/** Data about whether the credentials are restricted to certain projects. */
|
|
@@ -3030,12 +3958,12 @@ type UpdateRegistryData = {
|
|
|
3030
3958
|
'auths': any;
|
|
3031
3959
|
};
|
|
3032
3960
|
/** Updates a set of registry credential data. */
|
|
3033
|
-
declare class
|
|
3961
|
+
declare class UpdateRegistrycredentialsEndpoint extends PostApiEndpoint<UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult> {
|
|
3034
3962
|
description: string;
|
|
3035
3963
|
withAuth: boolean;
|
|
3036
3964
|
requiredPermissions: string;
|
|
3037
|
-
endpointUrl: (opts:
|
|
3038
|
-
body: (payload:
|
|
3965
|
+
endpointUrl: (opts: UpdateRegistrycredentialsRequest) => string;
|
|
3966
|
+
body: (payload: UpdateRegistrycredentialsRequest) => string;
|
|
3039
3967
|
}
|
|
3040
3968
|
|
|
3041
3969
|
type ListVcsResult = {
|
|
@@ -3083,12 +4011,16 @@ type CreateCustomvcsTokenResult = {
|
|
|
3083
4011
|
type CreateCustomvcsTokenCall = (opts: CreateCustomvcsTokenRequest) => Promise<ApiCallResponse<CreateCustomvcsTokenResult>>;
|
|
3084
4012
|
type CreateCustomvcsTokenRequest = {
|
|
3085
4013
|
parameters: CreateCustomvcsTokenParameters;
|
|
4014
|
+
options?: CreateCustomvcsTokenOptions;
|
|
3086
4015
|
};
|
|
3087
4016
|
type CreateCustomvcsTokenParameters = {
|
|
3088
4017
|
/** ID of the custom VCS */ 'customVCSId': string;
|
|
3089
4018
|
/** ID of the version control link */
|
|
3090
4019
|
'vcsLinkId': string;
|
|
3091
4020
|
};
|
|
4021
|
+
type CreateCustomvcsTokenOptions = {
|
|
4022
|
+
'force_refresh'?: boolean;
|
|
4023
|
+
};
|
|
3092
4024
|
/** Generate a token for a specific VCS link. */
|
|
3093
4025
|
declare class CreateCustomvcsTokenEndpoint extends PostApiEndpoint<CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult> {
|
|
3094
4026
|
description: string;
|
|
@@ -3510,6 +4442,8 @@ type CreateAddonResult = {
|
|
|
3510
4442
|
'storage': number;
|
|
3511
4443
|
/** The number of addon replicas to run. Example: 1 */
|
|
3512
4444
|
'replicas': number;
|
|
4445
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
4446
|
+
'zonalRedundancy'?: 'required' | 'disabled';
|
|
3513
4447
|
};
|
|
3514
4448
|
/** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
|
|
3515
4449
|
'source'?: {
|
|
@@ -3532,14 +4466,40 @@ type CreateAddonResult = {
|
|
|
3532
4466
|
/** Enables point-in-time recovery (PITR) for the addon (if supported by the addon type). */
|
|
3533
4467
|
'pitrEnabled'?: boolean;
|
|
3534
4468
|
'typeSpecificSettings'?: {
|
|
3535
|
-
/**
|
|
3536
|
-
'
|
|
4469
|
+
/** Redis only: Key eviction policy at memory pressure. */
|
|
4470
|
+
'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
|
|
4471
|
+
/** PostgreSQL only: Run connection pooler in front of postgres instance. */
|
|
4472
|
+
'postgresqlConnectionPoolerEnabled'?: boolean;
|
|
4473
|
+
/** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
|
|
4474
|
+
'postgresqlConnectionPoolerReplicas'?: number;
|
|
4475
|
+
/** PostgreSQL only: Run connection pooler in front of read-only postgres instance. */
|
|
4476
|
+
'postgresqlReadConnectionPoolerEnabled'?: boolean;
|
|
4477
|
+
/** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
|
|
4478
|
+
'postgresqlReadConnectionPoolerReplicas'?: number;
|
|
3537
4479
|
};
|
|
3538
4480
|
'customCredentials'?: {
|
|
3539
4481
|
/** Custom database name. Not supported for all addon types. */
|
|
3540
4482
|
'dbName'?: string;
|
|
3541
4483
|
};
|
|
3542
|
-
'backupSchedules'?:
|
|
4484
|
+
'backupSchedules'?: {
|
|
4485
|
+
/** Schedule for the backup. */
|
|
4486
|
+
'scheduling': {
|
|
4487
|
+
/** The interval between backups. Each addon can only have one backup schedule of each interval for each backup type. Example: "weekly" */
|
|
4488
|
+
'interval': 'hourly' | 'daily' | 'weekly';
|
|
4489
|
+
/** An array of minutes when the backup should be performed. */
|
|
4490
|
+
'minute': number[];
|
|
4491
|
+
/** An array of hours in 24 hour format when the backup should be performed. At these hours, a backup will be performed at each of the minutes provided in the `minute` field. Required for `daily` and `weekly` intervals and unavailable for `hourly` intervals. */
|
|
4492
|
+
'hour'?: number[];
|
|
4493
|
+
/** An array of days of the week when the backup should be performed, where `0` represents Monday and `6` represents Sunday. On these days, a backup will be performed at each of the minutes provided in the `minute` field whenever it is an hour from the `hour` field. Required for `weekly` intervals and unavailable for `hourly` and `daily` intervals. */
|
|
4494
|
+
'day'?: number[];
|
|
4495
|
+
};
|
|
4496
|
+
/** The type of the backup to be performed. Example: "snapshot" */
|
|
4497
|
+
'backupType': 'dump' | 'snapshot';
|
|
4498
|
+
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
4499
|
+
'compressionType'?: 'gz' | 'zstd';
|
|
4500
|
+
/** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
|
|
4501
|
+
'retentionTime': number;
|
|
4502
|
+
}[];
|
|
3543
4503
|
/** Identifier for the addon. Example: "example-addon" */
|
|
3544
4504
|
'id': string;
|
|
3545
4505
|
/** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
|
|
@@ -3584,6 +4544,8 @@ type CreateAddonData = {
|
|
|
3584
4544
|
'storage': number;
|
|
3585
4545
|
/** The number of addon replicas to run. Example: 1 */
|
|
3586
4546
|
'replicas': number;
|
|
4547
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
4548
|
+
'zonalRedundancy'?: 'required' | 'disabled';
|
|
3587
4549
|
};
|
|
3588
4550
|
/** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
|
|
3589
4551
|
'source'?: {
|
|
@@ -3606,14 +4568,40 @@ type CreateAddonData = {
|
|
|
3606
4568
|
/** Enables point-in-time recovery (PITR) for the addon (if supported by the addon type). */
|
|
3607
4569
|
'pitrEnabled'?: boolean;
|
|
3608
4570
|
'typeSpecificSettings'?: {
|
|
3609
|
-
/**
|
|
3610
|
-
'
|
|
4571
|
+
/** Redis only: Key eviction policy at memory pressure. */
|
|
4572
|
+
'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
|
|
4573
|
+
/** PostgreSQL only: Run connection pooler in front of postgres instance. */
|
|
4574
|
+
'postgresqlConnectionPoolerEnabled'?: boolean;
|
|
4575
|
+
/** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
|
|
4576
|
+
'postgresqlConnectionPoolerReplicas'?: number;
|
|
4577
|
+
/** PostgreSQL only: Run connection pooler in front of read-only postgres instance. */
|
|
4578
|
+
'postgresqlReadConnectionPoolerEnabled'?: boolean;
|
|
4579
|
+
/** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
|
|
4580
|
+
'postgresqlReadConnectionPoolerReplicas'?: number;
|
|
3611
4581
|
};
|
|
3612
4582
|
'customCredentials'?: {
|
|
3613
4583
|
/** Custom database name. Not supported for all addon types. */
|
|
3614
4584
|
'dbName'?: string;
|
|
3615
4585
|
};
|
|
3616
|
-
'backupSchedules'?:
|
|
4586
|
+
'backupSchedules'?: {
|
|
4587
|
+
/** Schedule for the backup. */
|
|
4588
|
+
'scheduling': {
|
|
4589
|
+
/** The interval between backups. Each addon can only have one backup schedule of each interval for each backup type. Example: "weekly" */
|
|
4590
|
+
'interval': 'hourly' | 'daily' | 'weekly';
|
|
4591
|
+
/** An array of minutes when the backup should be performed. */
|
|
4592
|
+
'minute': number[];
|
|
4593
|
+
/** An array of hours in 24 hour format when the backup should be performed. At these hours, a backup will be performed at each of the minutes provided in the `minute` field. Required for `daily` and `weekly` intervals and unavailable for `hourly` intervals. */
|
|
4594
|
+
'hour'?: number[];
|
|
4595
|
+
/** An array of days of the week when the backup should be performed, where `0` represents Monday and `6` represents Sunday. On these days, a backup will be performed at each of the minutes provided in the `minute` field whenever it is an hour from the `hour` field. Required for `weekly` intervals and unavailable for `hourly` and `daily` intervals. */
|
|
4596
|
+
'day'?: number[];
|
|
4597
|
+
};
|
|
4598
|
+
/** The type of the backup to be performed. Example: "snapshot" */
|
|
4599
|
+
'backupType': 'dump' | 'snapshot';
|
|
4600
|
+
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
4601
|
+
'compressionType'?: 'gz' | 'zstd';
|
|
4602
|
+
/** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
|
|
4603
|
+
'retentionTime': number;
|
|
4604
|
+
}[];
|
|
3617
4605
|
};
|
|
3618
4606
|
/** Creates a new addon */
|
|
3619
4607
|
declare class CreateAddonEndpoint extends PostApiEndpoint<CreateAddonRequest, CreateAddonResult> {
|
|
@@ -3644,6 +4632,8 @@ type PutAddonResult = {
|
|
|
3644
4632
|
'storage': number;
|
|
3645
4633
|
/** The number of addon replicas to run. Example: 1 */
|
|
3646
4634
|
'replicas': number;
|
|
4635
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
4636
|
+
'zonalRedundancy'?: 'required' | 'disabled';
|
|
3647
4637
|
};
|
|
3648
4638
|
/** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
|
|
3649
4639
|
'source'?: {
|
|
@@ -3666,14 +4656,40 @@ type PutAddonResult = {
|
|
|
3666
4656
|
/** Enables point-in-time recovery (PITR) for the addon (if supported by the addon type). */
|
|
3667
4657
|
'pitrEnabled'?: boolean;
|
|
3668
4658
|
'typeSpecificSettings'?: {
|
|
3669
|
-
/**
|
|
3670
|
-
'
|
|
4659
|
+
/** Redis only: Key eviction policy at memory pressure. */
|
|
4660
|
+
'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
|
|
4661
|
+
/** PostgreSQL only: Run connection pooler in front of postgres instance. */
|
|
4662
|
+
'postgresqlConnectionPoolerEnabled'?: boolean;
|
|
4663
|
+
/** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
|
|
4664
|
+
'postgresqlConnectionPoolerReplicas'?: number;
|
|
4665
|
+
/** PostgreSQL only: Run connection pooler in front of read-only postgres instance. */
|
|
4666
|
+
'postgresqlReadConnectionPoolerEnabled'?: boolean;
|
|
4667
|
+
/** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
|
|
4668
|
+
'postgresqlReadConnectionPoolerReplicas'?: number;
|
|
3671
4669
|
};
|
|
3672
4670
|
'customCredentials'?: {
|
|
3673
4671
|
/** Custom database name. Not supported for all addon types. */
|
|
3674
4672
|
'dbName'?: string;
|
|
3675
4673
|
};
|
|
3676
|
-
'backupSchedules'?:
|
|
4674
|
+
'backupSchedules'?: {
|
|
4675
|
+
/** Schedule for the backup. */
|
|
4676
|
+
'scheduling': {
|
|
4677
|
+
/** The interval between backups. Each addon can only have one backup schedule of each interval for each backup type. Example: "weekly" */
|
|
4678
|
+
'interval': 'hourly' | 'daily' | 'weekly';
|
|
4679
|
+
/** An array of minutes when the backup should be performed. */
|
|
4680
|
+
'minute': number[];
|
|
4681
|
+
/** An array of hours in 24 hour format when the backup should be performed. At these hours, a backup will be performed at each of the minutes provided in the `minute` field. Required for `daily` and `weekly` intervals and unavailable for `hourly` intervals. */
|
|
4682
|
+
'hour'?: number[];
|
|
4683
|
+
/** An array of days of the week when the backup should be performed, where `0` represents Monday and `6` represents Sunday. On these days, a backup will be performed at each of the minutes provided in the `minute` field whenever it is an hour from the `hour` field. Required for `weekly` intervals and unavailable for `hourly` and `daily` intervals. */
|
|
4684
|
+
'day'?: number[];
|
|
4685
|
+
};
|
|
4686
|
+
/** The type of the backup to be performed. Example: "snapshot" */
|
|
4687
|
+
'backupType': 'dump' | 'snapshot';
|
|
4688
|
+
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
4689
|
+
'compressionType'?: 'gz' | 'zstd';
|
|
4690
|
+
/** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
|
|
4691
|
+
'retentionTime': number;
|
|
4692
|
+
}[];
|
|
3677
4693
|
/** Identifier for the addon. Example: "example-addon" */
|
|
3678
4694
|
'id': string;
|
|
3679
4695
|
/** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
|
|
@@ -3718,6 +4734,8 @@ type PutAddonData = {
|
|
|
3718
4734
|
'storage': number;
|
|
3719
4735
|
/** The number of addon replicas to run. Example: 1 */
|
|
3720
4736
|
'replicas': number;
|
|
4737
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
4738
|
+
'zonalRedundancy'?: 'required' | 'disabled';
|
|
3721
4739
|
};
|
|
3722
4740
|
/** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
|
|
3723
4741
|
'source'?: {
|
|
@@ -3740,14 +4758,40 @@ type PutAddonData = {
|
|
|
3740
4758
|
/** Enables point-in-time recovery (PITR) for the addon (if supported by the addon type). */
|
|
3741
4759
|
'pitrEnabled'?: boolean;
|
|
3742
4760
|
'typeSpecificSettings'?: {
|
|
3743
|
-
/**
|
|
3744
|
-
'
|
|
4761
|
+
/** Redis only: Key eviction policy at memory pressure. */
|
|
4762
|
+
'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
|
|
4763
|
+
/** PostgreSQL only: Run connection pooler in front of postgres instance. */
|
|
4764
|
+
'postgresqlConnectionPoolerEnabled'?: boolean;
|
|
4765
|
+
/** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
|
|
4766
|
+
'postgresqlConnectionPoolerReplicas'?: number;
|
|
4767
|
+
/** PostgreSQL only: Run connection pooler in front of read-only postgres instance. */
|
|
4768
|
+
'postgresqlReadConnectionPoolerEnabled'?: boolean;
|
|
4769
|
+
/** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
|
|
4770
|
+
'postgresqlReadConnectionPoolerReplicas'?: number;
|
|
3745
4771
|
};
|
|
3746
4772
|
'customCredentials'?: {
|
|
3747
4773
|
/** Custom database name. Not supported for all addon types. */
|
|
3748
4774
|
'dbName'?: string;
|
|
3749
4775
|
};
|
|
3750
|
-
'backupSchedules'?:
|
|
4776
|
+
'backupSchedules'?: {
|
|
4777
|
+
/** Schedule for the backup. */
|
|
4778
|
+
'scheduling': {
|
|
4779
|
+
/** The interval between backups. Each addon can only have one backup schedule of each interval for each backup type. Example: "weekly" */
|
|
4780
|
+
'interval': 'hourly' | 'daily' | 'weekly';
|
|
4781
|
+
/** An array of minutes when the backup should be performed. */
|
|
4782
|
+
'minute': number[];
|
|
4783
|
+
/** An array of hours in 24 hour format when the backup should be performed. At these hours, a backup will be performed at each of the minutes provided in the `minute` field. Required for `daily` and `weekly` intervals and unavailable for `hourly` intervals. */
|
|
4784
|
+
'hour'?: number[];
|
|
4785
|
+
/** An array of days of the week when the backup should be performed, where `0` represents Monday and `6` represents Sunday. On these days, a backup will be performed at each of the minutes provided in the `minute` field whenever it is an hour from the `hour` field. Required for `weekly` intervals and unavailable for `hourly` and `daily` intervals. */
|
|
4786
|
+
'day'?: number[];
|
|
4787
|
+
};
|
|
4788
|
+
/** The type of the backup to be performed. Example: "snapshot" */
|
|
4789
|
+
'backupType': 'dump' | 'snapshot';
|
|
4790
|
+
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
4791
|
+
'compressionType'?: 'gz' | 'zstd';
|
|
4792
|
+
/** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
|
|
4793
|
+
'retentionTime': number;
|
|
4794
|
+
}[];
|
|
3751
4795
|
};
|
|
3752
4796
|
/** Creates or updates an addon */
|
|
3753
4797
|
declare class PutAddonEndpoint extends PutApiEndpoint<PutAddonRequest, PutAddonResult> {
|
|
@@ -3765,6 +4809,8 @@ type GetAddonResult = {
|
|
|
3765
4809
|
'name': string;
|
|
3766
4810
|
/** Full identifier for the addon. Example: "/example-user/default-project/example-addon" */
|
|
3767
4811
|
'appId': string;
|
|
4812
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
4813
|
+
'tags': string[];
|
|
3768
4814
|
/** A short description of the addon. Example: "This is the addon description" */
|
|
3769
4815
|
'description'?: string;
|
|
3770
4816
|
/** The time the addon was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
@@ -3858,6 +4904,8 @@ type PatchAddonResult = {
|
|
|
3858
4904
|
'storage': number;
|
|
3859
4905
|
/** The number of addon replicas to run. Example: 1 */
|
|
3860
4906
|
'replicas': number;
|
|
4907
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
4908
|
+
'zonalRedundancy'?: 'required' | 'disabled';
|
|
3861
4909
|
};
|
|
3862
4910
|
/** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
|
|
3863
4911
|
'source'?: {
|
|
@@ -3880,14 +4928,40 @@ type PatchAddonResult = {
|
|
|
3880
4928
|
/** Enables point-in-time recovery (PITR) for the addon (if supported by the addon type). */
|
|
3881
4929
|
'pitrEnabled'?: boolean;
|
|
3882
4930
|
'typeSpecificSettings'?: {
|
|
3883
|
-
/**
|
|
3884
|
-
'
|
|
4931
|
+
/** Redis only: Key eviction policy at memory pressure. */
|
|
4932
|
+
'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
|
|
4933
|
+
/** PostgreSQL only: Run connection pooler in front of postgres instance. */
|
|
4934
|
+
'postgresqlConnectionPoolerEnabled'?: boolean;
|
|
4935
|
+
/** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
|
|
4936
|
+
'postgresqlConnectionPoolerReplicas'?: number;
|
|
4937
|
+
/** PostgreSQL only: Run connection pooler in front of read-only postgres instance. */
|
|
4938
|
+
'postgresqlReadConnectionPoolerEnabled'?: boolean;
|
|
4939
|
+
/** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
|
|
4940
|
+
'postgresqlReadConnectionPoolerReplicas'?: number;
|
|
3885
4941
|
};
|
|
3886
4942
|
'customCredentials'?: {
|
|
3887
4943
|
/** Custom database name. Not supported for all addon types. */
|
|
3888
4944
|
'dbName'?: string;
|
|
3889
4945
|
};
|
|
3890
|
-
'backupSchedules'?:
|
|
4946
|
+
'backupSchedules'?: {
|
|
4947
|
+
/** Schedule for the backup. */
|
|
4948
|
+
'scheduling': {
|
|
4949
|
+
/** The interval between backups. Each addon can only have one backup schedule of each interval for each backup type. Example: "weekly" */
|
|
4950
|
+
'interval': 'hourly' | 'daily' | 'weekly';
|
|
4951
|
+
/** An array of minutes when the backup should be performed. */
|
|
4952
|
+
'minute': number[];
|
|
4953
|
+
/** An array of hours in 24 hour format when the backup should be performed. At these hours, a backup will be performed at each of the minutes provided in the `minute` field. Required for `daily` and `weekly` intervals and unavailable for `hourly` intervals. */
|
|
4954
|
+
'hour'?: number[];
|
|
4955
|
+
/** An array of days of the week when the backup should be performed, where `0` represents Monday and `6` represents Sunday. On these days, a backup will be performed at each of the minutes provided in the `minute` field whenever it is an hour from the `hour` field. Required for `weekly` intervals and unavailable for `hourly` and `daily` intervals. */
|
|
4956
|
+
'day'?: number[];
|
|
4957
|
+
};
|
|
4958
|
+
/** The type of the backup to be performed. Example: "snapshot" */
|
|
4959
|
+
'backupType': 'dump' | 'snapshot';
|
|
4960
|
+
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
4961
|
+
'compressionType'?: 'gz' | 'zstd';
|
|
4962
|
+
/** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
|
|
4963
|
+
'retentionTime': number;
|
|
4964
|
+
}[];
|
|
3891
4965
|
/** Identifier for the addon. Example: "example-addon" */
|
|
3892
4966
|
'id': string;
|
|
3893
4967
|
/** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
|
|
@@ -3928,6 +5002,8 @@ type PatchAddonData = {
|
|
|
3928
5002
|
'storage'?: number;
|
|
3929
5003
|
/** The number of addon replicas to run. Example: 1 */
|
|
3930
5004
|
'replicas'?: number;
|
|
5005
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
5006
|
+
'zonalRedundancy'?: 'required' | 'disabled';
|
|
3931
5007
|
};
|
|
3932
5008
|
/** Enables access to the addon via TLS (if supported by the addon type). */
|
|
3933
5009
|
'tlsEnabled'?: boolean;
|
|
@@ -3940,7 +5016,41 @@ type PatchAddonData = {
|
|
|
3940
5016
|
/** The action for this rule. Example: "DENY" */
|
|
3941
5017
|
'action': 'ALLOW' | 'DENY';
|
|
3942
5018
|
}[];
|
|
3943
|
-
'
|
|
5019
|
+
'typeSpecificSettings'?: {
|
|
5020
|
+
/** Redis only: Key eviction policy at memory pressure. */
|
|
5021
|
+
'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
|
|
5022
|
+
/** PostgreSQL only: Run connection pooler in front of postgres instance. */
|
|
5023
|
+
'postgresqlConnectionPoolerEnabled'?: boolean;
|
|
5024
|
+
/** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
|
|
5025
|
+
'postgresqlConnectionPoolerReplicas'?: number;
|
|
5026
|
+
/** PostgreSQL only: Run connection pooler in front of read-only postgres instance. */
|
|
5027
|
+
'postgresqlReadConnectionPoolerEnabled'?: boolean;
|
|
5028
|
+
/** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
|
|
5029
|
+
'postgresqlReadConnectionPoolerReplicas'?: number;
|
|
5030
|
+
};
|
|
5031
|
+
'customCredentials'?: {
|
|
5032
|
+
/** Custom database name. Not supported for all addon types. */
|
|
5033
|
+
'dbName'?: string;
|
|
5034
|
+
};
|
|
5035
|
+
'backupSchedules'?: {
|
|
5036
|
+
/** Schedule for the backup. */
|
|
5037
|
+
'scheduling': {
|
|
5038
|
+
/** The interval between backups. Each addon can only have one backup schedule of each interval for each backup type. Example: "weekly" */
|
|
5039
|
+
'interval': 'hourly' | 'daily' | 'weekly';
|
|
5040
|
+
/** An array of minutes when the backup should be performed. */
|
|
5041
|
+
'minute': number[];
|
|
5042
|
+
/** An array of hours in 24 hour format when the backup should be performed. At these hours, a backup will be performed at each of the minutes provided in the `minute` field. Required for `daily` and `weekly` intervals and unavailable for `hourly` intervals. */
|
|
5043
|
+
'hour'?: number[];
|
|
5044
|
+
/** An array of days of the week when the backup should be performed, where `0` represents Monday and `6` represents Sunday. On these days, a backup will be performed at each of the minutes provided in the `minute` field whenever it is an hour from the `hour` field. Required for `weekly` intervals and unavailable for `hourly` and `daily` intervals. */
|
|
5045
|
+
'day'?: number[];
|
|
5046
|
+
};
|
|
5047
|
+
/** The type of the backup to be performed. Example: "snapshot" */
|
|
5048
|
+
'backupType': 'dump' | 'snapshot';
|
|
5049
|
+
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
5050
|
+
'compressionType'?: 'gz' | 'zstd';
|
|
5051
|
+
/** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
|
|
5052
|
+
'retentionTime': number;
|
|
5053
|
+
}[];
|
|
3944
5054
|
};
|
|
3945
5055
|
/** Updates an addon */
|
|
3946
5056
|
declare class PatchAddonEndpoint extends PatchApiEndpoint<PatchAddonRequest, PatchAddonResult> {
|
|
@@ -4036,7 +5146,25 @@ type CreateAddonBackupscheduleParameters = {
|
|
|
4036
5146
|
/** ID of the addon */
|
|
4037
5147
|
'addonId': string;
|
|
4038
5148
|
};
|
|
4039
|
-
type CreateAddonBackupscheduleData =
|
|
5149
|
+
type CreateAddonBackupscheduleData = {
|
|
5150
|
+
/** Schedule for the backup. */
|
|
5151
|
+
'scheduling': {
|
|
5152
|
+
/** The interval between backups. Each addon can only have one backup schedule of each interval for each backup type. Example: "weekly" */
|
|
5153
|
+
'interval': 'hourly' | 'daily' | 'weekly';
|
|
5154
|
+
/** An array of minutes when the backup should be performed. */
|
|
5155
|
+
'minute': number[];
|
|
5156
|
+
/** An array of hours in 24 hour format when the backup should be performed. At these hours, a backup will be performed at each of the minutes provided in the `minute` field. Required for `daily` and `weekly` intervals and unavailable for `hourly` intervals. */
|
|
5157
|
+
'hour'?: number[];
|
|
5158
|
+
/** An array of days of the week when the backup should be performed, where `0` represents Monday and `6` represents Sunday. On these days, a backup will be performed at each of the minutes provided in the `minute` field whenever it is an hour from the `hour` field. Required for `weekly` intervals and unavailable for `hourly` and `daily` intervals. */
|
|
5159
|
+
'day'?: number[];
|
|
5160
|
+
};
|
|
5161
|
+
/** The type of the backup to be performed. Example: "snapshot" */
|
|
5162
|
+
'backupType': 'dump' | 'snapshot';
|
|
5163
|
+
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
5164
|
+
'compressionType'?: 'gz' | 'zstd';
|
|
5165
|
+
/** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
|
|
5166
|
+
'retentionTime': number;
|
|
5167
|
+
};
|
|
4040
5168
|
/** Create a new backup schedule for an addon. */
|
|
4041
5169
|
declare class CreateAddonBackupscheduleEndpoint extends PostApiEndpoint<CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult> {
|
|
4042
5170
|
description: string;
|
|
@@ -4353,6 +5481,8 @@ declare class RestoreAddonBackupEndpoint extends PostApiEndpoint<RestoreAddonBac
|
|
|
4353
5481
|
type GetAddonRestoresResult = {
|
|
4354
5482
|
/** A list of backup restores. */
|
|
4355
5483
|
'restores'?: {
|
|
5484
|
+
/** Id of the restore, unix millis. Example: 1693287033325 */
|
|
5485
|
+
'id': number;
|
|
4356
5486
|
/** The time the backup was initiated. Example: "2021-01-20T11:19:54.494Z" */
|
|
4357
5487
|
'restoreTimestamp': string;
|
|
4358
5488
|
/** The current status of the restore. Example: "completed" */
|
|
@@ -4834,6 +5964,8 @@ type ListJobsResult = {
|
|
|
4834
5964
|
'appId': string;
|
|
4835
5965
|
/** Job name Example: "Example Job" */
|
|
4836
5966
|
'name': string;
|
|
5967
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
5968
|
+
'tags': string[];
|
|
4837
5969
|
/** A short description of the job Example: "This is the job description" */
|
|
4838
5970
|
'description'?: string;
|
|
4839
5971
|
/** Type of the job (manual or cron) Example: "cron" */
|
|
@@ -4901,6 +6033,7 @@ type CreateJobCronResult = {
|
|
|
4901
6033
|
'ciIgnoreFlags'?: string[];
|
|
4902
6034
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
4903
6035
|
'dockerfileTarget'?: string;
|
|
6036
|
+
'dockerCredentials'?: string[];
|
|
4904
6037
|
/** Include .git folder inside the build context */
|
|
4905
6038
|
'includeGitFolder'?: boolean;
|
|
4906
6039
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -5203,6 +6336,7 @@ type CreateJobCronData = {
|
|
|
5203
6336
|
'ciIgnoreFlags'?: string[];
|
|
5204
6337
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
5205
6338
|
'dockerfileTarget'?: string;
|
|
6339
|
+
'dockerCredentials'?: string[];
|
|
5206
6340
|
/** Include .git folder inside the build context */
|
|
5207
6341
|
'includeGitFolder'?: boolean;
|
|
5208
6342
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -5308,6 +6442,7 @@ type PutJobCronResult = {
|
|
|
5308
6442
|
'ciIgnoreFlags'?: string[];
|
|
5309
6443
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
5310
6444
|
'dockerfileTarget'?: string;
|
|
6445
|
+
'dockerCredentials'?: string[];
|
|
5311
6446
|
/** Include .git folder inside the build context */
|
|
5312
6447
|
'includeGitFolder'?: boolean;
|
|
5313
6448
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -5610,6 +6745,7 @@ type PutJobCronData = {
|
|
|
5610
6745
|
'ciIgnoreFlags'?: string[];
|
|
5611
6746
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
5612
6747
|
'dockerfileTarget'?: string;
|
|
6748
|
+
'dockerCredentials'?: string[];
|
|
5613
6749
|
/** Include .git folder inside the build context */
|
|
5614
6750
|
'includeGitFolder'?: boolean;
|
|
5615
6751
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -5715,6 +6851,7 @@ type PatchJobCronResult = {
|
|
|
5715
6851
|
'ciIgnoreFlags'?: string[];
|
|
5716
6852
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
5717
6853
|
'dockerfileTarget'?: string;
|
|
6854
|
+
'dockerCredentials'?: string[];
|
|
5718
6855
|
/** Include .git folder inside the build context */
|
|
5719
6856
|
'includeGitFolder'?: boolean;
|
|
5720
6857
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -5902,6 +7039,7 @@ type PatchJobCronData = {
|
|
|
5902
7039
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
5903
7040
|
/** 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]"] */
|
|
5904
7041
|
'ciIgnoreFlags'?: string[];
|
|
7042
|
+
'dockerCredentials'?: string[];
|
|
5905
7043
|
};
|
|
5906
7044
|
'buildSettings'?: {
|
|
5907
7045
|
'dockerfile'?: {
|
|
@@ -6000,6 +7138,7 @@ type CreateJobManualResult = {
|
|
|
6000
7138
|
'ciIgnoreFlags'?: string[];
|
|
6001
7139
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
6002
7140
|
'dockerfileTarget'?: string;
|
|
7141
|
+
'dockerCredentials'?: string[];
|
|
6003
7142
|
/** Include .git folder inside the build context */
|
|
6004
7143
|
'includeGitFolder'?: boolean;
|
|
6005
7144
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -6296,6 +7435,7 @@ type CreateJobManualData = {
|
|
|
6296
7435
|
'ciIgnoreFlags'?: string[];
|
|
6297
7436
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
6298
7437
|
'dockerfileTarget'?: string;
|
|
7438
|
+
'dockerCredentials'?: string[];
|
|
6299
7439
|
/** Include .git folder inside the build context */
|
|
6300
7440
|
'includeGitFolder'?: boolean;
|
|
6301
7441
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -6395,6 +7535,7 @@ type PutJobManualResult = {
|
|
|
6395
7535
|
'ciIgnoreFlags'?: string[];
|
|
6396
7536
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
6397
7537
|
'dockerfileTarget'?: string;
|
|
7538
|
+
'dockerCredentials'?: string[];
|
|
6398
7539
|
/** Include .git folder inside the build context */
|
|
6399
7540
|
'includeGitFolder'?: boolean;
|
|
6400
7541
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -6691,6 +7832,7 @@ type PutJobManualData = {
|
|
|
6691
7832
|
'ciIgnoreFlags'?: string[];
|
|
6692
7833
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
6693
7834
|
'dockerfileTarget'?: string;
|
|
7835
|
+
'dockerCredentials'?: string[];
|
|
6694
7836
|
/** Include .git folder inside the build context */
|
|
6695
7837
|
'includeGitFolder'?: boolean;
|
|
6696
7838
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -6790,6 +7932,7 @@ type PatchJobManualResult = {
|
|
|
6790
7932
|
'ciIgnoreFlags'?: string[];
|
|
6791
7933
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
6792
7934
|
'dockerfileTarget'?: string;
|
|
7935
|
+
'dockerCredentials'?: string[];
|
|
6793
7936
|
/** Include .git folder inside the build context */
|
|
6794
7937
|
'includeGitFolder'?: boolean;
|
|
6795
7938
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -6971,6 +8114,7 @@ type PatchJobManualData = {
|
|
|
6971
8114
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
6972
8115
|
/** 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]"] */
|
|
6973
8116
|
'ciIgnoreFlags'?: string[];
|
|
8117
|
+
'dockerCredentials'?: string[];
|
|
6974
8118
|
};
|
|
6975
8119
|
'buildSettings'?: {
|
|
6976
8120
|
'dockerfile'?: {
|
|
@@ -7042,6 +8186,8 @@ type GetJobResult = {
|
|
|
7042
8186
|
'appId': string;
|
|
7043
8187
|
/** Job name Example: "Example Job" */
|
|
7044
8188
|
'name': string;
|
|
8189
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
8190
|
+
'tags': string[];
|
|
7045
8191
|
/** A short description of the job Example: "This is the job description" */
|
|
7046
8192
|
'description'?: string;
|
|
7047
8193
|
/** ID of the project that the job belongs to Example: "default-project" */
|
|
@@ -7077,6 +8223,7 @@ type GetJobResult = {
|
|
|
7077
8223
|
'ciIgnoreFlags'?: string[];
|
|
7078
8224
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
7079
8225
|
'dockerfileTarget'?: string;
|
|
8226
|
+
'dockerCredentials'?: string[];
|
|
7080
8227
|
/** Include .git folder inside the build context */
|
|
7081
8228
|
'includeGitFolder'?: boolean;
|
|
7082
8229
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -7514,6 +8661,7 @@ type UpdateJobBuildoptionsData = {
|
|
|
7514
8661
|
'ciIgnoreFlags'?: string[];
|
|
7515
8662
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
7516
8663
|
'dockerfileTarget'?: string;
|
|
8664
|
+
'dockerCredentials'?: string[];
|
|
7517
8665
|
/** Include .git folder inside the build context */
|
|
7518
8666
|
'includeGitFolder'?: boolean;
|
|
7519
8667
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -7548,6 +8696,7 @@ type UpdateJobBuildoptionsData = {
|
|
|
7548
8696
|
'ciIgnoreFlags'?: string[];
|
|
7549
8697
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
7550
8698
|
'dockerfileTarget'?: string;
|
|
8699
|
+
'dockerCredentials'?: string[];
|
|
7551
8700
|
/** Include .git folder inside the build context */
|
|
7552
8701
|
'includeGitFolder'?: boolean;
|
|
7553
8702
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -9205,6 +10354,8 @@ type ListSecretsResult = {
|
|
|
9205
10354
|
'projectId': string;
|
|
9206
10355
|
/** Secret group name Example: "Example secret group" */
|
|
9207
10356
|
'name': string;
|
|
10357
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
10358
|
+
'tags': string[];
|
|
9208
10359
|
/** A short description of the secret group Example: "This is the secret group description" */
|
|
9209
10360
|
'description'?: string;
|
|
9210
10361
|
/** The type of the created secret group Example: "environment" */
|
|
@@ -9589,6 +10740,8 @@ type GetSecretResult = {
|
|
|
9589
10740
|
'id': string;
|
|
9590
10741
|
/** Secret group name Example: "Example secret group" */
|
|
9591
10742
|
'name': string;
|
|
10743
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
10744
|
+
'tags': string[];
|
|
9592
10745
|
/** A short description of the secret group Example: "This is the secret group description" */
|
|
9593
10746
|
'description'?: string;
|
|
9594
10747
|
/** The type of the created secret group Example: "environment" */
|
|
@@ -9830,6 +10983,8 @@ type GetSecretdetailsResult = {
|
|
|
9830
10983
|
'id': string;
|
|
9831
10984
|
/** Secret group name Example: "Example secret group" */
|
|
9832
10985
|
'name': string;
|
|
10986
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
10987
|
+
'tags': string[];
|
|
9833
10988
|
/** A short description of the secret group Example: "This is the secret group description" */
|
|
9834
10989
|
'description'?: string;
|
|
9835
10990
|
/** The type of the created secret group Example: "environment" */
|
|
@@ -9953,6 +11108,7 @@ type CreateServiceBuildResult = {
|
|
|
9953
11108
|
'ciIgnoreFlags'?: string[];
|
|
9954
11109
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
9955
11110
|
'dockerfileTarget'?: string;
|
|
11111
|
+
'dockerCredentials'?: string[];
|
|
9956
11112
|
/** Include .git folder inside the build context */
|
|
9957
11113
|
'includeGitFolder'?: boolean;
|
|
9958
11114
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -10059,6 +11215,7 @@ type CreateServiceBuildData = {
|
|
|
10059
11215
|
'ciIgnoreFlags'?: string[];
|
|
10060
11216
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
10061
11217
|
'dockerfileTarget'?: string;
|
|
11218
|
+
'dockerCredentials'?: string[];
|
|
10062
11219
|
/** Include .git folder inside the build context */
|
|
10063
11220
|
'includeGitFolder'?: boolean;
|
|
10064
11221
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -10141,6 +11298,7 @@ type PutServiceBuildResult = {
|
|
|
10141
11298
|
'ciIgnoreFlags'?: string[];
|
|
10142
11299
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
10143
11300
|
'dockerfileTarget'?: string;
|
|
11301
|
+
'dockerCredentials'?: string[];
|
|
10144
11302
|
/** Include .git folder inside the build context */
|
|
10145
11303
|
'includeGitFolder'?: boolean;
|
|
10146
11304
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -10247,6 +11405,7 @@ type PutServiceBuildData = {
|
|
|
10247
11405
|
'ciIgnoreFlags'?: string[];
|
|
10248
11406
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
10249
11407
|
'dockerfileTarget'?: string;
|
|
11408
|
+
'dockerCredentials'?: string[];
|
|
10250
11409
|
/** Include .git folder inside the build context */
|
|
10251
11410
|
'includeGitFolder'?: boolean;
|
|
10252
11411
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -10329,6 +11488,7 @@ type PatchServiceBuildResult = {
|
|
|
10329
11488
|
'ciIgnoreFlags'?: string[];
|
|
10330
11489
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
10331
11490
|
'dockerfileTarget'?: string;
|
|
11491
|
+
'dockerCredentials'?: string[];
|
|
10332
11492
|
/** Include .git folder inside the build context */
|
|
10333
11493
|
'includeGitFolder'?: boolean;
|
|
10334
11494
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -10432,6 +11592,7 @@ type PatchServiceBuildData = {
|
|
|
10432
11592
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
10433
11593
|
/** 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]"] */
|
|
10434
11594
|
'ciIgnoreFlags'?: string[];
|
|
11595
|
+
'dockerCredentials'?: string[];
|
|
10435
11596
|
};
|
|
10436
11597
|
/** An object containing the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
|
|
10437
11598
|
'buildArguments'?: any;
|
|
@@ -10540,6 +11701,7 @@ type CreateServiceCombinedResult = {
|
|
|
10540
11701
|
'ciIgnoreFlags'?: string[];
|
|
10541
11702
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
10542
11703
|
'dockerfileTarget'?: string;
|
|
11704
|
+
'dockerCredentials'?: string[];
|
|
10543
11705
|
/** Include .git folder inside the build context */
|
|
10544
11706
|
'includeGitFolder'?: boolean;
|
|
10545
11707
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -10598,6 +11760,12 @@ type CreateServiceCombinedResult = {
|
|
|
10598
11760
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
10599
11761
|
'thresholdPercentage': number;
|
|
10600
11762
|
};
|
|
11763
|
+
'rps'?: {
|
|
11764
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
11765
|
+
'enabled': boolean;
|
|
11766
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
11767
|
+
'thresholdValue': number;
|
|
11768
|
+
};
|
|
10601
11769
|
};
|
|
10602
11770
|
};
|
|
10603
11771
|
'deploymentSysctlSettings'?: {
|
|
@@ -10638,6 +11806,8 @@ type CreateServiceCombinedResult = {
|
|
|
10638
11806
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
10639
11807
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
10640
11808
|
};
|
|
11809
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
11810
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
10641
11811
|
/** Image registry url of the deployed image. */
|
|
10642
11812
|
'imageUrl'?: string;
|
|
10643
11813
|
};
|
|
@@ -10726,6 +11896,8 @@ type CreateServiceCombinedData = {
|
|
|
10726
11896
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
10727
11897
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
10728
11898
|
};
|
|
11899
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
11900
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
10729
11901
|
};
|
|
10730
11902
|
'ports'?: {
|
|
10731
11903
|
/** The name used to identify the port. Example: "port-1" */
|
|
@@ -10809,6 +11981,7 @@ type CreateServiceCombinedData = {
|
|
|
10809
11981
|
'ciIgnoreFlags'?: string[];
|
|
10810
11982
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
10811
11983
|
'dockerfileTarget'?: string;
|
|
11984
|
+
'dockerCredentials'?: string[];
|
|
10812
11985
|
/** Include .git folder inside the build context */
|
|
10813
11986
|
'includeGitFolder'?: boolean;
|
|
10814
11987
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -10867,6 +12040,12 @@ type CreateServiceCombinedData = {
|
|
|
10867
12040
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
10868
12041
|
'thresholdPercentage': number;
|
|
10869
12042
|
};
|
|
12043
|
+
'rps'?: {
|
|
12044
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
12045
|
+
'enabled': boolean;
|
|
12046
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
12047
|
+
'thresholdValue': number;
|
|
12048
|
+
};
|
|
10870
12049
|
};
|
|
10871
12050
|
};
|
|
10872
12051
|
};
|
|
@@ -10972,6 +12151,7 @@ type PutServiceCombinedResult = {
|
|
|
10972
12151
|
'ciIgnoreFlags'?: string[];
|
|
10973
12152
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
10974
12153
|
'dockerfileTarget'?: string;
|
|
12154
|
+
'dockerCredentials'?: string[];
|
|
10975
12155
|
/** Include .git folder inside the build context */
|
|
10976
12156
|
'includeGitFolder'?: boolean;
|
|
10977
12157
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -11030,6 +12210,12 @@ type PutServiceCombinedResult = {
|
|
|
11030
12210
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
11031
12211
|
'thresholdPercentage': number;
|
|
11032
12212
|
};
|
|
12213
|
+
'rps'?: {
|
|
12214
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
12215
|
+
'enabled': boolean;
|
|
12216
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
12217
|
+
'thresholdValue': number;
|
|
12218
|
+
};
|
|
11033
12219
|
};
|
|
11034
12220
|
};
|
|
11035
12221
|
'deploymentSysctlSettings'?: {
|
|
@@ -11070,6 +12256,8 @@ type PutServiceCombinedResult = {
|
|
|
11070
12256
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
11071
12257
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
11072
12258
|
};
|
|
12259
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
12260
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
11073
12261
|
/** Image registry url of the deployed image. */
|
|
11074
12262
|
'imageUrl'?: string;
|
|
11075
12263
|
};
|
|
@@ -11158,6 +12346,8 @@ type PutServiceCombinedData = {
|
|
|
11158
12346
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
11159
12347
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
11160
12348
|
};
|
|
12349
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
12350
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
11161
12351
|
};
|
|
11162
12352
|
'ports'?: {
|
|
11163
12353
|
/** The name used to identify the port. Example: "port-1" */
|
|
@@ -11241,6 +12431,7 @@ type PutServiceCombinedData = {
|
|
|
11241
12431
|
'ciIgnoreFlags'?: string[];
|
|
11242
12432
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
11243
12433
|
'dockerfileTarget'?: string;
|
|
12434
|
+
'dockerCredentials'?: string[];
|
|
11244
12435
|
/** Include .git folder inside the build context */
|
|
11245
12436
|
'includeGitFolder'?: boolean;
|
|
11246
12437
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -11299,6 +12490,12 @@ type PutServiceCombinedData = {
|
|
|
11299
12490
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
11300
12491
|
'thresholdPercentage': number;
|
|
11301
12492
|
};
|
|
12493
|
+
'rps'?: {
|
|
12494
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
12495
|
+
'enabled': boolean;
|
|
12496
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
12497
|
+
'thresholdValue': number;
|
|
12498
|
+
};
|
|
11302
12499
|
};
|
|
11303
12500
|
};
|
|
11304
12501
|
};
|
|
@@ -11404,6 +12601,7 @@ type PatchServiceCombinedResult = {
|
|
|
11404
12601
|
'ciIgnoreFlags'?: string[];
|
|
11405
12602
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
11406
12603
|
'dockerfileTarget'?: string;
|
|
12604
|
+
'dockerCredentials'?: string[];
|
|
11407
12605
|
/** Include .git folder inside the build context */
|
|
11408
12606
|
'includeGitFolder'?: boolean;
|
|
11409
12607
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -11462,6 +12660,12 @@ type PatchServiceCombinedResult = {
|
|
|
11462
12660
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
11463
12661
|
'thresholdPercentage': number;
|
|
11464
12662
|
};
|
|
12663
|
+
'rps'?: {
|
|
12664
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
12665
|
+
'enabled': boolean;
|
|
12666
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
12667
|
+
'thresholdValue': number;
|
|
12668
|
+
};
|
|
11465
12669
|
};
|
|
11466
12670
|
};
|
|
11467
12671
|
'deploymentSysctlSettings'?: {
|
|
@@ -11502,6 +12706,8 @@ type PatchServiceCombinedResult = {
|
|
|
11502
12706
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
11503
12707
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
11504
12708
|
};
|
|
12709
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
12710
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
11505
12711
|
/** Image registry url of the deployed image. */
|
|
11506
12712
|
'imageUrl'?: string;
|
|
11507
12713
|
};
|
|
@@ -11581,6 +12787,8 @@ type PatchServiceCombinedData = {
|
|
|
11581
12787
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
11582
12788
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
11583
12789
|
};
|
|
12790
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
12791
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
11584
12792
|
};
|
|
11585
12793
|
'ports'?: {
|
|
11586
12794
|
/** The name used to identify the port. Example: "port-1" */
|
|
@@ -11661,6 +12869,7 @@ type PatchServiceCombinedData = {
|
|
|
11661
12869
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
11662
12870
|
/** 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]"] */
|
|
11663
12871
|
'ciIgnoreFlags'?: string[];
|
|
12872
|
+
'dockerCredentials'?: string[];
|
|
11664
12873
|
};
|
|
11665
12874
|
/** 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"} */
|
|
11666
12875
|
'runtimeEnvironment'?: any;
|
|
@@ -11713,6 +12922,12 @@ type PatchServiceCombinedData = {
|
|
|
11713
12922
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
11714
12923
|
'thresholdPercentage'?: number;
|
|
11715
12924
|
};
|
|
12925
|
+
'rps'?: {
|
|
12926
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
12927
|
+
'enabled'?: boolean;
|
|
12928
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
12929
|
+
'thresholdValue'?: number;
|
|
12930
|
+
};
|
|
11716
12931
|
};
|
|
11717
12932
|
};
|
|
11718
12933
|
};
|
|
@@ -11817,6 +13032,12 @@ type CreateServiceDeploymentResult = {
|
|
|
11817
13032
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
11818
13033
|
'thresholdPercentage': number;
|
|
11819
13034
|
};
|
|
13035
|
+
'rps'?: {
|
|
13036
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
13037
|
+
'enabled': boolean;
|
|
13038
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
13039
|
+
'thresholdValue': number;
|
|
13040
|
+
};
|
|
11820
13041
|
};
|
|
11821
13042
|
};
|
|
11822
13043
|
'deploymentSysctlSettings'?: {
|
|
@@ -11857,6 +13078,8 @@ type CreateServiceDeploymentResult = {
|
|
|
11857
13078
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
11858
13079
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
11859
13080
|
};
|
|
13081
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13082
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
11860
13083
|
'internal'?: {
|
|
11861
13084
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
11862
13085
|
'id'?: string;
|
|
@@ -11955,6 +13178,8 @@ type CreateServiceDeploymentData = {
|
|
|
11955
13178
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
11956
13179
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
11957
13180
|
};
|
|
13181
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13182
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
11958
13183
|
'internal': {
|
|
11959
13184
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
11960
13185
|
'id'?: string;
|
|
@@ -11998,6 +13223,8 @@ type CreateServiceDeploymentData = {
|
|
|
11998
13223
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
11999
13224
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12000
13225
|
};
|
|
13226
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13227
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
12001
13228
|
'external': {
|
|
12002
13229
|
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
12003
13230
|
'imagePath': string;
|
|
@@ -12037,6 +13264,8 @@ type CreateServiceDeploymentData = {
|
|
|
12037
13264
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12038
13265
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12039
13266
|
};
|
|
13267
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13268
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
12040
13269
|
};
|
|
12041
13270
|
'ports'?: {
|
|
12042
13271
|
/** The name used to identify the port. Example: "port-1" */
|
|
@@ -12119,6 +13348,12 @@ type CreateServiceDeploymentData = {
|
|
|
12119
13348
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
12120
13349
|
'thresholdPercentage': number;
|
|
12121
13350
|
};
|
|
13351
|
+
'rps'?: {
|
|
13352
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
13353
|
+
'enabled': boolean;
|
|
13354
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
13355
|
+
'thresholdValue': number;
|
|
13356
|
+
};
|
|
12122
13357
|
};
|
|
12123
13358
|
};
|
|
12124
13359
|
};
|
|
@@ -12223,6 +13458,12 @@ type PutServiceDeploymentResult = {
|
|
|
12223
13458
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
12224
13459
|
'thresholdPercentage': number;
|
|
12225
13460
|
};
|
|
13461
|
+
'rps'?: {
|
|
13462
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
13463
|
+
'enabled': boolean;
|
|
13464
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
13465
|
+
'thresholdValue': number;
|
|
13466
|
+
};
|
|
12226
13467
|
};
|
|
12227
13468
|
};
|
|
12228
13469
|
'deploymentSysctlSettings'?: {
|
|
@@ -12263,6 +13504,8 @@ type PutServiceDeploymentResult = {
|
|
|
12263
13504
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12264
13505
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12265
13506
|
};
|
|
13507
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13508
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
12266
13509
|
'internal'?: {
|
|
12267
13510
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
12268
13511
|
'id'?: string;
|
|
@@ -12361,6 +13604,8 @@ type PutServiceDeploymentData = {
|
|
|
12361
13604
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12362
13605
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12363
13606
|
};
|
|
13607
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13608
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
12364
13609
|
'internal': {
|
|
12365
13610
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
12366
13611
|
'id'?: string;
|
|
@@ -12404,6 +13649,8 @@ type PutServiceDeploymentData = {
|
|
|
12404
13649
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12405
13650
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12406
13651
|
};
|
|
13652
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13653
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
12407
13654
|
'external': {
|
|
12408
13655
|
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
12409
13656
|
'imagePath': string;
|
|
@@ -12443,6 +13690,8 @@ type PutServiceDeploymentData = {
|
|
|
12443
13690
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12444
13691
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12445
13692
|
};
|
|
13693
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13694
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
12446
13695
|
};
|
|
12447
13696
|
'ports'?: {
|
|
12448
13697
|
/** The name used to identify the port. Example: "port-1" */
|
|
@@ -12525,6 +13774,12 @@ type PutServiceDeploymentData = {
|
|
|
12525
13774
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
12526
13775
|
'thresholdPercentage': number;
|
|
12527
13776
|
};
|
|
13777
|
+
'rps'?: {
|
|
13778
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
13779
|
+
'enabled': boolean;
|
|
13780
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
13781
|
+
'thresholdValue': number;
|
|
13782
|
+
};
|
|
12528
13783
|
};
|
|
12529
13784
|
};
|
|
12530
13785
|
};
|
|
@@ -12629,6 +13884,12 @@ type PatchServiceDeploymentResult = {
|
|
|
12629
13884
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
12630
13885
|
'thresholdPercentage': number;
|
|
12631
13886
|
};
|
|
13887
|
+
'rps'?: {
|
|
13888
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
13889
|
+
'enabled': boolean;
|
|
13890
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
13891
|
+
'thresholdValue': number;
|
|
13892
|
+
};
|
|
12632
13893
|
};
|
|
12633
13894
|
};
|
|
12634
13895
|
'deploymentSysctlSettings'?: {
|
|
@@ -12669,6 +13930,8 @@ type PatchServiceDeploymentResult = {
|
|
|
12669
13930
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12670
13931
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12671
13932
|
};
|
|
13933
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13934
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
12672
13935
|
'internal'?: {
|
|
12673
13936
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
12674
13937
|
'id'?: string;
|
|
@@ -12767,6 +14030,8 @@ type PatchServiceDeploymentData = {
|
|
|
12767
14030
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12768
14031
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12769
14032
|
};
|
|
14033
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
14034
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
12770
14035
|
'internal': {
|
|
12771
14036
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
12772
14037
|
'id'?: string;
|
|
@@ -12810,6 +14075,8 @@ type PatchServiceDeploymentData = {
|
|
|
12810
14075
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12811
14076
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12812
14077
|
};
|
|
14078
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
14079
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
12813
14080
|
'external': {
|
|
12814
14081
|
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
12815
14082
|
'imagePath': string;
|
|
@@ -12849,6 +14116,8 @@ type PatchServiceDeploymentData = {
|
|
|
12849
14116
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12850
14117
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12851
14118
|
};
|
|
14119
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
14120
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
12852
14121
|
};
|
|
12853
14122
|
'ports'?: {
|
|
12854
14123
|
/** The name used to identify the port. Example: "port-1" */
|
|
@@ -12929,6 +14198,12 @@ type PatchServiceDeploymentData = {
|
|
|
12929
14198
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
12930
14199
|
'thresholdPercentage'?: number;
|
|
12931
14200
|
};
|
|
14201
|
+
'rps'?: {
|
|
14202
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
14203
|
+
'enabled'?: boolean;
|
|
14204
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
14205
|
+
'thresholdValue'?: number;
|
|
14206
|
+
};
|
|
12932
14207
|
};
|
|
12933
14208
|
};
|
|
12934
14209
|
};
|
|
@@ -12948,6 +14223,8 @@ type GetServiceResult = {
|
|
|
12948
14223
|
'appId': string;
|
|
12949
14224
|
/** Service name Example: "Example Service" */
|
|
12950
14225
|
'name': string;
|
|
14226
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
14227
|
+
'tags': string[];
|
|
12951
14228
|
/** A short description of the service Example: "This is the service description" */
|
|
12952
14229
|
'description'?: string;
|
|
12953
14230
|
/** ID of the project that the service belongs to Example: "default-project" */
|
|
@@ -13064,6 +14341,7 @@ type GetServiceResult = {
|
|
|
13064
14341
|
'branchRestrictions'?: string[];
|
|
13065
14342
|
'prRestrictions'?: string[];
|
|
13066
14343
|
'pathIgnoreRules': string[];
|
|
14344
|
+
'dockerCredentials'?: string[];
|
|
13067
14345
|
};
|
|
13068
14346
|
'buildEngineConfiguration'?: {
|
|
13069
14347
|
/** The build engine used. Example: "buildpack" */
|
|
@@ -13508,6 +14786,7 @@ type UpdateServiceBuildoptionsData = {
|
|
|
13508
14786
|
'ciIgnoreFlags'?: string[];
|
|
13509
14787
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
13510
14788
|
'dockerfileTarget'?: string;
|
|
14789
|
+
'dockerCredentials'?: string[];
|
|
13511
14790
|
/** Include .git folder inside the build context */
|
|
13512
14791
|
'includeGitFolder'?: boolean;
|
|
13513
14792
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -13546,6 +14825,7 @@ type UpdateServiceBuildoptionsData = {
|
|
|
13546
14825
|
'ciIgnoreFlags'?: string[];
|
|
13547
14826
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
13548
14827
|
'dockerfileTarget'?: string;
|
|
14828
|
+
'dockerCredentials'?: string[];
|
|
13549
14829
|
/** Include .git folder inside the build context */
|
|
13550
14830
|
'includeGitFolder'?: boolean;
|
|
13551
14831
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -14394,25 +15674,31 @@ type ListVolumesResult = {
|
|
|
14394
15674
|
'id': string;
|
|
14395
15675
|
/** Volume name Example: "Example Volume" */
|
|
14396
15676
|
'name': string;
|
|
15677
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
15678
|
+
'tags': string[];
|
|
14397
15679
|
/** Information about the desired size and type of the volume. Storage class is only configurable with the relevant feature flag enabled for your account. */
|
|
14398
15680
|
'spec': {
|
|
15681
|
+
/** Access mode of the volume. Only `ReadWriteOnce` generally available. */
|
|
15682
|
+
'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
|
|
14399
15683
|
/** The type of the storage. Example: "ssd" */
|
|
14400
15684
|
'storageClassName'?: 'ssd';
|
|
14401
15685
|
/** Storage size of the SSD. Example: 4096 */
|
|
14402
15686
|
'storageSize': number;
|
|
14403
15687
|
} | {
|
|
15688
|
+
/** Access mode of the volume. Only `ReadWriteOnce` generally available. */
|
|
15689
|
+
'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
|
|
14404
15690
|
/** The type of the storage. Example: "hdd" */
|
|
14405
15691
|
'storageClassName': 'hdd';
|
|
14406
15692
|
/** Storage size of the HDD. Example: 40960 */
|
|
14407
15693
|
'storageSize': number;
|
|
14408
15694
|
};
|
|
14409
|
-
/**
|
|
14410
|
-
'
|
|
15695
|
+
/** List of objects this volume is attached to. */
|
|
15696
|
+
'attachedObjects'?: {
|
|
14411
15697
|
/** The id of object to attach this volume to. Example: "example-service" */
|
|
14412
15698
|
'id': string;
|
|
14413
15699
|
/** The type of the object to attach this volume to. Example: "service" */
|
|
14414
15700
|
'type': 'service';
|
|
14415
|
-
};
|
|
15701
|
+
}[];
|
|
14416
15702
|
/** Status the volume is in on the cluster Example: "BOUND" */
|
|
14417
15703
|
'status': string;
|
|
14418
15704
|
/** The timestamp the volume was created at Example: "2021-01-01 12:00:00.000Z" */
|
|
@@ -14441,25 +15727,31 @@ type CreateVolumeResult = {
|
|
|
14441
15727
|
'id': string;
|
|
14442
15728
|
/** Volume name Example: "Example Volume" */
|
|
14443
15729
|
'name': string;
|
|
15730
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
15731
|
+
'tags': string[];
|
|
14444
15732
|
/** Information about the desired size and type of the volume. Storage class is only configurable with the relevant feature flag enabled for your account. */
|
|
14445
15733
|
'spec': {
|
|
15734
|
+
/** Access mode of the volume. Only `ReadWriteOnce` generally available. */
|
|
15735
|
+
'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
|
|
14446
15736
|
/** The type of the storage. Example: "ssd" */
|
|
14447
15737
|
'storageClassName'?: 'ssd';
|
|
14448
15738
|
/** Storage size of the SSD. Example: 4096 */
|
|
14449
15739
|
'storageSize': number;
|
|
14450
15740
|
} | {
|
|
15741
|
+
/** Access mode of the volume. Only `ReadWriteOnce` generally available. */
|
|
15742
|
+
'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
|
|
14451
15743
|
/** The type of the storage. Example: "hdd" */
|
|
14452
15744
|
'storageClassName': 'hdd';
|
|
14453
15745
|
/** Storage size of the HDD. Example: 40960 */
|
|
14454
15746
|
'storageSize': number;
|
|
14455
15747
|
};
|
|
14456
|
-
/**
|
|
14457
|
-
'
|
|
15748
|
+
/** List of objects this volume is attached to. */
|
|
15749
|
+
'attachedObjects'?: {
|
|
14458
15750
|
/** The id of object to attach this volume to. Example: "example-service" */
|
|
14459
15751
|
'id': string;
|
|
14460
15752
|
/** The type of the object to attach this volume to. Example: "service" */
|
|
14461
15753
|
'type': 'service';
|
|
14462
|
-
};
|
|
15754
|
+
}[];
|
|
14463
15755
|
/** Status the volume is in on the cluster Example: "BOUND" */
|
|
14464
15756
|
'status': string;
|
|
14465
15757
|
/** The timestamp the volume was created at Example: "2021-01-01 12:00:00.000Z" */
|
|
@@ -14489,23 +15781,34 @@ type CreateVolumeData = {
|
|
|
14489
15781
|
}[];
|
|
14490
15782
|
/** Information about the desired size and type of the volume. Storage class is only configurable with the relevant feature flag enabled for your account. */
|
|
14491
15783
|
'spec': {
|
|
15784
|
+
/** Access mode of the volume. Only `ReadWriteOnce` generally available. */
|
|
15785
|
+
'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
|
|
14492
15786
|
/** The type of the storage. Example: "ssd" */
|
|
14493
15787
|
'storageClassName'?: 'ssd';
|
|
14494
15788
|
/** Storage size of the SSD. Example: 4096 */
|
|
14495
15789
|
'storageSize': number;
|
|
14496
15790
|
} | {
|
|
15791
|
+
/** Access mode of the volume. Only `ReadWriteOnce` generally available. */
|
|
15792
|
+
'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
|
|
14497
15793
|
/** The type of the storage. Example: "hdd" */
|
|
14498
15794
|
'storageClassName': 'hdd';
|
|
14499
15795
|
/** Storage size of the HDD. Example: 40960 */
|
|
14500
15796
|
'storageSize': number;
|
|
14501
15797
|
};
|
|
14502
|
-
/** The object to attach this volume to. */
|
|
15798
|
+
/** DEPRECATED: The object to attach this volume to. */
|
|
14503
15799
|
'owningObject'?: {
|
|
15800
|
+
/** The id of object to attach this volume to. */
|
|
15801
|
+
'id': string;
|
|
15802
|
+
/** The type of the object to attach this volume to. */
|
|
15803
|
+
'type': 'service';
|
|
15804
|
+
};
|
|
15805
|
+
/** Array of objects this volume is attached to. */
|
|
15806
|
+
'attachedObjects'?: {
|
|
14504
15807
|
/** The id of object to attach this volume to. Example: "example-service" */
|
|
14505
15808
|
'id': string;
|
|
14506
15809
|
/** The type of the object to attach this volume to. Example: "service" */
|
|
14507
15810
|
'type': 'service';
|
|
14508
|
-
};
|
|
15811
|
+
}[];
|
|
14509
15812
|
};
|
|
14510
15813
|
/** Creates a volume with the specified payload */
|
|
14511
15814
|
declare class CreateVolumeEndpoint extends PostApiEndpoint<CreateVolumeRequest, CreateVolumeResult> {
|
|
@@ -14521,25 +15824,31 @@ type GetVolumeResult = {
|
|
|
14521
15824
|
'id': string;
|
|
14522
15825
|
/** Volume name Example: "Example Volume" */
|
|
14523
15826
|
'name': string;
|
|
15827
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
15828
|
+
'tags': string[];
|
|
14524
15829
|
/** Information about the desired size and type of the volume. Storage class is only configurable with the relevant feature flag enabled for your account. */
|
|
14525
15830
|
'spec': {
|
|
15831
|
+
/** Access mode of the volume. Only `ReadWriteOnce` generally available. */
|
|
15832
|
+
'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
|
|
14526
15833
|
/** The type of the storage. Example: "ssd" */
|
|
14527
15834
|
'storageClassName'?: 'ssd';
|
|
14528
15835
|
/** Storage size of the SSD. Example: 4096 */
|
|
14529
15836
|
'storageSize': number;
|
|
14530
15837
|
} | {
|
|
15838
|
+
/** Access mode of the volume. Only `ReadWriteOnce` generally available. */
|
|
15839
|
+
'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
|
|
14531
15840
|
/** The type of the storage. Example: "hdd" */
|
|
14532
15841
|
'storageClassName': 'hdd';
|
|
14533
15842
|
/** Storage size of the HDD. Example: 40960 */
|
|
14534
15843
|
'storageSize': number;
|
|
14535
15844
|
};
|
|
14536
|
-
/**
|
|
14537
|
-
'
|
|
15845
|
+
/** List of objects this volume is attached to. */
|
|
15846
|
+
'attachedObjects'?: {
|
|
14538
15847
|
/** The id of object to attach this volume to. Example: "example-service" */
|
|
14539
15848
|
'id': string;
|
|
14540
15849
|
/** The type of the object to attach this volume to. Example: "service" */
|
|
14541
15850
|
'type': 'service';
|
|
14542
|
-
};
|
|
15851
|
+
}[];
|
|
14543
15852
|
/** Status the volume is in on the cluster Example: "BOUND" */
|
|
14544
15853
|
'status': string;
|
|
14545
15854
|
/** The timestamp the volume was created at Example: "2021-01-01 12:00:00.000Z" */
|
|
@@ -14629,8 +15938,15 @@ type AttachVolumeParameters = {
|
|
|
14629
15938
|
'volumeId': string;
|
|
14630
15939
|
};
|
|
14631
15940
|
type AttachVolumeData = {
|
|
15941
|
+
/** DEPRECATED: The object to attach this volume to. */
|
|
15942
|
+
'owningObject'?: {
|
|
15943
|
+
/** The id of object to attach this volume to. */
|
|
15944
|
+
'id': string;
|
|
15945
|
+
/** The type of the object to attach this volume to. */
|
|
15946
|
+
'type': 'service';
|
|
15947
|
+
};
|
|
14632
15948
|
/** The object to attach this volume to. */
|
|
14633
|
-
'
|
|
15949
|
+
'nfObject'?: {
|
|
14634
15950
|
/** The id of object to attach this volume to. Example: "example-service" */
|
|
14635
15951
|
'id': string;
|
|
14636
15952
|
/** The type of the object to attach this volume to. Example: "service" */
|
|
@@ -14657,7 +15973,15 @@ type DetachVolumeParameters = {
|
|
|
14657
15973
|
/** ID of the volume */
|
|
14658
15974
|
'volumeId': string;
|
|
14659
15975
|
};
|
|
14660
|
-
type DetachVolumeData =
|
|
15976
|
+
type DetachVolumeData = {
|
|
15977
|
+
/** The object to detach this volume to. */
|
|
15978
|
+
'nfObject': {
|
|
15979
|
+
/** The id of object to detach this volume to. Example: "example-service" */
|
|
15980
|
+
'id': string;
|
|
15981
|
+
/** The type of the object to detach this volume to. Example: "service" */
|
|
15982
|
+
'type': 'service';
|
|
15983
|
+
};
|
|
15984
|
+
};
|
|
14661
15985
|
/** Detach a volume */
|
|
14662
15986
|
declare class DetachVolumeEndpoint extends PostApiEndpoint<DetachVolumeRequest, DetachVolumeResult> {
|
|
14663
15987
|
description: string;
|
|
@@ -15642,8 +16966,13 @@ declare class ApiClient {
|
|
|
15642
16966
|
backups: GetAddonBackupsCall;
|
|
15643
16967
|
backup: GetAddonBackupCall & {
|
|
15644
16968
|
download: GetAddonBackupDownloadCall;
|
|
16969
|
+
logs: GetAddonBackupLogsCall;
|
|
16970
|
+
logTail: TailAddonBackupLogsCall;
|
|
16971
|
+
};
|
|
16972
|
+
restores: GetAddonRestoresCall & {
|
|
16973
|
+
logs: GetAddonRestoresLogsCall;
|
|
16974
|
+
logTail: TailAddonRestoresLogsCall;
|
|
15645
16975
|
};
|
|
15646
|
-
restores: GetAddonRestoresCall;
|
|
15647
16976
|
containers: GetAddonContainersCall;
|
|
15648
16977
|
credentials: GetAddonCredentialsCall;
|
|
15649
16978
|
pitrWindow: GetAddonPitrwindowCall;
|
|
@@ -15656,13 +16985,17 @@ declare class ApiClient {
|
|
|
15656
16985
|
invoice: {
|
|
15657
16986
|
details: GetInvoiceDetailsCall;
|
|
15658
16987
|
};
|
|
15659
|
-
|
|
15660
|
-
|
|
16988
|
+
cloud: {
|
|
16989
|
+
cluster: GetCloudClusterCall;
|
|
16990
|
+
dockerRegistry: GetCloudDockerregistryCall;
|
|
16991
|
+
integration: GetCloudIntegrationCall;
|
|
16992
|
+
};
|
|
15661
16993
|
dnsId: GetDnsidCall;
|
|
15662
16994
|
domain: GetDomainCall;
|
|
15663
16995
|
subdomain: GetSubdomainCall;
|
|
15664
16996
|
logSink: GetLogsinkCall;
|
|
15665
|
-
|
|
16997
|
+
notification: GetNotificationCall;
|
|
16998
|
+
registryCredentials: GetRegistrycredentialsCall;
|
|
15666
16999
|
project: GetProjectCall;
|
|
15667
17000
|
job: GetJobCall & {
|
|
15668
17001
|
branches: GetJobBranchesCall;
|
|
@@ -15723,12 +17056,18 @@ declare class ApiClient {
|
|
|
15723
17056
|
};
|
|
15724
17057
|
list: {
|
|
15725
17058
|
invoices: ListInvoicesCall;
|
|
15726
|
-
|
|
15727
|
-
|
|
15728
|
-
|
|
17059
|
+
cloud: {
|
|
17060
|
+
providers: ListCloudProvidersCall;
|
|
17061
|
+
clusters: ListCloudClustersCall;
|
|
17062
|
+
dockerRegistry: ListCloudDockerregistryCall;
|
|
17063
|
+
integrations: ListCloudIntegrationsCall;
|
|
17064
|
+
nodeTypes: ListCloudNodetypesCall;
|
|
17065
|
+
regions: ListCloudRegionsCall;
|
|
17066
|
+
};
|
|
15729
17067
|
domains: ListDomainsCall;
|
|
15730
17068
|
logSinks: ListLogsinksCall;
|
|
15731
|
-
|
|
17069
|
+
notifications: ListNotificationsCall;
|
|
17070
|
+
registryCredentials: ListRegistrycredentialsCall;
|
|
15732
17071
|
vcs: ListVcsCall;
|
|
15733
17072
|
repos: ListReposCall;
|
|
15734
17073
|
branches: ListBranchesCall;
|
|
@@ -15748,10 +17087,14 @@ declare class ApiClient {
|
|
|
15748
17087
|
templateRuns: ListTemplaterunsCall;
|
|
15749
17088
|
};
|
|
15750
17089
|
create: {
|
|
15751
|
-
|
|
15752
|
-
|
|
17090
|
+
cloud: {
|
|
17091
|
+
cluster: CreateCloudClusterCall;
|
|
17092
|
+
dockerRegistry: CreateCloudDockerregistryCall;
|
|
17093
|
+
integration: CreateCloudIntegrationCall;
|
|
17094
|
+
};
|
|
15753
17095
|
domain: CreateDomainCall;
|
|
15754
17096
|
logSink: CreateLogsinkCall;
|
|
17097
|
+
notification: CreateNotificationCall;
|
|
15755
17098
|
customVcs: {
|
|
15756
17099
|
token: CreateCustomvcsTokenCall;
|
|
15757
17100
|
};
|
|
@@ -15773,10 +17116,13 @@ declare class ApiClient {
|
|
|
15773
17116
|
template: CreateTemplateCall;
|
|
15774
17117
|
};
|
|
15775
17118
|
update: {
|
|
15776
|
-
|
|
15777
|
-
|
|
17119
|
+
cloud: {
|
|
17120
|
+
cluster: UpdateCloudClusterCall;
|
|
17121
|
+
integration: UpdateCloudIntegrationCall;
|
|
17122
|
+
};
|
|
15778
17123
|
logSink: UpdateLogsinkCall;
|
|
15779
|
-
|
|
17124
|
+
notification: UpdateNotificationCall;
|
|
17125
|
+
registryCredentials: UpdateRegistrycredentialsCall;
|
|
15780
17126
|
addon: {
|
|
15781
17127
|
networkSettings: UpdateAddonNetworksettingsCall;
|
|
15782
17128
|
security: UpdateAddonSecurityCall;
|
|
@@ -15808,12 +17154,16 @@ declare class ApiClient {
|
|
|
15808
17154
|
template: UpdateTemplateCall;
|
|
15809
17155
|
};
|
|
15810
17156
|
delete: {
|
|
15811
|
-
|
|
15812
|
-
|
|
17157
|
+
cloud: {
|
|
17158
|
+
cluster: DeleteCloudClusterCall;
|
|
17159
|
+
dockerRegistry: DeleteCloudDockerregistryCall;
|
|
17160
|
+
integration: DeleteCloudIntegrationCall;
|
|
17161
|
+
};
|
|
15813
17162
|
domain: DeleteDomainCall;
|
|
15814
17163
|
subdomain: DeleteSubdomainCall;
|
|
15815
17164
|
logSink: DeleteLogsinkCall;
|
|
15816
|
-
|
|
17165
|
+
notification: DeleteNotificationCall;
|
|
17166
|
+
registryCredentials: DeleteRegistrycredentialsCall;
|
|
15817
17167
|
project: DeleteProjectCall;
|
|
15818
17168
|
addon: DeleteAddonCall & {
|
|
15819
17169
|
backupSchedule: DeleteAddonBackupscheduleCall;
|
|
@@ -15831,7 +17181,7 @@ declare class ApiClient {
|
|
|
15831
17181
|
domain: {
|
|
15832
17182
|
subdomain: AddDomainSubdomainCall;
|
|
15833
17183
|
};
|
|
15834
|
-
|
|
17184
|
+
registryCredentials: AddRegistrycredentialsCall;
|
|
15835
17185
|
};
|
|
15836
17186
|
assign: {
|
|
15837
17187
|
subdomain: {
|
|
@@ -15983,13 +17333,17 @@ declare class ApiClient {
|
|
|
15983
17333
|
invoice: {
|
|
15984
17334
|
details: GetInvoiceDetailsEndpoint;
|
|
15985
17335
|
};
|
|
15986
|
-
|
|
15987
|
-
|
|
17336
|
+
cloud: {
|
|
17337
|
+
cluster: GetCloudClusterEndpoint;
|
|
17338
|
+
dockerRegistry: GetCloudDockerregistryEndpoint;
|
|
17339
|
+
integration: GetCloudIntegrationEndpoint;
|
|
17340
|
+
};
|
|
15988
17341
|
dnsId: GetDnsidEndpoint;
|
|
15989
17342
|
domain: GetDomainEndpoint;
|
|
15990
17343
|
subdomain: GetSubdomainEndpoint;
|
|
15991
17344
|
logSink: GetLogsinkEndpoint;
|
|
15992
|
-
|
|
17345
|
+
notification: GetNotificationEndpoint;
|
|
17346
|
+
registryCredentials: GetRegistrycredentialsEndpoint;
|
|
15993
17347
|
project: GetProjectEndpoint;
|
|
15994
17348
|
job: GetJobEndpoint & {
|
|
15995
17349
|
branches: GetJobBranchesEndpoint;
|
|
@@ -16034,12 +17388,18 @@ declare class ApiClient {
|
|
|
16034
17388
|
};
|
|
16035
17389
|
list: {
|
|
16036
17390
|
invoices: ListInvoicesEndpoint;
|
|
16037
|
-
|
|
16038
|
-
|
|
16039
|
-
|
|
17391
|
+
cloud: {
|
|
17392
|
+
providers: ListCloudProvidersEndpoint;
|
|
17393
|
+
clusters: ListCloudClustersEndpoint;
|
|
17394
|
+
dockerRegistry: ListCloudDockerregistryEndpoint;
|
|
17395
|
+
integrations: ListCloudIntegrationsEndpoint;
|
|
17396
|
+
nodeTypes: ListCloudNodetypesEndpoint;
|
|
17397
|
+
regions: ListCloudRegionsEndpoint;
|
|
17398
|
+
};
|
|
16040
17399
|
domains: ListDomainsEndpoint;
|
|
16041
17400
|
logSinks: ListLogsinksEndpoint;
|
|
16042
|
-
|
|
17401
|
+
notifications: ListNotificationsEndpoint;
|
|
17402
|
+
registryCredentials: ListRegistrycredentialsEndpoint;
|
|
16043
17403
|
vcs: ListVcsEndpoint;
|
|
16044
17404
|
repos: ListReposEndpoint;
|
|
16045
17405
|
branches: ListBranchesEndpoint;
|
|
@@ -16059,10 +17419,14 @@ declare class ApiClient {
|
|
|
16059
17419
|
templateRuns: ListTemplaterunsEndpoint;
|
|
16060
17420
|
};
|
|
16061
17421
|
create: {
|
|
16062
|
-
|
|
16063
|
-
|
|
17422
|
+
cloud: {
|
|
17423
|
+
cluster: CreateCloudClusterEndpoint;
|
|
17424
|
+
dockerRegistry: CreateCloudDockerregistryEndpoint;
|
|
17425
|
+
integration: CreateCloudIntegrationEndpoint;
|
|
17426
|
+
};
|
|
16064
17427
|
domain: CreateDomainEndpoint;
|
|
16065
17428
|
logSink: CreateLogsinkEndpoint;
|
|
17429
|
+
notification: CreateNotificationEndpoint;
|
|
16066
17430
|
customVcs: {
|
|
16067
17431
|
token: CreateCustomvcsTokenEndpoint;
|
|
16068
17432
|
};
|
|
@@ -16084,10 +17448,13 @@ declare class ApiClient {
|
|
|
16084
17448
|
template: CreateTemplateEndpoint;
|
|
16085
17449
|
};
|
|
16086
17450
|
update: {
|
|
16087
|
-
|
|
16088
|
-
|
|
17451
|
+
cloud: {
|
|
17452
|
+
cluster: UpdateCloudClusterEndpoint;
|
|
17453
|
+
integration: UpdateCloudIntegrationEndpoint;
|
|
17454
|
+
};
|
|
16089
17455
|
logSink: UpdateLogsinkEndpoint;
|
|
16090
|
-
|
|
17456
|
+
notification: UpdateNotificationEndpoint;
|
|
17457
|
+
registryCredentials: UpdateRegistrycredentialsEndpoint;
|
|
16091
17458
|
addon: {
|
|
16092
17459
|
networkSettings: UpdateAddonNetworksettingsEndpoint;
|
|
16093
17460
|
security: UpdateAddonSecurityEndpoint;
|
|
@@ -16119,12 +17486,16 @@ declare class ApiClient {
|
|
|
16119
17486
|
template: UpdateTemplateEndpoint;
|
|
16120
17487
|
};
|
|
16121
17488
|
delete: {
|
|
16122
|
-
|
|
16123
|
-
|
|
17489
|
+
cloud: {
|
|
17490
|
+
cluster: DeleteCloudClusterEndpoint;
|
|
17491
|
+
dockerRegistry: DeleteCloudDockerregistryEndpoint;
|
|
17492
|
+
integration: DeleteCloudIntegrationEndpoint;
|
|
17493
|
+
};
|
|
16124
17494
|
domain: DeleteDomainEndpoint;
|
|
16125
17495
|
subdomain: DeleteSubdomainEndpoint;
|
|
16126
17496
|
logSink: DeleteLogsinkEndpoint;
|
|
16127
|
-
|
|
17497
|
+
notification: DeleteNotificationEndpoint;
|
|
17498
|
+
registryCredentials: DeleteRegistrycredentialsEndpoint;
|
|
16128
17499
|
project: DeleteProjectEndpoint;
|
|
16129
17500
|
addon: DeleteAddonEndpoint & {
|
|
16130
17501
|
backupSchedule: DeleteAddonBackupscheduleEndpoint;
|
|
@@ -16142,7 +17513,7 @@ declare class ApiClient {
|
|
|
16142
17513
|
domain: {
|
|
16143
17514
|
subdomain: AddDomainSubdomainEndpoint;
|
|
16144
17515
|
};
|
|
16145
|
-
|
|
17516
|
+
registryCredentials: AddRegistrycredentialsEndpoint;
|
|
16146
17517
|
};
|
|
16147
17518
|
assign: {
|
|
16148
17519
|
subdomain: {
|
|
@@ -16285,4 +17656,4 @@ type ApiClientOpts = {
|
|
|
16285
17656
|
customUserAgent?: string;
|
|
16286
17657
|
};
|
|
16287
17658
|
|
|
16288
|
-
export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortReleaseflowrunCall, AbortReleaseflowrunEndpoint, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunEndpoint, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistryCall, AddRegistryData, AddRegistryEndpoint, AddRegistryRequest, AddRegistryResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateClusterCall, CreateClusterData, CreateClusterEndpoint, CreateClusterRequest, CreateClusterResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenEndpoint, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateIntegrationCall, CreateIntegrationData, CreateIntegrationEndpoint, CreateIntegrationRequest, CreateIntegrationResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, CreateProjectCall, CreateProjectData, CreateProjectEndpoint, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretEndpoint, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildEndpoint, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedEndpoint, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentEndpoint, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTemplateCall, CreateTemplateData, CreateTemplateEndpoint, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleEndpoint, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteClusterCall, DeleteClusterEndpoint, DeleteClusterParameters, DeleteClusterRequest, DeleteClusterResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteIntegrationCall, DeleteIntegrationEndpoint, DeleteIntegrationParameters, DeleteIntegrationRequest, DeleteIntegrationResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistryCall, DeleteRegistryEndpoint, DeleteRegistryParameters, DeleteRegistryRequest, DeleteRegistryResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonPitrwindowCall, GetAddonPitrwindowEndpoint, GetAddonPitrwindowParameters, GetAddonPitrwindowRequest, GetAddonPitrwindowResult, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, 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, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, 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, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainRequest, GetSubdomainResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, 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, ListPreviewtemplatepreviewsCall, ListPreviewtemplatepreviewsEndpoint, ListPreviewtemplatepreviewsOptions, ListPreviewtemplatepreviewsParameters, ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsEndpoint, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, 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, PatchProjectCall, PatchProjectData, PatchProjectEndpoint, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutProjectCall, PutProjectData, PutProjectEndpoint, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, ResetAddonCall, ResetAddonEndpoint, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobEndpoint, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkEndpoint, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupEndpoint, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowEndpoint, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateEndpoint, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartAddonPitrCall, StartAddonPitrData, StartAddonPitrEndpoint, StartAddonPitrParameters, StartAddonPitrRequest, StartAddonPitrResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobEndpoint, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, 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, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, 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 };
|
|
17659
|
+
export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortReleaseflowrunCall, AbortReleaseflowrunEndpoint, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunEndpoint, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterEndpoint, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudDockerregistryCall, CreateCloudDockerregistryData, CreateCloudDockerregistryEndpoint, CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationEndpoint, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenEndpoint, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationEndpoint, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, CreateProjectCall, CreateProjectData, CreateProjectEndpoint, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretEndpoint, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildEndpoint, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedEndpoint, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentEndpoint, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTemplateCall, CreateTemplateData, CreateTemplateEndpoint, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleEndpoint, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteCloudClusterCall, DeleteCloudClusterEndpoint, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudDockerregistryCall, DeleteCloudDockerregistryEndpoint, DeleteCloudDockerregistryParameters, DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationEndpoint, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationEndpoint, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonPitrwindowCall, GetAddonPitrwindowEndpoint, GetAddonPitrwindowParameters, GetAddonPitrwindowRequest, GetAddonPitrwindowResult, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationEndpoint, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainRequest, GetSubdomainResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClustersCall, ListCloudClustersEndpoint, ListCloudClustersOptions, ListCloudClustersRequest, ListCloudClustersResult, ListCloudDockerregistryCall, ListCloudDockerregistryEndpoint, ListCloudDockerregistryOptions, ListCloudDockerregistryRequest, ListCloudDockerregistryResult, ListCloudIntegrationsCall, ListCloudIntegrationsEndpoint, ListCloudIntegrationsOptions, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesEndpoint, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersEndpoint, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsEndpoint, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsEndpoint, ListNotificationsOptions, ListNotificationsRequest, ListNotificationsResult, ListPipelinesCall, ListPipelinesEndpoint, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListPreviewtemplatepreviewsCall, ListPreviewtemplatepreviewsEndpoint, ListPreviewtemplatepreviewsOptions, ListPreviewtemplatepreviewsParameters, ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsEndpoint, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsEndpoint, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchProjectCall, PatchProjectData, PatchProjectEndpoint, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutProjectCall, PutProjectData, PutProjectEndpoint, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, ResetAddonCall, ResetAddonEndpoint, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobEndpoint, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkEndpoint, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupEndpoint, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowEndpoint, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateEndpoint, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartAddonPitrCall, StartAddonPitrData, StartAddonPitrEndpoint, StartAddonPitrParameters, StartAddonPitrRequest, StartAddonPitrResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobEndpoint, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonBackupLogsCall, TailAddonLogsCall, TailAddonRestoresLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateCloudClusterCall, UpdateCloudClusterData, UpdateCloudClusterEndpoint, UpdateCloudClusterParameters, UpdateCloudClusterRequest, UpdateCloudClusterResult, UpdateCloudIntegrationCall, UpdateCloudIntegrationData, UpdateCloudIntegrationEndpoint, UpdateCloudIntegrationParameters, UpdateCloudIntegrationRequest, UpdateCloudIntegrationResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationEndpoint, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
|