@northflank/js-client 0.7.22 → 0.7.24
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 +601 -218
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +601 -218
- package/dist/esm/api-client.js +1 -1
- package/package.json +1 -1
package/dist/cjs/api-client.d.ts
CHANGED
|
@@ -1268,6 +1268,272 @@ declare class GetAddonTypesEndpoint extends GetApiEndpoint<GetAddonTypesRequest,
|
|
|
1268
1268
|
body: () => undefined;
|
|
1269
1269
|
}
|
|
1270
1270
|
|
|
1271
|
+
type ListBackupdestinationsResult = {
|
|
1272
|
+
/** List of backup destinations. */
|
|
1273
|
+
'backupDestinations'?: {
|
|
1274
|
+
/** The name of the backup destination. Example: "Example Backup Destination" */
|
|
1275
|
+
'name': string;
|
|
1276
|
+
'description'?: string;
|
|
1277
|
+
/** Type of the backup destination. */
|
|
1278
|
+
'type': 's3';
|
|
1279
|
+
/** A prefix path to add to the bucket objects if not writing to / */
|
|
1280
|
+
'prefix': string;
|
|
1281
|
+
/** Credentials used for the backup destination. */
|
|
1282
|
+
'credentials': {
|
|
1283
|
+
'accessKey': string;
|
|
1284
|
+
'secretKey': string;
|
|
1285
|
+
'bucketName': string;
|
|
1286
|
+
'region': string;
|
|
1287
|
+
/** S3 destination including region, fe s3.us-west-2.amazonaws.com */
|
|
1288
|
+
'endpoint': string;
|
|
1289
|
+
};
|
|
1290
|
+
}[];
|
|
1291
|
+
};
|
|
1292
|
+
type ListBackupdestinationsCall = ((opts: ListBackupdestinationsRequest) => Promise<ApiCallResponse<ListBackupdestinationsResult>>) & {
|
|
1293
|
+
all: (opts: ListBackupdestinationsRequest) => Promise<ApiCallResponse<ListBackupdestinationsResult>>;
|
|
1294
|
+
};
|
|
1295
|
+
type ListBackupdestinationsRequest = {
|
|
1296
|
+
options?: ListBackupdestinationsOptions;
|
|
1297
|
+
};
|
|
1298
|
+
type ListBackupdestinationsOptions = {
|
|
1299
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
1300
|
+
'per_page'?: number;
|
|
1301
|
+
/** The page number to access. */
|
|
1302
|
+
'page'?: number;
|
|
1303
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
1304
|
+
'cursor'?: string;
|
|
1305
|
+
};
|
|
1306
|
+
/** Lists the backup destinations saved to this account. Does not display secrets. */
|
|
1307
|
+
declare class ListBackupdestinationsEndpoint extends GetApiEndpointPaginated<ListBackupdestinationsRequest, ListBackupdestinationsResult> {
|
|
1308
|
+
description: string;
|
|
1309
|
+
withAuth: boolean;
|
|
1310
|
+
requiredPermissions: string;
|
|
1311
|
+
endpointUrl: (opts: ListBackupdestinationsRequest) => string;
|
|
1312
|
+
body: () => undefined;
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
type AddBackupdestinationResult = {
|
|
1316
|
+
/** The name of the backup destination. Example: "Example Backup Destination" */
|
|
1317
|
+
'name': string;
|
|
1318
|
+
'description'?: string;
|
|
1319
|
+
/** Type of the backup destination. */
|
|
1320
|
+
'type': 's3';
|
|
1321
|
+
/** A prefix path to add to the bucket objects if not writing to / */
|
|
1322
|
+
'prefix': string;
|
|
1323
|
+
/** Credentials used for the backup destination. */
|
|
1324
|
+
'credentials': {
|
|
1325
|
+
'accessKey': string;
|
|
1326
|
+
'secretKey': string;
|
|
1327
|
+
'bucketName': string;
|
|
1328
|
+
'region': string;
|
|
1329
|
+
/** S3 destination including region, fe s3.us-west-2.amazonaws.com */
|
|
1330
|
+
'endpoint': string;
|
|
1331
|
+
};
|
|
1332
|
+
/** Identifier for the backup destination Example: "example-backup-destination" */
|
|
1333
|
+
'id': string;
|
|
1334
|
+
/** time of creation */
|
|
1335
|
+
'createdAt'?: string;
|
|
1336
|
+
/** time of update */
|
|
1337
|
+
'updatedAt'?: string;
|
|
1338
|
+
};
|
|
1339
|
+
type AddBackupdestinationCall = (opts: AddBackupdestinationRequest) => Promise<ApiCallResponse<AddBackupdestinationResult>>;
|
|
1340
|
+
type AddBackupdestinationRequest = {
|
|
1341
|
+
data: AddBackupdestinationData;
|
|
1342
|
+
};
|
|
1343
|
+
type AddBackupdestinationData = {
|
|
1344
|
+
/** The name of the backup destination. Example: "Example Backup Destination" */
|
|
1345
|
+
'name': string;
|
|
1346
|
+
'description'?: string;
|
|
1347
|
+
/** Type of the backup destination. */
|
|
1348
|
+
'type': 's3';
|
|
1349
|
+
/** A prefix path to add to the bucket objects if not writing to / */
|
|
1350
|
+
'prefix': string;
|
|
1351
|
+
/** Credentials used for the backup destination. */
|
|
1352
|
+
'credentials': {
|
|
1353
|
+
'accessKey': string;
|
|
1354
|
+
'secretKey': string;
|
|
1355
|
+
'bucketName': string;
|
|
1356
|
+
'region': string;
|
|
1357
|
+
/** S3 destination including region, fe s3.us-west-2.amazonaws.com */
|
|
1358
|
+
'endpoint': string;
|
|
1359
|
+
};
|
|
1360
|
+
};
|
|
1361
|
+
/** Adds a new backup destination to this account. */
|
|
1362
|
+
declare class AddBackupdestinationEndpoint extends PostApiEndpoint<AddBackupdestinationRequest, AddBackupdestinationResult> {
|
|
1363
|
+
description: string;
|
|
1364
|
+
withAuth: boolean;
|
|
1365
|
+
requiredPermissions: string;
|
|
1366
|
+
endpointUrl: (opts: AddBackupdestinationRequest) => string;
|
|
1367
|
+
body: (payload: AddBackupdestinationRequest) => string;
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1370
|
+
type GetBackupdestinationResult = {
|
|
1371
|
+
/** The name of the backup destination. Example: "Example Backup Destination" */
|
|
1372
|
+
'name': string;
|
|
1373
|
+
'description'?: string;
|
|
1374
|
+
/** Type of the backup destination. */
|
|
1375
|
+
'type': 's3';
|
|
1376
|
+
/** A prefix path to add to the bucket objects if not writing to / */
|
|
1377
|
+
'prefix': string;
|
|
1378
|
+
/** Credentials used for the backup destination. */
|
|
1379
|
+
'credentials': {
|
|
1380
|
+
'accessKey': string;
|
|
1381
|
+
'secretKey': string;
|
|
1382
|
+
'bucketName': string;
|
|
1383
|
+
'region': string;
|
|
1384
|
+
/** S3 destination including region, fe s3.us-west-2.amazonaws.com */
|
|
1385
|
+
'endpoint': string;
|
|
1386
|
+
};
|
|
1387
|
+
/** Identifier for the backup destination Example: "example-backup-destination" */
|
|
1388
|
+
'id': string;
|
|
1389
|
+
/** time of creation */
|
|
1390
|
+
'createdAt'?: string;
|
|
1391
|
+
/** time of update */
|
|
1392
|
+
'updatedAt'?: string;
|
|
1393
|
+
};
|
|
1394
|
+
type GetBackupdestinationCall = (opts: GetBackupdestinationRequest) => Promise<ApiCallResponse<GetBackupdestinationResult>>;
|
|
1395
|
+
type GetBackupdestinationRequest = {
|
|
1396
|
+
parameters: GetBackupdestinationParameters;
|
|
1397
|
+
};
|
|
1398
|
+
type GetBackupdestinationParameters = {
|
|
1399
|
+
/** ID of the backup destination */ 'backupDestinationId': string;
|
|
1400
|
+
};
|
|
1401
|
+
/** View a backup destination, including secrets. */
|
|
1402
|
+
declare class GetBackupdestinationEndpoint extends GetApiEndpoint<GetBackupdestinationRequest, GetBackupdestinationResult> {
|
|
1403
|
+
description: string;
|
|
1404
|
+
withAuth: boolean;
|
|
1405
|
+
requiredPermissions: string;
|
|
1406
|
+
endpointUrl: (opts: GetBackupdestinationRequest) => string;
|
|
1407
|
+
body: () => undefined;
|
|
1408
|
+
}
|
|
1409
|
+
|
|
1410
|
+
type PatchBackupdestinationResult = any;
|
|
1411
|
+
type PatchBackupdestinationCall = (opts: PatchBackupdestinationRequest) => Promise<ApiCallResponse<PatchBackupdestinationResult>>;
|
|
1412
|
+
type PatchBackupdestinationRequest = {
|
|
1413
|
+
parameters: PatchBackupdestinationParameters;
|
|
1414
|
+
data: PatchBackupdestinationData;
|
|
1415
|
+
};
|
|
1416
|
+
type PatchBackupdestinationParameters = {
|
|
1417
|
+
/** ID of the backup destination */ 'backupDestinationId': string;
|
|
1418
|
+
};
|
|
1419
|
+
type PatchBackupdestinationData = {
|
|
1420
|
+
/** The name of the backup destination. Example: "Example Backup Destination" */
|
|
1421
|
+
'name'?: string;
|
|
1422
|
+
'description'?: string;
|
|
1423
|
+
/** Credentials used for the backup destination. */
|
|
1424
|
+
'credentials'?: {
|
|
1425
|
+
'accessKey': string;
|
|
1426
|
+
'secretKey': string;
|
|
1427
|
+
'bucketName': string;
|
|
1428
|
+
'region': string;
|
|
1429
|
+
/** S3 destination including region, fe s3.us-west-2.amazonaws.com */
|
|
1430
|
+
'endpoint': string;
|
|
1431
|
+
};
|
|
1432
|
+
};
|
|
1433
|
+
/** Updates a backup destination. */
|
|
1434
|
+
declare class PatchBackupdestinationEndpoint extends PatchApiEndpoint<PatchBackupdestinationRequest, PatchBackupdestinationResult> {
|
|
1435
|
+
description: string;
|
|
1436
|
+
withAuth: boolean;
|
|
1437
|
+
requiredPermissions: string;
|
|
1438
|
+
endpointUrl: (opts: PatchBackupdestinationRequest) => string;
|
|
1439
|
+
body: (payload: PatchBackupdestinationRequest) => string;
|
|
1440
|
+
}
|
|
1441
|
+
|
|
1442
|
+
type DeleteBackupdestinationResult = any;
|
|
1443
|
+
type DeleteBackupdestinationCall = (opts: DeleteBackupdestinationRequest) => Promise<ApiCallResponse<DeleteBackupdestinationResult>>;
|
|
1444
|
+
type DeleteBackupdestinationRequest = {
|
|
1445
|
+
parameters: DeleteBackupdestinationParameters;
|
|
1446
|
+
};
|
|
1447
|
+
type DeleteBackupdestinationParameters = {
|
|
1448
|
+
/** ID of the backup destination */ 'backupDestinationId': string;
|
|
1449
|
+
};
|
|
1450
|
+
/** Delete a backup destination. */
|
|
1451
|
+
declare class DeleteBackupdestinationEndpoint extends DeleteApiEndpoint<DeleteBackupdestinationRequest, DeleteBackupdestinationResult> {
|
|
1452
|
+
description: string;
|
|
1453
|
+
withAuth: boolean;
|
|
1454
|
+
requiredPermissions: string;
|
|
1455
|
+
endpointUrl: (opts: DeleteBackupdestinationRequest) => string;
|
|
1456
|
+
body: () => undefined;
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
type ListBackupdestinationsbackupsResult = {
|
|
1460
|
+
/** The identifier for the backup. Example: "example-backup" */
|
|
1461
|
+
'id': string;
|
|
1462
|
+
/** The name of the backup. Example: "Example Backup" */
|
|
1463
|
+
'name': string;
|
|
1464
|
+
/** The current status of the backup. Example: "completed" */
|
|
1465
|
+
'status': 'scheduled' | 'in-progress' | 'completed' | 'aborting' | 'aborted' | 'failed' | 'not-supported';
|
|
1466
|
+
'project'?: {
|
|
1467
|
+
/** ID of the project this backup was taken for Example: "example-project" */
|
|
1468
|
+
'id'?: string;
|
|
1469
|
+
/** Name of the project this backup was taken for Example: "Example Project" */
|
|
1470
|
+
'name'?: string;
|
|
1471
|
+
};
|
|
1472
|
+
'addon'?: {
|
|
1473
|
+
/** ID of the addon this backup was taken for Example: "example-addon" */
|
|
1474
|
+
'id'?: string;
|
|
1475
|
+
/** Name of the addon this backup was taken for Example: "Example Addon" */
|
|
1476
|
+
'name'?: string;
|
|
1477
|
+
};
|
|
1478
|
+
/** Data about the backup configuration. */
|
|
1479
|
+
'config': {
|
|
1480
|
+
/** The version of the addon at the time of the backup. The addon will be restored to this version when the backup is restored. Example: "4.4.8" */
|
|
1481
|
+
'addonVersion'?: string;
|
|
1482
|
+
/** The type of the addon this backup was taken for. Example: "mongodb" */
|
|
1483
|
+
'addonType'?: string;
|
|
1484
|
+
/** Data about the source of the backup. */
|
|
1485
|
+
'source'?: {
|
|
1486
|
+
/** The type of backup. Example: "global" */
|
|
1487
|
+
'type'?: 'global';
|
|
1488
|
+
};
|
|
1489
|
+
/** The size of the backup, in bytes Example: "1234" */
|
|
1490
|
+
'size': string;
|
|
1491
|
+
};
|
|
1492
|
+
/** The schedules this backup was taken for. */
|
|
1493
|
+
'schedules'?: {
|
|
1494
|
+
/** The interval between backups. Each addon can only have one backup schedule of each interval for each backup type. Example: "weekly" */
|
|
1495
|
+
'interval': 'hourly' | 'daily' | 'weekly';
|
|
1496
|
+
/** An array of minutes when the backup should be performed. */
|
|
1497
|
+
'minute': number[];
|
|
1498
|
+
/** An array of hours in 24 hour format when the backup should be performed. At these hours, a backup will be performed at each of the minutes provided in the `minute` field. Required for `daily` and `weekly` intervals and unavailable for `hourly` intervals. */
|
|
1499
|
+
'hour'?: number[];
|
|
1500
|
+
/** An array of days of the week when the backup should be performed, where `0` represents Monday and `6` represents Sunday. On these days, a backup will be performed at each of the minutes provided in the `minute` field whenever it is an hour from the `hour` field. Required for `weekly` intervals and unavailable for `hourly` and `daily` intervals. */
|
|
1501
|
+
'day'?: number[];
|
|
1502
|
+
}[];
|
|
1503
|
+
/** The time the backup will expiry. Example: "1729232400000.0" */
|
|
1504
|
+
'expiredBy': number;
|
|
1505
|
+
/** The time the backup was initiated. Example: "2021-01-20T11:19:53.175Z" */
|
|
1506
|
+
'createdAt': string;
|
|
1507
|
+
/** The time the backup was completed. Example: "2021-01-20T11:19:54.494Z" */
|
|
1508
|
+
'completedAt': string;
|
|
1509
|
+
}[];
|
|
1510
|
+
type ListBackupdestinationsbackupsCall = ((opts: ListBackupdestinationsbackupsRequest) => Promise<ApiCallResponse<ListBackupdestinationsbackupsResult>>) & {
|
|
1511
|
+
all: (opts: ListBackupdestinationsbackupsRequest) => Promise<ApiCallResponse<ListBackupdestinationsbackupsResult>>;
|
|
1512
|
+
};
|
|
1513
|
+
type ListBackupdestinationsbackupsRequest = {
|
|
1514
|
+
parameters: ListBackupdestinationsbackupsParameters;
|
|
1515
|
+
options?: ListBackupdestinationsbackupsOptions;
|
|
1516
|
+
};
|
|
1517
|
+
type ListBackupdestinationsbackupsParameters = {
|
|
1518
|
+
/** ID of the backup destination */ 'backupDestinationId': string;
|
|
1519
|
+
};
|
|
1520
|
+
type ListBackupdestinationsbackupsOptions = {
|
|
1521
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
1522
|
+
'per_page'?: number;
|
|
1523
|
+
/** The page number to access. */
|
|
1524
|
+
'page'?: number;
|
|
1525
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
1526
|
+
'cursor'?: string;
|
|
1527
|
+
};
|
|
1528
|
+
/** Lists the backups associated with a backup destinations. */
|
|
1529
|
+
declare class ListBackupdestinationsbackupsEndpoint extends GetApiEndpointPaginated<ListBackupdestinationsbackupsRequest, ListBackupdestinationsbackupsResult> {
|
|
1530
|
+
description: string;
|
|
1531
|
+
withAuth: boolean;
|
|
1532
|
+
requiredPermissions: string;
|
|
1533
|
+
endpointUrl: (opts: ListBackupdestinationsbackupsRequest) => string;
|
|
1534
|
+
body: () => undefined;
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1271
1537
|
type ListInvoicesResult = {
|
|
1272
1538
|
'invoices'?: {
|
|
1273
1539
|
/** Information about the billing period of the invoice. */
|
|
@@ -1489,8 +1755,8 @@ type ListCloudClustersResult = {
|
|
|
1489
1755
|
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
|
|
1490
1756
|
/** Region of the cluster. Example: "europe-west2" */
|
|
1491
1757
|
'region': string;
|
|
1492
|
-
/**
|
|
1493
|
-
'kubernetesVersion'
|
|
1758
|
+
/** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
|
|
1759
|
+
'kubernetesVersion'?: string;
|
|
1494
1760
|
/** Existing integration to use for this cluster. Example: "gcp-integration" */
|
|
1495
1761
|
'integrationId'?: string;
|
|
1496
1762
|
/** An array of node pools. */
|
|
@@ -1641,9 +1907,18 @@ type ListCloudClustersResult = {
|
|
|
1641
1907
|
};
|
|
1642
1908
|
/** AWS specific data. Required when `provider` is `aws`. */
|
|
1643
1909
|
'aws'?: {
|
|
1644
|
-
|
|
1645
|
-
'
|
|
1646
|
-
|
|
1910
|
+
'enablePublicAccessCidrs'?: boolean;
|
|
1911
|
+
'publicAccessCidrs'?: string[];
|
|
1912
|
+
'subnetConfiguration'?: {
|
|
1913
|
+
'mode': 'default-subnets-for-azs' | 'explicit-subnets';
|
|
1914
|
+
'vpcId'?: string;
|
|
1915
|
+
/** List of subnets the cluster should be created for. At least 2 must be specified. */
|
|
1916
|
+
'subnets': string[];
|
|
1917
|
+
};
|
|
1918
|
+
/** If egress traffic from the cluster should come from a single static egress IP. */
|
|
1919
|
+
'vpcEgress'?: boolean;
|
|
1920
|
+
};
|
|
1921
|
+
/** OCI specific data. Required when `provider` is `oci`. */
|
|
1647
1922
|
'oci'?: {
|
|
1648
1923
|
'vcnConfiguration': {
|
|
1649
1924
|
'vcnId': string;
|
|
@@ -1651,8 +1926,10 @@ type ListCloudClustersResult = {
|
|
|
1651
1926
|
'subnetIdsForServiceLBs': string[];
|
|
1652
1927
|
};
|
|
1653
1928
|
};
|
|
1929
|
+
/** Azure specific data. Required when `provider` is `azure`. */
|
|
1654
1930
|
'azure'?: {
|
|
1655
1931
|
'enableAuthorizedIpRanges'?: boolean;
|
|
1932
|
+
'authorizedIpRanges'?: string[];
|
|
1656
1933
|
};
|
|
1657
1934
|
}[];
|
|
1658
1935
|
};
|
|
@@ -1688,8 +1965,8 @@ type CreateCloudClusterResult = {
|
|
|
1688
1965
|
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
|
|
1689
1966
|
/** Region of the cluster. Example: "europe-west2" */
|
|
1690
1967
|
'region': string;
|
|
1691
|
-
/**
|
|
1692
|
-
'kubernetesVersion'
|
|
1968
|
+
/** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
|
|
1969
|
+
'kubernetesVersion'?: string;
|
|
1693
1970
|
/** Existing integration to use for this cluster. Example: "gcp-integration" */
|
|
1694
1971
|
'integrationId'?: string;
|
|
1695
1972
|
/** An array of node pools. */
|
|
@@ -1847,9 +2124,18 @@ type CreateCloudClusterResult = {
|
|
|
1847
2124
|
};
|
|
1848
2125
|
/** AWS specific data. Required when `provider` is `aws`. */
|
|
1849
2126
|
'aws'?: {
|
|
1850
|
-
|
|
1851
|
-
'
|
|
2127
|
+
'enablePublicAccessCidrs'?: boolean;
|
|
2128
|
+
'publicAccessCidrs'?: string[];
|
|
2129
|
+
'subnetConfiguration'?: {
|
|
2130
|
+
'mode': 'default-subnets-for-azs' | 'explicit-subnets';
|
|
2131
|
+
'vpcId'?: string;
|
|
2132
|
+
/** List of subnets the cluster should be created for. At least 2 must be specified. */
|
|
2133
|
+
'subnets': string[];
|
|
2134
|
+
};
|
|
2135
|
+
/** If egress traffic from the cluster should come from a single static egress IP. */
|
|
2136
|
+
'vpcEgress'?: boolean;
|
|
1852
2137
|
};
|
|
2138
|
+
/** OCI specific data. Required when `provider` is `oci`. */
|
|
1853
2139
|
'oci'?: {
|
|
1854
2140
|
'vcnConfiguration': {
|
|
1855
2141
|
'vcnId': string;
|
|
@@ -1857,8 +2143,10 @@ type CreateCloudClusterResult = {
|
|
|
1857
2143
|
'subnetIdsForServiceLBs': string[];
|
|
1858
2144
|
};
|
|
1859
2145
|
};
|
|
2146
|
+
/** Azure specific data. Required when `provider` is `azure`. */
|
|
1860
2147
|
'azure'?: {
|
|
1861
2148
|
'enableAuthorizedIpRanges'?: boolean;
|
|
2149
|
+
'authorizedIpRanges'?: string[];
|
|
1862
2150
|
};
|
|
1863
2151
|
/** The ID of cluster Example: "gcp-cluster-1" */
|
|
1864
2152
|
'id': string;
|
|
@@ -1889,8 +2177,8 @@ type CreateCloudClusterData = {
|
|
|
1889
2177
|
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
|
|
1890
2178
|
/** Region of the cluster. Example: "europe-west2" */
|
|
1891
2179
|
'region': string;
|
|
1892
|
-
/**
|
|
1893
|
-
'kubernetesVersion'
|
|
2180
|
+
/** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
|
|
2181
|
+
'kubernetesVersion'?: string;
|
|
1894
2182
|
/** Existing integration to use for this cluster. Example: "gcp-integration" */
|
|
1895
2183
|
'integrationId'?: string;
|
|
1896
2184
|
/** An array of node pools. */
|
|
@@ -2048,9 +2336,18 @@ type CreateCloudClusterData = {
|
|
|
2048
2336
|
};
|
|
2049
2337
|
/** AWS specific data. Required when `provider` is `aws`. */
|
|
2050
2338
|
'aws'?: {
|
|
2051
|
-
|
|
2052
|
-
'
|
|
2339
|
+
'enablePublicAccessCidrs'?: boolean;
|
|
2340
|
+
'publicAccessCidrs'?: string[];
|
|
2341
|
+
'subnetConfiguration'?: {
|
|
2342
|
+
'mode': 'default-subnets-for-azs' | 'explicit-subnets';
|
|
2343
|
+
'vpcId'?: string;
|
|
2344
|
+
/** List of subnets the cluster should be created for. At least 2 must be specified. */
|
|
2345
|
+
'subnets': string[];
|
|
2346
|
+
};
|
|
2347
|
+
/** If egress traffic from the cluster should come from a single static egress IP. */
|
|
2348
|
+
'vpcEgress'?: boolean;
|
|
2053
2349
|
};
|
|
2350
|
+
/** OCI specific data. Required when `provider` is `oci`. */
|
|
2054
2351
|
'oci'?: {
|
|
2055
2352
|
'vcnConfiguration': {
|
|
2056
2353
|
'vcnId': string;
|
|
@@ -2058,8 +2355,10 @@ type CreateCloudClusterData = {
|
|
|
2058
2355
|
'subnetIdsForServiceLBs': string[];
|
|
2059
2356
|
};
|
|
2060
2357
|
};
|
|
2358
|
+
/** Azure specific data. Required when `provider` is `azure`. */
|
|
2061
2359
|
'azure'?: {
|
|
2062
2360
|
'enableAuthorizedIpRanges'?: boolean;
|
|
2361
|
+
'authorizedIpRanges'?: string[];
|
|
2063
2362
|
};
|
|
2064
2363
|
};
|
|
2065
2364
|
/** Creates a new cluster. */
|
|
@@ -2080,8 +2379,8 @@ type GetCloudClusterResult = {
|
|
|
2080
2379
|
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
|
|
2081
2380
|
/** Region of the cluster. Example: "europe-west2" */
|
|
2082
2381
|
'region': string;
|
|
2083
|
-
/**
|
|
2084
|
-
'kubernetesVersion'
|
|
2382
|
+
/** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
|
|
2383
|
+
'kubernetesVersion'?: string;
|
|
2085
2384
|
/** Existing integration to use for this cluster. Example: "gcp-integration" */
|
|
2086
2385
|
'integrationId'?: string;
|
|
2087
2386
|
/** An array of node pools. */
|
|
@@ -2239,9 +2538,18 @@ type GetCloudClusterResult = {
|
|
|
2239
2538
|
};
|
|
2240
2539
|
/** AWS specific data. Required when `provider` is `aws`. */
|
|
2241
2540
|
'aws'?: {
|
|
2242
|
-
|
|
2243
|
-
'
|
|
2541
|
+
'enablePublicAccessCidrs'?: boolean;
|
|
2542
|
+
'publicAccessCidrs'?: string[];
|
|
2543
|
+
'subnetConfiguration'?: {
|
|
2544
|
+
'mode': 'default-subnets-for-azs' | 'explicit-subnets';
|
|
2545
|
+
'vpcId'?: string;
|
|
2546
|
+
/** List of subnets the cluster should be created for. At least 2 must be specified. */
|
|
2547
|
+
'subnets': string[];
|
|
2548
|
+
};
|
|
2549
|
+
/** If egress traffic from the cluster should come from a single static egress IP. */
|
|
2550
|
+
'vpcEgress'?: boolean;
|
|
2244
2551
|
};
|
|
2552
|
+
/** OCI specific data. Required when `provider` is `oci`. */
|
|
2245
2553
|
'oci'?: {
|
|
2246
2554
|
'vcnConfiguration': {
|
|
2247
2555
|
'vcnId': string;
|
|
@@ -2249,8 +2557,10 @@ type GetCloudClusterResult = {
|
|
|
2249
2557
|
'subnetIdsForServiceLBs': string[];
|
|
2250
2558
|
};
|
|
2251
2559
|
};
|
|
2560
|
+
/** Azure specific data. Required when `provider` is `azure`. */
|
|
2252
2561
|
'azure'?: {
|
|
2253
2562
|
'enableAuthorizedIpRanges'?: boolean;
|
|
2563
|
+
'authorizedIpRanges'?: string[];
|
|
2254
2564
|
};
|
|
2255
2565
|
/** The ID of cluster Example: "gcp-cluster-1" */
|
|
2256
2566
|
'id': string;
|
|
@@ -2293,8 +2603,8 @@ type UpdateCloudClusterResult = {
|
|
|
2293
2603
|
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
|
|
2294
2604
|
/** Region of the cluster. Example: "europe-west2" */
|
|
2295
2605
|
'region': string;
|
|
2296
|
-
/**
|
|
2297
|
-
'kubernetesVersion'
|
|
2606
|
+
/** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
|
|
2607
|
+
'kubernetesVersion'?: string;
|
|
2298
2608
|
/** Existing integration to use for this cluster. Example: "gcp-integration" */
|
|
2299
2609
|
'integrationId'?: string;
|
|
2300
2610
|
/** An array of node pools. */
|
|
@@ -2452,9 +2762,18 @@ type UpdateCloudClusterResult = {
|
|
|
2452
2762
|
};
|
|
2453
2763
|
/** AWS specific data. Required when `provider` is `aws`. */
|
|
2454
2764
|
'aws'?: {
|
|
2455
|
-
|
|
2456
|
-
'
|
|
2765
|
+
'enablePublicAccessCidrs'?: boolean;
|
|
2766
|
+
'publicAccessCidrs'?: string[];
|
|
2767
|
+
'subnetConfiguration'?: {
|
|
2768
|
+
'mode': 'default-subnets-for-azs' | 'explicit-subnets';
|
|
2769
|
+
'vpcId'?: string;
|
|
2770
|
+
/** List of subnets the cluster should be created for. At least 2 must be specified. */
|
|
2771
|
+
'subnets': string[];
|
|
2772
|
+
};
|
|
2773
|
+
/** If egress traffic from the cluster should come from a single static egress IP. */
|
|
2774
|
+
'vpcEgress'?: boolean;
|
|
2457
2775
|
};
|
|
2776
|
+
/** OCI specific data. Required when `provider` is `oci`. */
|
|
2458
2777
|
'oci'?: {
|
|
2459
2778
|
'vcnConfiguration': {
|
|
2460
2779
|
'vcnId': string;
|
|
@@ -2462,8 +2781,10 @@ type UpdateCloudClusterResult = {
|
|
|
2462
2781
|
'subnetIdsForServiceLBs': string[];
|
|
2463
2782
|
};
|
|
2464
2783
|
};
|
|
2784
|
+
/** Azure specific data. Required when `provider` is `azure`. */
|
|
2465
2785
|
'azure'?: {
|
|
2466
2786
|
'enableAuthorizedIpRanges'?: boolean;
|
|
2787
|
+
'authorizedIpRanges'?: string[];
|
|
2467
2788
|
};
|
|
2468
2789
|
/** The ID of cluster Example: "gcp-cluster-1" */
|
|
2469
2790
|
'id': string;
|
|
@@ -2913,19 +3234,15 @@ type ListCloudIntegrationsResult = {
|
|
|
2913
3234
|
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential'[];
|
|
2914
3235
|
/** AWS specific data. Required when `provider` is `aws`. */
|
|
2915
3236
|
'aws'?: {
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
'authenticationMode'?: 'accessKey' | 'crossAccountRole';
|
|
2919
|
-
};
|
|
3237
|
+
/** The provider authentication mode to use for this integration. Example: "accessKey" */
|
|
3238
|
+
'authenticationMode'?: 'accessKey' | 'crossAccountRole';
|
|
2920
3239
|
};
|
|
2921
3240
|
/** GCP specific data. Required when `provider` is `gcp`. */
|
|
2922
3241
|
'gcp'?: {
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
|
|
2926
|
-
|
|
2927
|
-
'authenticationMode'?: 'accessKey' | 'crossAccountRole';
|
|
2928
|
-
};
|
|
3242
|
+
/** GCP Project ID */
|
|
3243
|
+
'projectId': string;
|
|
3244
|
+
/** The provider authentication mode to use for this integration. Example: "accessKey" */
|
|
3245
|
+
'authenticationMode'?: 'accessKey' | 'crossAccountRole';
|
|
2929
3246
|
};
|
|
2930
3247
|
/** ID of the integration Example: "example-integration" */
|
|
2931
3248
|
'id': string;
|
|
@@ -3007,21 +3324,17 @@ type CreateCloudIntegrationResult = {
|
|
|
3007
3324
|
};
|
|
3008
3325
|
/** AWS specific data. Required when `provider` is `aws`. */
|
|
3009
3326
|
'aws'?: {
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
'authenticationMode'?: 'accessKey' | 'crossAccountRole';
|
|
3013
|
-
};
|
|
3327
|
+
/** The provider authentication mode to use for this integration. Example: "accessKey" */
|
|
3328
|
+
'authenticationMode'?: 'accessKey' | 'crossAccountRole';
|
|
3014
3329
|
};
|
|
3015
3330
|
/** GCP specific data. Required when `provider` is `gcp`. */
|
|
3016
3331
|
'gcp'?: {
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
'serviceAccountEmail'?: string;
|
|
3024
|
-
};
|
|
3332
|
+
/** GCP Project ID */
|
|
3333
|
+
'projectId': string;
|
|
3334
|
+
/** The provider authentication mode to use for this integration. Example: "accessKey" */
|
|
3335
|
+
'authenticationMode'?: 'accessKey' | 'crossAccountRole';
|
|
3336
|
+
/** Service account email that will be used for cross account access. */
|
|
3337
|
+
'serviceAccountEmail'?: string;
|
|
3025
3338
|
};
|
|
3026
3339
|
/** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
3027
3340
|
'createdAt': string;
|
|
@@ -3079,19 +3392,15 @@ type CreateCloudIntegrationData = {
|
|
|
3079
3392
|
};
|
|
3080
3393
|
/** AWS specific data. Required when `provider` is `aws`. */
|
|
3081
3394
|
'aws'?: {
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
'authenticationMode'?: 'accessKey' | 'crossAccountRole';
|
|
3085
|
-
};
|
|
3395
|
+
/** The provider authentication mode to use for this integration. Example: "accessKey" */
|
|
3396
|
+
'authenticationMode'?: 'accessKey' | 'crossAccountRole';
|
|
3086
3397
|
};
|
|
3087
3398
|
/** GCP specific data. Required when `provider` is `gcp`. */
|
|
3088
3399
|
'gcp'?: {
|
|
3089
|
-
|
|
3090
|
-
|
|
3091
|
-
|
|
3092
|
-
|
|
3093
|
-
'authenticationMode'?: 'accessKey' | 'crossAccountRole';
|
|
3094
|
-
};
|
|
3400
|
+
/** GCP Project ID */
|
|
3401
|
+
'projectId': string;
|
|
3402
|
+
/** The provider authentication mode to use for this integration. Example: "accessKey" */
|
|
3403
|
+
'authenticationMode'?: 'accessKey' | 'crossAccountRole';
|
|
3095
3404
|
};
|
|
3096
3405
|
};
|
|
3097
3406
|
/** Creates a new integration. */
|
|
@@ -3154,21 +3463,17 @@ type GetCloudIntegrationResult = {
|
|
|
3154
3463
|
};
|
|
3155
3464
|
/** AWS specific data. Required when `provider` is `aws`. */
|
|
3156
3465
|
'aws'?: {
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
'authenticationMode'?: 'accessKey' | 'crossAccountRole';
|
|
3160
|
-
};
|
|
3466
|
+
/** The provider authentication mode to use for this integration. Example: "accessKey" */
|
|
3467
|
+
'authenticationMode'?: 'accessKey' | 'crossAccountRole';
|
|
3161
3468
|
};
|
|
3162
3469
|
/** GCP specific data. Required when `provider` is `gcp`. */
|
|
3163
3470
|
'gcp'?: {
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
|
|
3170
|
-
'serviceAccountEmail'?: string;
|
|
3171
|
-
};
|
|
3471
|
+
/** GCP Project ID */
|
|
3472
|
+
'projectId': string;
|
|
3473
|
+
/** The provider authentication mode to use for this integration. Example: "accessKey" */
|
|
3474
|
+
'authenticationMode'?: 'accessKey' | 'crossAccountRole';
|
|
3475
|
+
/** Service account email that will be used for cross account access. */
|
|
3476
|
+
'serviceAccountEmail'?: string;
|
|
3172
3477
|
};
|
|
3173
3478
|
/** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
3174
3479
|
'createdAt': string;
|
|
@@ -3240,21 +3545,17 @@ type UpdateCloudIntegrationResult = {
|
|
|
3240
3545
|
};
|
|
3241
3546
|
/** AWS specific data. Required when `provider` is `aws`. */
|
|
3242
3547
|
'aws'?: {
|
|
3243
|
-
|
|
3244
|
-
|
|
3245
|
-
'authenticationMode'?: 'accessKey' | 'crossAccountRole';
|
|
3246
|
-
};
|
|
3548
|
+
/** The provider authentication mode to use for this integration. Example: "accessKey" */
|
|
3549
|
+
'authenticationMode'?: 'accessKey' | 'crossAccountRole';
|
|
3247
3550
|
};
|
|
3248
3551
|
/** GCP specific data. Required when `provider` is `gcp`. */
|
|
3249
3552
|
'gcp'?: {
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
'serviceAccountEmail'?: string;
|
|
3257
|
-
};
|
|
3553
|
+
/** GCP Project ID */
|
|
3554
|
+
'projectId': string;
|
|
3555
|
+
/** The provider authentication mode to use for this integration. Example: "accessKey" */
|
|
3556
|
+
'authenticationMode'?: 'accessKey' | 'crossAccountRole';
|
|
3557
|
+
/** Service account email that will be used for cross account access. */
|
|
3558
|
+
'serviceAccountEmail'?: string;
|
|
3258
3559
|
};
|
|
3259
3560
|
/** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
3260
3561
|
'createdAt': string;
|
|
@@ -4895,12 +5196,12 @@ type CreateLogsinkData = {
|
|
|
4895
5196
|
'dataset': string;
|
|
4896
5197
|
/** Axiom API/Personal token Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
|
|
4897
5198
|
'token': string;
|
|
4898
|
-
/** Using a personal token */
|
|
5199
|
+
/** Using a personal token Example: "api" */
|
|
4899
5200
|
'tokenType': 'personal' | 'api';
|
|
4900
5201
|
/** The ID of the organisation, required if using a personal token */
|
|
4901
5202
|
'orgId'?: string;
|
|
4902
5203
|
/** The Axiom url to use. Only change if self hosting axiom. */
|
|
4903
|
-
'url'
|
|
5204
|
+
'url'?: string;
|
|
4904
5205
|
};
|
|
4905
5206
|
} | {
|
|
4906
5207
|
/** Name of the log sink. Example: "example-log-sink" */
|
|
@@ -4929,6 +5230,7 @@ type CreateLogsinkData = {
|
|
|
4929
5230
|
'accountId': string;
|
|
4930
5231
|
/** New Relic License Key Example: "b1dd3feb585asd1a3e9" */
|
|
4931
5232
|
'licenseKey': string;
|
|
5233
|
+
'region': 'eu' | 'us';
|
|
4932
5234
|
};
|
|
4933
5235
|
};
|
|
4934
5236
|
/** Creates a new log sink. */
|
|
@@ -5060,17 +5362,18 @@ type GetLogsinkResult = {
|
|
|
5060
5362
|
'dataset': string;
|
|
5061
5363
|
/** Axiom API/Personal token Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
|
|
5062
5364
|
'token': string;
|
|
5063
|
-
/** Using a personal token */
|
|
5365
|
+
/** Using a personal token Example: "api" */
|
|
5064
5366
|
'tokenType': 'personal' | 'api';
|
|
5065
5367
|
/** The ID of the organisation, required if using a personal token */
|
|
5066
5368
|
'orgId'?: string;
|
|
5067
5369
|
/** The Axiom url to use. Only change if self hosting axiom. */
|
|
5068
|
-
'url'
|
|
5370
|
+
'url'?: string;
|
|
5069
5371
|
} | {
|
|
5070
5372
|
/** New Relic Account ID Example: "b1dd3feb585asd1a3e9" */
|
|
5071
5373
|
'accountId': string;
|
|
5072
5374
|
/** New Relic License Key Example: "b1dd3feb585asd1a3e9" */
|
|
5073
5375
|
'licenseKey': string;
|
|
5376
|
+
'region': 'eu' | 'us';
|
|
5074
5377
|
};
|
|
5075
5378
|
};
|
|
5076
5379
|
type GetLogsinkCall = (opts: GetLogsinkRequest) => Promise<ApiCallResponse<GetLogsinkResult>>;
|
|
@@ -5245,12 +5548,12 @@ type UpdateLogsinkData = {
|
|
|
5245
5548
|
'dataset': string;
|
|
5246
5549
|
/** Axiom API/Personal token Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
|
|
5247
5550
|
'token': string;
|
|
5248
|
-
/** Using a personal token */
|
|
5551
|
+
/** Using a personal token Example: "api" */
|
|
5249
5552
|
'tokenType': 'personal' | 'api';
|
|
5250
5553
|
/** The ID of the organisation, required if using a personal token */
|
|
5251
5554
|
'orgId'?: string;
|
|
5252
5555
|
/** The Axiom url to use. Only change if self hosting axiom. */
|
|
5253
|
-
'url'
|
|
5556
|
+
'url'?: string;
|
|
5254
5557
|
};
|
|
5255
5558
|
/** If `true`, and the log sink is currently paused, the log sink will be resumed after updating. */
|
|
5256
5559
|
'resumeLogSink'?: boolean;
|
|
@@ -6213,15 +6516,15 @@ type CreateProjectResult = {
|
|
|
6213
6516
|
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
6214
6517
|
'tagMatchCondition'?: 'and' | 'or';
|
|
6215
6518
|
};
|
|
6216
|
-
'options'?: {
|
|
6217
|
-
'cpuLimit'?: string;
|
|
6218
|
-
'memoryLimit'?: string;
|
|
6219
|
-
};
|
|
6220
6519
|
/** Relevant Tailscale secrets */
|
|
6221
6520
|
'secrets'?: {
|
|
6222
6521
|
/** Tailscale auth key (required for enabling Tailscale) */
|
|
6223
6522
|
'authKey'?: string;
|
|
6224
6523
|
};
|
|
6524
|
+
'options'?: {
|
|
6525
|
+
/** Accept advertised routes from the Tailscale network */
|
|
6526
|
+
'acceptRoutes'?: boolean;
|
|
6527
|
+
};
|
|
6225
6528
|
};
|
|
6226
6529
|
/** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
|
|
6227
6530
|
'hostAliases'?: {
|
|
@@ -6276,15 +6579,15 @@ type CreateProjectData = {
|
|
|
6276
6579
|
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
6277
6580
|
'tagMatchCondition'?: 'and' | 'or';
|
|
6278
6581
|
};
|
|
6279
|
-
'options'?: {
|
|
6280
|
-
'cpuLimit'?: string;
|
|
6281
|
-
'memoryLimit'?: string;
|
|
6282
|
-
};
|
|
6283
6582
|
/** Relevant Tailscale secrets */
|
|
6284
6583
|
'secrets'?: {
|
|
6285
6584
|
/** Tailscale auth key (required for enabling Tailscale) */
|
|
6286
6585
|
'authKey'?: string;
|
|
6287
6586
|
};
|
|
6587
|
+
'options'?: {
|
|
6588
|
+
/** Accept advertised routes from the Tailscale network */
|
|
6589
|
+
'acceptRoutes'?: boolean;
|
|
6590
|
+
};
|
|
6288
6591
|
};
|
|
6289
6592
|
/** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
|
|
6290
6593
|
'hostAliases'?: {
|
|
@@ -6330,15 +6633,15 @@ type CreateProjectData = {
|
|
|
6330
6633
|
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
6331
6634
|
'tagMatchCondition'?: 'and' | 'or';
|
|
6332
6635
|
};
|
|
6333
|
-
'options'?: {
|
|
6334
|
-
'cpuLimit'?: string;
|
|
6335
|
-
'memoryLimit'?: string;
|
|
6336
|
-
};
|
|
6337
6636
|
/** Relevant Tailscale secrets */
|
|
6338
6637
|
'secrets'?: {
|
|
6339
6638
|
/** Tailscale auth key (required for enabling Tailscale) */
|
|
6340
6639
|
'authKey'?: string;
|
|
6341
6640
|
};
|
|
6641
|
+
'options'?: {
|
|
6642
|
+
/** Accept advertised routes from the Tailscale network */
|
|
6643
|
+
'acceptRoutes'?: boolean;
|
|
6644
|
+
};
|
|
6342
6645
|
};
|
|
6343
6646
|
/** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
|
|
6344
6647
|
'hostAliases'?: {
|
|
@@ -6398,15 +6701,15 @@ type PutProjectResult = {
|
|
|
6398
6701
|
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
6399
6702
|
'tagMatchCondition'?: 'and' | 'or';
|
|
6400
6703
|
};
|
|
6401
|
-
'options'?: {
|
|
6402
|
-
'cpuLimit'?: string;
|
|
6403
|
-
'memoryLimit'?: string;
|
|
6404
|
-
};
|
|
6405
6704
|
/** Relevant Tailscale secrets */
|
|
6406
6705
|
'secrets'?: {
|
|
6407
6706
|
/** Tailscale auth key (required for enabling Tailscale) */
|
|
6408
6707
|
'authKey'?: string;
|
|
6409
6708
|
};
|
|
6709
|
+
'options'?: {
|
|
6710
|
+
/** Accept advertised routes from the Tailscale network */
|
|
6711
|
+
'acceptRoutes'?: boolean;
|
|
6712
|
+
};
|
|
6410
6713
|
};
|
|
6411
6714
|
/** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
|
|
6412
6715
|
'hostAliases'?: {
|
|
@@ -6461,15 +6764,15 @@ type PutProjectData = {
|
|
|
6461
6764
|
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
6462
6765
|
'tagMatchCondition'?: 'and' | 'or';
|
|
6463
6766
|
};
|
|
6464
|
-
'options'?: {
|
|
6465
|
-
'cpuLimit'?: string;
|
|
6466
|
-
'memoryLimit'?: string;
|
|
6467
|
-
};
|
|
6468
6767
|
/** Relevant Tailscale secrets */
|
|
6469
6768
|
'secrets'?: {
|
|
6470
6769
|
/** Tailscale auth key (required for enabling Tailscale) */
|
|
6471
6770
|
'authKey'?: string;
|
|
6472
6771
|
};
|
|
6772
|
+
'options'?: {
|
|
6773
|
+
/** Accept advertised routes from the Tailscale network */
|
|
6774
|
+
'acceptRoutes'?: boolean;
|
|
6775
|
+
};
|
|
6473
6776
|
};
|
|
6474
6777
|
/** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
|
|
6475
6778
|
'hostAliases'?: {
|
|
@@ -6515,15 +6818,15 @@ type PutProjectData = {
|
|
|
6515
6818
|
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
6516
6819
|
'tagMatchCondition'?: 'and' | 'or';
|
|
6517
6820
|
};
|
|
6518
|
-
'options'?: {
|
|
6519
|
-
'cpuLimit'?: string;
|
|
6520
|
-
'memoryLimit'?: string;
|
|
6521
|
-
};
|
|
6522
6821
|
/** Relevant Tailscale secrets */
|
|
6523
6822
|
'secrets'?: {
|
|
6524
6823
|
/** Tailscale auth key (required for enabling Tailscale) */
|
|
6525
6824
|
'authKey'?: string;
|
|
6526
6825
|
};
|
|
6826
|
+
'options'?: {
|
|
6827
|
+
/** Accept advertised routes from the Tailscale network */
|
|
6828
|
+
'acceptRoutes'?: boolean;
|
|
6829
|
+
};
|
|
6527
6830
|
};
|
|
6528
6831
|
/** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
|
|
6529
6832
|
'hostAliases'?: {
|
|
@@ -6583,15 +6886,15 @@ type PatchProjectResult = {
|
|
|
6583
6886
|
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
6584
6887
|
'tagMatchCondition'?: 'and' | 'or';
|
|
6585
6888
|
};
|
|
6586
|
-
'options'?: {
|
|
6587
|
-
'cpuLimit'?: string;
|
|
6588
|
-
'memoryLimit'?: string;
|
|
6589
|
-
};
|
|
6590
6889
|
/** Relevant Tailscale secrets */
|
|
6591
6890
|
'secrets'?: {
|
|
6592
6891
|
/** Tailscale auth key (required for enabling Tailscale) */
|
|
6593
6892
|
'authKey'?: string;
|
|
6594
6893
|
};
|
|
6894
|
+
'options'?: {
|
|
6895
|
+
/** Accept advertised routes from the Tailscale network */
|
|
6896
|
+
'acceptRoutes'?: boolean;
|
|
6897
|
+
};
|
|
6595
6898
|
};
|
|
6596
6899
|
/** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
|
|
6597
6900
|
'hostAliases'?: {
|
|
@@ -6866,6 +7169,8 @@ type CreateAddonResult = {
|
|
|
6866
7169
|
/** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
|
|
6867
7170
|
'additionalDestinations'?: {
|
|
6868
7171
|
'destinationId': string;
|
|
7172
|
+
/** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
|
|
7173
|
+
'retentionTime'?: number;
|
|
6869
7174
|
'type': 'custom';
|
|
6870
7175
|
}[];
|
|
6871
7176
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
@@ -7028,6 +7333,8 @@ type CreateAddonData = {
|
|
|
7028
7333
|
/** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
|
|
7029
7334
|
'additionalDestinations'?: {
|
|
7030
7335
|
'destinationId': string;
|
|
7336
|
+
/** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
|
|
7337
|
+
'retentionTime'?: number;
|
|
7031
7338
|
'type': 'custom';
|
|
7032
7339
|
}[];
|
|
7033
7340
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
@@ -7149,6 +7456,8 @@ type PutAddonResult = {
|
|
|
7149
7456
|
/** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
|
|
7150
7457
|
'additionalDestinations'?: {
|
|
7151
7458
|
'destinationId': string;
|
|
7459
|
+
/** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
|
|
7460
|
+
'retentionTime'?: number;
|
|
7152
7461
|
'type': 'custom';
|
|
7153
7462
|
}[];
|
|
7154
7463
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
@@ -7311,6 +7620,8 @@ type PutAddonData = {
|
|
|
7311
7620
|
/** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
|
|
7312
7621
|
'additionalDestinations'?: {
|
|
7313
7622
|
'destinationId': string;
|
|
7623
|
+
/** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
|
|
7624
|
+
'retentionTime'?: number;
|
|
7314
7625
|
'type': 'custom';
|
|
7315
7626
|
}[];
|
|
7316
7627
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
@@ -7519,6 +7830,8 @@ type PatchAddonResult = {
|
|
|
7519
7830
|
/** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
|
|
7520
7831
|
'additionalDestinations'?: {
|
|
7521
7832
|
'destinationId': string;
|
|
7833
|
+
/** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
|
|
7834
|
+
'retentionTime'?: number;
|
|
7522
7835
|
'type': 'custom';
|
|
7523
7836
|
}[];
|
|
7524
7837
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
@@ -7602,6 +7915,8 @@ type PatchAddonData = {
|
|
|
7602
7915
|
'description'?: string;
|
|
7603
7916
|
/** An array of previously defined tags to help identify and group the resource. */
|
|
7604
7917
|
'tags'?: string[];
|
|
7918
|
+
/** The version of the addon type to use. If set to `latest`, the addon will be created with the most recent addon version. If set to a major version appended with `-latest`, e.g. `14-latest`, the addon will be created with the most recent minor version belonging to that major version. Example: "latest" */
|
|
7919
|
+
'version'?: string;
|
|
7605
7920
|
'billing'?: {
|
|
7606
7921
|
/** The ID of the deployment plan to use. Example: "nf-compute-20" */
|
|
7607
7922
|
'deploymentPlan'?: string;
|
|
@@ -7656,6 +7971,8 @@ type PatchAddonData = {
|
|
|
7656
7971
|
/** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
|
|
7657
7972
|
'additionalDestinations'?: {
|
|
7658
7973
|
'destinationId': string;
|
|
7974
|
+
/** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
|
|
7975
|
+
'retentionTime'?: number;
|
|
7659
7976
|
'type': 'custom';
|
|
7660
7977
|
}[];
|
|
7661
7978
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
@@ -7791,6 +8108,8 @@ type CreateAddonBackupscheduleData = {
|
|
|
7791
8108
|
/** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
|
|
7792
8109
|
'additionalDestinations'?: {
|
|
7793
8110
|
'destinationId': string;
|
|
8111
|
+
/** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
|
|
8112
|
+
'retentionTime'?: number;
|
|
7794
8113
|
'type': 'custom';
|
|
7795
8114
|
}[];
|
|
7796
8115
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
@@ -7937,6 +8256,8 @@ type BackupAddonData = {
|
|
|
7937
8256
|
/** List of destinations for which a backup should additionally be created. Only applicable for snapshot backups. */
|
|
7938
8257
|
'additionalDestinations'?: {
|
|
7939
8258
|
'destinationId': string;
|
|
8259
|
+
/** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
|
|
8260
|
+
'retentionTime'?: number;
|
|
7940
8261
|
'type': 'custom';
|
|
7941
8262
|
}[];
|
|
7942
8263
|
};
|
|
@@ -10119,6 +10440,8 @@ type PatchJobCronData = {
|
|
|
10119
10440
|
/** The number of successes required to mark the health check as a success. Example: 1 */
|
|
10120
10441
|
'successThreshold'?: number;
|
|
10121
10442
|
}[];
|
|
10443
|
+
/** The cron timer scheduling when to run the job. Example: "30 8 * * *" */
|
|
10444
|
+
'schedule'?: string;
|
|
10122
10445
|
/** Whether the cron's automatic scheduling is suspended */
|
|
10123
10446
|
'suspended'?: boolean;
|
|
10124
10447
|
/** Whether this job should run when another instance of the job is already running. `allow` will enable multiple instances of this job to run. `forbid` will keep the current instance of the job running and stop a new instance from being run. `replace` will terminate any currently running instance of the job and start a new one. Example: "forbid" */
|
|
@@ -20449,14 +20772,62 @@ type GetServiceResult = {
|
|
|
20449
20772
|
'storageSize': number;
|
|
20450
20773
|
};
|
|
20451
20774
|
};
|
|
20775
|
+
/** Roll out strategy of the service */
|
|
20776
|
+
'strategy'?: {
|
|
20777
|
+
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
20778
|
+
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
20779
|
+
};
|
|
20780
|
+
'zonalRedundancy'?: {
|
|
20781
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
20782
|
+
'type'?: 'disabled' | 'preferred' | 'required';
|
|
20783
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
20784
|
+
'minZones'?: number;
|
|
20785
|
+
};
|
|
20786
|
+
'gpu'?: {
|
|
20787
|
+
'enabled'?: boolean;
|
|
20788
|
+
'configuration'?: {
|
|
20789
|
+
'gpuType': string;
|
|
20790
|
+
'timesliced'?: boolean;
|
|
20791
|
+
};
|
|
20792
|
+
};
|
|
20793
|
+
/** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
|
|
20794
|
+
'gracePeriodSeconds'?: number;
|
|
20795
|
+
/** Allow setting custom labels and annotations for workloads. */
|
|
20796
|
+
'metadata'?: {
|
|
20797
|
+
/** Specify custom labels for the workload. */
|
|
20798
|
+
'labels'?: any;
|
|
20799
|
+
/** Specify custom annotations for the workload as string or object. */
|
|
20800
|
+
'annotations'?: any;
|
|
20801
|
+
};
|
|
20452
20802
|
/** URL at which the service's deployed image is located */
|
|
20453
20803
|
'imageUrl'?: string;
|
|
20454
20804
|
};
|
|
20455
20805
|
'buildConfiguration'?: {
|
|
20456
|
-
|
|
20806
|
+
/** An array of pull request build rules. Only supported for build services. Each commit belonging to a pull request on a branch that matches one of the provided build rules will be built automatically. */
|
|
20457
20807
|
'prRestrictions'?: string[];
|
|
20458
|
-
|
|
20808
|
+
/** An array of branch build rules. Only supported for build services. Each commit belonging to a branch that matches one of the provided build rules will be built automatically. */
|
|
20809
|
+
'branchRestrictions'?: string[];
|
|
20810
|
+
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
20811
|
+
'pathIgnoreRules'?: string[];
|
|
20812
|
+
/** If `true`, the functionality of `pathIgnoreRules` will be inverted. A commit will only be built if a file has been changed that matches one or more of the rules in `pathIgnoreRules`. */
|
|
20813
|
+
'isAllowList'?: boolean;
|
|
20814
|
+
/** If `true`, enables commit ignore flags. If a commit message contains one or more of the flags in `ciIgnoreFlags`, that commit will not be built. */
|
|
20815
|
+
'ciIgnoreFlagsEnabled'?: boolean;
|
|
20816
|
+
/** 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]"] */
|
|
20817
|
+
'ciIgnoreFlags'?: string[];
|
|
20818
|
+
/** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
|
|
20819
|
+
'dockerfileTarget'?: string;
|
|
20459
20820
|
'dockerCredentials'?: string[];
|
|
20821
|
+
/** Include .git folder inside the build context */
|
|
20822
|
+
'includeGitFolder'?: boolean;
|
|
20823
|
+
/** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
|
|
20824
|
+
'fullGitClone'?: boolean;
|
|
20825
|
+
'storage'?: {
|
|
20826
|
+
'ephemeralStorage'?: {
|
|
20827
|
+
/** Ephemeral storage per build in MB Example: 16384 */
|
|
20828
|
+
'storageSize'?: number;
|
|
20829
|
+
};
|
|
20830
|
+
};
|
|
20460
20831
|
};
|
|
20461
20832
|
'buildEngineConfiguration'?: {
|
|
20462
20833
|
/** The build engine used. Example: "buildpack" */
|
|
@@ -23367,6 +23738,7 @@ declare class ApiClient {
|
|
|
23367
23738
|
metrics: GetAddonMetricsCall;
|
|
23368
23739
|
metricsRange: GetAddonMetricsRangeCall;
|
|
23369
23740
|
};
|
|
23741
|
+
backupDestination: GetBackupdestinationCall;
|
|
23370
23742
|
invoice: {
|
|
23371
23743
|
details: GetInvoiceDetailsCall;
|
|
23372
23744
|
};
|
|
@@ -23444,6 +23816,8 @@ declare class ApiClient {
|
|
|
23444
23816
|
templateRun: GetTemplaterunCall;
|
|
23445
23817
|
};
|
|
23446
23818
|
list: {
|
|
23819
|
+
backupDestinations: ListBackupdestinationsCall;
|
|
23820
|
+
backupDestinationsBackups: ListBackupdestinationsbackupsCall;
|
|
23447
23821
|
invoices: ListInvoicesCall;
|
|
23448
23822
|
cloud: {
|
|
23449
23823
|
providers: ListCloudProvidersCall;
|
|
@@ -23482,6 +23856,61 @@ declare class ApiClient {
|
|
|
23482
23856
|
templates: ListTemplatesCall;
|
|
23483
23857
|
templateRuns: ListTemplaterunsCall;
|
|
23484
23858
|
};
|
|
23859
|
+
add: {
|
|
23860
|
+
backupDestination: AddBackupdestinationCall;
|
|
23861
|
+
domain: {
|
|
23862
|
+
subdomain: AddDomainSubdomainCall;
|
|
23863
|
+
};
|
|
23864
|
+
subdomain: {
|
|
23865
|
+
path: AddSubdomainPathCall;
|
|
23866
|
+
};
|
|
23867
|
+
registryCredentials: AddRegistrycredentialsCall;
|
|
23868
|
+
tag: AddTagCall;
|
|
23869
|
+
};
|
|
23870
|
+
patch: {
|
|
23871
|
+
backupDestination: PatchBackupdestinationCall;
|
|
23872
|
+
project: PatchProjectCall;
|
|
23873
|
+
addon: PatchAddonCall;
|
|
23874
|
+
job: {
|
|
23875
|
+
cron: PatchJobCronCall;
|
|
23876
|
+
manual: PatchJobManualCall;
|
|
23877
|
+
};
|
|
23878
|
+
secret: PatchSecretCall;
|
|
23879
|
+
service: {
|
|
23880
|
+
build: PatchServiceBuildCall;
|
|
23881
|
+
combined: PatchServiceCombinedCall;
|
|
23882
|
+
deployment: PatchServiceDeploymentCall;
|
|
23883
|
+
};
|
|
23884
|
+
tag: PatchTagCall;
|
|
23885
|
+
};
|
|
23886
|
+
delete: {
|
|
23887
|
+
backupDestination: DeleteBackupdestinationCall;
|
|
23888
|
+
cloud: {
|
|
23889
|
+
cluster: DeleteCloudClusterCall;
|
|
23890
|
+
dockerRegistry: DeleteCloudDockerregistryCall;
|
|
23891
|
+
integration: DeleteCloudIntegrationCall;
|
|
23892
|
+
};
|
|
23893
|
+
domain: DeleteDomainCall;
|
|
23894
|
+
subdomain: DeleteSubdomainCall & {
|
|
23895
|
+
path: DeleteSubdomainPathCall;
|
|
23896
|
+
};
|
|
23897
|
+
logSink: DeleteLogsinkCall;
|
|
23898
|
+
notification: DeleteNotificationCall;
|
|
23899
|
+
registryCredentials: DeleteRegistrycredentialsCall;
|
|
23900
|
+
project: DeleteProjectCall;
|
|
23901
|
+
addon: DeleteAddonCall & {
|
|
23902
|
+
backupSchedule: DeleteAddonBackupscheduleCall;
|
|
23903
|
+
};
|
|
23904
|
+
backup: DeleteBackupCall;
|
|
23905
|
+
job: DeleteJobCall;
|
|
23906
|
+
previewTemplatePreview: DeletePreviewtemplatepreviewCall;
|
|
23907
|
+
secret: DeleteSecretCall;
|
|
23908
|
+
secretLink: DeleteSecretlinkCall;
|
|
23909
|
+
service: DeleteServiceCall;
|
|
23910
|
+
volume: DeleteVolumeCall;
|
|
23911
|
+
tag: DeleteTagCall;
|
|
23912
|
+
template: DeleteTemplateCall;
|
|
23913
|
+
};
|
|
23485
23914
|
create: {
|
|
23486
23915
|
cloud: {
|
|
23487
23916
|
cluster: CreateCloudClusterCall;
|
|
@@ -23552,33 +23981,6 @@ declare class ApiClient {
|
|
|
23552
23981
|
volume: UpdateVolumeCall;
|
|
23553
23982
|
template: UpdateTemplateCall;
|
|
23554
23983
|
};
|
|
23555
|
-
delete: {
|
|
23556
|
-
cloud: {
|
|
23557
|
-
cluster: DeleteCloudClusterCall;
|
|
23558
|
-
dockerRegistry: DeleteCloudDockerregistryCall;
|
|
23559
|
-
integration: DeleteCloudIntegrationCall;
|
|
23560
|
-
};
|
|
23561
|
-
domain: DeleteDomainCall;
|
|
23562
|
-
subdomain: DeleteSubdomainCall & {
|
|
23563
|
-
path: DeleteSubdomainPathCall;
|
|
23564
|
-
};
|
|
23565
|
-
logSink: DeleteLogsinkCall;
|
|
23566
|
-
notification: DeleteNotificationCall;
|
|
23567
|
-
registryCredentials: DeleteRegistrycredentialsCall;
|
|
23568
|
-
project: DeleteProjectCall;
|
|
23569
|
-
addon: DeleteAddonCall & {
|
|
23570
|
-
backupSchedule: DeleteAddonBackupscheduleCall;
|
|
23571
|
-
};
|
|
23572
|
-
backup: DeleteBackupCall;
|
|
23573
|
-
job: DeleteJobCall;
|
|
23574
|
-
previewTemplatePreview: DeletePreviewtemplatepreviewCall;
|
|
23575
|
-
secret: DeleteSecretCall;
|
|
23576
|
-
secretLink: DeleteSecretlinkCall;
|
|
23577
|
-
service: DeleteServiceCall;
|
|
23578
|
-
volume: DeleteVolumeCall;
|
|
23579
|
-
tag: DeleteTagCall;
|
|
23580
|
-
template: DeleteTemplateCall;
|
|
23581
|
-
};
|
|
23582
23984
|
cordon: {
|
|
23583
23985
|
cloud: {
|
|
23584
23986
|
cluster: {
|
|
@@ -23606,16 +24008,6 @@ declare class ApiClient {
|
|
|
23606
24008
|
backup: ImportAddonBackupCall;
|
|
23607
24009
|
};
|
|
23608
24010
|
};
|
|
23609
|
-
add: {
|
|
23610
|
-
domain: {
|
|
23611
|
-
subdomain: AddDomainSubdomainCall;
|
|
23612
|
-
};
|
|
23613
|
-
subdomain: {
|
|
23614
|
-
path: AddSubdomainPathCall;
|
|
23615
|
-
};
|
|
23616
|
-
registryCredentials: AddRegistrycredentialsCall;
|
|
23617
|
-
tag: AddTagCall;
|
|
23618
|
-
};
|
|
23619
24011
|
assign: {
|
|
23620
24012
|
subdomain: {
|
|
23621
24013
|
service: AssignSubdomainServiceCall;
|
|
@@ -23668,21 +24060,6 @@ declare class ApiClient {
|
|
|
23668
24060
|
};
|
|
23669
24061
|
tag: PutTagCall;
|
|
23670
24062
|
};
|
|
23671
|
-
patch: {
|
|
23672
|
-
project: PatchProjectCall;
|
|
23673
|
-
addon: PatchAddonCall;
|
|
23674
|
-
job: {
|
|
23675
|
-
cron: PatchJobCronCall;
|
|
23676
|
-
manual: PatchJobManualCall;
|
|
23677
|
-
};
|
|
23678
|
-
secret: PatchSecretCall;
|
|
23679
|
-
service: {
|
|
23680
|
-
build: PatchServiceBuildCall;
|
|
23681
|
-
combined: PatchServiceCombinedCall;
|
|
23682
|
-
deployment: PatchServiceDeploymentCall;
|
|
23683
|
-
};
|
|
23684
|
-
tag: PatchTagCall;
|
|
23685
|
-
};
|
|
23686
24063
|
backup: {
|
|
23687
24064
|
addon: BackupAddonCall;
|
|
23688
24065
|
};
|
|
@@ -23764,6 +24141,7 @@ declare class ApiClient {
|
|
|
23764
24141
|
restores: GetAddonRestoresEndpoint;
|
|
23765
24142
|
version: GetAddonVersionEndpoint;
|
|
23766
24143
|
};
|
|
24144
|
+
backupDestination: GetBackupdestinationEndpoint;
|
|
23767
24145
|
invoice: {
|
|
23768
24146
|
details: GetInvoiceDetailsEndpoint;
|
|
23769
24147
|
};
|
|
@@ -23825,6 +24203,8 @@ declare class ApiClient {
|
|
|
23825
24203
|
templateRun: GetTemplaterunEndpoint;
|
|
23826
24204
|
};
|
|
23827
24205
|
list: {
|
|
24206
|
+
backupDestinations: ListBackupdestinationsEndpoint;
|
|
24207
|
+
backupDestinationsBackups: ListBackupdestinationsbackupsEndpoint;
|
|
23828
24208
|
invoices: ListInvoicesEndpoint;
|
|
23829
24209
|
cloud: {
|
|
23830
24210
|
providers: ListCloudProvidersEndpoint;
|
|
@@ -23863,6 +24243,61 @@ declare class ApiClient {
|
|
|
23863
24243
|
templates: ListTemplatesEndpoint;
|
|
23864
24244
|
templateRuns: ListTemplaterunsEndpoint;
|
|
23865
24245
|
};
|
|
24246
|
+
add: {
|
|
24247
|
+
backupDestination: AddBackupdestinationEndpoint;
|
|
24248
|
+
domain: {
|
|
24249
|
+
subdomain: AddDomainSubdomainEndpoint;
|
|
24250
|
+
};
|
|
24251
|
+
subdomain: {
|
|
24252
|
+
path: AddSubdomainPathEndpoint;
|
|
24253
|
+
};
|
|
24254
|
+
registryCredentials: AddRegistrycredentialsEndpoint;
|
|
24255
|
+
tag: AddTagEndpoint;
|
|
24256
|
+
};
|
|
24257
|
+
patch: {
|
|
24258
|
+
backupDestination: PatchBackupdestinationEndpoint;
|
|
24259
|
+
project: PatchProjectEndpoint;
|
|
24260
|
+
addon: PatchAddonEndpoint;
|
|
24261
|
+
job: {
|
|
24262
|
+
cron: PatchJobCronEndpoint;
|
|
24263
|
+
manual: PatchJobManualEndpoint;
|
|
24264
|
+
};
|
|
24265
|
+
secret: PatchSecretEndpoint;
|
|
24266
|
+
service: {
|
|
24267
|
+
build: PatchServiceBuildEndpoint;
|
|
24268
|
+
combined: PatchServiceCombinedEndpoint;
|
|
24269
|
+
deployment: PatchServiceDeploymentEndpoint;
|
|
24270
|
+
};
|
|
24271
|
+
tag: PatchTagEndpoint;
|
|
24272
|
+
};
|
|
24273
|
+
delete: {
|
|
24274
|
+
backupDestination: DeleteBackupdestinationEndpoint;
|
|
24275
|
+
cloud: {
|
|
24276
|
+
cluster: DeleteCloudClusterEndpoint;
|
|
24277
|
+
dockerRegistry: DeleteCloudDockerregistryEndpoint;
|
|
24278
|
+
integration: DeleteCloudIntegrationEndpoint;
|
|
24279
|
+
};
|
|
24280
|
+
domain: DeleteDomainEndpoint;
|
|
24281
|
+
subdomain: DeleteSubdomainEndpoint & {
|
|
24282
|
+
path: DeleteSubdomainPathEndpoint;
|
|
24283
|
+
};
|
|
24284
|
+
logSink: DeleteLogsinkEndpoint;
|
|
24285
|
+
notification: DeleteNotificationEndpoint;
|
|
24286
|
+
registryCredentials: DeleteRegistrycredentialsEndpoint;
|
|
24287
|
+
project: DeleteProjectEndpoint;
|
|
24288
|
+
addon: DeleteAddonEndpoint & {
|
|
24289
|
+
backupSchedule: DeleteAddonBackupscheduleEndpoint;
|
|
24290
|
+
};
|
|
24291
|
+
backup: DeleteBackupEndpoint;
|
|
24292
|
+
job: DeleteJobEndpoint;
|
|
24293
|
+
previewTemplatePreview: DeletePreviewtemplatepreviewEndpoint;
|
|
24294
|
+
secret: DeleteSecretEndpoint;
|
|
24295
|
+
secretLink: DeleteSecretlinkEndpoint;
|
|
24296
|
+
service: DeleteServiceEndpoint;
|
|
24297
|
+
volume: DeleteVolumeEndpoint;
|
|
24298
|
+
tag: DeleteTagEndpoint;
|
|
24299
|
+
template: DeleteTemplateEndpoint;
|
|
24300
|
+
};
|
|
23866
24301
|
create: {
|
|
23867
24302
|
cloud: {
|
|
23868
24303
|
cluster: CreateCloudClusterEndpoint;
|
|
@@ -23933,33 +24368,6 @@ declare class ApiClient {
|
|
|
23933
24368
|
volume: UpdateVolumeEndpoint;
|
|
23934
24369
|
template: UpdateTemplateEndpoint;
|
|
23935
24370
|
};
|
|
23936
|
-
delete: {
|
|
23937
|
-
cloud: {
|
|
23938
|
-
cluster: DeleteCloudClusterEndpoint;
|
|
23939
|
-
dockerRegistry: DeleteCloudDockerregistryEndpoint;
|
|
23940
|
-
integration: DeleteCloudIntegrationEndpoint;
|
|
23941
|
-
};
|
|
23942
|
-
domain: DeleteDomainEndpoint;
|
|
23943
|
-
subdomain: DeleteSubdomainEndpoint & {
|
|
23944
|
-
path: DeleteSubdomainPathEndpoint;
|
|
23945
|
-
};
|
|
23946
|
-
logSink: DeleteLogsinkEndpoint;
|
|
23947
|
-
notification: DeleteNotificationEndpoint;
|
|
23948
|
-
registryCredentials: DeleteRegistrycredentialsEndpoint;
|
|
23949
|
-
project: DeleteProjectEndpoint;
|
|
23950
|
-
addon: DeleteAddonEndpoint & {
|
|
23951
|
-
backupSchedule: DeleteAddonBackupscheduleEndpoint;
|
|
23952
|
-
};
|
|
23953
|
-
backup: DeleteBackupEndpoint;
|
|
23954
|
-
job: DeleteJobEndpoint;
|
|
23955
|
-
previewTemplatePreview: DeletePreviewtemplatepreviewEndpoint;
|
|
23956
|
-
secret: DeleteSecretEndpoint;
|
|
23957
|
-
secretLink: DeleteSecretlinkEndpoint;
|
|
23958
|
-
service: DeleteServiceEndpoint;
|
|
23959
|
-
volume: DeleteVolumeEndpoint;
|
|
23960
|
-
tag: DeleteTagEndpoint;
|
|
23961
|
-
template: DeleteTemplateEndpoint;
|
|
23962
|
-
};
|
|
23963
24371
|
cordon: {
|
|
23964
24372
|
cloud: {
|
|
23965
24373
|
cluster: {
|
|
@@ -23987,16 +24395,6 @@ declare class ApiClient {
|
|
|
23987
24395
|
backup: ImportAddonBackupEndpoint;
|
|
23988
24396
|
};
|
|
23989
24397
|
};
|
|
23990
|
-
add: {
|
|
23991
|
-
domain: {
|
|
23992
|
-
subdomain: AddDomainSubdomainEndpoint;
|
|
23993
|
-
};
|
|
23994
|
-
subdomain: {
|
|
23995
|
-
path: AddSubdomainPathEndpoint;
|
|
23996
|
-
};
|
|
23997
|
-
registryCredentials: AddRegistrycredentialsEndpoint;
|
|
23998
|
-
tag: AddTagEndpoint;
|
|
23999
|
-
};
|
|
24000
24398
|
assign: {
|
|
24001
24399
|
subdomain: {
|
|
24002
24400
|
service: AssignSubdomainServiceEndpoint;
|
|
@@ -24049,21 +24447,6 @@ declare class ApiClient {
|
|
|
24049
24447
|
};
|
|
24050
24448
|
tag: PutTagEndpoint;
|
|
24051
24449
|
};
|
|
24052
|
-
patch: {
|
|
24053
|
-
project: PatchProjectEndpoint;
|
|
24054
|
-
addon: PatchAddonEndpoint;
|
|
24055
|
-
job: {
|
|
24056
|
-
cron: PatchJobCronEndpoint;
|
|
24057
|
-
manual: PatchJobManualEndpoint;
|
|
24058
|
-
};
|
|
24059
|
-
secret: PatchSecretEndpoint;
|
|
24060
|
-
service: {
|
|
24061
|
-
build: PatchServiceBuildEndpoint;
|
|
24062
|
-
combined: PatchServiceCombinedEndpoint;
|
|
24063
|
-
deployment: PatchServiceDeploymentEndpoint;
|
|
24064
|
-
};
|
|
24065
|
-
tag: PatchTagEndpoint;
|
|
24066
|
-
};
|
|
24067
24450
|
backup: {
|
|
24068
24451
|
addon: BackupAddonEndpoint;
|
|
24069
24452
|
};
|
|
@@ -24138,4 +24521,4 @@ type ApiClientOpts = {
|
|
|
24138
24521
|
customUserAgent?: string;
|
|
24139
24522
|
};
|
|
24140
24523
|
|
|
24141
|
-
export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreOptions, 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, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathEndpoint, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, AddTagCall, AddTagData, AddTagEndpoint, AddTagRequest, AddTagResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainPathCall, AssignSubdomainPathData, AssignSubdomainPathEndpoint, AssignSubdomainPathParameters, AssignSubdomainPathRequest, AssignSubdomainPathResult, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CordonCloudClusterNodeCall, CordonCloudClusterNodeEndpoint, CordonCloudClusterNodeParameters, CordonCloudClusterNodeRequest, CordonCloudClusterNodeResult, 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, DeleteSubdomainPathCall, DeleteSubdomainPathEndpoint, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTagCall, DeleteTagEndpoint, DeleteTagParameters, DeleteTagRequest, DeleteTagResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, DrainCloudClusterNodeCall, DrainCloudClusterNodeEndpoint, DrainCloudClusterNodeParameters, DrainCloudClusterNodeRequest, DrainCloudClusterNodeResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupRestoresCall, GetAddonBackupRestoresEndpoint, GetAddonBackupRestoresOptions, GetAddonBackupRestoresParameters, GetAddonBackupRestoresRequest, GetAddonBackupRestoresResult, 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, GetApiEndpointPaginated, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetDomaincertificateCall, GetDomaincertificateEndpoint, GetDomaincertificateParameters, GetDomaincertificateRequest, GetDomaincertificateResult, 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, GetSubdomainPathCall, GetSubdomainPathEndpoint, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTagCall, GetTagEndpoint, GetTagParameters, GetTagRequest, GetTagResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ImportDomaincertificateCall, ImportDomaincertificateData, ImportDomaincertificateEndpoint, ImportDomaincertificateParameters, ImportDomaincertificateRequest, ImportDomaincertificateResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClusterNodesCall, ListCloudClusterNodesEndpoint, ListCloudClusterNodesOptions, ListCloudClusterNodesParameters, ListCloudClusterNodesRequest, ListCloudClusterNodesResult, 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, ListSubdomainPathCall, ListSubdomainPathEndpoint, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTagsCall, ListTagsEndpoint, ListTagsOptions, ListTagsRequest, ListTagsResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, LogType, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchProjectCall, PatchProjectData, PatchProjectEndpoint, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PatchTagCall, PatchTagData, PatchTagEndpoint, PatchTagParameters, PatchTagRequest, PatchTagResult, 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, PutTagCall, PutTagData, PutTagEndpoint, PutTagParameters, PutTagRequest, PutTagResult, ResetAddonCall, ResetAddonEndpoint, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupOptions, 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, UnassignSubdomainOptions, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathEndpoint, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UncordonCloudClusterNodeCall, UncordonCloudClusterNodeEndpoint, UncordonCloudClusterNodeParameters, UncordonCloudClusterNodeRequest, UncordonCloudClusterNodeResult, 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, UpdateSubdomainPathCall, UpdateSubdomainPathData, UpdateSubdomainPathEndpoint, UpdateSubdomainPathParameters, UpdateSubdomainPathRequest, UpdateSubdomainPathResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
|
|
24524
|
+
export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreOptions, 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, AddBackupdestinationCall, AddBackupdestinationData, AddBackupdestinationEndpoint, AddBackupdestinationRequest, AddBackupdestinationResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathEndpoint, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, AddTagCall, AddTagData, AddTagEndpoint, AddTagRequest, AddTagResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainPathCall, AssignSubdomainPathData, AssignSubdomainPathEndpoint, AssignSubdomainPathParameters, AssignSubdomainPathRequest, AssignSubdomainPathResult, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CordonCloudClusterNodeCall, CordonCloudClusterNodeEndpoint, CordonCloudClusterNodeParameters, CordonCloudClusterNodeRequest, CordonCloudClusterNodeResult, 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, DeleteBackupdestinationCall, DeleteBackupdestinationEndpoint, DeleteBackupdestinationParameters, DeleteBackupdestinationRequest, DeleteBackupdestinationResult, 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, DeleteSubdomainPathCall, DeleteSubdomainPathEndpoint, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTagCall, DeleteTagEndpoint, DeleteTagParameters, DeleteTagRequest, DeleteTagResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, DrainCloudClusterNodeCall, DrainCloudClusterNodeEndpoint, DrainCloudClusterNodeParameters, DrainCloudClusterNodeRequest, DrainCloudClusterNodeResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupRestoresCall, GetAddonBackupRestoresEndpoint, GetAddonBackupRestoresOptions, GetAddonBackupRestoresParameters, GetAddonBackupRestoresRequest, GetAddonBackupRestoresResult, 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, GetApiEndpointPaginated, GetBackupdestinationCall, GetBackupdestinationEndpoint, GetBackupdestinationParameters, GetBackupdestinationRequest, GetBackupdestinationResult, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetDomaincertificateCall, GetDomaincertificateEndpoint, GetDomaincertificateParameters, GetDomaincertificateRequest, GetDomaincertificateResult, 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, GetSubdomainPathCall, GetSubdomainPathEndpoint, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTagCall, GetTagEndpoint, GetTagParameters, GetTagRequest, GetTagResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ImportDomaincertificateCall, ImportDomaincertificateData, ImportDomaincertificateEndpoint, ImportDomaincertificateParameters, ImportDomaincertificateRequest, ImportDomaincertificateResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBackupdestinationsCall, ListBackupdestinationsEndpoint, ListBackupdestinationsOptions, ListBackupdestinationsRequest, ListBackupdestinationsResult, ListBackupdestinationsbackupsCall, ListBackupdestinationsbackupsEndpoint, ListBackupdestinationsbackupsOptions, ListBackupdestinationsbackupsParameters, ListBackupdestinationsbackupsRequest, ListBackupdestinationsbackupsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClusterNodesCall, ListCloudClusterNodesEndpoint, ListCloudClusterNodesOptions, ListCloudClusterNodesParameters, ListCloudClusterNodesRequest, ListCloudClusterNodesResult, 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, ListSubdomainPathCall, ListSubdomainPathEndpoint, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTagsCall, ListTagsEndpoint, ListTagsOptions, ListTagsRequest, ListTagsResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, LogType, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchBackupdestinationCall, PatchBackupdestinationData, PatchBackupdestinationEndpoint, PatchBackupdestinationParameters, PatchBackupdestinationRequest, PatchBackupdestinationResult, 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, PatchTagCall, PatchTagData, PatchTagEndpoint, PatchTagParameters, PatchTagRequest, PatchTagResult, 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, PutTagCall, PutTagData, PutTagEndpoint, PutTagParameters, PutTagRequest, PutTagResult, ResetAddonCall, ResetAddonEndpoint, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupOptions, 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, UnassignSubdomainOptions, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathEndpoint, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UncordonCloudClusterNodeCall, UncordonCloudClusterNodeEndpoint, UncordonCloudClusterNodeParameters, UncordonCloudClusterNodeRequest, UncordonCloudClusterNodeResult, 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, UpdateSubdomainPathCall, UpdateSubdomainPathData, UpdateSubdomainPathEndpoint, UpdateSubdomainPathParameters, UpdateSubdomainPathRequest, UpdateSubdomainPathResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
|