@northflank/js-client 0.7.10 → 0.7.12
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 +1455 -205
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +1455 -205
- 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
|
|
|
@@ -1243,7 +1371,7 @@ declare class GetInvoiceDetailsEndpoint extends GetApiEndpoint<GetInvoiceDetails
|
|
|
1243
1371
|
body: () => undefined;
|
|
1244
1372
|
}
|
|
1245
1373
|
|
|
1246
|
-
type
|
|
1374
|
+
type ListCloudProvidersResult = {
|
|
1247
1375
|
/** An array of supported cloud providers */
|
|
1248
1376
|
'providers': {
|
|
1249
1377
|
/** The ID of the provider. Example: "aws" */
|
|
@@ -1252,12 +1380,8 @@ type ListProvidersResult = {
|
|
|
1252
1380
|
'name': string;
|
|
1253
1381
|
/** The kubernetes engine used. Example: "Elastic Kubernetes Service (EKS)" */
|
|
1254
1382
|
'engine': string;
|
|
1255
|
-
/** An array of available regions */
|
|
1256
|
-
'regions': string[];
|
|
1257
1383
|
/** An array of available kubernetes versions */
|
|
1258
1384
|
'kubernetesVersions': string[];
|
|
1259
|
-
/** An array of supported node types */
|
|
1260
|
-
'nodeTypes': string[];
|
|
1261
1385
|
/** An array of supported node disk sizes */
|
|
1262
1386
|
'diskSizes': number[];
|
|
1263
1387
|
/** An object with feature flags to indicate (un)supported features */
|
|
@@ -1269,18 +1393,18 @@ type ListProvidersResult = {
|
|
|
1269
1393
|
};
|
|
1270
1394
|
}[];
|
|
1271
1395
|
};
|
|
1272
|
-
type
|
|
1273
|
-
type
|
|
1396
|
+
type ListCloudProvidersCall = (opts: ListCloudProvidersRequest) => Promise<ApiCallResponse<ListCloudProvidersResult>>;
|
|
1397
|
+
type ListCloudProvidersRequest = {};
|
|
1274
1398
|
/** Lists supported cloud providers */
|
|
1275
|
-
declare class
|
|
1399
|
+
declare class ListCloudProvidersEndpoint extends GetApiEndpoint<ListCloudProvidersRequest, ListCloudProvidersResult> {
|
|
1276
1400
|
description: string;
|
|
1277
1401
|
withAuth: boolean;
|
|
1278
1402
|
requiredPermissions: string;
|
|
1279
|
-
endpointUrl: (opts:
|
|
1403
|
+
endpointUrl: (opts: ListCloudProvidersRequest) => string;
|
|
1280
1404
|
body: () => undefined;
|
|
1281
1405
|
}
|
|
1282
1406
|
|
|
1283
|
-
type
|
|
1407
|
+
type ListCloudClustersResult = {
|
|
1284
1408
|
/** An array of clusters. */
|
|
1285
1409
|
'clusters': {
|
|
1286
1410
|
/** Identifier for the cluster. Example: "gcp-cluster-1" */
|
|
@@ -1332,11 +1456,11 @@ type ListClustersResult = {
|
|
|
1332
1456
|
'deletionRequested': boolean;
|
|
1333
1457
|
}[];
|
|
1334
1458
|
};
|
|
1335
|
-
type
|
|
1336
|
-
type
|
|
1337
|
-
options?:
|
|
1459
|
+
type ListCloudClustersCall = (opts: ListCloudClustersRequest) => Promise<ApiCallResponse<ListCloudClustersResult>>;
|
|
1460
|
+
type ListCloudClustersRequest = {
|
|
1461
|
+
options?: ListCloudClustersOptions;
|
|
1338
1462
|
};
|
|
1339
|
-
type
|
|
1463
|
+
type ListCloudClustersOptions = {
|
|
1340
1464
|
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
1341
1465
|
'per_page'?: number;
|
|
1342
1466
|
/** The page number to access. */
|
|
@@ -1345,15 +1469,15 @@ type ListClustersOptions = {
|
|
|
1345
1469
|
'cursor'?: string;
|
|
1346
1470
|
};
|
|
1347
1471
|
/** Lists clusters for the authenticated user or team. */
|
|
1348
|
-
declare class
|
|
1472
|
+
declare class ListCloudClustersEndpoint extends GetApiEndpoint<ListCloudClustersRequest, ListCloudClustersResult> {
|
|
1349
1473
|
description: string;
|
|
1350
1474
|
withAuth: boolean;
|
|
1351
1475
|
requiredPermissions: string;
|
|
1352
|
-
endpointUrl: (opts:
|
|
1476
|
+
endpointUrl: (opts: ListCloudClustersRequest) => string;
|
|
1353
1477
|
body: () => undefined;
|
|
1354
1478
|
}
|
|
1355
1479
|
|
|
1356
|
-
type
|
|
1480
|
+
type CreateCloudClusterResult = {
|
|
1357
1481
|
/** Identifier for the cluster. Example: "gcp-cluster-1" */
|
|
1358
1482
|
'id': string;
|
|
1359
1483
|
/** The name of the cluster. Example: "GCP Cluster 1" */
|
|
@@ -1402,11 +1526,11 @@ type CreateClusterResult = {
|
|
|
1402
1526
|
/** Indicates if provider resource deletion has been requested by the user. */
|
|
1403
1527
|
'deletionRequested': boolean;
|
|
1404
1528
|
};
|
|
1405
|
-
type
|
|
1406
|
-
type
|
|
1407
|
-
data:
|
|
1529
|
+
type CreateCloudClusterCall = (opts: CreateCloudClusterRequest) => Promise<ApiCallResponse<CreateCloudClusterResult>>;
|
|
1530
|
+
type CreateCloudClusterRequest = {
|
|
1531
|
+
data: CreateCloudClusterData;
|
|
1408
1532
|
};
|
|
1409
|
-
type
|
|
1533
|
+
type CreateCloudClusterData = {
|
|
1410
1534
|
/** The name of the cluster. Example: "GCP Cluster 1" */
|
|
1411
1535
|
'name': string;
|
|
1412
1536
|
/** The description of the cluster. Example: "This is a new cluster." */
|
|
@@ -1460,7 +1584,7 @@ type CreateClusterData = {
|
|
|
1460
1584
|
'mode'?: 'paas' | 'internal' | 'build-cluster';
|
|
1461
1585
|
/** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
|
|
1462
1586
|
'plan'?: string;
|
|
1463
|
-
/** Cluster to use for scheduling builds
|
|
1587
|
+
/** Cluster to use for scheduling builds */
|
|
1464
1588
|
'clusterId'?: string;
|
|
1465
1589
|
};
|
|
1466
1590
|
'registry'?: {
|
|
@@ -1470,12 +1594,13 @@ type CreateClusterData = {
|
|
|
1470
1594
|
};
|
|
1471
1595
|
'logging'?: {
|
|
1472
1596
|
'mode'?: 'paas' | 'loki';
|
|
1597
|
+
/** Required data for loki setting. */
|
|
1473
1598
|
'loki'?: {
|
|
1474
1599
|
's3BucketName': string;
|
|
1475
1600
|
's3AccessKey': string;
|
|
1476
1601
|
's3SecretKey': string;
|
|
1477
1602
|
's3Region': string;
|
|
1478
|
-
}
|
|
1603
|
+
};
|
|
1479
1604
|
};
|
|
1480
1605
|
};
|
|
1481
1606
|
/** GCP specific data. Required when `provider` is `gcp`. */
|
|
@@ -1485,15 +1610,15 @@ type CreateClusterData = {
|
|
|
1485
1610
|
};
|
|
1486
1611
|
};
|
|
1487
1612
|
/** Creates a new cluster. */
|
|
1488
|
-
declare class
|
|
1613
|
+
declare class CreateCloudClusterEndpoint extends PostApiEndpoint<CreateCloudClusterRequest, CreateCloudClusterResult> {
|
|
1489
1614
|
description: string;
|
|
1490
1615
|
withAuth: boolean;
|
|
1491
1616
|
requiredPermissions: string;
|
|
1492
|
-
endpointUrl: (opts:
|
|
1493
|
-
body: (payload:
|
|
1617
|
+
endpointUrl: (opts: CreateCloudClusterRequest) => string;
|
|
1618
|
+
body: (payload: CreateCloudClusterRequest) => string;
|
|
1494
1619
|
}
|
|
1495
1620
|
|
|
1496
|
-
type
|
|
1621
|
+
type GetCloudClusterResult = {
|
|
1497
1622
|
/** Identifier for the cluster. Example: "gcp-cluster-1" */
|
|
1498
1623
|
'id': string;
|
|
1499
1624
|
/** The name of the cluster. Example: "GCP Cluster 1" */
|
|
@@ -1542,23 +1667,23 @@ type GetClusterResult = {
|
|
|
1542
1667
|
/** Indicates if provider resource deletion has been requested by the user. */
|
|
1543
1668
|
'deletionRequested': boolean;
|
|
1544
1669
|
};
|
|
1545
|
-
type
|
|
1546
|
-
type
|
|
1547
|
-
parameters:
|
|
1670
|
+
type GetCloudClusterCall = (opts: GetCloudClusterRequest) => Promise<ApiCallResponse<GetCloudClusterResult>>;
|
|
1671
|
+
type GetCloudClusterRequest = {
|
|
1672
|
+
parameters: GetCloudClusterParameters;
|
|
1548
1673
|
};
|
|
1549
|
-
type
|
|
1674
|
+
type GetCloudClusterParameters = {
|
|
1550
1675
|
/** ID of the cluster */ 'clusterId': string;
|
|
1551
1676
|
};
|
|
1552
1677
|
/** Get information about the given cluster */
|
|
1553
|
-
declare class
|
|
1678
|
+
declare class GetCloudClusterEndpoint extends GetApiEndpoint<GetCloudClusterRequest, GetCloudClusterResult> {
|
|
1554
1679
|
description: string;
|
|
1555
1680
|
withAuth: boolean;
|
|
1556
1681
|
requiredPermissions: string;
|
|
1557
|
-
endpointUrl: (opts:
|
|
1682
|
+
endpointUrl: (opts: GetCloudClusterRequest) => string;
|
|
1558
1683
|
body: () => undefined;
|
|
1559
1684
|
}
|
|
1560
1685
|
|
|
1561
|
-
type
|
|
1686
|
+
type UpdateCloudClusterResult = {
|
|
1562
1687
|
/** Identifier for the cluster. Example: "gcp-cluster-1" */
|
|
1563
1688
|
'id': string;
|
|
1564
1689
|
/** The name of the cluster. Example: "GCP Cluster 1" */
|
|
@@ -1607,15 +1732,15 @@ type UpdateClusterResult = {
|
|
|
1607
1732
|
/** Indicates if provider resource deletion has been requested by the user. */
|
|
1608
1733
|
'deletionRequested': boolean;
|
|
1609
1734
|
};
|
|
1610
|
-
type
|
|
1611
|
-
type
|
|
1612
|
-
parameters:
|
|
1613
|
-
data:
|
|
1735
|
+
type UpdateCloudClusterCall = (opts: UpdateCloudClusterRequest) => Promise<ApiCallResponse<UpdateCloudClusterResult>>;
|
|
1736
|
+
type UpdateCloudClusterRequest = {
|
|
1737
|
+
parameters: UpdateCloudClusterParameters;
|
|
1738
|
+
data: UpdateCloudClusterData;
|
|
1614
1739
|
};
|
|
1615
|
-
type
|
|
1740
|
+
type UpdateCloudClusterParameters = {
|
|
1616
1741
|
/** ID of the cluster */ 'clusterId': string;
|
|
1617
1742
|
};
|
|
1618
|
-
type
|
|
1743
|
+
type UpdateCloudClusterData = {
|
|
1619
1744
|
/** The description of the cluster. Example: "This is an updated description." */
|
|
1620
1745
|
'description'?: string;
|
|
1621
1746
|
'nodePools'?: {
|
|
@@ -1649,7 +1774,7 @@ type UpdateClusterData = {
|
|
|
1649
1774
|
'mode'?: 'paas' | 'internal' | 'build-cluster';
|
|
1650
1775
|
/** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
|
|
1651
1776
|
'plan'?: string;
|
|
1652
|
-
/** Cluster to use for scheduling builds
|
|
1777
|
+
/** Cluster to use for scheduling builds */
|
|
1653
1778
|
'clusterId'?: string;
|
|
1654
1779
|
};
|
|
1655
1780
|
'registry'?: {
|
|
@@ -1659,42 +1784,168 @@ type UpdateClusterData = {
|
|
|
1659
1784
|
};
|
|
1660
1785
|
'logging'?: {
|
|
1661
1786
|
'mode'?: 'paas' | 'loki';
|
|
1787
|
+
/** Required data for loki setting. */
|
|
1662
1788
|
'loki'?: {
|
|
1663
1789
|
's3BucketName': string;
|
|
1664
1790
|
's3AccessKey': string;
|
|
1665
1791
|
's3SecretKey': string;
|
|
1666
1792
|
's3Region': string;
|
|
1667
|
-
}
|
|
1793
|
+
};
|
|
1668
1794
|
};
|
|
1669
1795
|
};
|
|
1670
1796
|
};
|
|
1671
1797
|
/** Update an existing cluster. */
|
|
1672
|
-
declare class
|
|
1798
|
+
declare class UpdateCloudClusterEndpoint extends PostApiEndpoint<UpdateCloudClusterRequest, UpdateCloudClusterResult> {
|
|
1673
1799
|
description: string;
|
|
1674
1800
|
withAuth: boolean;
|
|
1675
1801
|
requiredPermissions: string;
|
|
1676
|
-
endpointUrl: (opts:
|
|
1677
|
-
body: (payload:
|
|
1802
|
+
endpointUrl: (opts: UpdateCloudClusterRequest) => string;
|
|
1803
|
+
body: (payload: UpdateCloudClusterRequest) => string;
|
|
1678
1804
|
}
|
|
1679
1805
|
|
|
1680
|
-
type
|
|
1681
|
-
type
|
|
1682
|
-
type
|
|
1683
|
-
parameters:
|
|
1806
|
+
type DeleteCloudClusterResult = any | any;
|
|
1807
|
+
type DeleteCloudClusterCall = (opts: DeleteCloudClusterRequest) => Promise<ApiCallResponse<DeleteCloudClusterResult>>;
|
|
1808
|
+
type DeleteCloudClusterRequest = {
|
|
1809
|
+
parameters: DeleteCloudClusterParameters;
|
|
1684
1810
|
};
|
|
1685
|
-
type
|
|
1811
|
+
type DeleteCloudClusterParameters = {
|
|
1686
1812
|
/** ID of the cluster */ 'clusterId': string;
|
|
1687
1813
|
};
|
|
1688
1814
|
/** Delete the given cluster. Fails if the cluster has associated projects. */
|
|
1689
|
-
declare class
|
|
1815
|
+
declare class DeleteCloudClusterEndpoint extends DeleteApiEndpoint<DeleteCloudClusterRequest, DeleteCloudClusterResult> {
|
|
1690
1816
|
description: string;
|
|
1691
1817
|
withAuth: boolean;
|
|
1692
1818
|
requiredPermissions: string;
|
|
1693
|
-
endpointUrl: (opts:
|
|
1819
|
+
endpointUrl: (opts: DeleteCloudClusterRequest) => string;
|
|
1694
1820
|
body: () => undefined;
|
|
1695
1821
|
}
|
|
1696
1822
|
|
|
1697
|
-
type
|
|
1823
|
+
type ListCloudDockerregistryResult = {
|
|
1824
|
+
/** An array of integrations. */
|
|
1825
|
+
'registries': {
|
|
1826
|
+
/** Identifier for the docker registry. Example: "gcp-integration" */
|
|
1827
|
+
'id': string;
|
|
1828
|
+
/** The name of the docker registry. Example: "GCP integration" */
|
|
1829
|
+
'name': string;
|
|
1830
|
+
/** A short description of the docker registry. Example: "The docker registry description" */
|
|
1831
|
+
'description'?: string;
|
|
1832
|
+
/** The cloud provider to which this docker registry belongs to. Example: "aws" */
|
|
1833
|
+
'provider'?: string;
|
|
1834
|
+
/** The region in which this registry was created. Example: "eu-west-1" */
|
|
1835
|
+
'region'?: string;
|
|
1836
|
+
/** The time the docker registry was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
1837
|
+
'createdAt': string;
|
|
1838
|
+
}[];
|
|
1839
|
+
};
|
|
1840
|
+
type ListCloudDockerregistryCall = (opts: ListCloudDockerregistryRequest) => Promise<ApiCallResponse<ListCloudDockerregistryResult>>;
|
|
1841
|
+
type ListCloudDockerregistryRequest = {
|
|
1842
|
+
options?: ListCloudDockerregistryOptions;
|
|
1843
|
+
};
|
|
1844
|
+
type ListCloudDockerregistryOptions = {
|
|
1845
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
1846
|
+
'per_page'?: number;
|
|
1847
|
+
/** The page number to access. */
|
|
1848
|
+
'page'?: number;
|
|
1849
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
1850
|
+
'cursor'?: string;
|
|
1851
|
+
};
|
|
1852
|
+
/** Lists docker registries for the authenticated user or team. */
|
|
1853
|
+
declare class ListCloudDockerregistryEndpoint extends GetApiEndpoint<ListCloudDockerregistryRequest, ListCloudDockerregistryResult> {
|
|
1854
|
+
description: string;
|
|
1855
|
+
withAuth: boolean;
|
|
1856
|
+
requiredPermissions: string;
|
|
1857
|
+
endpointUrl: (opts: ListCloudDockerregistryRequest) => string;
|
|
1858
|
+
body: () => undefined;
|
|
1859
|
+
}
|
|
1860
|
+
|
|
1861
|
+
type CreateCloudDockerregistryResult = {
|
|
1862
|
+
/** Identifier for the docker registry. Example: "gcp-integration" */
|
|
1863
|
+
'id': string;
|
|
1864
|
+
/** The name of the docker registry. Example: "GCP integration" */
|
|
1865
|
+
'name': string;
|
|
1866
|
+
/** A short description of the docker registry. Example: "The registry description" */
|
|
1867
|
+
'description'?: string;
|
|
1868
|
+
/** The cloud provider to which this docker registry belongs to. Example: "aws" */
|
|
1869
|
+
'provider'?: string;
|
|
1870
|
+
/** The region in which this registry was created. Example: "eu-west-1" */
|
|
1871
|
+
'region'?: string;
|
|
1872
|
+
/** The time the registry was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
1873
|
+
'createdAt': string;
|
|
1874
|
+
};
|
|
1875
|
+
type CreateCloudDockerregistryCall = (opts: CreateCloudDockerregistryRequest) => Promise<ApiCallResponse<CreateCloudDockerregistryResult>>;
|
|
1876
|
+
type CreateCloudDockerregistryRequest = {
|
|
1877
|
+
data: CreateCloudDockerregistryData;
|
|
1878
|
+
};
|
|
1879
|
+
type CreateCloudDockerregistryData = {
|
|
1880
|
+
/** The name of the cloud provider integration. Example: "New Integration" */
|
|
1881
|
+
'name': string;
|
|
1882
|
+
/** The description of the integration. Example: "This is a new cloud provider integration." */
|
|
1883
|
+
'description'?: string;
|
|
1884
|
+
/** Cloud provider to be used for the selected resource */
|
|
1885
|
+
'provider': 'gcp' | 'aws' | 'azure' | 'do';
|
|
1886
|
+
'region': string;
|
|
1887
|
+
/** Existing integration to use for this registry. Example: "gcp-integration" */
|
|
1888
|
+
'integrationId'?: string;
|
|
1889
|
+
/** The type of provider integration. Example: "cluster" */
|
|
1890
|
+
'type'?: 'cluster' | 'domain' | 'registry' | 'cdn';
|
|
1891
|
+
};
|
|
1892
|
+
/** Creates a new docker registry. */
|
|
1893
|
+
declare class CreateCloudDockerregistryEndpoint extends PostApiEndpoint<CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult> {
|
|
1894
|
+
description: string;
|
|
1895
|
+
withAuth: boolean;
|
|
1896
|
+
requiredPermissions: string;
|
|
1897
|
+
endpointUrl: (opts: CreateCloudDockerregistryRequest) => string;
|
|
1898
|
+
body: (payload: CreateCloudDockerregistryRequest) => string;
|
|
1899
|
+
}
|
|
1900
|
+
|
|
1901
|
+
type GetCloudDockerregistryResult = {
|
|
1902
|
+
/** Identifier for the docker registry. Example: "gcp-integration" */
|
|
1903
|
+
'id': string;
|
|
1904
|
+
/** The name of the docker registry. Example: "GCP integration" */
|
|
1905
|
+
'name': string;
|
|
1906
|
+
/** A short description of the docker registry. Example: "The registry description" */
|
|
1907
|
+
'description'?: string;
|
|
1908
|
+
/** The cloud provider to which this docker registry belongs to. Example: "aws" */
|
|
1909
|
+
'provider'?: string;
|
|
1910
|
+
/** The region in which this registry was created. Example: "eu-west-1" */
|
|
1911
|
+
'region'?: string;
|
|
1912
|
+
/** The time the registry was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
1913
|
+
'createdAt': string;
|
|
1914
|
+
};
|
|
1915
|
+
type GetCloudDockerregistryCall = (opts: GetCloudDockerregistryRequest) => Promise<ApiCallResponse<GetCloudDockerregistryResult>>;
|
|
1916
|
+
type GetCloudDockerregistryRequest = {
|
|
1917
|
+
parameters: GetCloudDockerregistryParameters;
|
|
1918
|
+
};
|
|
1919
|
+
type GetCloudDockerregistryParameters = {
|
|
1920
|
+
/** ID of the docker registry */ 'registryId': string;
|
|
1921
|
+
};
|
|
1922
|
+
/** Get information about the given docker registry */
|
|
1923
|
+
declare class GetCloudDockerregistryEndpoint extends GetApiEndpoint<GetCloudDockerregistryRequest, GetCloudDockerregistryResult> {
|
|
1924
|
+
description: string;
|
|
1925
|
+
withAuth: boolean;
|
|
1926
|
+
requiredPermissions: string;
|
|
1927
|
+
endpointUrl: (opts: GetCloudDockerregistryRequest) => string;
|
|
1928
|
+
body: () => undefined;
|
|
1929
|
+
}
|
|
1930
|
+
|
|
1931
|
+
type DeleteCloudDockerregistryResult = any | any;
|
|
1932
|
+
type DeleteCloudDockerregistryCall = (opts: DeleteCloudDockerregistryRequest) => Promise<ApiCallResponse<DeleteCloudDockerregistryResult>>;
|
|
1933
|
+
type DeleteCloudDockerregistryRequest = {
|
|
1934
|
+
parameters: DeleteCloudDockerregistryParameters;
|
|
1935
|
+
};
|
|
1936
|
+
type DeleteCloudDockerregistryParameters = {
|
|
1937
|
+
/** ID of the docker registry */ 'registryId': string;
|
|
1938
|
+
};
|
|
1939
|
+
/** Delete the given docker registry. Fails if the docker registry is associated with existing clusters. */
|
|
1940
|
+
declare class DeleteCloudDockerregistryEndpoint extends DeleteApiEndpoint<DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult> {
|
|
1941
|
+
description: string;
|
|
1942
|
+
withAuth: boolean;
|
|
1943
|
+
requiredPermissions: string;
|
|
1944
|
+
endpointUrl: (opts: DeleteCloudDockerregistryRequest) => string;
|
|
1945
|
+
body: () => undefined;
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
type ListCloudIntegrationsResult = {
|
|
1698
1949
|
/** An array of integrations. */
|
|
1699
1950
|
'integrations': {
|
|
1700
1951
|
/** Identifier for the integration. Example: "gcp-integration" */
|
|
@@ -1709,11 +1960,11 @@ type ListIntegrationsResult = {
|
|
|
1709
1960
|
'createdAt': string;
|
|
1710
1961
|
}[];
|
|
1711
1962
|
};
|
|
1712
|
-
type
|
|
1713
|
-
type
|
|
1714
|
-
options?:
|
|
1963
|
+
type ListCloudIntegrationsCall = (opts: ListCloudIntegrationsRequest) => Promise<ApiCallResponse<ListCloudIntegrationsResult>>;
|
|
1964
|
+
type ListCloudIntegrationsRequest = {
|
|
1965
|
+
options?: ListCloudIntegrationsOptions;
|
|
1715
1966
|
};
|
|
1716
|
-
type
|
|
1967
|
+
type ListCloudIntegrationsOptions = {
|
|
1717
1968
|
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
1718
1969
|
'per_page'?: number;
|
|
1719
1970
|
/** The page number to access. */
|
|
@@ -1722,15 +1973,15 @@ type ListIntegrationsOptions = {
|
|
|
1722
1973
|
'cursor'?: string;
|
|
1723
1974
|
};
|
|
1724
1975
|
/** Lists integrations for the authenticated user or team. */
|
|
1725
|
-
declare class
|
|
1976
|
+
declare class ListCloudIntegrationsEndpoint extends GetApiEndpoint<ListCloudIntegrationsRequest, ListCloudIntegrationsResult> {
|
|
1726
1977
|
description: string;
|
|
1727
1978
|
withAuth: boolean;
|
|
1728
1979
|
requiredPermissions: string;
|
|
1729
|
-
endpointUrl: (opts:
|
|
1980
|
+
endpointUrl: (opts: ListCloudIntegrationsRequest) => string;
|
|
1730
1981
|
body: () => undefined;
|
|
1731
1982
|
}
|
|
1732
1983
|
|
|
1733
|
-
type
|
|
1984
|
+
type CreateCloudIntegrationResult = {
|
|
1734
1985
|
/** Identifier for the integration. Example: "gcp-integration" */
|
|
1735
1986
|
'id': string;
|
|
1736
1987
|
/** The name of the integration. Example: "GCP integration" */
|
|
@@ -1751,17 +2002,19 @@ type CreateIntegrationResult = {
|
|
|
1751
2002
|
/** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
1752
2003
|
'createdAt': string;
|
|
1753
2004
|
};
|
|
1754
|
-
type
|
|
1755
|
-
type
|
|
1756
|
-
data:
|
|
2005
|
+
type CreateCloudIntegrationCall = (opts: CreateCloudIntegrationRequest) => Promise<ApiCallResponse<CreateCloudIntegrationResult>>;
|
|
2006
|
+
type CreateCloudIntegrationRequest = {
|
|
2007
|
+
data: CreateCloudIntegrationData;
|
|
1757
2008
|
};
|
|
1758
|
-
type
|
|
2009
|
+
type CreateCloudIntegrationData = {
|
|
1759
2010
|
/** The name of the cloud provider integration. Example: "New Integration" */
|
|
1760
2011
|
'name': string;
|
|
1761
2012
|
/** The description of the integration. Example: "This is a new cloud provider integration." */
|
|
1762
2013
|
'description'?: string;
|
|
1763
2014
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
1764
2015
|
'provider': 'gcp' | 'aws' | 'azure' | 'do';
|
|
2016
|
+
/** The type of provider integration. Example: "cluster" */
|
|
2017
|
+
'type'?: 'cluster' | 'domain' | 'registry' | 'cdn';
|
|
1765
2018
|
/** Cloud provider credential input, required fields dependent on which provider is chosen. */
|
|
1766
2019
|
'credentials': {
|
|
1767
2020
|
/** Contents of a GCP key file. */
|
|
@@ -1780,15 +2033,15 @@ type CreateIntegrationData = {
|
|
|
1780
2033
|
};
|
|
1781
2034
|
};
|
|
1782
2035
|
/** Creates a new integration. */
|
|
1783
|
-
declare class
|
|
2036
|
+
declare class CreateCloudIntegrationEndpoint extends PostApiEndpoint<CreateCloudIntegrationRequest, CreateCloudIntegrationResult> {
|
|
1784
2037
|
description: string;
|
|
1785
2038
|
withAuth: boolean;
|
|
1786
2039
|
requiredPermissions: string;
|
|
1787
|
-
endpointUrl: (opts:
|
|
1788
|
-
body: (payload:
|
|
2040
|
+
endpointUrl: (opts: CreateCloudIntegrationRequest) => string;
|
|
2041
|
+
body: (payload: CreateCloudIntegrationRequest) => string;
|
|
1789
2042
|
}
|
|
1790
2043
|
|
|
1791
|
-
type
|
|
2044
|
+
type GetCloudIntegrationResult = {
|
|
1792
2045
|
/** Identifier for the integration. Example: "gcp-integration" */
|
|
1793
2046
|
'id': string;
|
|
1794
2047
|
/** The name of the integration. Example: "GCP integration" */
|
|
@@ -1809,23 +2062,23 @@ type GetIntegrationResult = {
|
|
|
1809
2062
|
/** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
1810
2063
|
'createdAt': string;
|
|
1811
2064
|
};
|
|
1812
|
-
type
|
|
1813
|
-
type
|
|
1814
|
-
parameters:
|
|
2065
|
+
type GetCloudIntegrationCall = (opts: GetCloudIntegrationRequest) => Promise<ApiCallResponse<GetCloudIntegrationResult>>;
|
|
2066
|
+
type GetCloudIntegrationRequest = {
|
|
2067
|
+
parameters: GetCloudIntegrationParameters;
|
|
1815
2068
|
};
|
|
1816
|
-
type
|
|
2069
|
+
type GetCloudIntegrationParameters = {
|
|
1817
2070
|
/** ID of the provider integration */ 'integrationId': string;
|
|
1818
2071
|
};
|
|
1819
2072
|
/** Get information about the given integration */
|
|
1820
|
-
declare class
|
|
2073
|
+
declare class GetCloudIntegrationEndpoint extends GetApiEndpoint<GetCloudIntegrationRequest, GetCloudIntegrationResult> {
|
|
1821
2074
|
description: string;
|
|
1822
2075
|
withAuth: boolean;
|
|
1823
2076
|
requiredPermissions: string;
|
|
1824
|
-
endpointUrl: (opts:
|
|
2077
|
+
endpointUrl: (opts: GetCloudIntegrationRequest) => string;
|
|
1825
2078
|
body: () => undefined;
|
|
1826
2079
|
}
|
|
1827
2080
|
|
|
1828
|
-
type
|
|
2081
|
+
type UpdateCloudIntegrationResult = {
|
|
1829
2082
|
/** Identifier for the integration. Example: "gcp-integration" */
|
|
1830
2083
|
'id': string;
|
|
1831
2084
|
/** The name of the integration. Example: "GCP integration" */
|
|
@@ -1846,15 +2099,15 @@ type UpdateIntegrationResult = {
|
|
|
1846
2099
|
/** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
1847
2100
|
'createdAt': string;
|
|
1848
2101
|
};
|
|
1849
|
-
type
|
|
1850
|
-
type
|
|
1851
|
-
parameters:
|
|
1852
|
-
data:
|
|
2102
|
+
type UpdateCloudIntegrationCall = (opts: UpdateCloudIntegrationRequest) => Promise<ApiCallResponse<UpdateCloudIntegrationResult>>;
|
|
2103
|
+
type UpdateCloudIntegrationRequest = {
|
|
2104
|
+
parameters: UpdateCloudIntegrationParameters;
|
|
2105
|
+
data: UpdateCloudIntegrationData;
|
|
1853
2106
|
};
|
|
1854
|
-
type
|
|
2107
|
+
type UpdateCloudIntegrationParameters = {
|
|
1855
2108
|
/** ID of the provider integration */ 'integrationId': string;
|
|
1856
2109
|
};
|
|
1857
|
-
type
|
|
2110
|
+
type UpdateCloudIntegrationData = {
|
|
1858
2111
|
/** The description of the integration. Example: "This is a new description." */
|
|
1859
2112
|
'description'?: string;
|
|
1860
2113
|
/** Cloud provider credential input, required fields dependent on which provider is chosen. */
|
|
@@ -1870,28 +2123,112 @@ type UpdateIntegrationData = {
|
|
|
1870
2123
|
};
|
|
1871
2124
|
};
|
|
1872
2125
|
/** Update information about the given integration */
|
|
1873
|
-
declare class
|
|
2126
|
+
declare class UpdateCloudIntegrationEndpoint extends PostApiEndpoint<UpdateCloudIntegrationRequest, UpdateCloudIntegrationResult> {
|
|
1874
2127
|
description: string;
|
|
1875
2128
|
withAuth: boolean;
|
|
1876
2129
|
requiredPermissions: string;
|
|
1877
|
-
endpointUrl: (opts:
|
|
1878
|
-
body: (payload:
|
|
2130
|
+
endpointUrl: (opts: UpdateCloudIntegrationRequest) => string;
|
|
2131
|
+
body: (payload: UpdateCloudIntegrationRequest) => string;
|
|
1879
2132
|
}
|
|
1880
2133
|
|
|
1881
|
-
type
|
|
1882
|
-
type
|
|
1883
|
-
type
|
|
1884
|
-
parameters:
|
|
2134
|
+
type DeleteCloudIntegrationResult = any | any;
|
|
2135
|
+
type DeleteCloudIntegrationCall = (opts: DeleteCloudIntegrationRequest) => Promise<ApiCallResponse<DeleteCloudIntegrationResult>>;
|
|
2136
|
+
type DeleteCloudIntegrationRequest = {
|
|
2137
|
+
parameters: DeleteCloudIntegrationParameters;
|
|
1885
2138
|
};
|
|
1886
|
-
type
|
|
2139
|
+
type DeleteCloudIntegrationParameters = {
|
|
1887
2140
|
/** ID of the provider integration */ 'integrationId': string;
|
|
1888
2141
|
};
|
|
1889
2142
|
/** Delete the given integration. Fails if the integration is associated with existing clusters. */
|
|
1890
|
-
declare class
|
|
2143
|
+
declare class DeleteCloudIntegrationEndpoint extends DeleteApiEndpoint<DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult> {
|
|
2144
|
+
description: string;
|
|
2145
|
+
withAuth: boolean;
|
|
2146
|
+
requiredPermissions: string;
|
|
2147
|
+
endpointUrl: (opts: DeleteCloudIntegrationRequest) => string;
|
|
2148
|
+
body: () => undefined;
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2151
|
+
type ListCloudNodetypesResult = {
|
|
2152
|
+
/** An array of supported cloud provider node types */
|
|
2153
|
+
'providers': {
|
|
2154
|
+
/** The ID of the node type Example: "n2-standard-8" */
|
|
2155
|
+
'id': string;
|
|
2156
|
+
/** The name of the node type Example: "n2-standard-8" */
|
|
2157
|
+
'name': string;
|
|
2158
|
+
/** An listing the resources of this node type */
|
|
2159
|
+
'resources': {
|
|
2160
|
+
/** Number of vCPU of this node type Example: 8 */
|
|
2161
|
+
'vcpu'?: number;
|
|
2162
|
+
/** Amount of memory capacity in GB of this node type Example: 32 */
|
|
2163
|
+
'memory'?: number;
|
|
2164
|
+
};
|
|
2165
|
+
/** Processor family of the node type Example: "intel" */
|
|
2166
|
+
'processorFamily': string;
|
|
2167
|
+
/** Workload this node type is optimized for Example: "general-purpose" */
|
|
2168
|
+
'workloadType': string;
|
|
2169
|
+
}[];
|
|
2170
|
+
};
|
|
2171
|
+
type ListCloudNodetypesCall = (opts: ListCloudNodetypesRequest) => Promise<ApiCallResponse<ListCloudNodetypesResult>>;
|
|
2172
|
+
type ListCloudNodetypesRequest = {
|
|
2173
|
+
options?: ListCloudNodetypesOptions;
|
|
2174
|
+
};
|
|
2175
|
+
type ListCloudNodetypesOptions = {
|
|
2176
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
2177
|
+
'per_page'?: number;
|
|
2178
|
+
/** The page number to access. */
|
|
2179
|
+
'page'?: number;
|
|
2180
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
2181
|
+
'cursor'?: string;
|
|
2182
|
+
/** If provided, only returns items belonging to this cloud provider. */
|
|
2183
|
+
'provider'?: string;
|
|
2184
|
+
/** If provided, only returns items available in this region. */
|
|
2185
|
+
'region'?: string;
|
|
2186
|
+
};
|
|
2187
|
+
/** Lists supported cloud provider node types */
|
|
2188
|
+
declare class ListCloudNodetypesEndpoint extends GetApiEndpoint<ListCloudNodetypesRequest, ListCloudNodetypesResult> {
|
|
2189
|
+
description: string;
|
|
2190
|
+
withAuth: boolean;
|
|
2191
|
+
requiredPermissions: string;
|
|
2192
|
+
endpointUrl: (opts: ListCloudNodetypesRequest) => string;
|
|
2193
|
+
body: () => undefined;
|
|
2194
|
+
}
|
|
2195
|
+
|
|
2196
|
+
type ListCloudRegionsResult = {
|
|
2197
|
+
/** An array of supported cloud provider regions */
|
|
2198
|
+
'providers': {
|
|
2199
|
+
/** The ID of the region Example: "europe-west1" */
|
|
2200
|
+
'id': string;
|
|
2201
|
+
/** The name of the region Example: "europe-west1" */
|
|
2202
|
+
'name': string;
|
|
2203
|
+
/** The availability zones belonging to this region */
|
|
2204
|
+
'availabilityZones': {
|
|
2205
|
+
/** The id of the availability zone Example: "europe-west1-b" */
|
|
2206
|
+
'id': string;
|
|
2207
|
+
/** The name of the availability zone Example: "europe-west1-b" */
|
|
2208
|
+
'name': string;
|
|
2209
|
+
}[];
|
|
2210
|
+
}[];
|
|
2211
|
+
};
|
|
2212
|
+
type ListCloudRegionsCall = (opts: ListCloudRegionsRequest) => Promise<ApiCallResponse<ListCloudRegionsResult>>;
|
|
2213
|
+
type ListCloudRegionsRequest = {
|
|
2214
|
+
options?: ListCloudRegionsOptions;
|
|
2215
|
+
};
|
|
2216
|
+
type ListCloudRegionsOptions = {
|
|
2217
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
2218
|
+
'per_page'?: number;
|
|
2219
|
+
/** The page number to access. */
|
|
2220
|
+
'page'?: number;
|
|
2221
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
2222
|
+
'cursor'?: string;
|
|
2223
|
+
/** If provided, only returns items belonging to this cloud provider. */
|
|
2224
|
+
'provider'?: string;
|
|
2225
|
+
};
|
|
2226
|
+
/** Lists supported cloud provider regions */
|
|
2227
|
+
declare class ListCloudRegionsEndpoint extends GetApiEndpoint<ListCloudRegionsRequest, ListCloudRegionsResult> {
|
|
1891
2228
|
description: string;
|
|
1892
2229
|
withAuth: boolean;
|
|
1893
2230
|
requiredPermissions: string;
|
|
1894
|
-
endpointUrl: (opts:
|
|
2231
|
+
endpointUrl: (opts: ListCloudRegionsRequest) => string;
|
|
1895
2232
|
body: () => undefined;
|
|
1896
2233
|
}
|
|
1897
2234
|
|
|
@@ -1950,9 +2287,29 @@ type CreateDomainResult = {
|
|
|
1950
2287
|
/** The status of the domain verification. Example: "pending" */
|
|
1951
2288
|
'status': 'pending' | 'verified';
|
|
1952
2289
|
/** The hostname to add to your domain's DNS records as a TXT record to verify the domain. Example: "nfverify1608026055" */
|
|
1953
|
-
'hostname'
|
|
2290
|
+
'hostname'?: string;
|
|
1954
2291
|
/** The token to add as the content of the TXT record to verify the domain. Example: "e596987b52855a4a773ef580ce2985d7746b37ce8b2a443d20fa27b913d8f57" */
|
|
1955
|
-
'token'
|
|
2292
|
+
'token'?: string;
|
|
2293
|
+
/** Configuration regarding the domain redirect set up. */
|
|
2294
|
+
'redirect'?: {
|
|
2295
|
+
/** Domain redirect mode. Example: "default" */
|
|
2296
|
+
'mode': string;
|
|
2297
|
+
'target'?: {
|
|
2298
|
+
/** Expected CNAME target of the wildcard redirect. */
|
|
2299
|
+
'record'?: string;
|
|
2300
|
+
};
|
|
2301
|
+
};
|
|
2302
|
+
/** Configuration regarding the domain certificate set up. */
|
|
2303
|
+
'certificates'?: {
|
|
2304
|
+
/** Domain certificate mode. Example: "default" */
|
|
2305
|
+
'mode': string;
|
|
2306
|
+
/** DCV CNAME record used to provision wildcard certificates. */
|
|
2307
|
+
'dcvRecord'?: string;
|
|
2308
|
+
'dcvTarget'?: {
|
|
2309
|
+
/** Expected CNAME target of the dcvRecord. */
|
|
2310
|
+
'record'?: string;
|
|
2311
|
+
};
|
|
2312
|
+
};
|
|
1956
2313
|
} | any;
|
|
1957
2314
|
type CreateDomainCall = (opts: CreateDomainRequest) => Promise<ApiCallResponse<CreateDomainResult>>;
|
|
1958
2315
|
type CreateDomainRequest = {
|
|
@@ -1961,6 +2318,30 @@ type CreateDomainRequest = {
|
|
|
1961
2318
|
type CreateDomainData = {
|
|
1962
2319
|
/** The domain name to register. Example: "example.com" */
|
|
1963
2320
|
'domain': string;
|
|
2321
|
+
/** Optional configuration regarding the domain redirect set up. */
|
|
2322
|
+
'redirect'?: {
|
|
2323
|
+
/** Domain redirect mode to be used. Example: "default" */
|
|
2324
|
+
'mode'?: 'wildcard' | 'default';
|
|
2325
|
+
/** Northflank PaaS region the wildcard redirect should be pointed at. */
|
|
2326
|
+
'region'?: string;
|
|
2327
|
+
/** BYOC cluster the wildcard redirect should be pointed at. */
|
|
2328
|
+
'cluster'?: string;
|
|
2329
|
+
};
|
|
2330
|
+
/** Optional configuration regarding the domain certificate set up. */
|
|
2331
|
+
'certificates'?: {
|
|
2332
|
+
/** Certificate provisioning mode to be used. Example: "default" */
|
|
2333
|
+
'mode'?: 'wildcard' | 'wildcard-import' | 'default';
|
|
2334
|
+
'certificateInput'?: {
|
|
2335
|
+
/** Certificate data - required when `mode` is set to `wildcard-import` */
|
|
2336
|
+
'certificateInput'?: {
|
|
2337
|
+
'is'?: any;
|
|
2338
|
+
'then': {
|
|
2339
|
+
'privateKey': string;
|
|
2340
|
+
'certificateChain': string;
|
|
2341
|
+
};
|
|
2342
|
+
};
|
|
2343
|
+
};
|
|
2344
|
+
};
|
|
1964
2345
|
};
|
|
1965
2346
|
/** Registers a new domain */
|
|
1966
2347
|
declare class CreateDomainEndpoint extends PostApiEndpoint<CreateDomainRequest, CreateDomainResult> {
|
|
@@ -1974,12 +2355,32 @@ declare class CreateDomainEndpoint extends PostApiEndpoint<CreateDomainRequest,
|
|
|
1974
2355
|
type GetDomainResult = {
|
|
1975
2356
|
/** The domain name. Example: "example.com" */
|
|
1976
2357
|
'name': string;
|
|
1977
|
-
/** The status of the domain verification. Example: "
|
|
2358
|
+
/** The status of the domain verification. Example: "pending" */
|
|
1978
2359
|
'status': 'pending' | 'verified';
|
|
1979
2360
|
/** The hostname to add to your domain's DNS records as a TXT record to verify the domain. Example: "nfverify1608026055" */
|
|
1980
|
-
'hostname'
|
|
2361
|
+
'hostname'?: string;
|
|
1981
2362
|
/** The token to add as the content of the TXT record to verify the domain. Example: "e596987b52855a4a773ef580ce2985d7746b37ce8b2a443d20fa27b913d8f57" */
|
|
1982
|
-
'token'
|
|
2363
|
+
'token'?: string;
|
|
2364
|
+
/** Configuration regarding the domain redirect set up. */
|
|
2365
|
+
'redirect'?: {
|
|
2366
|
+
/** Domain redirect mode. Example: "default" */
|
|
2367
|
+
'mode': string;
|
|
2368
|
+
'target'?: {
|
|
2369
|
+
/** Expected CNAME target of the wildcard redirect. */
|
|
2370
|
+
'record'?: string;
|
|
2371
|
+
};
|
|
2372
|
+
};
|
|
2373
|
+
/** Configuration regarding the domain certificate set up. */
|
|
2374
|
+
'certificates'?: {
|
|
2375
|
+
/** Domain certificate mode. Example: "default" */
|
|
2376
|
+
'mode': string;
|
|
2377
|
+
/** DCV CNAME record used to provision wildcard certificates. */
|
|
2378
|
+
'dcvRecord'?: string;
|
|
2379
|
+
'dcvTarget'?: {
|
|
2380
|
+
/** Expected CNAME target of the dcvRecord. */
|
|
2381
|
+
'record'?: string;
|
|
2382
|
+
};
|
|
2383
|
+
};
|
|
1983
2384
|
/** A list of subdomains added to this domain. */
|
|
1984
2385
|
'subdomains': {
|
|
1985
2386
|
/** The subdomain added, or -default for the empty subdomain. Example: "app" */
|
|
@@ -2256,7 +2657,7 @@ type ListLogsinksResult = {
|
|
|
2256
2657
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2257
2658
|
'projects': string[];
|
|
2258
2659
|
/** The type of the log sink. Example: "loki" */
|
|
2259
|
-
'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'logtail' | 'honeycomb' | 'logzio';
|
|
2660
|
+
'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'logtail' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
|
|
2260
2661
|
/** Timestamp of when the log sink was created. Example: "2022-06-14 15:10:42.842Z" */
|
|
2261
2662
|
'createdAt': string;
|
|
2262
2663
|
/** Timestamp of when the log sink was last updated. Example: "2022-06-14 15:10:42.842Z" */
|
|
@@ -2301,6 +2702,8 @@ type CreateLogsinkData = {
|
|
|
2301
2702
|
'restricted'?: boolean;
|
|
2302
2703
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2303
2704
|
'useCustomLabels'?: boolean;
|
|
2705
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2706
|
+
'forwardAccessLogs'?: boolean;
|
|
2304
2707
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2305
2708
|
'projects'?: string[];
|
|
2306
2709
|
/** The type of the log sink. Example: "loki" */
|
|
@@ -2333,6 +2736,8 @@ type CreateLogsinkData = {
|
|
|
2333
2736
|
'restricted'?: boolean;
|
|
2334
2737
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2335
2738
|
'useCustomLabels'?: boolean;
|
|
2739
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2740
|
+
'forwardAccessLogs'?: boolean;
|
|
2336
2741
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2337
2742
|
'projects'?: string[];
|
|
2338
2743
|
/** The type of the log sink. Example: "datadog_logs" */
|
|
@@ -2353,6 +2758,8 @@ type CreateLogsinkData = {
|
|
|
2353
2758
|
'restricted'?: boolean;
|
|
2354
2759
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2355
2760
|
'useCustomLabels'?: boolean;
|
|
2761
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2762
|
+
'forwardAccessLogs'?: boolean;
|
|
2356
2763
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2357
2764
|
'projects'?: string[];
|
|
2358
2765
|
/** The type of the log sink. Example: "papertrail" */
|
|
@@ -2382,6 +2789,8 @@ type CreateLogsinkData = {
|
|
|
2382
2789
|
'restricted'?: boolean;
|
|
2383
2790
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2384
2791
|
'useCustomLabels'?: boolean;
|
|
2792
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2793
|
+
'forwardAccessLogs'?: boolean;
|
|
2385
2794
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2386
2795
|
'projects'?: string[];
|
|
2387
2796
|
/** The type of the log sink. Example: "aws_s3" */
|
|
@@ -2413,6 +2822,8 @@ type CreateLogsinkData = {
|
|
|
2413
2822
|
'restricted'?: boolean;
|
|
2414
2823
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2415
2824
|
'useCustomLabels'?: boolean;
|
|
2825
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2826
|
+
'forwardAccessLogs'?: boolean;
|
|
2416
2827
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2417
2828
|
'projects'?: string[];
|
|
2418
2829
|
/** The type of the log sink. Example: "http" */
|
|
@@ -2452,6 +2863,8 @@ type CreateLogsinkData = {
|
|
|
2452
2863
|
'restricted'?: boolean;
|
|
2453
2864
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2454
2865
|
'useCustomLabels'?: boolean;
|
|
2866
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2867
|
+
'forwardAccessLogs'?: boolean;
|
|
2455
2868
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2456
2869
|
'projects'?: string[];
|
|
2457
2870
|
/** The type of the log sink. Example: "logdna" */
|
|
@@ -2470,6 +2883,8 @@ type CreateLogsinkData = {
|
|
|
2470
2883
|
'restricted'?: boolean;
|
|
2471
2884
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2472
2885
|
'useCustomLabels'?: boolean;
|
|
2886
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2887
|
+
'forwardAccessLogs'?: boolean;
|
|
2473
2888
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2474
2889
|
'projects'?: string[];
|
|
2475
2890
|
/** The type of the log sink. Example: "logtail" */
|
|
@@ -2488,6 +2903,8 @@ type CreateLogsinkData = {
|
|
|
2488
2903
|
'restricted'?: boolean;
|
|
2489
2904
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2490
2905
|
'useCustomLabels'?: boolean;
|
|
2906
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2907
|
+
'forwardAccessLogs'?: boolean;
|
|
2491
2908
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2492
2909
|
'projects'?: string[];
|
|
2493
2910
|
/** The type of the log sink. Example: "honeycomb" */
|
|
@@ -2508,6 +2925,8 @@ type CreateLogsinkData = {
|
|
|
2508
2925
|
'restricted'?: boolean;
|
|
2509
2926
|
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2510
2927
|
'useCustomLabels'?: boolean;
|
|
2928
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2929
|
+
'forwardAccessLogs'?: boolean;
|
|
2511
2930
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2512
2931
|
'projects'?: string[];
|
|
2513
2932
|
/** The type of the log sink. Example: "logzio" */
|
|
@@ -2519,6 +2938,56 @@ type CreateLogsinkData = {
|
|
|
2519
2938
|
/** The Log Shipping Token of the account you want to ship to Example: "sNFijNFgNFoNFrMsNFbNFObNFcgNFqoa" */
|
|
2520
2939
|
'token': string;
|
|
2521
2940
|
};
|
|
2941
|
+
} | {
|
|
2942
|
+
/** Name of the log sink. Example: "example-log-sink" */
|
|
2943
|
+
'name': string;
|
|
2944
|
+
/** Description of the log sink. Example: "This is an example log sink." */
|
|
2945
|
+
'description'?: string;
|
|
2946
|
+
/** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
|
|
2947
|
+
'restricted'?: boolean;
|
|
2948
|
+
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2949
|
+
'useCustomLabels'?: boolean;
|
|
2950
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2951
|
+
'forwardAccessLogs'?: boolean;
|
|
2952
|
+
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2953
|
+
'projects'?: string[];
|
|
2954
|
+
/** The type of the log sink. Example: "axiom" */
|
|
2955
|
+
'sinkType': 'axiom';
|
|
2956
|
+
/** Details about the Axiom log sink. */
|
|
2957
|
+
'sinkData': {
|
|
2958
|
+
/** Name of the data Example: "staging" */
|
|
2959
|
+
'dataset': string;
|
|
2960
|
+
/** Axiom API/Personal token Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
|
|
2961
|
+
'token': string;
|
|
2962
|
+
/** Using a personal token */
|
|
2963
|
+
'tokenType': 'personal' | 'api';
|
|
2964
|
+
/** The ID of the organisation, required if using a personal token */
|
|
2965
|
+
'orgId'?: string;
|
|
2966
|
+
/** The Axiom url to use. Only change if self hosting axiom. */
|
|
2967
|
+
'url': string;
|
|
2968
|
+
};
|
|
2969
|
+
} | {
|
|
2970
|
+
/** Name of the log sink. Example: "example-log-sink" */
|
|
2971
|
+
'name': string;
|
|
2972
|
+
/** Description of the log sink. Example: "This is an example log sink." */
|
|
2973
|
+
'description'?: string;
|
|
2974
|
+
/** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
|
|
2975
|
+
'restricted'?: boolean;
|
|
2976
|
+
/** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
|
|
2977
|
+
'useCustomLabels'?: boolean;
|
|
2978
|
+
/** If `true` your network access logs will be forwarded with your workload logs Example: true */
|
|
2979
|
+
'forwardAccessLogs'?: boolean;
|
|
2980
|
+
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2981
|
+
'projects'?: string[];
|
|
2982
|
+
/** The type of the log sink. Example: "newRelic" */
|
|
2983
|
+
'sinkType': 'newRelic';
|
|
2984
|
+
/** Details about the undefined log sink. */
|
|
2985
|
+
'sinkData': {
|
|
2986
|
+
/** New Relic Account ID Example: "b1dd3feb585asd1a3e9" */
|
|
2987
|
+
'accountId': string;
|
|
2988
|
+
/** New Relic License Key Example: "b1dd3feb585asd1a3e9" */
|
|
2989
|
+
'licenseKey': string;
|
|
2990
|
+
};
|
|
2522
2991
|
};
|
|
2523
2992
|
/** Creates a new log sink. */
|
|
2524
2993
|
declare class CreateLogsinkEndpoint extends PostApiEndpoint<CreateLogsinkRequest, CreateLogsinkResult> {
|
|
@@ -2543,7 +3012,7 @@ type GetLogsinkResult = {
|
|
|
2543
3012
|
/** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
|
|
2544
3013
|
'projects': string[];
|
|
2545
3014
|
/** The type of the log sink. Example: "loki" */
|
|
2546
|
-
'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'logtail' | 'honeycomb' | 'logzio';
|
|
3015
|
+
'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'logtail' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
|
|
2547
3016
|
/** Timestamp of when the log sink was created. Example: "2022-06-14 15:10:42.842Z" */
|
|
2548
3017
|
'createdAt': string;
|
|
2549
3018
|
/** Timestamp of when the log sink was last updated. Example: "2022-06-14 15:10:42.842Z" */
|
|
@@ -2622,6 +3091,17 @@ type GetLogsinkResult = {
|
|
|
2622
3091
|
'api_key': string;
|
|
2623
3092
|
/** Name of the dataset Example: "staging-logs" */
|
|
2624
3093
|
'dataset': string;
|
|
3094
|
+
} | {
|
|
3095
|
+
/** Name of the data Example: "staging" */
|
|
3096
|
+
'dataset': string;
|
|
3097
|
+
/** Axiom API/Personal token Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
|
|
3098
|
+
'token': string;
|
|
3099
|
+
/** Using a personal token */
|
|
3100
|
+
'tokenType': 'personal' | 'api';
|
|
3101
|
+
/** The ID of the organisation, required if using a personal token */
|
|
3102
|
+
'orgId'?: string;
|
|
3103
|
+
/** The Axiom url to use. Only change if self hosting axiom. */
|
|
3104
|
+
'url': string;
|
|
2625
3105
|
};
|
|
2626
3106
|
};
|
|
2627
3107
|
type GetLogsinkCall = (opts: GetLogsinkRequest) => Promise<ApiCallResponse<GetLogsinkResult>>;
|
|
@@ -2776,6 +3256,17 @@ type UpdateLogsinkData = {
|
|
|
2776
3256
|
'api_key': string;
|
|
2777
3257
|
/** Name of the dataset Example: "staging-logs" */
|
|
2778
3258
|
'dataset': string;
|
|
3259
|
+
} | {
|
|
3260
|
+
/** Name of the data Example: "staging" */
|
|
3261
|
+
'dataset': string;
|
|
3262
|
+
/** Axiom API/Personal token Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
|
|
3263
|
+
'token': string;
|
|
3264
|
+
/** Using a personal token */
|
|
3265
|
+
'tokenType': 'personal' | 'api';
|
|
3266
|
+
/** The ID of the organisation, required if using a personal token */
|
|
3267
|
+
'orgId'?: string;
|
|
3268
|
+
/** The Axiom url to use. Only change if self hosting axiom. */
|
|
3269
|
+
'url': string;
|
|
2779
3270
|
};
|
|
2780
3271
|
/** If `true`, and the log sink is currently paused, the log sink will be resumed after updating. */
|
|
2781
3272
|
'resumeLogSink'?: boolean;
|
|
@@ -2789,7 +3280,450 @@ declare class UpdateLogsinkEndpoint extends PostApiEndpoint<UpdateLogsinkRequest
|
|
|
2789
3280
|
body: (payload: UpdateLogsinkRequest) => string;
|
|
2790
3281
|
}
|
|
2791
3282
|
|
|
2792
|
-
type
|
|
3283
|
+
type ListNotificationsResult = {
|
|
3284
|
+
/** An array of notification integrations on the account. */
|
|
3285
|
+
'notificationIntegrations': {
|
|
3286
|
+
/** The name of the notification integration. Example: "Example Notification" */
|
|
3287
|
+
'name': string;
|
|
3288
|
+
/** The ID of the notification integration. Example: "example-notification" */
|
|
3289
|
+
'id': string;
|
|
3290
|
+
/** 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" */
|
|
3291
|
+
'type': 'RAW_WEBHOOK' | 'SLACK' | 'DISCORD' | 'TEAMS';
|
|
3292
|
+
/** The URL where webhooks will be sent. Example: "https://example.com/webhooks" */
|
|
3293
|
+
'webhook': string;
|
|
3294
|
+
/** Information on the current webhook status. */
|
|
3295
|
+
'status'?: {
|
|
3296
|
+
/** Is the webhook currently disabled? */
|
|
3297
|
+
'disabled'?: boolean;
|
|
3298
|
+
/** Why the webhook was disabled. */
|
|
3299
|
+
'reason'?: boolean;
|
|
3300
|
+
};
|
|
3301
|
+
/** Creation date Example: "2023-09-12T16:39:44.166Z\"" */
|
|
3302
|
+
'createdAt': string;
|
|
3303
|
+
/** Last update date Example: "2023-09-12T16:39:44.166Z\"" */
|
|
3304
|
+
'updatedAt': string;
|
|
3305
|
+
}[];
|
|
3306
|
+
};
|
|
3307
|
+
type ListNotificationsCall = (opts: ListNotificationsRequest) => Promise<ApiCallResponse<ListNotificationsResult>>;
|
|
3308
|
+
type ListNotificationsRequest = {
|
|
3309
|
+
options?: ListNotificationsOptions;
|
|
3310
|
+
};
|
|
3311
|
+
type ListNotificationsOptions = {
|
|
3312
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
3313
|
+
'per_page'?: number;
|
|
3314
|
+
/** The page number to access. */
|
|
3315
|
+
'page'?: number;
|
|
3316
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
3317
|
+
'cursor'?: string;
|
|
3318
|
+
};
|
|
3319
|
+
/** Lists notification integrations for the authenticated user or team. */
|
|
3320
|
+
declare class ListNotificationsEndpoint extends GetApiEndpoint<ListNotificationsRequest, ListNotificationsResult> {
|
|
3321
|
+
description: string;
|
|
3322
|
+
withAuth: boolean;
|
|
3323
|
+
requiredPermissions: string;
|
|
3324
|
+
endpointUrl: (opts: ListNotificationsRequest) => string;
|
|
3325
|
+
body: () => undefined;
|
|
3326
|
+
}
|
|
3327
|
+
|
|
3328
|
+
type CreateNotificationResult = {
|
|
3329
|
+
/** The name of the notification integration. Example: "Example Notification" */
|
|
3330
|
+
'name': string;
|
|
3331
|
+
/** The ID of the notification integration. Example: "example-notification" */
|
|
3332
|
+
'id': string;
|
|
3333
|
+
/** 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" */
|
|
3334
|
+
'type': 'RAW_WEBHOOK' | 'SLACK' | 'DISCORD' | 'TEAMS';
|
|
3335
|
+
/** The URL where webhooks will be sent. Example: "https://example.com/webhooks" */
|
|
3336
|
+
'webhook': string;
|
|
3337
|
+
/** Creation date Example: "2023-09-12T16:39:44.166Z\"" */
|
|
3338
|
+
'createdAt': string;
|
|
3339
|
+
/** Last update date Example: "2023-09-12T16:39:44.166Z\"" */
|
|
3340
|
+
'updatedAt': string;
|
|
3341
|
+
'status'?: {
|
|
3342
|
+
/** Is the webhook currently disabled? */
|
|
3343
|
+
'disabled'?: boolean;
|
|
3344
|
+
/** Why the webhook was disabled. */
|
|
3345
|
+
'reason'?: boolean;
|
|
3346
|
+
/** The timestamp of the first failed webhook request. */
|
|
3347
|
+
'timeOfFirstFailedRequest'?: string;
|
|
3348
|
+
/** The number of failed webhook requests. */
|
|
3349
|
+
'numberOfFailedRequests'?: number;
|
|
3350
|
+
};
|
|
3351
|
+
/** Should notifications be sent only for specific projects? Example: true */
|
|
3352
|
+
'restricted': boolean;
|
|
3353
|
+
/** An array of projects that notifications will be sent for. */
|
|
3354
|
+
'projects': string[];
|
|
3355
|
+
/** Which events should notifications be sent for? */
|
|
3356
|
+
'events': {
|
|
3357
|
+
'trigger:service:autoscaling:event'?: boolean;
|
|
3358
|
+
'trigger:service:deployment:status-update'?: boolean;
|
|
3359
|
+
'trigger:addon-backup:start'?: boolean;
|
|
3360
|
+
'trigger:addon-backup:success'?: boolean;
|
|
3361
|
+
'trigger:addon-backup:failure'?: boolean;
|
|
3362
|
+
'trigger:addon-backup:abort'?: boolean;
|
|
3363
|
+
'trigger:build:start'?: boolean;
|
|
3364
|
+
'trigger:build:success'?: boolean;
|
|
3365
|
+
'trigger:build:failure'?: boolean;
|
|
3366
|
+
'trigger:build:abort'?: boolean;
|
|
3367
|
+
'trigger:job-run:start'?: boolean;
|
|
3368
|
+
'trigger:job-run:success'?: boolean;
|
|
3369
|
+
'trigger:job-run:failure'?: boolean;
|
|
3370
|
+
'trigger:job-run:abort'?: boolean;
|
|
3371
|
+
'trigger:job-run:terminate'?: boolean;
|
|
3372
|
+
'trigger:release-flow-template-run:start'?: boolean;
|
|
3373
|
+
'trigger:release-flow-template-run:update'?: boolean;
|
|
3374
|
+
'trigger:release-flow-template-run:success'?: boolean;
|
|
3375
|
+
'trigger:release-flow-template-run:failure'?: boolean;
|
|
3376
|
+
'trigger:release-flow-template-run:aborted'?: boolean;
|
|
3377
|
+
'trigger:template-run:queued'?: boolean;
|
|
3378
|
+
'trigger:template-run:start'?: boolean;
|
|
3379
|
+
'trigger:template-run:update'?: boolean;
|
|
3380
|
+
'trigger:template-run:success'?: boolean;
|
|
3381
|
+
'trigger:template-run:failure'?: boolean;
|
|
3382
|
+
'trigger:resource:certificate-success'?: boolean;
|
|
3383
|
+
'trigger:resource:certificate-final-failure'?: boolean;
|
|
3384
|
+
'trigger:cdn:action-success'?: boolean;
|
|
3385
|
+
'trigger:cdn:action-failure'?: boolean;
|
|
3386
|
+
'trigger:cdn:action-delay'?: boolean;
|
|
3387
|
+
'trigger:log-sink:paused'?: boolean;
|
|
3388
|
+
'trigger:billing:billing-alert-exceeded'?: boolean;
|
|
3389
|
+
'trigger:billing:invoice-payment-action-required'?: boolean;
|
|
3390
|
+
'trigger:billing:invoice-payment-failed'?: boolean;
|
|
3391
|
+
'trigger:billing:invoice-paid'?: boolean;
|
|
3392
|
+
'trigger:billing:invoice-carried-over'?: boolean;
|
|
3393
|
+
'trigger:infrastructure:service:container-crash'?: boolean;
|
|
3394
|
+
'trigger:infrastructure:service:container-eviction'?: boolean;
|
|
3395
|
+
'trigger:infrastructure:addon:container-crash'?: boolean;
|
|
3396
|
+
'trigger:infrastructure:addon:container-eviction'?: boolean;
|
|
3397
|
+
'trigger:infrastructure:job:container-crash'?: boolean;
|
|
3398
|
+
'trigger:infrastructure:job:container-eviction'?: boolean;
|
|
3399
|
+
'trigger:infrastructure:service:container-cpuSpike90'?: boolean;
|
|
3400
|
+
'trigger:infrastructure:service:container-cpuSustained90'?: boolean;
|
|
3401
|
+
'trigger:infrastructure:job:container-cpuSpike90'?: boolean;
|
|
3402
|
+
'trigger:infrastructure:job:container-cpuSustained90'?: boolean;
|
|
3403
|
+
'trigger:infrastructure:addon:container-cpuSpike90'?: boolean;
|
|
3404
|
+
'trigger:infrastructure:addon:container-cpuSustained90'?: boolean;
|
|
3405
|
+
'trigger:infrastructure:service:container-memorySpike90'?: boolean;
|
|
3406
|
+
'trigger:infrastructure:service:container-memorySustained90'?: boolean;
|
|
3407
|
+
'trigger:infrastructure:job:container-memorySpike90'?: boolean;
|
|
3408
|
+
'trigger:infrastructure:job:container-memorySustained90'?: boolean;
|
|
3409
|
+
'trigger:infrastructure:addon:container-memorySpike90'?: boolean;
|
|
3410
|
+
'trigger:infrastructure:addon: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:container-memorySpike90'?: boolean;
|
|
3494
|
+
'trigger:infrastructure:addon:container-memorySustained90'?: boolean;
|
|
3495
|
+
'trigger:infrastructure:addon-volume:usage-75-exceeded'?: boolean;
|
|
3496
|
+
'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
|
|
3497
|
+
'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
|
|
3498
|
+
'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
|
|
3499
|
+
'trigger:infrastructure:cluster:scheduling'?: boolean;
|
|
3500
|
+
};
|
|
3501
|
+
};
|
|
3502
|
+
/** Create a new notification integration. */
|
|
3503
|
+
declare class CreateNotificationEndpoint extends PostApiEndpoint<CreateNotificationRequest, CreateNotificationResult> {
|
|
3504
|
+
description: string;
|
|
3505
|
+
withAuth: boolean;
|
|
3506
|
+
requiredPermissions: string;
|
|
3507
|
+
endpointUrl: (opts: CreateNotificationRequest) => string;
|
|
3508
|
+
body: (payload: CreateNotificationRequest) => string;
|
|
3509
|
+
}
|
|
3510
|
+
|
|
3511
|
+
type GetNotificationResult = {
|
|
3512
|
+
/** The name of the notification integration. Example: "Example Notification" */
|
|
3513
|
+
'name': string;
|
|
3514
|
+
/** The ID of the notification integration. Example: "example-notification" */
|
|
3515
|
+
'id': string;
|
|
3516
|
+
/** 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" */
|
|
3517
|
+
'type': 'RAW_WEBHOOK' | 'SLACK' | 'DISCORD' | 'TEAMS';
|
|
3518
|
+
/** The URL where webhooks will be sent. Example: "https://example.com/webhooks" */
|
|
3519
|
+
'webhook': string;
|
|
3520
|
+
/** Creation date Example: "2023-09-12T16:39:44.166Z\"" */
|
|
3521
|
+
'createdAt': string;
|
|
3522
|
+
/** Last update date Example: "2023-09-12T16:39:44.166Z\"" */
|
|
3523
|
+
'updatedAt': string;
|
|
3524
|
+
'status'?: {
|
|
3525
|
+
/** Is the webhook currently disabled? */
|
|
3526
|
+
'disabled'?: boolean;
|
|
3527
|
+
/** Why the webhook was disabled. */
|
|
3528
|
+
'reason'?: boolean;
|
|
3529
|
+
/** The timestamp of the first failed webhook request. */
|
|
3530
|
+
'timeOfFirstFailedRequest'?: string;
|
|
3531
|
+
/** The number of failed webhook requests. */
|
|
3532
|
+
'numberOfFailedRequests'?: number;
|
|
3533
|
+
};
|
|
3534
|
+
/** Should notifications be sent only for specific projects? Example: true */
|
|
3535
|
+
'restricted': boolean;
|
|
3536
|
+
/** An array of projects that notifications will be sent for. */
|
|
3537
|
+
'projects': string[];
|
|
3538
|
+
/** Which events should notifications be sent for? */
|
|
3539
|
+
'events': {
|
|
3540
|
+
'trigger:service:autoscaling:event'?: boolean;
|
|
3541
|
+
'trigger:service:deployment:status-update'?: boolean;
|
|
3542
|
+
'trigger:addon-backup:start'?: boolean;
|
|
3543
|
+
'trigger:addon-backup:success'?: boolean;
|
|
3544
|
+
'trigger:addon-backup:failure'?: boolean;
|
|
3545
|
+
'trigger:addon-backup:abort'?: boolean;
|
|
3546
|
+
'trigger:build:start'?: boolean;
|
|
3547
|
+
'trigger:build:success'?: boolean;
|
|
3548
|
+
'trigger:build:failure'?: boolean;
|
|
3549
|
+
'trigger:build:abort'?: boolean;
|
|
3550
|
+
'trigger:job-run:start'?: boolean;
|
|
3551
|
+
'trigger:job-run:success'?: boolean;
|
|
3552
|
+
'trigger:job-run:failure'?: boolean;
|
|
3553
|
+
'trigger:job-run:abort'?: boolean;
|
|
3554
|
+
'trigger:job-run:terminate'?: boolean;
|
|
3555
|
+
'trigger:release-flow-template-run:start'?: boolean;
|
|
3556
|
+
'trigger:release-flow-template-run:update'?: boolean;
|
|
3557
|
+
'trigger:release-flow-template-run:success'?: boolean;
|
|
3558
|
+
'trigger:release-flow-template-run:failure'?: boolean;
|
|
3559
|
+
'trigger:release-flow-template-run:aborted'?: boolean;
|
|
3560
|
+
'trigger:template-run:queued'?: boolean;
|
|
3561
|
+
'trigger:template-run:start'?: boolean;
|
|
3562
|
+
'trigger:template-run:update'?: boolean;
|
|
3563
|
+
'trigger:template-run:success'?: boolean;
|
|
3564
|
+
'trigger:template-run:failure'?: boolean;
|
|
3565
|
+
'trigger:resource:certificate-success'?: boolean;
|
|
3566
|
+
'trigger:resource:certificate-final-failure'?: boolean;
|
|
3567
|
+
'trigger:cdn:action-success'?: boolean;
|
|
3568
|
+
'trigger:cdn:action-failure'?: boolean;
|
|
3569
|
+
'trigger:cdn:action-delay'?: boolean;
|
|
3570
|
+
'trigger:log-sink:paused'?: boolean;
|
|
3571
|
+
'trigger:billing:billing-alert-exceeded'?: boolean;
|
|
3572
|
+
'trigger:billing:invoice-payment-action-required'?: boolean;
|
|
3573
|
+
'trigger:billing:invoice-payment-failed'?: boolean;
|
|
3574
|
+
'trigger:billing:invoice-paid'?: boolean;
|
|
3575
|
+
'trigger:billing:invoice-carried-over'?: boolean;
|
|
3576
|
+
'trigger:infrastructure:service:container-crash'?: boolean;
|
|
3577
|
+
'trigger:infrastructure:service:container-eviction'?: boolean;
|
|
3578
|
+
'trigger:infrastructure:addon:container-crash'?: boolean;
|
|
3579
|
+
'trigger:infrastructure:addon:container-eviction'?: boolean;
|
|
3580
|
+
'trigger:infrastructure:job:container-crash'?: boolean;
|
|
3581
|
+
'trigger:infrastructure:job:container-eviction'?: boolean;
|
|
3582
|
+
'trigger:infrastructure:service:container-cpuSpike90'?: boolean;
|
|
3583
|
+
'trigger:infrastructure:service:container-cpuSustained90'?: boolean;
|
|
3584
|
+
'trigger:infrastructure:job:container-cpuSpike90'?: boolean;
|
|
3585
|
+
'trigger:infrastructure:job:container-cpuSustained90'?: boolean;
|
|
3586
|
+
'trigger:infrastructure:addon:container-cpuSpike90'?: boolean;
|
|
3587
|
+
'trigger:infrastructure:addon:container-cpuSustained90'?: boolean;
|
|
3588
|
+
'trigger:infrastructure:service:container-memorySpike90'?: boolean;
|
|
3589
|
+
'trigger:infrastructure:service:container-memorySustained90'?: boolean;
|
|
3590
|
+
'trigger:infrastructure:job:container-memorySpike90'?: boolean;
|
|
3591
|
+
'trigger:infrastructure:job:container-memorySustained90'?: boolean;
|
|
3592
|
+
'trigger:infrastructure:addon:container-memorySpike90'?: boolean;
|
|
3593
|
+
'trigger:infrastructure:addon:container-memorySustained90'?: boolean;
|
|
3594
|
+
'trigger:infrastructure:addon-volume:usage-75-exceeded'?: boolean;
|
|
3595
|
+
'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
|
|
3596
|
+
'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
|
|
3597
|
+
'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
|
|
3598
|
+
'trigger:infrastructure:cluster:scheduling'?: boolean;
|
|
3599
|
+
};
|
|
3600
|
+
};
|
|
3601
|
+
type GetNotificationCall = (opts: GetNotificationRequest) => Promise<ApiCallResponse<GetNotificationResult>>;
|
|
3602
|
+
type GetNotificationRequest = {
|
|
3603
|
+
parameters: GetNotificationParameters;
|
|
3604
|
+
};
|
|
3605
|
+
type GetNotificationParameters = {
|
|
3606
|
+
/** ID of the notification integration */ 'notificationId': string;
|
|
3607
|
+
};
|
|
3608
|
+
/** Get details about a notification integration. */
|
|
3609
|
+
declare class GetNotificationEndpoint extends GetApiEndpoint<GetNotificationRequest, GetNotificationResult> {
|
|
3610
|
+
description: string;
|
|
3611
|
+
withAuth: boolean;
|
|
3612
|
+
requiredPermissions: string;
|
|
3613
|
+
endpointUrl: (opts: GetNotificationRequest) => string;
|
|
3614
|
+
body: () => undefined;
|
|
3615
|
+
}
|
|
3616
|
+
|
|
3617
|
+
type UpdateNotificationResult = any;
|
|
3618
|
+
type UpdateNotificationCall = (opts: UpdateNotificationRequest) => Promise<ApiCallResponse<UpdateNotificationResult>>;
|
|
3619
|
+
type UpdateNotificationRequest = {
|
|
3620
|
+
parameters: UpdateNotificationParameters;
|
|
3621
|
+
data: UpdateNotificationData;
|
|
3622
|
+
};
|
|
3623
|
+
type UpdateNotificationParameters = {
|
|
3624
|
+
/** ID of the notification integration */ 'notificationId': string;
|
|
3625
|
+
};
|
|
3626
|
+
type UpdateNotificationData = {
|
|
3627
|
+
/** The name of the notification integration. Example: "Example Notification" */
|
|
3628
|
+
'name'?: string;
|
|
3629
|
+
/** The URL where webhooks will be sent. Example: "https://example.com/webhooks" */
|
|
3630
|
+
'webhook'?: string;
|
|
3631
|
+
/** An optional secret that will be sent in the webhook header for verification. Supports `RAW_WEBHOOK` only. */
|
|
3632
|
+
'secret'?: string;
|
|
3633
|
+
/** Should notifications be sent only for specific projects? Example: true */
|
|
3634
|
+
'restricted'?: boolean;
|
|
3635
|
+
/** An array of projects that notifications will be sent for. */
|
|
3636
|
+
'projects'?: string[];
|
|
3637
|
+
/** Which events should notifications be sent for? */
|
|
3638
|
+
'events'?: {
|
|
3639
|
+
'trigger:service:autoscaling:event'?: boolean;
|
|
3640
|
+
'trigger:service:deployment:status-update'?: boolean;
|
|
3641
|
+
'trigger:addon-backup:start'?: boolean;
|
|
3642
|
+
'trigger:addon-backup:success'?: boolean;
|
|
3643
|
+
'trigger:addon-backup:failure'?: boolean;
|
|
3644
|
+
'trigger:addon-backup:abort'?: boolean;
|
|
3645
|
+
'trigger:build:start'?: boolean;
|
|
3646
|
+
'trigger:build:success'?: boolean;
|
|
3647
|
+
'trigger:build:failure'?: boolean;
|
|
3648
|
+
'trigger:build:abort'?: boolean;
|
|
3649
|
+
'trigger:job-run:start'?: boolean;
|
|
3650
|
+
'trigger:job-run:success'?: boolean;
|
|
3651
|
+
'trigger:job-run:failure'?: boolean;
|
|
3652
|
+
'trigger:job-run:abort'?: boolean;
|
|
3653
|
+
'trigger:job-run:terminate'?: boolean;
|
|
3654
|
+
'trigger:release-flow-template-run:start'?: boolean;
|
|
3655
|
+
'trigger:release-flow-template-run:update'?: boolean;
|
|
3656
|
+
'trigger:release-flow-template-run:success'?: boolean;
|
|
3657
|
+
'trigger:release-flow-template-run:failure'?: boolean;
|
|
3658
|
+
'trigger:release-flow-template-run:aborted'?: boolean;
|
|
3659
|
+
'trigger:template-run:queued'?: boolean;
|
|
3660
|
+
'trigger:template-run:start'?: boolean;
|
|
3661
|
+
'trigger:template-run:update'?: boolean;
|
|
3662
|
+
'trigger:template-run:success'?: boolean;
|
|
3663
|
+
'trigger:template-run:failure'?: boolean;
|
|
3664
|
+
'trigger:resource:certificate-success'?: boolean;
|
|
3665
|
+
'trigger:resource:certificate-final-failure'?: boolean;
|
|
3666
|
+
'trigger:cdn:action-success'?: boolean;
|
|
3667
|
+
'trigger:cdn:action-failure'?: boolean;
|
|
3668
|
+
'trigger:cdn:action-delay'?: boolean;
|
|
3669
|
+
'trigger:log-sink:paused'?: boolean;
|
|
3670
|
+
'trigger:billing:billing-alert-exceeded'?: boolean;
|
|
3671
|
+
'trigger:billing:invoice-payment-action-required'?: boolean;
|
|
3672
|
+
'trigger:billing:invoice-payment-failed'?: boolean;
|
|
3673
|
+
'trigger:billing:invoice-paid'?: boolean;
|
|
3674
|
+
'trigger:billing:invoice-carried-over'?: boolean;
|
|
3675
|
+
'trigger:infrastructure:service:container-crash'?: boolean;
|
|
3676
|
+
'trigger:infrastructure:service:container-eviction'?: boolean;
|
|
3677
|
+
'trigger:infrastructure:addon:container-crash'?: boolean;
|
|
3678
|
+
'trigger:infrastructure:addon:container-eviction'?: boolean;
|
|
3679
|
+
'trigger:infrastructure:job:container-crash'?: boolean;
|
|
3680
|
+
'trigger:infrastructure:job:container-eviction'?: boolean;
|
|
3681
|
+
'trigger:infrastructure:service:container-cpuSpike90'?: boolean;
|
|
3682
|
+
'trigger:infrastructure:service:container-cpuSustained90'?: boolean;
|
|
3683
|
+
'trigger:infrastructure:job:container-cpuSpike90'?: boolean;
|
|
3684
|
+
'trigger:infrastructure:job:container-cpuSustained90'?: boolean;
|
|
3685
|
+
'trigger:infrastructure:addon:container-cpuSpike90'?: boolean;
|
|
3686
|
+
'trigger:infrastructure:addon:container-cpuSustained90'?: boolean;
|
|
3687
|
+
'trigger:infrastructure:service:container-memorySpike90'?: boolean;
|
|
3688
|
+
'trigger:infrastructure:service:container-memorySustained90'?: boolean;
|
|
3689
|
+
'trigger:infrastructure:job:container-memorySpike90'?: boolean;
|
|
3690
|
+
'trigger:infrastructure:job:container-memorySustained90'?: boolean;
|
|
3691
|
+
'trigger:infrastructure:addon:container-memorySpike90'?: boolean;
|
|
3692
|
+
'trigger:infrastructure:addon:container-memorySustained90'?: boolean;
|
|
3693
|
+
'trigger:infrastructure:addon-volume:usage-75-exceeded'?: boolean;
|
|
3694
|
+
'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
|
|
3695
|
+
'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
|
|
3696
|
+
'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
|
|
3697
|
+
'trigger:infrastructure:cluster:scheduling'?: boolean;
|
|
3698
|
+
};
|
|
3699
|
+
};
|
|
3700
|
+
/** Updates a notification integration */
|
|
3701
|
+
declare class UpdateNotificationEndpoint extends PostApiEndpoint<UpdateNotificationRequest, UpdateNotificationResult> {
|
|
3702
|
+
description: string;
|
|
3703
|
+
withAuth: boolean;
|
|
3704
|
+
requiredPermissions: string;
|
|
3705
|
+
endpointUrl: (opts: UpdateNotificationRequest) => string;
|
|
3706
|
+
body: (payload: UpdateNotificationRequest) => string;
|
|
3707
|
+
}
|
|
3708
|
+
|
|
3709
|
+
type DeleteNotificationResult = any;
|
|
3710
|
+
type DeleteNotificationCall = (opts: DeleteNotificationRequest) => Promise<ApiCallResponse<DeleteNotificationResult>>;
|
|
3711
|
+
type DeleteNotificationRequest = {
|
|
3712
|
+
parameters: DeleteNotificationParameters;
|
|
3713
|
+
};
|
|
3714
|
+
type DeleteNotificationParameters = {
|
|
3715
|
+
/** ID of the notification integration */ 'notificationId': string;
|
|
3716
|
+
};
|
|
3717
|
+
/** Deletes a notification integration */
|
|
3718
|
+
declare class DeleteNotificationEndpoint extends DeleteApiEndpoint<DeleteNotificationRequest, DeleteNotificationResult> {
|
|
3719
|
+
description: string;
|
|
3720
|
+
withAuth: boolean;
|
|
3721
|
+
requiredPermissions: string;
|
|
3722
|
+
endpointUrl: (opts: DeleteNotificationRequest) => string;
|
|
3723
|
+
body: () => undefined;
|
|
3724
|
+
}
|
|
3725
|
+
|
|
3726
|
+
type ListRegistrycredentialsResult = {
|
|
2793
3727
|
/** An array of credentials saved to this account. */
|
|
2794
3728
|
'credentials': {
|
|
2795
3729
|
/** Identifier for the credentials. Example: "example-credentials" */
|
|
@@ -2809,11 +3743,11 @@ type ListRegistriesResult = {
|
|
|
2809
3743
|
'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
2810
3744
|
}[];
|
|
2811
3745
|
};
|
|
2812
|
-
type
|
|
2813
|
-
type
|
|
2814
|
-
options?:
|
|
3746
|
+
type ListRegistrycredentialsCall = (opts: ListRegistrycredentialsRequest) => Promise<ApiCallResponse<ListRegistrycredentialsResult>>;
|
|
3747
|
+
type ListRegistrycredentialsRequest = {
|
|
3748
|
+
options?: ListRegistrycredentialsOptions;
|
|
2815
3749
|
};
|
|
2816
|
-
type
|
|
3750
|
+
type ListRegistrycredentialsOptions = {
|
|
2817
3751
|
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
2818
3752
|
'per_page'?: number;
|
|
2819
3753
|
/** The page number to access. */
|
|
@@ -2822,15 +3756,15 @@ type ListRegistriesOptions = {
|
|
|
2822
3756
|
'cursor'?: string;
|
|
2823
3757
|
};
|
|
2824
3758
|
/** Lists the container registry credentials saved to this account. Does not display secrets. */
|
|
2825
|
-
declare class
|
|
3759
|
+
declare class ListRegistrycredentialsEndpoint extends GetApiEndpoint<ListRegistrycredentialsRequest, ListRegistrycredentialsResult> {
|
|
2826
3760
|
description: string;
|
|
2827
3761
|
withAuth: boolean;
|
|
2828
3762
|
requiredPermissions: string;
|
|
2829
|
-
endpointUrl: (opts:
|
|
3763
|
+
endpointUrl: (opts: ListRegistrycredentialsRequest) => string;
|
|
2830
3764
|
body: () => undefined;
|
|
2831
3765
|
}
|
|
2832
3766
|
|
|
2833
|
-
type
|
|
3767
|
+
type AddRegistrycredentialsResult = {
|
|
2834
3768
|
/** Identifier for the credentials. Example: "example-credentials" */
|
|
2835
3769
|
'id': string;
|
|
2836
3770
|
/** Name of the saved credentials. Example: "Example Credentials" */
|
|
@@ -2847,11 +3781,11 @@ type AddRegistryResult = {
|
|
|
2847
3781
|
/** The registry provider associated with this set of credentials. Example: "dockerhub" */
|
|
2848
3782
|
'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
|
|
2849
3783
|
};
|
|
2850
|
-
type
|
|
2851
|
-
type
|
|
2852
|
-
data:
|
|
3784
|
+
type AddRegistrycredentialsCall = (opts: AddRegistrycredentialsRequest) => Promise<ApiCallResponse<AddRegistrycredentialsResult>>;
|
|
3785
|
+
type AddRegistrycredentialsRequest = {
|
|
3786
|
+
data: AddRegistrycredentialsData;
|
|
2853
3787
|
};
|
|
2854
|
-
type
|
|
3788
|
+
type AddRegistrycredentialsData = {
|
|
2855
3789
|
/** Name of the credentials. Example: "Example Credentials" */
|
|
2856
3790
|
'name': string;
|
|
2857
3791
|
/** Description of the credentials. Example: "This is a set of saved credentials." */
|
|
@@ -2907,15 +3841,15 @@ type AddRegistryData = {
|
|
|
2907
3841
|
'auths': any;
|
|
2908
3842
|
};
|
|
2909
3843
|
/** Adds a new set of container registry credentials to this account. */
|
|
2910
|
-
declare class
|
|
3844
|
+
declare class AddRegistrycredentialsEndpoint extends PostApiEndpoint<AddRegistrycredentialsRequest, AddRegistrycredentialsResult> {
|
|
2911
3845
|
description: string;
|
|
2912
3846
|
withAuth: boolean;
|
|
2913
3847
|
requiredPermissions: string;
|
|
2914
|
-
endpointUrl: (opts:
|
|
2915
|
-
body: (payload:
|
|
3848
|
+
endpointUrl: (opts: AddRegistrycredentialsRequest) => string;
|
|
3849
|
+
body: (payload: AddRegistrycredentialsRequest) => string;
|
|
2916
3850
|
}
|
|
2917
3851
|
|
|
2918
|
-
type
|
|
3852
|
+
type GetRegistrycredentialsResult = {
|
|
2919
3853
|
/** Identifier for the credentials. Example: "example-credentials" */
|
|
2920
3854
|
'id': string;
|
|
2921
3855
|
/** Name of the saved credentials. Example: "Example Credentials" */
|
|
@@ -2934,49 +3868,49 @@ type GetRegistryResult = {
|
|
|
2934
3868
|
/** The `auths` data extracted from your Docker config file. Example: {"https://index.docker.io/v1/":{"auth":"[YOUR AUTH KEY]"}} */
|
|
2935
3869
|
'auths'?: any;
|
|
2936
3870
|
};
|
|
2937
|
-
type
|
|
2938
|
-
type
|
|
2939
|
-
parameters:
|
|
3871
|
+
type GetRegistrycredentialsCall = (opts: GetRegistrycredentialsRequest) => Promise<ApiCallResponse<GetRegistrycredentialsResult>>;
|
|
3872
|
+
type GetRegistrycredentialsRequest = {
|
|
3873
|
+
parameters: GetRegistrycredentialsParameters;
|
|
2940
3874
|
};
|
|
2941
|
-
type
|
|
3875
|
+
type GetRegistrycredentialsParameters = {
|
|
2942
3876
|
/** ID of the registry credential */ 'credentialId': string;
|
|
2943
3877
|
};
|
|
2944
3878
|
/** Views a set of registry credential data. */
|
|
2945
|
-
declare class
|
|
3879
|
+
declare class GetRegistrycredentialsEndpoint extends GetApiEndpoint<GetRegistrycredentialsRequest, GetRegistrycredentialsResult> {
|
|
2946
3880
|
description: string;
|
|
2947
3881
|
withAuth: boolean;
|
|
2948
3882
|
requiredPermissions: string;
|
|
2949
|
-
endpointUrl: (opts:
|
|
3883
|
+
endpointUrl: (opts: GetRegistrycredentialsRequest) => string;
|
|
2950
3884
|
body: () => undefined;
|
|
2951
3885
|
}
|
|
2952
3886
|
|
|
2953
|
-
type
|
|
2954
|
-
type
|
|
2955
|
-
type
|
|
2956
|
-
parameters:
|
|
3887
|
+
type DeleteRegistrycredentialsResult = any;
|
|
3888
|
+
type DeleteRegistrycredentialsCall = (opts: DeleteRegistrycredentialsRequest) => Promise<ApiCallResponse<DeleteRegistrycredentialsResult>>;
|
|
3889
|
+
type DeleteRegistrycredentialsRequest = {
|
|
3890
|
+
parameters: DeleteRegistrycredentialsParameters;
|
|
2957
3891
|
};
|
|
2958
|
-
type
|
|
3892
|
+
type DeleteRegistrycredentialsParameters = {
|
|
2959
3893
|
/** ID of the registry credential */ 'credentialId': string;
|
|
2960
3894
|
};
|
|
2961
3895
|
/** Deletes a set of registry credential data. */
|
|
2962
|
-
declare class
|
|
3896
|
+
declare class DeleteRegistrycredentialsEndpoint extends DeleteApiEndpoint<DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult> {
|
|
2963
3897
|
description: string;
|
|
2964
3898
|
withAuth: boolean;
|
|
2965
3899
|
requiredPermissions: string;
|
|
2966
|
-
endpointUrl: (opts:
|
|
3900
|
+
endpointUrl: (opts: DeleteRegistrycredentialsRequest) => string;
|
|
2967
3901
|
body: () => undefined;
|
|
2968
3902
|
}
|
|
2969
3903
|
|
|
2970
|
-
type
|
|
2971
|
-
type
|
|
2972
|
-
type
|
|
2973
|
-
parameters:
|
|
2974
|
-
data:
|
|
3904
|
+
type UpdateRegistrycredentialsResult = any;
|
|
3905
|
+
type UpdateRegistrycredentialsCall = (opts: UpdateRegistrycredentialsRequest) => Promise<ApiCallResponse<UpdateRegistrycredentialsResult>>;
|
|
3906
|
+
type UpdateRegistrycredentialsRequest = {
|
|
3907
|
+
parameters: UpdateRegistrycredentialsParameters;
|
|
3908
|
+
data: UpdateRegistrycredentialsData;
|
|
2975
3909
|
};
|
|
2976
|
-
type
|
|
3910
|
+
type UpdateRegistrycredentialsParameters = {
|
|
2977
3911
|
/** ID of the registry credential */ 'credentialId': string;
|
|
2978
3912
|
};
|
|
2979
|
-
type
|
|
3913
|
+
type UpdateRegistrycredentialsData = {
|
|
2980
3914
|
/** Description of the credentials. Example: "This is a set of saved credentials." */
|
|
2981
3915
|
'description'?: string;
|
|
2982
3916
|
/** Data about whether the credentials are restricted to certain projects. */
|
|
@@ -3030,12 +3964,12 @@ type UpdateRegistryData = {
|
|
|
3030
3964
|
'auths': any;
|
|
3031
3965
|
};
|
|
3032
3966
|
/** Updates a set of registry credential data. */
|
|
3033
|
-
declare class
|
|
3967
|
+
declare class UpdateRegistrycredentialsEndpoint extends PostApiEndpoint<UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult> {
|
|
3034
3968
|
description: string;
|
|
3035
3969
|
withAuth: boolean;
|
|
3036
3970
|
requiredPermissions: string;
|
|
3037
|
-
endpointUrl: (opts:
|
|
3038
|
-
body: (payload:
|
|
3971
|
+
endpointUrl: (opts: UpdateRegistrycredentialsRequest) => string;
|
|
3972
|
+
body: (payload: UpdateRegistrycredentialsRequest) => string;
|
|
3039
3973
|
}
|
|
3040
3974
|
|
|
3041
3975
|
type ListVcsResult = {
|
|
@@ -3083,12 +4017,16 @@ type CreateCustomvcsTokenResult = {
|
|
|
3083
4017
|
type CreateCustomvcsTokenCall = (opts: CreateCustomvcsTokenRequest) => Promise<ApiCallResponse<CreateCustomvcsTokenResult>>;
|
|
3084
4018
|
type CreateCustomvcsTokenRequest = {
|
|
3085
4019
|
parameters: CreateCustomvcsTokenParameters;
|
|
4020
|
+
options?: CreateCustomvcsTokenOptions;
|
|
3086
4021
|
};
|
|
3087
4022
|
type CreateCustomvcsTokenParameters = {
|
|
3088
4023
|
/** ID of the custom VCS */ 'customVCSId': string;
|
|
3089
4024
|
/** ID of the version control link */
|
|
3090
4025
|
'vcsLinkId': string;
|
|
3091
4026
|
};
|
|
4027
|
+
type CreateCustomvcsTokenOptions = {
|
|
4028
|
+
'force_refresh'?: boolean;
|
|
4029
|
+
};
|
|
3092
4030
|
/** Generate a token for a specific VCS link. */
|
|
3093
4031
|
declare class CreateCustomvcsTokenEndpoint extends PostApiEndpoint<CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult> {
|
|
3094
4032
|
description: string;
|
|
@@ -3510,6 +4448,8 @@ type CreateAddonResult = {
|
|
|
3510
4448
|
'storage': number;
|
|
3511
4449
|
/** The number of addon replicas to run. Example: 1 */
|
|
3512
4450
|
'replicas': number;
|
|
4451
|
+
/** Deploy addon with zonal redundancy */
|
|
4452
|
+
'zonalRedundancy'?: boolean;
|
|
3513
4453
|
};
|
|
3514
4454
|
/** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
|
|
3515
4455
|
'source'?: {
|
|
@@ -3532,8 +4472,16 @@ type CreateAddonResult = {
|
|
|
3532
4472
|
/** Enables point-in-time recovery (PITR) for the addon (if supported by the addon type). */
|
|
3533
4473
|
'pitrEnabled'?: boolean;
|
|
3534
4474
|
'typeSpecificSettings'?: {
|
|
3535
|
-
/**
|
|
3536
|
-
'
|
|
4475
|
+
/** Redis only: Key eviction policy at memory pressure. */
|
|
4476
|
+
'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
|
|
4477
|
+
/** PostgreSQL only: Run connection pooler in front of postgres instance. */
|
|
4478
|
+
'postgresqlConnectionPoolerEnabled'?: boolean;
|
|
4479
|
+
/** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
|
|
4480
|
+
'postgresqlConnectionPoolerReplicas'?: number;
|
|
4481
|
+
/** PostgreSQL only: Run connection pooler in front of read-only postgres instance. */
|
|
4482
|
+
'postgresqlReadConnectionPoolerEnabled'?: boolean;
|
|
4483
|
+
/** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
|
|
4484
|
+
'postgresqlReadConnectionPoolerReplicas'?: number;
|
|
3537
4485
|
};
|
|
3538
4486
|
'customCredentials'?: {
|
|
3539
4487
|
/** Custom database name. Not supported for all addon types. */
|
|
@@ -3584,6 +4532,8 @@ type CreateAddonData = {
|
|
|
3584
4532
|
'storage': number;
|
|
3585
4533
|
/** The number of addon replicas to run. Example: 1 */
|
|
3586
4534
|
'replicas': number;
|
|
4535
|
+
/** Deploy addon with zonal redundancy */
|
|
4536
|
+
'zonalRedundancy'?: boolean;
|
|
3587
4537
|
};
|
|
3588
4538
|
/** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
|
|
3589
4539
|
'source'?: {
|
|
@@ -3606,8 +4556,16 @@ type CreateAddonData = {
|
|
|
3606
4556
|
/** Enables point-in-time recovery (PITR) for the addon (if supported by the addon type). */
|
|
3607
4557
|
'pitrEnabled'?: boolean;
|
|
3608
4558
|
'typeSpecificSettings'?: {
|
|
3609
|
-
/**
|
|
3610
|
-
'
|
|
4559
|
+
/** Redis only: Key eviction policy at memory pressure. */
|
|
4560
|
+
'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
|
|
4561
|
+
/** PostgreSQL only: Run connection pooler in front of postgres instance. */
|
|
4562
|
+
'postgresqlConnectionPoolerEnabled'?: boolean;
|
|
4563
|
+
/** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
|
|
4564
|
+
'postgresqlConnectionPoolerReplicas'?: number;
|
|
4565
|
+
/** PostgreSQL only: Run connection pooler in front of read-only postgres instance. */
|
|
4566
|
+
'postgresqlReadConnectionPoolerEnabled'?: boolean;
|
|
4567
|
+
/** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
|
|
4568
|
+
'postgresqlReadConnectionPoolerReplicas'?: number;
|
|
3611
4569
|
};
|
|
3612
4570
|
'customCredentials'?: {
|
|
3613
4571
|
/** Custom database name. Not supported for all addon types. */
|
|
@@ -3644,6 +4602,8 @@ type PutAddonResult = {
|
|
|
3644
4602
|
'storage': number;
|
|
3645
4603
|
/** The number of addon replicas to run. Example: 1 */
|
|
3646
4604
|
'replicas': number;
|
|
4605
|
+
/** Deploy addon with zonal redundancy */
|
|
4606
|
+
'zonalRedundancy'?: boolean;
|
|
3647
4607
|
};
|
|
3648
4608
|
/** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
|
|
3649
4609
|
'source'?: {
|
|
@@ -3666,8 +4626,16 @@ type PutAddonResult = {
|
|
|
3666
4626
|
/** Enables point-in-time recovery (PITR) for the addon (if supported by the addon type). */
|
|
3667
4627
|
'pitrEnabled'?: boolean;
|
|
3668
4628
|
'typeSpecificSettings'?: {
|
|
3669
|
-
/**
|
|
3670
|
-
'
|
|
4629
|
+
/** Redis only: Key eviction policy at memory pressure. */
|
|
4630
|
+
'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
|
|
4631
|
+
/** PostgreSQL only: Run connection pooler in front of postgres instance. */
|
|
4632
|
+
'postgresqlConnectionPoolerEnabled'?: boolean;
|
|
4633
|
+
/** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
|
|
4634
|
+
'postgresqlConnectionPoolerReplicas'?: number;
|
|
4635
|
+
/** PostgreSQL only: Run connection pooler in front of read-only postgres instance. */
|
|
4636
|
+
'postgresqlReadConnectionPoolerEnabled'?: boolean;
|
|
4637
|
+
/** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
|
|
4638
|
+
'postgresqlReadConnectionPoolerReplicas'?: number;
|
|
3671
4639
|
};
|
|
3672
4640
|
'customCredentials'?: {
|
|
3673
4641
|
/** Custom database name. Not supported for all addon types. */
|
|
@@ -3718,6 +4686,8 @@ type PutAddonData = {
|
|
|
3718
4686
|
'storage': number;
|
|
3719
4687
|
/** The number of addon replicas to run. Example: 1 */
|
|
3720
4688
|
'replicas': number;
|
|
4689
|
+
/** Deploy addon with zonal redundancy */
|
|
4690
|
+
'zonalRedundancy'?: boolean;
|
|
3721
4691
|
};
|
|
3722
4692
|
/** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
|
|
3723
4693
|
'source'?: {
|
|
@@ -3740,8 +4710,16 @@ type PutAddonData = {
|
|
|
3740
4710
|
/** Enables point-in-time recovery (PITR) for the addon (if supported by the addon type). */
|
|
3741
4711
|
'pitrEnabled'?: boolean;
|
|
3742
4712
|
'typeSpecificSettings'?: {
|
|
3743
|
-
/**
|
|
3744
|
-
'
|
|
4713
|
+
/** Redis only: Key eviction policy at memory pressure. */
|
|
4714
|
+
'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
|
|
4715
|
+
/** PostgreSQL only: Run connection pooler in front of postgres instance. */
|
|
4716
|
+
'postgresqlConnectionPoolerEnabled'?: boolean;
|
|
4717
|
+
/** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
|
|
4718
|
+
'postgresqlConnectionPoolerReplicas'?: number;
|
|
4719
|
+
/** PostgreSQL only: Run connection pooler in front of read-only postgres instance. */
|
|
4720
|
+
'postgresqlReadConnectionPoolerEnabled'?: boolean;
|
|
4721
|
+
/** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
|
|
4722
|
+
'postgresqlReadConnectionPoolerReplicas'?: number;
|
|
3745
4723
|
};
|
|
3746
4724
|
'customCredentials'?: {
|
|
3747
4725
|
/** Custom database name. Not supported for all addon types. */
|
|
@@ -3765,6 +4743,8 @@ type GetAddonResult = {
|
|
|
3765
4743
|
'name': string;
|
|
3766
4744
|
/** Full identifier for the addon. Example: "/example-user/default-project/example-addon" */
|
|
3767
4745
|
'appId': string;
|
|
4746
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
4747
|
+
'tags': string[];
|
|
3768
4748
|
/** A short description of the addon. Example: "This is the addon description" */
|
|
3769
4749
|
'description'?: string;
|
|
3770
4750
|
/** The time the addon was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
@@ -3858,6 +4838,8 @@ type PatchAddonResult = {
|
|
|
3858
4838
|
'storage': number;
|
|
3859
4839
|
/** The number of addon replicas to run. Example: 1 */
|
|
3860
4840
|
'replicas': number;
|
|
4841
|
+
/** Deploy addon with zonal redundancy */
|
|
4842
|
+
'zonalRedundancy'?: boolean;
|
|
3861
4843
|
};
|
|
3862
4844
|
/** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
|
|
3863
4845
|
'source'?: {
|
|
@@ -3880,8 +4862,16 @@ type PatchAddonResult = {
|
|
|
3880
4862
|
/** Enables point-in-time recovery (PITR) for the addon (if supported by the addon type). */
|
|
3881
4863
|
'pitrEnabled'?: boolean;
|
|
3882
4864
|
'typeSpecificSettings'?: {
|
|
3883
|
-
/**
|
|
3884
|
-
'
|
|
4865
|
+
/** Redis only: Key eviction policy at memory pressure. */
|
|
4866
|
+
'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
|
|
4867
|
+
/** PostgreSQL only: Run connection pooler in front of postgres instance. */
|
|
4868
|
+
'postgresqlConnectionPoolerEnabled'?: boolean;
|
|
4869
|
+
/** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
|
|
4870
|
+
'postgresqlConnectionPoolerReplicas'?: number;
|
|
4871
|
+
/** PostgreSQL only: Run connection pooler in front of read-only postgres instance. */
|
|
4872
|
+
'postgresqlReadConnectionPoolerEnabled'?: boolean;
|
|
4873
|
+
/** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
|
|
4874
|
+
'postgresqlReadConnectionPoolerReplicas'?: number;
|
|
3885
4875
|
};
|
|
3886
4876
|
'customCredentials'?: {
|
|
3887
4877
|
/** Custom database name. Not supported for all addon types. */
|
|
@@ -3940,6 +4930,22 @@ type PatchAddonData = {
|
|
|
3940
4930
|
/** The action for this rule. Example: "DENY" */
|
|
3941
4931
|
'action': 'ALLOW' | 'DENY';
|
|
3942
4932
|
}[];
|
|
4933
|
+
'typeSpecificSettings'?: {
|
|
4934
|
+
/** Redis only: Key eviction policy at memory pressure. */
|
|
4935
|
+
'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
|
|
4936
|
+
/** PostgreSQL only: Run connection pooler in front of postgres instance. */
|
|
4937
|
+
'postgresqlConnectionPoolerEnabled'?: boolean;
|
|
4938
|
+
/** PostgreSQL only: Number of connection pooler instances in case connection pooler is enabled. */
|
|
4939
|
+
'postgresqlConnectionPoolerReplicas'?: number;
|
|
4940
|
+
/** PostgreSQL only: Run connection pooler in front of read-only postgres instance. */
|
|
4941
|
+
'postgresqlReadConnectionPoolerEnabled'?: boolean;
|
|
4942
|
+
/** PostgreSQL only: Number of read-only connection pooler instances in case read-only connection pooler is enabled. */
|
|
4943
|
+
'postgresqlReadConnectionPoolerReplicas'?: number;
|
|
4944
|
+
};
|
|
4945
|
+
'customCredentials'?: {
|
|
4946
|
+
/** Custom database name. Not supported for all addon types. */
|
|
4947
|
+
'dbName'?: string;
|
|
4948
|
+
};
|
|
3943
4949
|
'backupSchedules'?: any[];
|
|
3944
4950
|
};
|
|
3945
4951
|
/** Updates an addon */
|
|
@@ -4353,6 +5359,8 @@ declare class RestoreAddonBackupEndpoint extends PostApiEndpoint<RestoreAddonBac
|
|
|
4353
5359
|
type GetAddonRestoresResult = {
|
|
4354
5360
|
/** A list of backup restores. */
|
|
4355
5361
|
'restores'?: {
|
|
5362
|
+
/** Id of the restore, unix millis. Example: 1693287033325 */
|
|
5363
|
+
'id': number;
|
|
4356
5364
|
/** The time the backup was initiated. Example: "2021-01-20T11:19:54.494Z" */
|
|
4357
5365
|
'restoreTimestamp': string;
|
|
4358
5366
|
/** The current status of the restore. Example: "completed" */
|
|
@@ -4412,8 +5420,7 @@ declare class RetainAddonBackupEndpoint extends PostApiEndpoint<RetainAddonBacku
|
|
|
4412
5420
|
}
|
|
4413
5421
|
|
|
4414
5422
|
type GetAddonContainersResult = {
|
|
4415
|
-
|
|
4416
|
-
'containers': {
|
|
5423
|
+
'containers'?: {
|
|
4417
5424
|
/** The name of the container. Example: "example-service-78b4d4459d-sbtn8" */
|
|
4418
5425
|
'name': string;
|
|
4419
5426
|
/** The timestamp the container was created. Example: 1611241087 */
|
|
@@ -4835,6 +5842,8 @@ type ListJobsResult = {
|
|
|
4835
5842
|
'appId': string;
|
|
4836
5843
|
/** Job name Example: "Example Job" */
|
|
4837
5844
|
'name': string;
|
|
5845
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
5846
|
+
'tags': string[];
|
|
4838
5847
|
/** A short description of the job Example: "This is the job description" */
|
|
4839
5848
|
'description'?: string;
|
|
4840
5849
|
/** Type of the job (manual or cron) Example: "cron" */
|
|
@@ -4902,6 +5911,7 @@ type CreateJobCronResult = {
|
|
|
4902
5911
|
'ciIgnoreFlags'?: string[];
|
|
4903
5912
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
4904
5913
|
'dockerfileTarget'?: string;
|
|
5914
|
+
'dockerCredentials'?: string[];
|
|
4905
5915
|
/** Include .git folder inside the build context */
|
|
4906
5916
|
'includeGitFolder'?: boolean;
|
|
4907
5917
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -5204,6 +6214,7 @@ type CreateJobCronData = {
|
|
|
5204
6214
|
'ciIgnoreFlags'?: string[];
|
|
5205
6215
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
5206
6216
|
'dockerfileTarget'?: string;
|
|
6217
|
+
'dockerCredentials'?: string[];
|
|
5207
6218
|
/** Include .git folder inside the build context */
|
|
5208
6219
|
'includeGitFolder'?: boolean;
|
|
5209
6220
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -5309,6 +6320,7 @@ type PutJobCronResult = {
|
|
|
5309
6320
|
'ciIgnoreFlags'?: string[];
|
|
5310
6321
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
5311
6322
|
'dockerfileTarget'?: string;
|
|
6323
|
+
'dockerCredentials'?: string[];
|
|
5312
6324
|
/** Include .git folder inside the build context */
|
|
5313
6325
|
'includeGitFolder'?: boolean;
|
|
5314
6326
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -5611,6 +6623,7 @@ type PutJobCronData = {
|
|
|
5611
6623
|
'ciIgnoreFlags'?: string[];
|
|
5612
6624
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
5613
6625
|
'dockerfileTarget'?: string;
|
|
6626
|
+
'dockerCredentials'?: string[];
|
|
5614
6627
|
/** Include .git folder inside the build context */
|
|
5615
6628
|
'includeGitFolder'?: boolean;
|
|
5616
6629
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -5716,6 +6729,7 @@ type PatchJobCronResult = {
|
|
|
5716
6729
|
'ciIgnoreFlags'?: string[];
|
|
5717
6730
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
5718
6731
|
'dockerfileTarget'?: string;
|
|
6732
|
+
'dockerCredentials'?: string[];
|
|
5719
6733
|
/** Include .git folder inside the build context */
|
|
5720
6734
|
'includeGitFolder'?: boolean;
|
|
5721
6735
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -5903,6 +6917,7 @@ type PatchJobCronData = {
|
|
|
5903
6917
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
5904
6918
|
/** 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]"] */
|
|
5905
6919
|
'ciIgnoreFlags'?: string[];
|
|
6920
|
+
'dockerCredentials'?: string[];
|
|
5906
6921
|
};
|
|
5907
6922
|
'buildSettings'?: {
|
|
5908
6923
|
'dockerfile'?: {
|
|
@@ -6001,6 +7016,7 @@ type CreateJobManualResult = {
|
|
|
6001
7016
|
'ciIgnoreFlags'?: string[];
|
|
6002
7017
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
6003
7018
|
'dockerfileTarget'?: string;
|
|
7019
|
+
'dockerCredentials'?: string[];
|
|
6004
7020
|
/** Include .git folder inside the build context */
|
|
6005
7021
|
'includeGitFolder'?: boolean;
|
|
6006
7022
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -6297,6 +7313,7 @@ type CreateJobManualData = {
|
|
|
6297
7313
|
'ciIgnoreFlags'?: string[];
|
|
6298
7314
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
6299
7315
|
'dockerfileTarget'?: string;
|
|
7316
|
+
'dockerCredentials'?: string[];
|
|
6300
7317
|
/** Include .git folder inside the build context */
|
|
6301
7318
|
'includeGitFolder'?: boolean;
|
|
6302
7319
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -6396,6 +7413,7 @@ type PutJobManualResult = {
|
|
|
6396
7413
|
'ciIgnoreFlags'?: string[];
|
|
6397
7414
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
6398
7415
|
'dockerfileTarget'?: string;
|
|
7416
|
+
'dockerCredentials'?: string[];
|
|
6399
7417
|
/** Include .git folder inside the build context */
|
|
6400
7418
|
'includeGitFolder'?: boolean;
|
|
6401
7419
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -6692,6 +7710,7 @@ type PutJobManualData = {
|
|
|
6692
7710
|
'ciIgnoreFlags'?: string[];
|
|
6693
7711
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
6694
7712
|
'dockerfileTarget'?: string;
|
|
7713
|
+
'dockerCredentials'?: string[];
|
|
6695
7714
|
/** Include .git folder inside the build context */
|
|
6696
7715
|
'includeGitFolder'?: boolean;
|
|
6697
7716
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -6791,6 +7810,7 @@ type PatchJobManualResult = {
|
|
|
6791
7810
|
'ciIgnoreFlags'?: string[];
|
|
6792
7811
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
6793
7812
|
'dockerfileTarget'?: string;
|
|
7813
|
+
'dockerCredentials'?: string[];
|
|
6794
7814
|
/** Include .git folder inside the build context */
|
|
6795
7815
|
'includeGitFolder'?: boolean;
|
|
6796
7816
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -6972,6 +7992,7 @@ type PatchJobManualData = {
|
|
|
6972
7992
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
6973
7993
|
/** 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]"] */
|
|
6974
7994
|
'ciIgnoreFlags'?: string[];
|
|
7995
|
+
'dockerCredentials'?: string[];
|
|
6975
7996
|
};
|
|
6976
7997
|
'buildSettings'?: {
|
|
6977
7998
|
'dockerfile'?: {
|
|
@@ -7043,6 +8064,8 @@ type GetJobResult = {
|
|
|
7043
8064
|
'appId': string;
|
|
7044
8065
|
/** Job name Example: "Example Job" */
|
|
7045
8066
|
'name': string;
|
|
8067
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
8068
|
+
'tags': string[];
|
|
7046
8069
|
/** A short description of the job Example: "This is the job description" */
|
|
7047
8070
|
'description'?: string;
|
|
7048
8071
|
/** ID of the project that the job belongs to Example: "default-project" */
|
|
@@ -7078,6 +8101,7 @@ type GetJobResult = {
|
|
|
7078
8101
|
'ciIgnoreFlags'?: string[];
|
|
7079
8102
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
7080
8103
|
'dockerfileTarget'?: string;
|
|
8104
|
+
'dockerCredentials'?: string[];
|
|
7081
8105
|
/** Include .git folder inside the build context */
|
|
7082
8106
|
'includeGitFolder'?: boolean;
|
|
7083
8107
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -7515,6 +8539,7 @@ type UpdateJobBuildoptionsData = {
|
|
|
7515
8539
|
'ciIgnoreFlags'?: string[];
|
|
7516
8540
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
7517
8541
|
'dockerfileTarget'?: string;
|
|
8542
|
+
'dockerCredentials'?: string[];
|
|
7518
8543
|
/** Include .git folder inside the build context */
|
|
7519
8544
|
'includeGitFolder'?: boolean;
|
|
7520
8545
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -7549,6 +8574,7 @@ type UpdateJobBuildoptionsData = {
|
|
|
7549
8574
|
'ciIgnoreFlags'?: string[];
|
|
7550
8575
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
7551
8576
|
'dockerfileTarget'?: string;
|
|
8577
|
+
'dockerCredentials'?: string[];
|
|
7552
8578
|
/** Include .git folder inside the build context */
|
|
7553
8579
|
'includeGitFolder'?: boolean;
|
|
7554
8580
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -7659,8 +8685,7 @@ declare class AbortJobBuildEndpoint extends DeleteApiEndpoint<AbortJobBuildReque
|
|
|
7659
8685
|
}
|
|
7660
8686
|
|
|
7661
8687
|
type GetJobContainersResult = {
|
|
7662
|
-
|
|
7663
|
-
'containers': {
|
|
8688
|
+
'containers'?: {
|
|
7664
8689
|
/** The name of the container. Example: "example-service-78b4d4459d-sbtn8" */
|
|
7665
8690
|
'name': string;
|
|
7666
8691
|
/** The timestamp the container was created. Example: 1611241087 */
|
|
@@ -7670,6 +8695,8 @@ type GetJobContainersResult = {
|
|
|
7670
8695
|
/** The timestamp the container was last updated. Example: 1611241087 */
|
|
7671
8696
|
'updatedAt': number;
|
|
7672
8697
|
}[];
|
|
8698
|
+
/** The id of the associated job run. Example: "00000676-9be8-41dd-b0f7-ba7df935cf27" */
|
|
8699
|
+
'runId': string;
|
|
7673
8700
|
};
|
|
7674
8701
|
type GetJobContainersCall = (opts: GetJobContainersRequest) => Promise<ApiCallResponse<GetJobContainersResult>>;
|
|
7675
8702
|
type GetJobContainersRequest = {
|
|
@@ -7688,6 +8715,8 @@ type GetJobContainersOptions = {
|
|
|
7688
8715
|
'page'?: number;
|
|
7689
8716
|
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
7690
8717
|
'cursor'?: string;
|
|
8718
|
+
/** If provided, only returns containers for this specific job run. */
|
|
8719
|
+
'runId'?: string;
|
|
7691
8720
|
};
|
|
7692
8721
|
/** Gets a list of containers for the given job. */
|
|
7693
8722
|
declare class GetJobContainersEndpoint extends GetApiEndpoint<GetJobContainersRequest, GetJobContainersResult> {
|
|
@@ -9203,6 +10232,8 @@ type ListSecretsResult = {
|
|
|
9203
10232
|
'projectId': string;
|
|
9204
10233
|
/** Secret group name Example: "Example secret group" */
|
|
9205
10234
|
'name': string;
|
|
10235
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
10236
|
+
'tags': string[];
|
|
9206
10237
|
/** A short description of the secret group Example: "This is the secret group description" */
|
|
9207
10238
|
'description'?: string;
|
|
9208
10239
|
/** The type of the created secret group Example: "environment" */
|
|
@@ -9587,6 +10618,8 @@ type GetSecretResult = {
|
|
|
9587
10618
|
'id': string;
|
|
9588
10619
|
/** Secret group name Example: "Example secret group" */
|
|
9589
10620
|
'name': string;
|
|
10621
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
10622
|
+
'tags': string[];
|
|
9590
10623
|
/** A short description of the secret group Example: "This is the secret group description" */
|
|
9591
10624
|
'description'?: string;
|
|
9592
10625
|
/** The type of the created secret group Example: "environment" */
|
|
@@ -9828,6 +10861,8 @@ type GetSecretdetailsResult = {
|
|
|
9828
10861
|
'id': string;
|
|
9829
10862
|
/** Secret group name Example: "Example secret group" */
|
|
9830
10863
|
'name': string;
|
|
10864
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
10865
|
+
'tags': string[];
|
|
9831
10866
|
/** A short description of the secret group Example: "This is the secret group description" */
|
|
9832
10867
|
'description'?: string;
|
|
9833
10868
|
/** The type of the created secret group Example: "environment" */
|
|
@@ -9951,6 +10986,7 @@ type CreateServiceBuildResult = {
|
|
|
9951
10986
|
'ciIgnoreFlags'?: string[];
|
|
9952
10987
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
9953
10988
|
'dockerfileTarget'?: string;
|
|
10989
|
+
'dockerCredentials'?: string[];
|
|
9954
10990
|
/** Include .git folder inside the build context */
|
|
9955
10991
|
'includeGitFolder'?: boolean;
|
|
9956
10992
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -10057,6 +11093,7 @@ type CreateServiceBuildData = {
|
|
|
10057
11093
|
'ciIgnoreFlags'?: string[];
|
|
10058
11094
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
10059
11095
|
'dockerfileTarget'?: string;
|
|
11096
|
+
'dockerCredentials'?: string[];
|
|
10060
11097
|
/** Include .git folder inside the build context */
|
|
10061
11098
|
'includeGitFolder'?: boolean;
|
|
10062
11099
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -10139,6 +11176,7 @@ type PutServiceBuildResult = {
|
|
|
10139
11176
|
'ciIgnoreFlags'?: string[];
|
|
10140
11177
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
10141
11178
|
'dockerfileTarget'?: string;
|
|
11179
|
+
'dockerCredentials'?: string[];
|
|
10142
11180
|
/** Include .git folder inside the build context */
|
|
10143
11181
|
'includeGitFolder'?: boolean;
|
|
10144
11182
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -10245,6 +11283,7 @@ type PutServiceBuildData = {
|
|
|
10245
11283
|
'ciIgnoreFlags'?: string[];
|
|
10246
11284
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
10247
11285
|
'dockerfileTarget'?: string;
|
|
11286
|
+
'dockerCredentials'?: string[];
|
|
10248
11287
|
/** Include .git folder inside the build context */
|
|
10249
11288
|
'includeGitFolder'?: boolean;
|
|
10250
11289
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -10327,6 +11366,7 @@ type PatchServiceBuildResult = {
|
|
|
10327
11366
|
'ciIgnoreFlags'?: string[];
|
|
10328
11367
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
10329
11368
|
'dockerfileTarget'?: string;
|
|
11369
|
+
'dockerCredentials'?: string[];
|
|
10330
11370
|
/** Include .git folder inside the build context */
|
|
10331
11371
|
'includeGitFolder'?: boolean;
|
|
10332
11372
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -10430,6 +11470,7 @@ type PatchServiceBuildData = {
|
|
|
10430
11470
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
10431
11471
|
/** 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]"] */
|
|
10432
11472
|
'ciIgnoreFlags'?: string[];
|
|
11473
|
+
'dockerCredentials'?: string[];
|
|
10433
11474
|
};
|
|
10434
11475
|
/** An object containing the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
|
|
10435
11476
|
'buildArguments'?: any;
|
|
@@ -10538,6 +11579,7 @@ type CreateServiceCombinedResult = {
|
|
|
10538
11579
|
'ciIgnoreFlags'?: string[];
|
|
10539
11580
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
10540
11581
|
'dockerfileTarget'?: string;
|
|
11582
|
+
'dockerCredentials'?: string[];
|
|
10541
11583
|
/** Include .git folder inside the build context */
|
|
10542
11584
|
'includeGitFolder'?: boolean;
|
|
10543
11585
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -10596,6 +11638,12 @@ type CreateServiceCombinedResult = {
|
|
|
10596
11638
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
10597
11639
|
'thresholdPercentage': number;
|
|
10598
11640
|
};
|
|
11641
|
+
'rps'?: {
|
|
11642
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
11643
|
+
'enabled': boolean;
|
|
11644
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
11645
|
+
'thresholdValue': number;
|
|
11646
|
+
};
|
|
10599
11647
|
};
|
|
10600
11648
|
};
|
|
10601
11649
|
'deploymentSysctlSettings'?: {
|
|
@@ -10636,6 +11684,8 @@ type CreateServiceCombinedResult = {
|
|
|
10636
11684
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
10637
11685
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
10638
11686
|
};
|
|
11687
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
11688
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
10639
11689
|
/** Image registry url of the deployed image. */
|
|
10640
11690
|
'imageUrl'?: string;
|
|
10641
11691
|
};
|
|
@@ -10724,6 +11774,8 @@ type CreateServiceCombinedData = {
|
|
|
10724
11774
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
10725
11775
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
10726
11776
|
};
|
|
11777
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
11778
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
10727
11779
|
};
|
|
10728
11780
|
'ports'?: {
|
|
10729
11781
|
/** The name used to identify the port. Example: "port-1" */
|
|
@@ -10807,6 +11859,7 @@ type CreateServiceCombinedData = {
|
|
|
10807
11859
|
'ciIgnoreFlags'?: string[];
|
|
10808
11860
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
10809
11861
|
'dockerfileTarget'?: string;
|
|
11862
|
+
'dockerCredentials'?: string[];
|
|
10810
11863
|
/** Include .git folder inside the build context */
|
|
10811
11864
|
'includeGitFolder'?: boolean;
|
|
10812
11865
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -10865,6 +11918,12 @@ type CreateServiceCombinedData = {
|
|
|
10865
11918
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
10866
11919
|
'thresholdPercentage': number;
|
|
10867
11920
|
};
|
|
11921
|
+
'rps'?: {
|
|
11922
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
11923
|
+
'enabled': boolean;
|
|
11924
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
11925
|
+
'thresholdValue': number;
|
|
11926
|
+
};
|
|
10868
11927
|
};
|
|
10869
11928
|
};
|
|
10870
11929
|
};
|
|
@@ -10970,6 +12029,7 @@ type PutServiceCombinedResult = {
|
|
|
10970
12029
|
'ciIgnoreFlags'?: string[];
|
|
10971
12030
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
10972
12031
|
'dockerfileTarget'?: string;
|
|
12032
|
+
'dockerCredentials'?: string[];
|
|
10973
12033
|
/** Include .git folder inside the build context */
|
|
10974
12034
|
'includeGitFolder'?: boolean;
|
|
10975
12035
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -11028,6 +12088,12 @@ type PutServiceCombinedResult = {
|
|
|
11028
12088
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
11029
12089
|
'thresholdPercentage': number;
|
|
11030
12090
|
};
|
|
12091
|
+
'rps'?: {
|
|
12092
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
12093
|
+
'enabled': boolean;
|
|
12094
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
12095
|
+
'thresholdValue': number;
|
|
12096
|
+
};
|
|
11031
12097
|
};
|
|
11032
12098
|
};
|
|
11033
12099
|
'deploymentSysctlSettings'?: {
|
|
@@ -11068,6 +12134,8 @@ type PutServiceCombinedResult = {
|
|
|
11068
12134
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
11069
12135
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
11070
12136
|
};
|
|
12137
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
12138
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
11071
12139
|
/** Image registry url of the deployed image. */
|
|
11072
12140
|
'imageUrl'?: string;
|
|
11073
12141
|
};
|
|
@@ -11156,6 +12224,8 @@ type PutServiceCombinedData = {
|
|
|
11156
12224
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
11157
12225
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
11158
12226
|
};
|
|
12227
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
12228
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
11159
12229
|
};
|
|
11160
12230
|
'ports'?: {
|
|
11161
12231
|
/** The name used to identify the port. Example: "port-1" */
|
|
@@ -11239,6 +12309,7 @@ type PutServiceCombinedData = {
|
|
|
11239
12309
|
'ciIgnoreFlags'?: string[];
|
|
11240
12310
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
11241
12311
|
'dockerfileTarget'?: string;
|
|
12312
|
+
'dockerCredentials'?: string[];
|
|
11242
12313
|
/** Include .git folder inside the build context */
|
|
11243
12314
|
'includeGitFolder'?: boolean;
|
|
11244
12315
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -11297,6 +12368,12 @@ type PutServiceCombinedData = {
|
|
|
11297
12368
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
11298
12369
|
'thresholdPercentage': number;
|
|
11299
12370
|
};
|
|
12371
|
+
'rps'?: {
|
|
12372
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
12373
|
+
'enabled': boolean;
|
|
12374
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
12375
|
+
'thresholdValue': number;
|
|
12376
|
+
};
|
|
11300
12377
|
};
|
|
11301
12378
|
};
|
|
11302
12379
|
};
|
|
@@ -11402,6 +12479,7 @@ type PatchServiceCombinedResult = {
|
|
|
11402
12479
|
'ciIgnoreFlags'?: string[];
|
|
11403
12480
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
11404
12481
|
'dockerfileTarget'?: string;
|
|
12482
|
+
'dockerCredentials'?: string[];
|
|
11405
12483
|
/** Include .git folder inside the build context */
|
|
11406
12484
|
'includeGitFolder'?: boolean;
|
|
11407
12485
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -11460,6 +12538,12 @@ type PatchServiceCombinedResult = {
|
|
|
11460
12538
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
11461
12539
|
'thresholdPercentage': number;
|
|
11462
12540
|
};
|
|
12541
|
+
'rps'?: {
|
|
12542
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
12543
|
+
'enabled': boolean;
|
|
12544
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
12545
|
+
'thresholdValue': number;
|
|
12546
|
+
};
|
|
11463
12547
|
};
|
|
11464
12548
|
};
|
|
11465
12549
|
'deploymentSysctlSettings'?: {
|
|
@@ -11500,6 +12584,8 @@ type PatchServiceCombinedResult = {
|
|
|
11500
12584
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
11501
12585
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
11502
12586
|
};
|
|
12587
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
12588
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
11503
12589
|
/** Image registry url of the deployed image. */
|
|
11504
12590
|
'imageUrl'?: string;
|
|
11505
12591
|
};
|
|
@@ -11579,6 +12665,8 @@ type PatchServiceCombinedData = {
|
|
|
11579
12665
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
11580
12666
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
11581
12667
|
};
|
|
12668
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
12669
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
11582
12670
|
};
|
|
11583
12671
|
'ports'?: {
|
|
11584
12672
|
/** The name used to identify the port. Example: "port-1" */
|
|
@@ -11659,6 +12747,7 @@ type PatchServiceCombinedData = {
|
|
|
11659
12747
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
11660
12748
|
/** 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]"] */
|
|
11661
12749
|
'ciIgnoreFlags'?: string[];
|
|
12750
|
+
'dockerCredentials'?: string[];
|
|
11662
12751
|
};
|
|
11663
12752
|
/** 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"} */
|
|
11664
12753
|
'runtimeEnvironment'?: any;
|
|
@@ -11711,6 +12800,12 @@ type PatchServiceCombinedData = {
|
|
|
11711
12800
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
11712
12801
|
'thresholdPercentage'?: number;
|
|
11713
12802
|
};
|
|
12803
|
+
'rps'?: {
|
|
12804
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
12805
|
+
'enabled'?: boolean;
|
|
12806
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
12807
|
+
'thresholdValue'?: number;
|
|
12808
|
+
};
|
|
11714
12809
|
};
|
|
11715
12810
|
};
|
|
11716
12811
|
};
|
|
@@ -11815,6 +12910,12 @@ type CreateServiceDeploymentResult = {
|
|
|
11815
12910
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
11816
12911
|
'thresholdPercentage': number;
|
|
11817
12912
|
};
|
|
12913
|
+
'rps'?: {
|
|
12914
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
12915
|
+
'enabled': boolean;
|
|
12916
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
12917
|
+
'thresholdValue': number;
|
|
12918
|
+
};
|
|
11818
12919
|
};
|
|
11819
12920
|
};
|
|
11820
12921
|
'deploymentSysctlSettings'?: {
|
|
@@ -11855,6 +12956,8 @@ type CreateServiceDeploymentResult = {
|
|
|
11855
12956
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
11856
12957
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
11857
12958
|
};
|
|
12959
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
12960
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
11858
12961
|
'internal'?: {
|
|
11859
12962
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
11860
12963
|
'id'?: string;
|
|
@@ -11953,6 +13056,8 @@ type CreateServiceDeploymentData = {
|
|
|
11953
13056
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
11954
13057
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
11955
13058
|
};
|
|
13059
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13060
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
11956
13061
|
'internal': {
|
|
11957
13062
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
11958
13063
|
'id'?: string;
|
|
@@ -11996,6 +13101,8 @@ type CreateServiceDeploymentData = {
|
|
|
11996
13101
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
11997
13102
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
11998
13103
|
};
|
|
13104
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13105
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
11999
13106
|
'external': {
|
|
12000
13107
|
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
12001
13108
|
'imagePath': string;
|
|
@@ -12035,6 +13142,8 @@ type CreateServiceDeploymentData = {
|
|
|
12035
13142
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12036
13143
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12037
13144
|
};
|
|
13145
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13146
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
12038
13147
|
};
|
|
12039
13148
|
'ports'?: {
|
|
12040
13149
|
/** The name used to identify the port. Example: "port-1" */
|
|
@@ -12117,6 +13226,12 @@ type CreateServiceDeploymentData = {
|
|
|
12117
13226
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
12118
13227
|
'thresholdPercentage': number;
|
|
12119
13228
|
};
|
|
13229
|
+
'rps'?: {
|
|
13230
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
13231
|
+
'enabled': boolean;
|
|
13232
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
13233
|
+
'thresholdValue': number;
|
|
13234
|
+
};
|
|
12120
13235
|
};
|
|
12121
13236
|
};
|
|
12122
13237
|
};
|
|
@@ -12221,6 +13336,12 @@ type PutServiceDeploymentResult = {
|
|
|
12221
13336
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
12222
13337
|
'thresholdPercentage': number;
|
|
12223
13338
|
};
|
|
13339
|
+
'rps'?: {
|
|
13340
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
13341
|
+
'enabled': boolean;
|
|
13342
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
13343
|
+
'thresholdValue': number;
|
|
13344
|
+
};
|
|
12224
13345
|
};
|
|
12225
13346
|
};
|
|
12226
13347
|
'deploymentSysctlSettings'?: {
|
|
@@ -12261,6 +13382,8 @@ type PutServiceDeploymentResult = {
|
|
|
12261
13382
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12262
13383
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12263
13384
|
};
|
|
13385
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13386
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
12264
13387
|
'internal'?: {
|
|
12265
13388
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
12266
13389
|
'id'?: string;
|
|
@@ -12359,6 +13482,8 @@ type PutServiceDeploymentData = {
|
|
|
12359
13482
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12360
13483
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12361
13484
|
};
|
|
13485
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13486
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
12362
13487
|
'internal': {
|
|
12363
13488
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
12364
13489
|
'id'?: string;
|
|
@@ -12402,6 +13527,8 @@ type PutServiceDeploymentData = {
|
|
|
12402
13527
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12403
13528
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12404
13529
|
};
|
|
13530
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13531
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
12405
13532
|
'external': {
|
|
12406
13533
|
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
12407
13534
|
'imagePath': string;
|
|
@@ -12441,6 +13568,8 @@ type PutServiceDeploymentData = {
|
|
|
12441
13568
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12442
13569
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12443
13570
|
};
|
|
13571
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13572
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
12444
13573
|
};
|
|
12445
13574
|
'ports'?: {
|
|
12446
13575
|
/** The name used to identify the port. Example: "port-1" */
|
|
@@ -12523,6 +13652,12 @@ type PutServiceDeploymentData = {
|
|
|
12523
13652
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
12524
13653
|
'thresholdPercentage': number;
|
|
12525
13654
|
};
|
|
13655
|
+
'rps'?: {
|
|
13656
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
13657
|
+
'enabled': boolean;
|
|
13658
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
13659
|
+
'thresholdValue': number;
|
|
13660
|
+
};
|
|
12526
13661
|
};
|
|
12527
13662
|
};
|
|
12528
13663
|
};
|
|
@@ -12627,6 +13762,12 @@ type PatchServiceDeploymentResult = {
|
|
|
12627
13762
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
12628
13763
|
'thresholdPercentage': number;
|
|
12629
13764
|
};
|
|
13765
|
+
'rps'?: {
|
|
13766
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
13767
|
+
'enabled': boolean;
|
|
13768
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
13769
|
+
'thresholdValue': number;
|
|
13770
|
+
};
|
|
12630
13771
|
};
|
|
12631
13772
|
};
|
|
12632
13773
|
'deploymentSysctlSettings'?: {
|
|
@@ -12667,6 +13808,8 @@ type PatchServiceDeploymentResult = {
|
|
|
12667
13808
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12668
13809
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12669
13810
|
};
|
|
13811
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13812
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
12670
13813
|
'internal'?: {
|
|
12671
13814
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
12672
13815
|
'id'?: string;
|
|
@@ -12765,6 +13908,8 @@ type PatchServiceDeploymentData = {
|
|
|
12765
13908
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12766
13909
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12767
13910
|
};
|
|
13911
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13912
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
12768
13913
|
'internal': {
|
|
12769
13914
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
12770
13915
|
'id'?: string;
|
|
@@ -12808,6 +13953,8 @@ type PatchServiceDeploymentData = {
|
|
|
12808
13953
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12809
13954
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12810
13955
|
};
|
|
13956
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13957
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
12811
13958
|
'external': {
|
|
12812
13959
|
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
12813
13960
|
'imagePath': string;
|
|
@@ -12847,6 +13994,8 @@ type PatchServiceDeploymentData = {
|
|
|
12847
13994
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
12848
13995
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
12849
13996
|
};
|
|
13997
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
13998
|
+
'zonalRedundancy'?: 'preferred' | 'disabled';
|
|
12850
13999
|
};
|
|
12851
14000
|
'ports'?: {
|
|
12852
14001
|
/** The name used to identify the port. Example: "port-1" */
|
|
@@ -12927,6 +14076,12 @@ type PatchServiceDeploymentData = {
|
|
|
12927
14076
|
/** Threshold memory usage percentage at which the workload will be scaled */
|
|
12928
14077
|
'thresholdPercentage'?: number;
|
|
12929
14078
|
};
|
|
14079
|
+
'rps'?: {
|
|
14080
|
+
/** Whether autoscaling should take into requests-per-second */
|
|
14081
|
+
'enabled'?: boolean;
|
|
14082
|
+
/** Threshold rps value on which the workload will be scaled */
|
|
14083
|
+
'thresholdValue'?: number;
|
|
14084
|
+
};
|
|
12930
14085
|
};
|
|
12931
14086
|
};
|
|
12932
14087
|
};
|
|
@@ -12946,6 +14101,8 @@ type GetServiceResult = {
|
|
|
12946
14101
|
'appId': string;
|
|
12947
14102
|
/** Service name Example: "Example Service" */
|
|
12948
14103
|
'name': string;
|
|
14104
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
14105
|
+
'tags': string[];
|
|
12949
14106
|
/** A short description of the service Example: "This is the service description" */
|
|
12950
14107
|
'description'?: string;
|
|
12951
14108
|
/** ID of the project that the service belongs to Example: "default-project" */
|
|
@@ -13062,6 +14219,7 @@ type GetServiceResult = {
|
|
|
13062
14219
|
'branchRestrictions'?: string[];
|
|
13063
14220
|
'prRestrictions'?: string[];
|
|
13064
14221
|
'pathIgnoreRules': string[];
|
|
14222
|
+
'dockerCredentials'?: string[];
|
|
13065
14223
|
};
|
|
13066
14224
|
'buildEngineConfiguration'?: {
|
|
13067
14225
|
/** The build engine used. Example: "buildpack" */
|
|
@@ -13506,6 +14664,7 @@ type UpdateServiceBuildoptionsData = {
|
|
|
13506
14664
|
'ciIgnoreFlags'?: string[];
|
|
13507
14665
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
13508
14666
|
'dockerfileTarget'?: string;
|
|
14667
|
+
'dockerCredentials'?: string[];
|
|
13509
14668
|
/** Include .git folder inside the build context */
|
|
13510
14669
|
'includeGitFolder'?: boolean;
|
|
13511
14670
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -13544,6 +14703,7 @@ type UpdateServiceBuildoptionsData = {
|
|
|
13544
14703
|
'ciIgnoreFlags'?: string[];
|
|
13545
14704
|
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
13546
14705
|
'dockerfileTarget'?: string;
|
|
14706
|
+
'dockerCredentials'?: string[];
|
|
13547
14707
|
/** Include .git folder inside the build context */
|
|
13548
14708
|
'includeGitFolder'?: boolean;
|
|
13549
14709
|
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
@@ -13654,8 +14814,7 @@ declare class AbortServiceBuildEndpoint extends DeleteApiEndpoint<AbortServiceBu
|
|
|
13654
14814
|
}
|
|
13655
14815
|
|
|
13656
14816
|
type GetServiceContainersResult = {
|
|
13657
|
-
|
|
13658
|
-
'containers': {
|
|
14817
|
+
'containers'?: {
|
|
13659
14818
|
/** The name of the container. Example: "example-service-78b4d4459d-sbtn8" */
|
|
13660
14819
|
'name': string;
|
|
13661
14820
|
/** The timestamp the container was created. Example: 1611241087 */
|
|
@@ -14393,25 +15552,31 @@ type ListVolumesResult = {
|
|
|
14393
15552
|
'id': string;
|
|
14394
15553
|
/** Volume name Example: "Example Volume" */
|
|
14395
15554
|
'name': string;
|
|
15555
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
15556
|
+
'tags': string[];
|
|
14396
15557
|
/** Information about the desired size and type of the volume. Storage class is only configurable with the relevant feature flag enabled for your account. */
|
|
14397
15558
|
'spec': {
|
|
15559
|
+
/** Access mode of the volume. Only `ReadWriteOnce` generally available. */
|
|
15560
|
+
'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
|
|
14398
15561
|
/** The type of the storage. Example: "ssd" */
|
|
14399
15562
|
'storageClassName'?: 'ssd';
|
|
14400
15563
|
/** Storage size of the SSD. Example: 4096 */
|
|
14401
15564
|
'storageSize': number;
|
|
14402
15565
|
} | {
|
|
15566
|
+
/** Access mode of the volume. Only `ReadWriteOnce` generally available. */
|
|
15567
|
+
'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
|
|
14403
15568
|
/** The type of the storage. Example: "hdd" */
|
|
14404
15569
|
'storageClassName': 'hdd';
|
|
14405
15570
|
/** Storage size of the HDD. Example: 40960 */
|
|
14406
15571
|
'storageSize': number;
|
|
14407
15572
|
};
|
|
14408
|
-
/**
|
|
14409
|
-
'
|
|
15573
|
+
/** List of objects this volume is attached to. */
|
|
15574
|
+
'attachedObjects'?: {
|
|
14410
15575
|
/** The id of object to attach this volume to. Example: "example-service" */
|
|
14411
15576
|
'id': string;
|
|
14412
15577
|
/** The type of the object to attach this volume to. Example: "service" */
|
|
14413
15578
|
'type': 'service';
|
|
14414
|
-
};
|
|
15579
|
+
}[];
|
|
14415
15580
|
/** Status the volume is in on the cluster Example: "BOUND" */
|
|
14416
15581
|
'status': string;
|
|
14417
15582
|
/** The timestamp the volume was created at Example: "2021-01-01 12:00:00.000Z" */
|
|
@@ -14440,25 +15605,31 @@ type CreateVolumeResult = {
|
|
|
14440
15605
|
'id': string;
|
|
14441
15606
|
/** Volume name Example: "Example Volume" */
|
|
14442
15607
|
'name': string;
|
|
15608
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
15609
|
+
'tags': string[];
|
|
14443
15610
|
/** Information about the desired size and type of the volume. Storage class is only configurable with the relevant feature flag enabled for your account. */
|
|
14444
15611
|
'spec': {
|
|
15612
|
+
/** Access mode of the volume. Only `ReadWriteOnce` generally available. */
|
|
15613
|
+
'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
|
|
14445
15614
|
/** The type of the storage. Example: "ssd" */
|
|
14446
15615
|
'storageClassName'?: 'ssd';
|
|
14447
15616
|
/** Storage size of the SSD. Example: 4096 */
|
|
14448
15617
|
'storageSize': number;
|
|
14449
15618
|
} | {
|
|
15619
|
+
/** Access mode of the volume. Only `ReadWriteOnce` generally available. */
|
|
15620
|
+
'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
|
|
14450
15621
|
/** The type of the storage. Example: "hdd" */
|
|
14451
15622
|
'storageClassName': 'hdd';
|
|
14452
15623
|
/** Storage size of the HDD. Example: 40960 */
|
|
14453
15624
|
'storageSize': number;
|
|
14454
15625
|
};
|
|
14455
|
-
/**
|
|
14456
|
-
'
|
|
15626
|
+
/** List of objects this volume is attached to. */
|
|
15627
|
+
'attachedObjects'?: {
|
|
14457
15628
|
/** The id of object to attach this volume to. Example: "example-service" */
|
|
14458
15629
|
'id': string;
|
|
14459
15630
|
/** The type of the object to attach this volume to. Example: "service" */
|
|
14460
15631
|
'type': 'service';
|
|
14461
|
-
};
|
|
15632
|
+
}[];
|
|
14462
15633
|
/** Status the volume is in on the cluster Example: "BOUND" */
|
|
14463
15634
|
'status': string;
|
|
14464
15635
|
/** The timestamp the volume was created at Example: "2021-01-01 12:00:00.000Z" */
|
|
@@ -14488,23 +15659,34 @@ type CreateVolumeData = {
|
|
|
14488
15659
|
}[];
|
|
14489
15660
|
/** Information about the desired size and type of the volume. Storage class is only configurable with the relevant feature flag enabled for your account. */
|
|
14490
15661
|
'spec': {
|
|
15662
|
+
/** Access mode of the volume. Only `ReadWriteOnce` generally available. */
|
|
15663
|
+
'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
|
|
14491
15664
|
/** The type of the storage. Example: "ssd" */
|
|
14492
15665
|
'storageClassName'?: 'ssd';
|
|
14493
15666
|
/** Storage size of the SSD. Example: 4096 */
|
|
14494
15667
|
'storageSize': number;
|
|
14495
15668
|
} | {
|
|
15669
|
+
/** Access mode of the volume. Only `ReadWriteOnce` generally available. */
|
|
15670
|
+
'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
|
|
14496
15671
|
/** The type of the storage. Example: "hdd" */
|
|
14497
15672
|
'storageClassName': 'hdd';
|
|
14498
15673
|
/** Storage size of the HDD. Example: 40960 */
|
|
14499
15674
|
'storageSize': number;
|
|
14500
15675
|
};
|
|
14501
|
-
/** The object to attach this volume to. */
|
|
15676
|
+
/** DEPRECATED: The object to attach this volume to. */
|
|
14502
15677
|
'owningObject'?: {
|
|
15678
|
+
/** The id of object to attach this volume to. */
|
|
15679
|
+
'id': string;
|
|
15680
|
+
/** The type of the object to attach this volume to. */
|
|
15681
|
+
'type': 'service';
|
|
15682
|
+
};
|
|
15683
|
+
/** Array of objects this volume is attached to. */
|
|
15684
|
+
'attachedObjects'?: {
|
|
14503
15685
|
/** The id of object to attach this volume to. Example: "example-service" */
|
|
14504
15686
|
'id': string;
|
|
14505
15687
|
/** The type of the object to attach this volume to. Example: "service" */
|
|
14506
15688
|
'type': 'service';
|
|
14507
|
-
};
|
|
15689
|
+
}[];
|
|
14508
15690
|
};
|
|
14509
15691
|
/** Creates a volume with the specified payload */
|
|
14510
15692
|
declare class CreateVolumeEndpoint extends PostApiEndpoint<CreateVolumeRequest, CreateVolumeResult> {
|
|
@@ -14520,25 +15702,31 @@ type GetVolumeResult = {
|
|
|
14520
15702
|
'id': string;
|
|
14521
15703
|
/** Volume name Example: "Example Volume" */
|
|
14522
15704
|
'name': string;
|
|
15705
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
15706
|
+
'tags': string[];
|
|
14523
15707
|
/** Information about the desired size and type of the volume. Storage class is only configurable with the relevant feature flag enabled for your account. */
|
|
14524
15708
|
'spec': {
|
|
15709
|
+
/** Access mode of the volume. Only `ReadWriteOnce` generally available. */
|
|
15710
|
+
'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
|
|
14525
15711
|
/** The type of the storage. Example: "ssd" */
|
|
14526
15712
|
'storageClassName'?: 'ssd';
|
|
14527
15713
|
/** Storage size of the SSD. Example: 4096 */
|
|
14528
15714
|
'storageSize': number;
|
|
14529
15715
|
} | {
|
|
15716
|
+
/** Access mode of the volume. Only `ReadWriteOnce` generally available. */
|
|
15717
|
+
'accessMode': 'ReadWriteOnce' | 'ReadWriteMany';
|
|
14530
15718
|
/** The type of the storage. Example: "hdd" */
|
|
14531
15719
|
'storageClassName': 'hdd';
|
|
14532
15720
|
/** Storage size of the HDD. Example: 40960 */
|
|
14533
15721
|
'storageSize': number;
|
|
14534
15722
|
};
|
|
14535
|
-
/**
|
|
14536
|
-
'
|
|
15723
|
+
/** List of objects this volume is attached to. */
|
|
15724
|
+
'attachedObjects'?: {
|
|
14537
15725
|
/** The id of object to attach this volume to. Example: "example-service" */
|
|
14538
15726
|
'id': string;
|
|
14539
15727
|
/** The type of the object to attach this volume to. Example: "service" */
|
|
14540
15728
|
'type': 'service';
|
|
14541
|
-
};
|
|
15729
|
+
}[];
|
|
14542
15730
|
/** Status the volume is in on the cluster Example: "BOUND" */
|
|
14543
15731
|
'status': string;
|
|
14544
15732
|
/** The timestamp the volume was created at Example: "2021-01-01 12:00:00.000Z" */
|
|
@@ -14628,8 +15816,15 @@ type AttachVolumeParameters = {
|
|
|
14628
15816
|
'volumeId': string;
|
|
14629
15817
|
};
|
|
14630
15818
|
type AttachVolumeData = {
|
|
15819
|
+
/** DEPRECATED: The object to attach this volume to. */
|
|
15820
|
+
'owningObject'?: {
|
|
15821
|
+
/** The id of object to attach this volume to. */
|
|
15822
|
+
'id': string;
|
|
15823
|
+
/** The type of the object to attach this volume to. */
|
|
15824
|
+
'type': 'service';
|
|
15825
|
+
};
|
|
14631
15826
|
/** The object to attach this volume to. */
|
|
14632
|
-
'
|
|
15827
|
+
'nfObject'?: {
|
|
14633
15828
|
/** The id of object to attach this volume to. Example: "example-service" */
|
|
14634
15829
|
'id': string;
|
|
14635
15830
|
/** The type of the object to attach this volume to. Example: "service" */
|
|
@@ -14656,7 +15851,15 @@ type DetachVolumeParameters = {
|
|
|
14656
15851
|
/** ID of the volume */
|
|
14657
15852
|
'volumeId': string;
|
|
14658
15853
|
};
|
|
14659
|
-
type DetachVolumeData =
|
|
15854
|
+
type DetachVolumeData = {
|
|
15855
|
+
/** The object to detach this volume to. */
|
|
15856
|
+
'nfObject': {
|
|
15857
|
+
/** The id of object to detach this volume to. Example: "example-service" */
|
|
15858
|
+
'id': string;
|
|
15859
|
+
/** The type of the object to detach this volume to. Example: "service" */
|
|
15860
|
+
'type': 'service';
|
|
15861
|
+
};
|
|
15862
|
+
};
|
|
14660
15863
|
/** Detach a volume */
|
|
14661
15864
|
declare class DetachVolumeEndpoint extends PostApiEndpoint<DetachVolumeRequest, DetachVolumeResult> {
|
|
14662
15865
|
description: string;
|
|
@@ -15641,8 +16844,13 @@ declare class ApiClient {
|
|
|
15641
16844
|
backups: GetAddonBackupsCall;
|
|
15642
16845
|
backup: GetAddonBackupCall & {
|
|
15643
16846
|
download: GetAddonBackupDownloadCall;
|
|
16847
|
+
logs: GetAddonBackupLogsCall;
|
|
16848
|
+
logTail: TailAddonBackupLogsCall;
|
|
16849
|
+
};
|
|
16850
|
+
restores: GetAddonRestoresCall & {
|
|
16851
|
+
logs: GetAddonRestoresLogsCall;
|
|
16852
|
+
logTail: TailAddonRestoresLogsCall;
|
|
15644
16853
|
};
|
|
15645
|
-
restores: GetAddonRestoresCall;
|
|
15646
16854
|
containers: GetAddonContainersCall;
|
|
15647
16855
|
credentials: GetAddonCredentialsCall;
|
|
15648
16856
|
pitrWindow: GetAddonPitrwindowCall;
|
|
@@ -15655,13 +16863,17 @@ declare class ApiClient {
|
|
|
15655
16863
|
invoice: {
|
|
15656
16864
|
details: GetInvoiceDetailsCall;
|
|
15657
16865
|
};
|
|
15658
|
-
|
|
15659
|
-
|
|
16866
|
+
cloud: {
|
|
16867
|
+
cluster: GetCloudClusterCall;
|
|
16868
|
+
dockerRegistry: GetCloudDockerregistryCall;
|
|
16869
|
+
integration: GetCloudIntegrationCall;
|
|
16870
|
+
};
|
|
15660
16871
|
dnsId: GetDnsidCall;
|
|
15661
16872
|
domain: GetDomainCall;
|
|
15662
16873
|
subdomain: GetSubdomainCall;
|
|
15663
16874
|
logSink: GetLogsinkCall;
|
|
15664
|
-
|
|
16875
|
+
notification: GetNotificationCall;
|
|
16876
|
+
registryCredentials: GetRegistrycredentialsCall;
|
|
15665
16877
|
project: GetProjectCall;
|
|
15666
16878
|
job: GetJobCall & {
|
|
15667
16879
|
branches: GetJobBranchesCall;
|
|
@@ -15722,12 +16934,18 @@ declare class ApiClient {
|
|
|
15722
16934
|
};
|
|
15723
16935
|
list: {
|
|
15724
16936
|
invoices: ListInvoicesCall;
|
|
15725
|
-
|
|
15726
|
-
|
|
15727
|
-
|
|
16937
|
+
cloud: {
|
|
16938
|
+
providers: ListCloudProvidersCall;
|
|
16939
|
+
clusters: ListCloudClustersCall;
|
|
16940
|
+
dockerRegistry: ListCloudDockerregistryCall;
|
|
16941
|
+
integrations: ListCloudIntegrationsCall;
|
|
16942
|
+
nodeTypes: ListCloudNodetypesCall;
|
|
16943
|
+
regions: ListCloudRegionsCall;
|
|
16944
|
+
};
|
|
15728
16945
|
domains: ListDomainsCall;
|
|
15729
16946
|
logSinks: ListLogsinksCall;
|
|
15730
|
-
|
|
16947
|
+
notifications: ListNotificationsCall;
|
|
16948
|
+
registryCredentials: ListRegistrycredentialsCall;
|
|
15731
16949
|
vcs: ListVcsCall;
|
|
15732
16950
|
repos: ListReposCall;
|
|
15733
16951
|
branches: ListBranchesCall;
|
|
@@ -15747,10 +16965,14 @@ declare class ApiClient {
|
|
|
15747
16965
|
templateRuns: ListTemplaterunsCall;
|
|
15748
16966
|
};
|
|
15749
16967
|
create: {
|
|
15750
|
-
|
|
15751
|
-
|
|
16968
|
+
cloud: {
|
|
16969
|
+
cluster: CreateCloudClusterCall;
|
|
16970
|
+
dockerRegistry: CreateCloudDockerregistryCall;
|
|
16971
|
+
integration: CreateCloudIntegrationCall;
|
|
16972
|
+
};
|
|
15752
16973
|
domain: CreateDomainCall;
|
|
15753
16974
|
logSink: CreateLogsinkCall;
|
|
16975
|
+
notification: CreateNotificationCall;
|
|
15754
16976
|
customVcs: {
|
|
15755
16977
|
token: CreateCustomvcsTokenCall;
|
|
15756
16978
|
};
|
|
@@ -15772,10 +16994,13 @@ declare class ApiClient {
|
|
|
15772
16994
|
template: CreateTemplateCall;
|
|
15773
16995
|
};
|
|
15774
16996
|
update: {
|
|
15775
|
-
|
|
15776
|
-
|
|
16997
|
+
cloud: {
|
|
16998
|
+
cluster: UpdateCloudClusterCall;
|
|
16999
|
+
integration: UpdateCloudIntegrationCall;
|
|
17000
|
+
};
|
|
15777
17001
|
logSink: UpdateLogsinkCall;
|
|
15778
|
-
|
|
17002
|
+
notification: UpdateNotificationCall;
|
|
17003
|
+
registryCredentials: UpdateRegistrycredentialsCall;
|
|
15779
17004
|
addon: {
|
|
15780
17005
|
networkSettings: UpdateAddonNetworksettingsCall;
|
|
15781
17006
|
security: UpdateAddonSecurityCall;
|
|
@@ -15807,12 +17032,16 @@ declare class ApiClient {
|
|
|
15807
17032
|
template: UpdateTemplateCall;
|
|
15808
17033
|
};
|
|
15809
17034
|
delete: {
|
|
15810
|
-
|
|
15811
|
-
|
|
17035
|
+
cloud: {
|
|
17036
|
+
cluster: DeleteCloudClusterCall;
|
|
17037
|
+
dockerRegistry: DeleteCloudDockerregistryCall;
|
|
17038
|
+
integration: DeleteCloudIntegrationCall;
|
|
17039
|
+
};
|
|
15812
17040
|
domain: DeleteDomainCall;
|
|
15813
17041
|
subdomain: DeleteSubdomainCall;
|
|
15814
17042
|
logSink: DeleteLogsinkCall;
|
|
15815
|
-
|
|
17043
|
+
notification: DeleteNotificationCall;
|
|
17044
|
+
registryCredentials: DeleteRegistrycredentialsCall;
|
|
15816
17045
|
project: DeleteProjectCall;
|
|
15817
17046
|
addon: DeleteAddonCall & {
|
|
15818
17047
|
backupSchedule: DeleteAddonBackupscheduleCall;
|
|
@@ -15830,7 +17059,7 @@ declare class ApiClient {
|
|
|
15830
17059
|
domain: {
|
|
15831
17060
|
subdomain: AddDomainSubdomainCall;
|
|
15832
17061
|
};
|
|
15833
|
-
|
|
17062
|
+
registryCredentials: AddRegistrycredentialsCall;
|
|
15834
17063
|
};
|
|
15835
17064
|
assign: {
|
|
15836
17065
|
subdomain: {
|
|
@@ -15982,13 +17211,17 @@ declare class ApiClient {
|
|
|
15982
17211
|
invoice: {
|
|
15983
17212
|
details: GetInvoiceDetailsEndpoint;
|
|
15984
17213
|
};
|
|
15985
|
-
|
|
15986
|
-
|
|
17214
|
+
cloud: {
|
|
17215
|
+
cluster: GetCloudClusterEndpoint;
|
|
17216
|
+
dockerRegistry: GetCloudDockerregistryEndpoint;
|
|
17217
|
+
integration: GetCloudIntegrationEndpoint;
|
|
17218
|
+
};
|
|
15987
17219
|
dnsId: GetDnsidEndpoint;
|
|
15988
17220
|
domain: GetDomainEndpoint;
|
|
15989
17221
|
subdomain: GetSubdomainEndpoint;
|
|
15990
17222
|
logSink: GetLogsinkEndpoint;
|
|
15991
|
-
|
|
17223
|
+
notification: GetNotificationEndpoint;
|
|
17224
|
+
registryCredentials: GetRegistrycredentialsEndpoint;
|
|
15992
17225
|
project: GetProjectEndpoint;
|
|
15993
17226
|
job: GetJobEndpoint & {
|
|
15994
17227
|
branches: GetJobBranchesEndpoint;
|
|
@@ -16033,12 +17266,18 @@ declare class ApiClient {
|
|
|
16033
17266
|
};
|
|
16034
17267
|
list: {
|
|
16035
17268
|
invoices: ListInvoicesEndpoint;
|
|
16036
|
-
|
|
16037
|
-
|
|
16038
|
-
|
|
17269
|
+
cloud: {
|
|
17270
|
+
providers: ListCloudProvidersEndpoint;
|
|
17271
|
+
clusters: ListCloudClustersEndpoint;
|
|
17272
|
+
dockerRegistry: ListCloudDockerregistryEndpoint;
|
|
17273
|
+
integrations: ListCloudIntegrationsEndpoint;
|
|
17274
|
+
nodeTypes: ListCloudNodetypesEndpoint;
|
|
17275
|
+
regions: ListCloudRegionsEndpoint;
|
|
17276
|
+
};
|
|
16039
17277
|
domains: ListDomainsEndpoint;
|
|
16040
17278
|
logSinks: ListLogsinksEndpoint;
|
|
16041
|
-
|
|
17279
|
+
notifications: ListNotificationsEndpoint;
|
|
17280
|
+
registryCredentials: ListRegistrycredentialsEndpoint;
|
|
16042
17281
|
vcs: ListVcsEndpoint;
|
|
16043
17282
|
repos: ListReposEndpoint;
|
|
16044
17283
|
branches: ListBranchesEndpoint;
|
|
@@ -16058,10 +17297,14 @@ declare class ApiClient {
|
|
|
16058
17297
|
templateRuns: ListTemplaterunsEndpoint;
|
|
16059
17298
|
};
|
|
16060
17299
|
create: {
|
|
16061
|
-
|
|
16062
|
-
|
|
17300
|
+
cloud: {
|
|
17301
|
+
cluster: CreateCloudClusterEndpoint;
|
|
17302
|
+
dockerRegistry: CreateCloudDockerregistryEndpoint;
|
|
17303
|
+
integration: CreateCloudIntegrationEndpoint;
|
|
17304
|
+
};
|
|
16063
17305
|
domain: CreateDomainEndpoint;
|
|
16064
17306
|
logSink: CreateLogsinkEndpoint;
|
|
17307
|
+
notification: CreateNotificationEndpoint;
|
|
16065
17308
|
customVcs: {
|
|
16066
17309
|
token: CreateCustomvcsTokenEndpoint;
|
|
16067
17310
|
};
|
|
@@ -16083,10 +17326,13 @@ declare class ApiClient {
|
|
|
16083
17326
|
template: CreateTemplateEndpoint;
|
|
16084
17327
|
};
|
|
16085
17328
|
update: {
|
|
16086
|
-
|
|
16087
|
-
|
|
17329
|
+
cloud: {
|
|
17330
|
+
cluster: UpdateCloudClusterEndpoint;
|
|
17331
|
+
integration: UpdateCloudIntegrationEndpoint;
|
|
17332
|
+
};
|
|
16088
17333
|
logSink: UpdateLogsinkEndpoint;
|
|
16089
|
-
|
|
17334
|
+
notification: UpdateNotificationEndpoint;
|
|
17335
|
+
registryCredentials: UpdateRegistrycredentialsEndpoint;
|
|
16090
17336
|
addon: {
|
|
16091
17337
|
networkSettings: UpdateAddonNetworksettingsEndpoint;
|
|
16092
17338
|
security: UpdateAddonSecurityEndpoint;
|
|
@@ -16118,12 +17364,16 @@ declare class ApiClient {
|
|
|
16118
17364
|
template: UpdateTemplateEndpoint;
|
|
16119
17365
|
};
|
|
16120
17366
|
delete: {
|
|
16121
|
-
|
|
16122
|
-
|
|
17367
|
+
cloud: {
|
|
17368
|
+
cluster: DeleteCloudClusterEndpoint;
|
|
17369
|
+
dockerRegistry: DeleteCloudDockerregistryEndpoint;
|
|
17370
|
+
integration: DeleteCloudIntegrationEndpoint;
|
|
17371
|
+
};
|
|
16123
17372
|
domain: DeleteDomainEndpoint;
|
|
16124
17373
|
subdomain: DeleteSubdomainEndpoint;
|
|
16125
17374
|
logSink: DeleteLogsinkEndpoint;
|
|
16126
|
-
|
|
17375
|
+
notification: DeleteNotificationEndpoint;
|
|
17376
|
+
registryCredentials: DeleteRegistrycredentialsEndpoint;
|
|
16127
17377
|
project: DeleteProjectEndpoint;
|
|
16128
17378
|
addon: DeleteAddonEndpoint & {
|
|
16129
17379
|
backupSchedule: DeleteAddonBackupscheduleEndpoint;
|
|
@@ -16141,7 +17391,7 @@ declare class ApiClient {
|
|
|
16141
17391
|
domain: {
|
|
16142
17392
|
subdomain: AddDomainSubdomainEndpoint;
|
|
16143
17393
|
};
|
|
16144
|
-
|
|
17394
|
+
registryCredentials: AddRegistrycredentialsEndpoint;
|
|
16145
17395
|
};
|
|
16146
17396
|
assign: {
|
|
16147
17397
|
subdomain: {
|
|
@@ -16284,4 +17534,4 @@ type ApiClientOpts = {
|
|
|
16284
17534
|
customUserAgent?: string;
|
|
16285
17535
|
};
|
|
16286
17536
|
|
|
16287
|
-
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 };
|
|
17537
|
+
export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortReleaseflowrunCall, AbortReleaseflowrunEndpoint, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunEndpoint, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterEndpoint, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudDockerregistryCall, CreateCloudDockerregistryData, CreateCloudDockerregistryEndpoint, CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationEndpoint, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenEndpoint, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationEndpoint, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, CreateProjectCall, CreateProjectData, CreateProjectEndpoint, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretEndpoint, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildEndpoint, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedEndpoint, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentEndpoint, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTemplateCall, CreateTemplateData, CreateTemplateEndpoint, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleEndpoint, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteCloudClusterCall, DeleteCloudClusterEndpoint, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudDockerregistryCall, DeleteCloudDockerregistryEndpoint, DeleteCloudDockerregistryParameters, DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationEndpoint, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationEndpoint, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonPitrwindowCall, GetAddonPitrwindowEndpoint, GetAddonPitrwindowParameters, GetAddonPitrwindowRequest, GetAddonPitrwindowResult, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationEndpoint, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainRequest, GetSubdomainResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClustersCall, ListCloudClustersEndpoint, ListCloudClustersOptions, ListCloudClustersRequest, ListCloudClustersResult, ListCloudDockerregistryCall, ListCloudDockerregistryEndpoint, ListCloudDockerregistryOptions, ListCloudDockerregistryRequest, ListCloudDockerregistryResult, ListCloudIntegrationsCall, ListCloudIntegrationsEndpoint, ListCloudIntegrationsOptions, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesEndpoint, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersEndpoint, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsEndpoint, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsEndpoint, ListNotificationsOptions, ListNotificationsRequest, ListNotificationsResult, ListPipelinesCall, ListPipelinesEndpoint, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListPreviewtemplatepreviewsCall, ListPreviewtemplatepreviewsEndpoint, ListPreviewtemplatepreviewsOptions, ListPreviewtemplatepreviewsParameters, ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsEndpoint, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsEndpoint, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchProjectCall, PatchProjectData, PatchProjectEndpoint, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutProjectCall, PutProjectData, PutProjectEndpoint, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, ResetAddonCall, ResetAddonEndpoint, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobEndpoint, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkEndpoint, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupEndpoint, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowEndpoint, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateEndpoint, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartAddonPitrCall, StartAddonPitrData, StartAddonPitrEndpoint, StartAddonPitrParameters, StartAddonPitrRequest, StartAddonPitrResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobEndpoint, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonBackupLogsCall, TailAddonLogsCall, TailAddonRestoresLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateCloudClusterCall, UpdateCloudClusterData, UpdateCloudClusterEndpoint, UpdateCloudClusterParameters, UpdateCloudClusterRequest, UpdateCloudClusterResult, UpdateCloudIntegrationCall, UpdateCloudIntegrationData, UpdateCloudIntegrationEndpoint, UpdateCloudIntegrationParameters, UpdateCloudIntegrationRequest, UpdateCloudIntegrationResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationEndpoint, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
|