@northflank/js-client 0.7.23 → 0.7.25
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 +659 -216
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +659 -216
- package/dist/esm/api-client.js +1 -1
- package/package.json +4 -4
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
|
};
|
|
@@ -8898,6 +9219,10 @@ type CreateJobCronResult = {
|
|
|
8898
9219
|
'dockerWorkDir': string;
|
|
8899
9220
|
/** Should intermediate image layers be cached? */
|
|
8900
9221
|
'useCache'?: boolean;
|
|
9222
|
+
'buildkit'?: {
|
|
9223
|
+
'useInternalCache'?: boolean;
|
|
9224
|
+
'internalCacheStorage'?: number;
|
|
9225
|
+
};
|
|
8901
9226
|
};
|
|
8902
9227
|
} | {
|
|
8903
9228
|
'storage'?: {
|
|
@@ -9186,6 +9511,10 @@ type CreateJobCronData = {
|
|
|
9186
9511
|
'dockerWorkDir': string;
|
|
9187
9512
|
/** Should intermediate image layers be cached? */
|
|
9188
9513
|
'useCache'?: boolean;
|
|
9514
|
+
'buildkit'?: {
|
|
9515
|
+
'useInternalCache'?: boolean;
|
|
9516
|
+
'internalCacheStorage'?: number;
|
|
9517
|
+
};
|
|
9189
9518
|
};
|
|
9190
9519
|
} | {
|
|
9191
9520
|
'storage'?: {
|
|
@@ -9441,6 +9770,10 @@ type PutJobCronResult = {
|
|
|
9441
9770
|
'dockerWorkDir': string;
|
|
9442
9771
|
/** Should intermediate image layers be cached? */
|
|
9443
9772
|
'useCache'?: boolean;
|
|
9773
|
+
'buildkit'?: {
|
|
9774
|
+
'useInternalCache'?: boolean;
|
|
9775
|
+
'internalCacheStorage'?: number;
|
|
9776
|
+
};
|
|
9444
9777
|
};
|
|
9445
9778
|
} | {
|
|
9446
9779
|
'storage'?: {
|
|
@@ -9729,6 +10062,10 @@ type PutJobCronData = {
|
|
|
9729
10062
|
'dockerWorkDir': string;
|
|
9730
10063
|
/** Should intermediate image layers be cached? */
|
|
9731
10064
|
'useCache'?: boolean;
|
|
10065
|
+
'buildkit'?: {
|
|
10066
|
+
'useInternalCache'?: boolean;
|
|
10067
|
+
'internalCacheStorage'?: number;
|
|
10068
|
+
};
|
|
9732
10069
|
};
|
|
9733
10070
|
} | {
|
|
9734
10071
|
'storage'?: {
|
|
@@ -9984,6 +10321,10 @@ type PatchJobCronResult = {
|
|
|
9984
10321
|
'dockerWorkDir': string;
|
|
9985
10322
|
/** Should intermediate image layers be cached? */
|
|
9986
10323
|
'useCache'?: boolean;
|
|
10324
|
+
'buildkit'?: {
|
|
10325
|
+
'useInternalCache'?: boolean;
|
|
10326
|
+
'internalCacheStorage'?: number;
|
|
10327
|
+
};
|
|
9987
10328
|
};
|
|
9988
10329
|
} | {
|
|
9989
10330
|
'storage'?: {
|
|
@@ -10119,6 +10460,8 @@ type PatchJobCronData = {
|
|
|
10119
10460
|
/** The number of successes required to mark the health check as a success. Example: 1 */
|
|
10120
10461
|
'successThreshold'?: number;
|
|
10121
10462
|
}[];
|
|
10463
|
+
/** The cron timer scheduling when to run the job. Example: "30 8 * * *" */
|
|
10464
|
+
'schedule'?: string;
|
|
10122
10465
|
/** Whether the cron's automatic scheduling is suspended */
|
|
10123
10466
|
'suspended'?: boolean;
|
|
10124
10467
|
/** 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" */
|
|
@@ -10316,6 +10659,10 @@ type CreateJobManualResult = {
|
|
|
10316
10659
|
'dockerWorkDir': string;
|
|
10317
10660
|
/** Should intermediate image layers be cached? */
|
|
10318
10661
|
'useCache'?: boolean;
|
|
10662
|
+
'buildkit'?: {
|
|
10663
|
+
'useInternalCache'?: boolean;
|
|
10664
|
+
'internalCacheStorage'?: number;
|
|
10665
|
+
};
|
|
10319
10666
|
};
|
|
10320
10667
|
} | {
|
|
10321
10668
|
'storage'?: {
|
|
@@ -10604,6 +10951,10 @@ type CreateJobManualData = {
|
|
|
10604
10951
|
'dockerWorkDir': string;
|
|
10605
10952
|
/** Should intermediate image layers be cached? */
|
|
10606
10953
|
'useCache'?: boolean;
|
|
10954
|
+
'buildkit'?: {
|
|
10955
|
+
'useInternalCache'?: boolean;
|
|
10956
|
+
'internalCacheStorage'?: number;
|
|
10957
|
+
};
|
|
10607
10958
|
};
|
|
10608
10959
|
} | {
|
|
10609
10960
|
'storage'?: {
|
|
@@ -10847,6 +11198,10 @@ type PutJobManualResult = {
|
|
|
10847
11198
|
'dockerWorkDir': string;
|
|
10848
11199
|
/** Should intermediate image layers be cached? */
|
|
10849
11200
|
'useCache'?: boolean;
|
|
11201
|
+
'buildkit'?: {
|
|
11202
|
+
'useInternalCache'?: boolean;
|
|
11203
|
+
'internalCacheStorage'?: number;
|
|
11204
|
+
};
|
|
10850
11205
|
};
|
|
10851
11206
|
} | {
|
|
10852
11207
|
'storage'?: {
|
|
@@ -11135,6 +11490,10 @@ type PutJobManualData = {
|
|
|
11135
11490
|
'dockerWorkDir': string;
|
|
11136
11491
|
/** Should intermediate image layers be cached? */
|
|
11137
11492
|
'useCache'?: boolean;
|
|
11493
|
+
'buildkit'?: {
|
|
11494
|
+
'useInternalCache'?: boolean;
|
|
11495
|
+
'internalCacheStorage'?: number;
|
|
11496
|
+
};
|
|
11138
11497
|
};
|
|
11139
11498
|
} | {
|
|
11140
11499
|
'storage'?: {
|
|
@@ -11378,6 +11737,10 @@ type PatchJobManualResult = {
|
|
|
11378
11737
|
'dockerWorkDir': string;
|
|
11379
11738
|
/** Should intermediate image layers be cached? */
|
|
11380
11739
|
'useCache'?: boolean;
|
|
11740
|
+
'buildkit'?: {
|
|
11741
|
+
'useInternalCache'?: boolean;
|
|
11742
|
+
'internalCacheStorage'?: number;
|
|
11743
|
+
};
|
|
11381
11744
|
};
|
|
11382
11745
|
} | {
|
|
11383
11746
|
'storage'?: {
|
|
@@ -11595,6 +11958,10 @@ type GetJobResult = {
|
|
|
11595
11958
|
'buildkit'?: {
|
|
11596
11959
|
/** Should intermediate image layers be cached? */
|
|
11597
11960
|
'useCache'?: boolean;
|
|
11961
|
+
/** Should use persistent storage to store all layers? */
|
|
11962
|
+
'useInternalCache'?: boolean;
|
|
11963
|
+
/** Storage size to use for internal cache */
|
|
11964
|
+
'internalCacheStorage'?: boolean;
|
|
11598
11965
|
};
|
|
11599
11966
|
/** Details about Kaniko settings. */
|
|
11600
11967
|
'kaniko'?: {
|
|
@@ -12017,6 +12384,12 @@ type UpdateJobBuildoptionsData = {
|
|
|
12017
12384
|
'dockerFilePath'?: string;
|
|
12018
12385
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
12019
12386
|
'dockerWorkDir'?: string;
|
|
12387
|
+
'buildkit'?: {
|
|
12388
|
+
/** Should use persistent storage to store all layers? */
|
|
12389
|
+
'useInternalCache'?: boolean;
|
|
12390
|
+
/** Persistent storage per build in MB */
|
|
12391
|
+
'internalCacheStorage': number;
|
|
12392
|
+
};
|
|
12020
12393
|
};
|
|
12021
12394
|
/** 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. */
|
|
12022
12395
|
'pathIgnoreRules'?: string[];
|
|
@@ -14884,6 +15257,10 @@ type CreateServiceBuildResult = {
|
|
|
14884
15257
|
'dockerWorkDir': string;
|
|
14885
15258
|
/** Should intermediate image layers be cached? */
|
|
14886
15259
|
'useCache'?: boolean;
|
|
15260
|
+
'buildkit'?: {
|
|
15261
|
+
'useInternalCache'?: boolean;
|
|
15262
|
+
'internalCacheStorage'?: number;
|
|
15263
|
+
};
|
|
14887
15264
|
};
|
|
14888
15265
|
} | {
|
|
14889
15266
|
'storage'?: {
|
|
@@ -15025,6 +15402,10 @@ type CreateServiceBuildData = {
|
|
|
15025
15402
|
'dockerWorkDir': string;
|
|
15026
15403
|
/** Should intermediate image layers be cached? */
|
|
15027
15404
|
'useCache'?: boolean;
|
|
15405
|
+
'buildkit'?: {
|
|
15406
|
+
'useInternalCache'?: boolean;
|
|
15407
|
+
'internalCacheStorage'?: number;
|
|
15408
|
+
};
|
|
15028
15409
|
};
|
|
15029
15410
|
} | {
|
|
15030
15411
|
'storage'?: {
|
|
@@ -15136,6 +15517,10 @@ type PutServiceBuildResult = {
|
|
|
15136
15517
|
'dockerWorkDir': string;
|
|
15137
15518
|
/** Should intermediate image layers be cached? */
|
|
15138
15519
|
'useCache'?: boolean;
|
|
15520
|
+
'buildkit'?: {
|
|
15521
|
+
'useInternalCache'?: boolean;
|
|
15522
|
+
'internalCacheStorage'?: number;
|
|
15523
|
+
};
|
|
15139
15524
|
};
|
|
15140
15525
|
} | {
|
|
15141
15526
|
'storage'?: {
|
|
@@ -15277,6 +15662,10 @@ type PutServiceBuildData = {
|
|
|
15277
15662
|
'dockerWorkDir': string;
|
|
15278
15663
|
/** Should intermediate image layers be cached? */
|
|
15279
15664
|
'useCache'?: boolean;
|
|
15665
|
+
'buildkit'?: {
|
|
15666
|
+
'useInternalCache'?: boolean;
|
|
15667
|
+
'internalCacheStorage'?: number;
|
|
15668
|
+
};
|
|
15280
15669
|
};
|
|
15281
15670
|
} | {
|
|
15282
15671
|
'storage'?: {
|
|
@@ -15388,6 +15777,10 @@ type PatchServiceBuildResult = {
|
|
|
15388
15777
|
'dockerWorkDir': string;
|
|
15389
15778
|
/** Should intermediate image layers be cached? */
|
|
15390
15779
|
'useCache'?: boolean;
|
|
15780
|
+
'buildkit'?: {
|
|
15781
|
+
'useInternalCache'?: boolean;
|
|
15782
|
+
'internalCacheStorage'?: number;
|
|
15783
|
+
};
|
|
15391
15784
|
};
|
|
15392
15785
|
} | {
|
|
15393
15786
|
'storage'?: {
|
|
@@ -15528,6 +15921,10 @@ type PatchServiceBuildData = {
|
|
|
15528
15921
|
'dockerWorkDir'?: string;
|
|
15529
15922
|
/** Should intermediate image layers be cached? */
|
|
15530
15923
|
'useCache'?: boolean;
|
|
15924
|
+
'buildkit'?: {
|
|
15925
|
+
'useInternalCache'?: boolean;
|
|
15926
|
+
'internalCacheStorage'?: number;
|
|
15927
|
+
};
|
|
15531
15928
|
};
|
|
15532
15929
|
'buildpack'?: {
|
|
15533
15930
|
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
@@ -15792,6 +16189,10 @@ type CreateServiceCombinedResult = {
|
|
|
15792
16189
|
'dockerWorkDir': string;
|
|
15793
16190
|
/** Should intermediate image layers be cached? */
|
|
15794
16191
|
'useCache'?: boolean;
|
|
16192
|
+
'buildkit'?: {
|
|
16193
|
+
'useInternalCache'?: boolean;
|
|
16194
|
+
'internalCacheStorage'?: number;
|
|
16195
|
+
};
|
|
15795
16196
|
};
|
|
15796
16197
|
} | {
|
|
15797
16198
|
'storage'?: {
|
|
@@ -16278,6 +16679,10 @@ type CreateServiceCombinedData = {
|
|
|
16278
16679
|
'dockerWorkDir': string;
|
|
16279
16680
|
/** Should intermediate image layers be cached? */
|
|
16280
16681
|
'useCache'?: boolean;
|
|
16682
|
+
'buildkit'?: {
|
|
16683
|
+
'useInternalCache'?: boolean;
|
|
16684
|
+
'internalCacheStorage'?: number;
|
|
16685
|
+
};
|
|
16281
16686
|
};
|
|
16282
16687
|
} | {
|
|
16283
16688
|
'storage'?: {
|
|
@@ -16602,6 +17007,10 @@ type PutServiceCombinedResult = {
|
|
|
16602
17007
|
'dockerWorkDir': string;
|
|
16603
17008
|
/** Should intermediate image layers be cached? */
|
|
16604
17009
|
'useCache'?: boolean;
|
|
17010
|
+
'buildkit'?: {
|
|
17011
|
+
'useInternalCache'?: boolean;
|
|
17012
|
+
'internalCacheStorage'?: number;
|
|
17013
|
+
};
|
|
16605
17014
|
};
|
|
16606
17015
|
} | {
|
|
16607
17016
|
'storage'?: {
|
|
@@ -17088,6 +17497,10 @@ type PutServiceCombinedData = {
|
|
|
17088
17497
|
'dockerWorkDir': string;
|
|
17089
17498
|
/** Should intermediate image layers be cached? */
|
|
17090
17499
|
'useCache'?: boolean;
|
|
17500
|
+
'buildkit'?: {
|
|
17501
|
+
'useInternalCache'?: boolean;
|
|
17502
|
+
'internalCacheStorage'?: number;
|
|
17503
|
+
};
|
|
17091
17504
|
};
|
|
17092
17505
|
} | {
|
|
17093
17506
|
'storage'?: {
|
|
@@ -17412,6 +17825,10 @@ type PatchServiceCombinedResult = {
|
|
|
17412
17825
|
'dockerWorkDir': string;
|
|
17413
17826
|
/** Should intermediate image layers be cached? */
|
|
17414
17827
|
'useCache'?: boolean;
|
|
17828
|
+
'buildkit'?: {
|
|
17829
|
+
'useInternalCache'?: boolean;
|
|
17830
|
+
'internalCacheStorage'?: number;
|
|
17831
|
+
};
|
|
17415
17832
|
};
|
|
17416
17833
|
} | {
|
|
17417
17834
|
'storage'?: {
|
|
@@ -17895,6 +18312,10 @@ type PatchServiceCombinedData = {
|
|
|
17895
18312
|
'dockerWorkDir'?: string;
|
|
17896
18313
|
/** Should intermediate image layers be cached? */
|
|
17897
18314
|
'useCache'?: boolean;
|
|
18315
|
+
'buildkit'?: {
|
|
18316
|
+
'useInternalCache'?: boolean;
|
|
18317
|
+
'internalCacheStorage'?: number;
|
|
18318
|
+
};
|
|
17898
18319
|
};
|
|
17899
18320
|
'buildpack'?: {
|
|
17900
18321
|
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
@@ -20522,6 +20943,10 @@ type GetServiceResult = {
|
|
|
20522
20943
|
'buildkit'?: {
|
|
20523
20944
|
/** Should intermediate image layers be cached? */
|
|
20524
20945
|
'useCache'?: boolean;
|
|
20946
|
+
/** Should use persistent storage to store all layers? */
|
|
20947
|
+
'useInternalCache'?: boolean;
|
|
20948
|
+
/** Storage size to use for internal cache */
|
|
20949
|
+
'internalCacheStorage'?: boolean;
|
|
20525
20950
|
};
|
|
20526
20951
|
/** Details about Kaniko settings. */
|
|
20527
20952
|
'kaniko'?: {
|
|
@@ -21000,6 +21425,12 @@ type UpdateServiceBuildoptionsData = {
|
|
|
21000
21425
|
'dockerFilePath'?: string;
|
|
21001
21426
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
21002
21427
|
'dockerWorkDir'?: string;
|
|
21428
|
+
'buildkit'?: {
|
|
21429
|
+
/** Should use persistent storage to store all layers? */
|
|
21430
|
+
'useInternalCache'?: boolean;
|
|
21431
|
+
/** Persistent storage per build in MB */
|
|
21432
|
+
'internalCacheStorage': number;
|
|
21433
|
+
};
|
|
21003
21434
|
};
|
|
21004
21435
|
/** 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. */
|
|
21005
21436
|
'prRestrictions'?: string[];
|
|
@@ -23415,6 +23846,7 @@ declare class ApiClient {
|
|
|
23415
23846
|
metrics: GetAddonMetricsCall;
|
|
23416
23847
|
metricsRange: GetAddonMetricsRangeCall;
|
|
23417
23848
|
};
|
|
23849
|
+
backupDestination: GetBackupdestinationCall;
|
|
23418
23850
|
invoice: {
|
|
23419
23851
|
details: GetInvoiceDetailsCall;
|
|
23420
23852
|
};
|
|
@@ -23492,6 +23924,8 @@ declare class ApiClient {
|
|
|
23492
23924
|
templateRun: GetTemplaterunCall;
|
|
23493
23925
|
};
|
|
23494
23926
|
list: {
|
|
23927
|
+
backupDestinations: ListBackupdestinationsCall;
|
|
23928
|
+
backupDestinationsBackups: ListBackupdestinationsbackupsCall;
|
|
23495
23929
|
invoices: ListInvoicesCall;
|
|
23496
23930
|
cloud: {
|
|
23497
23931
|
providers: ListCloudProvidersCall;
|
|
@@ -23530,6 +23964,61 @@ declare class ApiClient {
|
|
|
23530
23964
|
templates: ListTemplatesCall;
|
|
23531
23965
|
templateRuns: ListTemplaterunsCall;
|
|
23532
23966
|
};
|
|
23967
|
+
add: {
|
|
23968
|
+
backupDestination: AddBackupdestinationCall;
|
|
23969
|
+
domain: {
|
|
23970
|
+
subdomain: AddDomainSubdomainCall;
|
|
23971
|
+
};
|
|
23972
|
+
subdomain: {
|
|
23973
|
+
path: AddSubdomainPathCall;
|
|
23974
|
+
};
|
|
23975
|
+
registryCredentials: AddRegistrycredentialsCall;
|
|
23976
|
+
tag: AddTagCall;
|
|
23977
|
+
};
|
|
23978
|
+
patch: {
|
|
23979
|
+
backupDestination: PatchBackupdestinationCall;
|
|
23980
|
+
project: PatchProjectCall;
|
|
23981
|
+
addon: PatchAddonCall;
|
|
23982
|
+
job: {
|
|
23983
|
+
cron: PatchJobCronCall;
|
|
23984
|
+
manual: PatchJobManualCall;
|
|
23985
|
+
};
|
|
23986
|
+
secret: PatchSecretCall;
|
|
23987
|
+
service: {
|
|
23988
|
+
build: PatchServiceBuildCall;
|
|
23989
|
+
combined: PatchServiceCombinedCall;
|
|
23990
|
+
deployment: PatchServiceDeploymentCall;
|
|
23991
|
+
};
|
|
23992
|
+
tag: PatchTagCall;
|
|
23993
|
+
};
|
|
23994
|
+
delete: {
|
|
23995
|
+
backupDestination: DeleteBackupdestinationCall;
|
|
23996
|
+
cloud: {
|
|
23997
|
+
cluster: DeleteCloudClusterCall;
|
|
23998
|
+
dockerRegistry: DeleteCloudDockerregistryCall;
|
|
23999
|
+
integration: DeleteCloudIntegrationCall;
|
|
24000
|
+
};
|
|
24001
|
+
domain: DeleteDomainCall;
|
|
24002
|
+
subdomain: DeleteSubdomainCall & {
|
|
24003
|
+
path: DeleteSubdomainPathCall;
|
|
24004
|
+
};
|
|
24005
|
+
logSink: DeleteLogsinkCall;
|
|
24006
|
+
notification: DeleteNotificationCall;
|
|
24007
|
+
registryCredentials: DeleteRegistrycredentialsCall;
|
|
24008
|
+
project: DeleteProjectCall;
|
|
24009
|
+
addon: DeleteAddonCall & {
|
|
24010
|
+
backupSchedule: DeleteAddonBackupscheduleCall;
|
|
24011
|
+
};
|
|
24012
|
+
backup: DeleteBackupCall;
|
|
24013
|
+
job: DeleteJobCall;
|
|
24014
|
+
previewTemplatePreview: DeletePreviewtemplatepreviewCall;
|
|
24015
|
+
secret: DeleteSecretCall;
|
|
24016
|
+
secretLink: DeleteSecretlinkCall;
|
|
24017
|
+
service: DeleteServiceCall;
|
|
24018
|
+
volume: DeleteVolumeCall;
|
|
24019
|
+
tag: DeleteTagCall;
|
|
24020
|
+
template: DeleteTemplateCall;
|
|
24021
|
+
};
|
|
23533
24022
|
create: {
|
|
23534
24023
|
cloud: {
|
|
23535
24024
|
cluster: CreateCloudClusterCall;
|
|
@@ -23600,33 +24089,6 @@ declare class ApiClient {
|
|
|
23600
24089
|
volume: UpdateVolumeCall;
|
|
23601
24090
|
template: UpdateTemplateCall;
|
|
23602
24091
|
};
|
|
23603
|
-
delete: {
|
|
23604
|
-
cloud: {
|
|
23605
|
-
cluster: DeleteCloudClusterCall;
|
|
23606
|
-
dockerRegistry: DeleteCloudDockerregistryCall;
|
|
23607
|
-
integration: DeleteCloudIntegrationCall;
|
|
23608
|
-
};
|
|
23609
|
-
domain: DeleteDomainCall;
|
|
23610
|
-
subdomain: DeleteSubdomainCall & {
|
|
23611
|
-
path: DeleteSubdomainPathCall;
|
|
23612
|
-
};
|
|
23613
|
-
logSink: DeleteLogsinkCall;
|
|
23614
|
-
notification: DeleteNotificationCall;
|
|
23615
|
-
registryCredentials: DeleteRegistrycredentialsCall;
|
|
23616
|
-
project: DeleteProjectCall;
|
|
23617
|
-
addon: DeleteAddonCall & {
|
|
23618
|
-
backupSchedule: DeleteAddonBackupscheduleCall;
|
|
23619
|
-
};
|
|
23620
|
-
backup: DeleteBackupCall;
|
|
23621
|
-
job: DeleteJobCall;
|
|
23622
|
-
previewTemplatePreview: DeletePreviewtemplatepreviewCall;
|
|
23623
|
-
secret: DeleteSecretCall;
|
|
23624
|
-
secretLink: DeleteSecretlinkCall;
|
|
23625
|
-
service: DeleteServiceCall;
|
|
23626
|
-
volume: DeleteVolumeCall;
|
|
23627
|
-
tag: DeleteTagCall;
|
|
23628
|
-
template: DeleteTemplateCall;
|
|
23629
|
-
};
|
|
23630
24092
|
cordon: {
|
|
23631
24093
|
cloud: {
|
|
23632
24094
|
cluster: {
|
|
@@ -23654,16 +24116,6 @@ declare class ApiClient {
|
|
|
23654
24116
|
backup: ImportAddonBackupCall;
|
|
23655
24117
|
};
|
|
23656
24118
|
};
|
|
23657
|
-
add: {
|
|
23658
|
-
domain: {
|
|
23659
|
-
subdomain: AddDomainSubdomainCall;
|
|
23660
|
-
};
|
|
23661
|
-
subdomain: {
|
|
23662
|
-
path: AddSubdomainPathCall;
|
|
23663
|
-
};
|
|
23664
|
-
registryCredentials: AddRegistrycredentialsCall;
|
|
23665
|
-
tag: AddTagCall;
|
|
23666
|
-
};
|
|
23667
24119
|
assign: {
|
|
23668
24120
|
subdomain: {
|
|
23669
24121
|
service: AssignSubdomainServiceCall;
|
|
@@ -23716,21 +24168,6 @@ declare class ApiClient {
|
|
|
23716
24168
|
};
|
|
23717
24169
|
tag: PutTagCall;
|
|
23718
24170
|
};
|
|
23719
|
-
patch: {
|
|
23720
|
-
project: PatchProjectCall;
|
|
23721
|
-
addon: PatchAddonCall;
|
|
23722
|
-
job: {
|
|
23723
|
-
cron: PatchJobCronCall;
|
|
23724
|
-
manual: PatchJobManualCall;
|
|
23725
|
-
};
|
|
23726
|
-
secret: PatchSecretCall;
|
|
23727
|
-
service: {
|
|
23728
|
-
build: PatchServiceBuildCall;
|
|
23729
|
-
combined: PatchServiceCombinedCall;
|
|
23730
|
-
deployment: PatchServiceDeploymentCall;
|
|
23731
|
-
};
|
|
23732
|
-
tag: PatchTagCall;
|
|
23733
|
-
};
|
|
23734
24171
|
backup: {
|
|
23735
24172
|
addon: BackupAddonCall;
|
|
23736
24173
|
};
|
|
@@ -23812,6 +24249,7 @@ declare class ApiClient {
|
|
|
23812
24249
|
restores: GetAddonRestoresEndpoint;
|
|
23813
24250
|
version: GetAddonVersionEndpoint;
|
|
23814
24251
|
};
|
|
24252
|
+
backupDestination: GetBackupdestinationEndpoint;
|
|
23815
24253
|
invoice: {
|
|
23816
24254
|
details: GetInvoiceDetailsEndpoint;
|
|
23817
24255
|
};
|
|
@@ -23873,6 +24311,8 @@ declare class ApiClient {
|
|
|
23873
24311
|
templateRun: GetTemplaterunEndpoint;
|
|
23874
24312
|
};
|
|
23875
24313
|
list: {
|
|
24314
|
+
backupDestinations: ListBackupdestinationsEndpoint;
|
|
24315
|
+
backupDestinationsBackups: ListBackupdestinationsbackupsEndpoint;
|
|
23876
24316
|
invoices: ListInvoicesEndpoint;
|
|
23877
24317
|
cloud: {
|
|
23878
24318
|
providers: ListCloudProvidersEndpoint;
|
|
@@ -23911,6 +24351,61 @@ declare class ApiClient {
|
|
|
23911
24351
|
templates: ListTemplatesEndpoint;
|
|
23912
24352
|
templateRuns: ListTemplaterunsEndpoint;
|
|
23913
24353
|
};
|
|
24354
|
+
add: {
|
|
24355
|
+
backupDestination: AddBackupdestinationEndpoint;
|
|
24356
|
+
domain: {
|
|
24357
|
+
subdomain: AddDomainSubdomainEndpoint;
|
|
24358
|
+
};
|
|
24359
|
+
subdomain: {
|
|
24360
|
+
path: AddSubdomainPathEndpoint;
|
|
24361
|
+
};
|
|
24362
|
+
registryCredentials: AddRegistrycredentialsEndpoint;
|
|
24363
|
+
tag: AddTagEndpoint;
|
|
24364
|
+
};
|
|
24365
|
+
patch: {
|
|
24366
|
+
backupDestination: PatchBackupdestinationEndpoint;
|
|
24367
|
+
project: PatchProjectEndpoint;
|
|
24368
|
+
addon: PatchAddonEndpoint;
|
|
24369
|
+
job: {
|
|
24370
|
+
cron: PatchJobCronEndpoint;
|
|
24371
|
+
manual: PatchJobManualEndpoint;
|
|
24372
|
+
};
|
|
24373
|
+
secret: PatchSecretEndpoint;
|
|
24374
|
+
service: {
|
|
24375
|
+
build: PatchServiceBuildEndpoint;
|
|
24376
|
+
combined: PatchServiceCombinedEndpoint;
|
|
24377
|
+
deployment: PatchServiceDeploymentEndpoint;
|
|
24378
|
+
};
|
|
24379
|
+
tag: PatchTagEndpoint;
|
|
24380
|
+
};
|
|
24381
|
+
delete: {
|
|
24382
|
+
backupDestination: DeleteBackupdestinationEndpoint;
|
|
24383
|
+
cloud: {
|
|
24384
|
+
cluster: DeleteCloudClusterEndpoint;
|
|
24385
|
+
dockerRegistry: DeleteCloudDockerregistryEndpoint;
|
|
24386
|
+
integration: DeleteCloudIntegrationEndpoint;
|
|
24387
|
+
};
|
|
24388
|
+
domain: DeleteDomainEndpoint;
|
|
24389
|
+
subdomain: DeleteSubdomainEndpoint & {
|
|
24390
|
+
path: DeleteSubdomainPathEndpoint;
|
|
24391
|
+
};
|
|
24392
|
+
logSink: DeleteLogsinkEndpoint;
|
|
24393
|
+
notification: DeleteNotificationEndpoint;
|
|
24394
|
+
registryCredentials: DeleteRegistrycredentialsEndpoint;
|
|
24395
|
+
project: DeleteProjectEndpoint;
|
|
24396
|
+
addon: DeleteAddonEndpoint & {
|
|
24397
|
+
backupSchedule: DeleteAddonBackupscheduleEndpoint;
|
|
24398
|
+
};
|
|
24399
|
+
backup: DeleteBackupEndpoint;
|
|
24400
|
+
job: DeleteJobEndpoint;
|
|
24401
|
+
previewTemplatePreview: DeletePreviewtemplatepreviewEndpoint;
|
|
24402
|
+
secret: DeleteSecretEndpoint;
|
|
24403
|
+
secretLink: DeleteSecretlinkEndpoint;
|
|
24404
|
+
service: DeleteServiceEndpoint;
|
|
24405
|
+
volume: DeleteVolumeEndpoint;
|
|
24406
|
+
tag: DeleteTagEndpoint;
|
|
24407
|
+
template: DeleteTemplateEndpoint;
|
|
24408
|
+
};
|
|
23914
24409
|
create: {
|
|
23915
24410
|
cloud: {
|
|
23916
24411
|
cluster: CreateCloudClusterEndpoint;
|
|
@@ -23981,33 +24476,6 @@ declare class ApiClient {
|
|
|
23981
24476
|
volume: UpdateVolumeEndpoint;
|
|
23982
24477
|
template: UpdateTemplateEndpoint;
|
|
23983
24478
|
};
|
|
23984
|
-
delete: {
|
|
23985
|
-
cloud: {
|
|
23986
|
-
cluster: DeleteCloudClusterEndpoint;
|
|
23987
|
-
dockerRegistry: DeleteCloudDockerregistryEndpoint;
|
|
23988
|
-
integration: DeleteCloudIntegrationEndpoint;
|
|
23989
|
-
};
|
|
23990
|
-
domain: DeleteDomainEndpoint;
|
|
23991
|
-
subdomain: DeleteSubdomainEndpoint & {
|
|
23992
|
-
path: DeleteSubdomainPathEndpoint;
|
|
23993
|
-
};
|
|
23994
|
-
logSink: DeleteLogsinkEndpoint;
|
|
23995
|
-
notification: DeleteNotificationEndpoint;
|
|
23996
|
-
registryCredentials: DeleteRegistrycredentialsEndpoint;
|
|
23997
|
-
project: DeleteProjectEndpoint;
|
|
23998
|
-
addon: DeleteAddonEndpoint & {
|
|
23999
|
-
backupSchedule: DeleteAddonBackupscheduleEndpoint;
|
|
24000
|
-
};
|
|
24001
|
-
backup: DeleteBackupEndpoint;
|
|
24002
|
-
job: DeleteJobEndpoint;
|
|
24003
|
-
previewTemplatePreview: DeletePreviewtemplatepreviewEndpoint;
|
|
24004
|
-
secret: DeleteSecretEndpoint;
|
|
24005
|
-
secretLink: DeleteSecretlinkEndpoint;
|
|
24006
|
-
service: DeleteServiceEndpoint;
|
|
24007
|
-
volume: DeleteVolumeEndpoint;
|
|
24008
|
-
tag: DeleteTagEndpoint;
|
|
24009
|
-
template: DeleteTemplateEndpoint;
|
|
24010
|
-
};
|
|
24011
24479
|
cordon: {
|
|
24012
24480
|
cloud: {
|
|
24013
24481
|
cluster: {
|
|
@@ -24035,16 +24503,6 @@ declare class ApiClient {
|
|
|
24035
24503
|
backup: ImportAddonBackupEndpoint;
|
|
24036
24504
|
};
|
|
24037
24505
|
};
|
|
24038
|
-
add: {
|
|
24039
|
-
domain: {
|
|
24040
|
-
subdomain: AddDomainSubdomainEndpoint;
|
|
24041
|
-
};
|
|
24042
|
-
subdomain: {
|
|
24043
|
-
path: AddSubdomainPathEndpoint;
|
|
24044
|
-
};
|
|
24045
|
-
registryCredentials: AddRegistrycredentialsEndpoint;
|
|
24046
|
-
tag: AddTagEndpoint;
|
|
24047
|
-
};
|
|
24048
24506
|
assign: {
|
|
24049
24507
|
subdomain: {
|
|
24050
24508
|
service: AssignSubdomainServiceEndpoint;
|
|
@@ -24097,21 +24555,6 @@ declare class ApiClient {
|
|
|
24097
24555
|
};
|
|
24098
24556
|
tag: PutTagEndpoint;
|
|
24099
24557
|
};
|
|
24100
|
-
patch: {
|
|
24101
|
-
project: PatchProjectEndpoint;
|
|
24102
|
-
addon: PatchAddonEndpoint;
|
|
24103
|
-
job: {
|
|
24104
|
-
cron: PatchJobCronEndpoint;
|
|
24105
|
-
manual: PatchJobManualEndpoint;
|
|
24106
|
-
};
|
|
24107
|
-
secret: PatchSecretEndpoint;
|
|
24108
|
-
service: {
|
|
24109
|
-
build: PatchServiceBuildEndpoint;
|
|
24110
|
-
combined: PatchServiceCombinedEndpoint;
|
|
24111
|
-
deployment: PatchServiceDeploymentEndpoint;
|
|
24112
|
-
};
|
|
24113
|
-
tag: PatchTagEndpoint;
|
|
24114
|
-
};
|
|
24115
24558
|
backup: {
|
|
24116
24559
|
addon: BackupAddonEndpoint;
|
|
24117
24560
|
};
|
|
@@ -24186,4 +24629,4 @@ type ApiClientOpts = {
|
|
|
24186
24629
|
customUserAgent?: string;
|
|
24187
24630
|
};
|
|
24188
24631
|
|
|
24189
|
-
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 };
|
|
24632
|
+
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 };
|