@northflank/js-client 0.7.19 → 0.7.20
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 +211 -43
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +211 -43
- package/dist/esm/api-client.js +1 -1
- package/package.json +1 -1
package/dist/esm/api-client.d.ts
CHANGED
|
@@ -1531,6 +1531,8 @@ type ListCloudClustersResult = {
|
|
|
1531
1531
|
'allowBuilds'?: boolean;
|
|
1532
1532
|
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
1533
1533
|
'onlyGpuBuilds'?: boolean;
|
|
1534
|
+
/** Allow the placement of Ceph pods */
|
|
1535
|
+
'allowCeph'?: boolean;
|
|
1534
1536
|
};
|
|
1535
1537
|
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
1536
1538
|
'labels'?: any;
|
|
@@ -1583,6 +1585,17 @@ type ListCloudClustersResult = {
|
|
|
1583
1585
|
'installGvisor'?: boolean;
|
|
1584
1586
|
'cleanupVolumes'?: boolean;
|
|
1585
1587
|
'cleanupSnapshots'?: boolean;
|
|
1588
|
+
'cephStorageProvider'?: {
|
|
1589
|
+
'enabled'?: boolean;
|
|
1590
|
+
'resources'?: {
|
|
1591
|
+
/** Configure the CPU resources per Ceph replica */
|
|
1592
|
+
'cpu'?: number;
|
|
1593
|
+
/** Configure the memory resources per Ceph replica */
|
|
1594
|
+
'memory'?: number;
|
|
1595
|
+
/** Configure the data disk size per Ceph replica */
|
|
1596
|
+
'storage'?: number;
|
|
1597
|
+
};
|
|
1598
|
+
};
|
|
1586
1599
|
};
|
|
1587
1600
|
/** Request modifiers to use for different resources. */
|
|
1588
1601
|
'requestModifiers'?: {
|
|
@@ -1705,6 +1718,8 @@ type CreateCloudClusterResult = {
|
|
|
1705
1718
|
'allowBuilds'?: boolean;
|
|
1706
1719
|
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
1707
1720
|
'onlyGpuBuilds'?: boolean;
|
|
1721
|
+
/** Allow the placement of Ceph pods */
|
|
1722
|
+
'allowCeph'?: boolean;
|
|
1708
1723
|
};
|
|
1709
1724
|
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
1710
1725
|
'labels'?: any;
|
|
@@ -1757,6 +1772,17 @@ type CreateCloudClusterResult = {
|
|
|
1757
1772
|
'installGvisor'?: boolean;
|
|
1758
1773
|
'cleanupVolumes'?: boolean;
|
|
1759
1774
|
'cleanupSnapshots'?: boolean;
|
|
1775
|
+
'cephStorageProvider'?: {
|
|
1776
|
+
'enabled'?: boolean;
|
|
1777
|
+
'resources'?: {
|
|
1778
|
+
/** Configure the CPU resources per Ceph replica */
|
|
1779
|
+
'cpu'?: number;
|
|
1780
|
+
/** Configure the memory resources per Ceph replica */
|
|
1781
|
+
'memory'?: number;
|
|
1782
|
+
/** Configure the data disk size per Ceph replica */
|
|
1783
|
+
'storage'?: number;
|
|
1784
|
+
};
|
|
1785
|
+
};
|
|
1760
1786
|
};
|
|
1761
1787
|
/** Request modifiers to use for different resources. */
|
|
1762
1788
|
'requestModifiers'?: {
|
|
@@ -1876,6 +1902,8 @@ type CreateCloudClusterData = {
|
|
|
1876
1902
|
'allowBuilds'?: boolean;
|
|
1877
1903
|
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
1878
1904
|
'onlyGpuBuilds'?: boolean;
|
|
1905
|
+
/** Allow the placement of Ceph pods */
|
|
1906
|
+
'allowCeph'?: boolean;
|
|
1879
1907
|
};
|
|
1880
1908
|
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
1881
1909
|
'labels'?: any;
|
|
@@ -1928,6 +1956,17 @@ type CreateCloudClusterData = {
|
|
|
1928
1956
|
'installGvisor'?: boolean;
|
|
1929
1957
|
'cleanupVolumes'?: boolean;
|
|
1930
1958
|
'cleanupSnapshots'?: boolean;
|
|
1959
|
+
'cephStorageProvider'?: {
|
|
1960
|
+
'enabled'?: boolean;
|
|
1961
|
+
'resources'?: {
|
|
1962
|
+
/** Configure the CPU resources per Ceph replica */
|
|
1963
|
+
'cpu'?: number;
|
|
1964
|
+
/** Configure the memory resources per Ceph replica */
|
|
1965
|
+
'memory'?: number;
|
|
1966
|
+
/** Configure the data disk size per Ceph replica */
|
|
1967
|
+
'storage'?: number;
|
|
1968
|
+
};
|
|
1969
|
+
};
|
|
1931
1970
|
};
|
|
1932
1971
|
/** Request modifiers to use for different resources. */
|
|
1933
1972
|
'requestModifiers'?: {
|
|
@@ -2037,6 +2076,8 @@ type GetCloudClusterResult = {
|
|
|
2037
2076
|
'allowBuilds'?: boolean;
|
|
2038
2077
|
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2039
2078
|
'onlyGpuBuilds'?: boolean;
|
|
2079
|
+
/** Allow the placement of Ceph pods */
|
|
2080
|
+
'allowCeph'?: boolean;
|
|
2040
2081
|
};
|
|
2041
2082
|
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
2042
2083
|
'labels'?: any;
|
|
@@ -2089,6 +2130,17 @@ type GetCloudClusterResult = {
|
|
|
2089
2130
|
'installGvisor'?: boolean;
|
|
2090
2131
|
'cleanupVolumes'?: boolean;
|
|
2091
2132
|
'cleanupSnapshots'?: boolean;
|
|
2133
|
+
'cephStorageProvider'?: {
|
|
2134
|
+
'enabled'?: boolean;
|
|
2135
|
+
'resources'?: {
|
|
2136
|
+
/** Configure the CPU resources per Ceph replica */
|
|
2137
|
+
'cpu'?: number;
|
|
2138
|
+
/** Configure the memory resources per Ceph replica */
|
|
2139
|
+
'memory'?: number;
|
|
2140
|
+
/** Configure the data disk size per Ceph replica */
|
|
2141
|
+
'storage'?: number;
|
|
2142
|
+
};
|
|
2143
|
+
};
|
|
2092
2144
|
};
|
|
2093
2145
|
/** Request modifiers to use for different resources. */
|
|
2094
2146
|
'requestModifiers'?: {
|
|
@@ -2220,6 +2272,8 @@ type UpdateCloudClusterResult = {
|
|
|
2220
2272
|
'allowBuilds'?: boolean;
|
|
2221
2273
|
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2222
2274
|
'onlyGpuBuilds'?: boolean;
|
|
2275
|
+
/** Allow the placement of Ceph pods */
|
|
2276
|
+
'allowCeph'?: boolean;
|
|
2223
2277
|
};
|
|
2224
2278
|
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
2225
2279
|
'labels'?: any;
|
|
@@ -2272,6 +2326,17 @@ type UpdateCloudClusterResult = {
|
|
|
2272
2326
|
'installGvisor'?: boolean;
|
|
2273
2327
|
'cleanupVolumes'?: boolean;
|
|
2274
2328
|
'cleanupSnapshots'?: boolean;
|
|
2329
|
+
'cephStorageProvider'?: {
|
|
2330
|
+
'enabled'?: boolean;
|
|
2331
|
+
'resources'?: {
|
|
2332
|
+
/** Configure the CPU resources per Ceph replica */
|
|
2333
|
+
'cpu'?: number;
|
|
2334
|
+
/** Configure the memory resources per Ceph replica */
|
|
2335
|
+
'memory'?: number;
|
|
2336
|
+
/** Configure the data disk size per Ceph replica */
|
|
2337
|
+
'storage'?: number;
|
|
2338
|
+
};
|
|
2339
|
+
};
|
|
2275
2340
|
};
|
|
2276
2341
|
/** Request modifiers to use for different resources. */
|
|
2277
2342
|
'requestModifiers'?: {
|
|
@@ -2384,6 +2449,8 @@ type UpdateCloudClusterData = {
|
|
|
2384
2449
|
'allowBuilds'?: boolean;
|
|
2385
2450
|
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2386
2451
|
'onlyGpuBuilds'?: boolean;
|
|
2452
|
+
/** Allow the placement of Ceph pods */
|
|
2453
|
+
'allowCeph'?: boolean;
|
|
2387
2454
|
};
|
|
2388
2455
|
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
2389
2456
|
'labels'?: any;
|
|
@@ -2438,6 +2505,17 @@ type UpdateCloudClusterData = {
|
|
|
2438
2505
|
'installGvisor'?: boolean;
|
|
2439
2506
|
'cleanupVolumes'?: boolean;
|
|
2440
2507
|
'cleanupSnapshots'?: boolean;
|
|
2508
|
+
'cephStorageProvider'?: {
|
|
2509
|
+
'enabled'?: boolean;
|
|
2510
|
+
'resources'?: {
|
|
2511
|
+
/** Configure the CPU resources per Ceph replica */
|
|
2512
|
+
'cpu'?: number;
|
|
2513
|
+
/** Configure the memory resources per Ceph replica */
|
|
2514
|
+
'memory'?: number;
|
|
2515
|
+
/** Configure the data disk size per Ceph replica */
|
|
2516
|
+
'storage'?: number;
|
|
2517
|
+
};
|
|
2518
|
+
};
|
|
2441
2519
|
};
|
|
2442
2520
|
/** Request modifiers to use for different resources. */
|
|
2443
2521
|
'requestModifiers'?: {
|
|
@@ -6348,6 +6426,11 @@ type CreateAddonResult = {
|
|
|
6348
6426
|
};
|
|
6349
6427
|
/** The type of the backup to be performed. Example: "snapshot" */
|
|
6350
6428
|
'backupType': 'dump' | 'snapshot';
|
|
6429
|
+
/** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
|
|
6430
|
+
'additionalDestinations'?: {
|
|
6431
|
+
'destinationId': string;
|
|
6432
|
+
'type': 'custom';
|
|
6433
|
+
}[];
|
|
6351
6434
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
6352
6435
|
'compressionType'?: 'gz' | 'zstd';
|
|
6353
6436
|
/** 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 */
|
|
@@ -6416,6 +6499,8 @@ type CreateAddonData = {
|
|
|
6416
6499
|
'name': string;
|
|
6417
6500
|
/** A description of the addon. Example: "An addon description" */
|
|
6418
6501
|
'description'?: string;
|
|
6502
|
+
/** ID of parent project Example: "example-project" */
|
|
6503
|
+
'projectId'?: string;
|
|
6419
6504
|
/** An array of previously defined tags to help identify and group the resource. */
|
|
6420
6505
|
'tags'?: string[];
|
|
6421
6506
|
/** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
|
|
@@ -6492,6 +6577,11 @@ type CreateAddonData = {
|
|
|
6492
6577
|
};
|
|
6493
6578
|
/** The type of the backup to be performed. Example: "snapshot" */
|
|
6494
6579
|
'backupType': 'dump' | 'snapshot';
|
|
6580
|
+
/** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
|
|
6581
|
+
'additionalDestinations'?: {
|
|
6582
|
+
'destinationId': string;
|
|
6583
|
+
'type': 'custom';
|
|
6584
|
+
}[];
|
|
6495
6585
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
6496
6586
|
'compressionType'?: 'gz' | 'zstd';
|
|
6497
6587
|
/** 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 */
|
|
@@ -6502,6 +6592,8 @@ type CreateAddonData = {
|
|
|
6502
6592
|
'name': string;
|
|
6503
6593
|
/** A description of the addon. Example: "An addon description" */
|
|
6504
6594
|
'description'?: string;
|
|
6595
|
+
/** ID of parent project Example: "example-project" */
|
|
6596
|
+
'projectId'?: string;
|
|
6505
6597
|
/** An array of previously defined tags to help identify and group the resource. */
|
|
6506
6598
|
'tags'?: string[];
|
|
6507
6599
|
/** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
|
|
@@ -6599,6 +6691,11 @@ type PutAddonResult = {
|
|
|
6599
6691
|
};
|
|
6600
6692
|
/** The type of the backup to be performed. Example: "snapshot" */
|
|
6601
6693
|
'backupType': 'dump' | 'snapshot';
|
|
6694
|
+
/** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
|
|
6695
|
+
'additionalDestinations'?: {
|
|
6696
|
+
'destinationId': string;
|
|
6697
|
+
'type': 'custom';
|
|
6698
|
+
}[];
|
|
6602
6699
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
6603
6700
|
'compressionType'?: 'gz' | 'zstd';
|
|
6604
6701
|
/** 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 */
|
|
@@ -6667,6 +6764,8 @@ type PutAddonData = {
|
|
|
6667
6764
|
'name': string;
|
|
6668
6765
|
/** A description of the addon. Example: "An addon description" */
|
|
6669
6766
|
'description'?: string;
|
|
6767
|
+
/** ID of parent project Example: "example-project" */
|
|
6768
|
+
'projectId'?: string;
|
|
6670
6769
|
/** An array of previously defined tags to help identify and group the resource. */
|
|
6671
6770
|
'tags'?: string[];
|
|
6672
6771
|
/** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
|
|
@@ -6743,6 +6842,11 @@ type PutAddonData = {
|
|
|
6743
6842
|
};
|
|
6744
6843
|
/** The type of the backup to be performed. Example: "snapshot" */
|
|
6745
6844
|
'backupType': 'dump' | 'snapshot';
|
|
6845
|
+
/** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
|
|
6846
|
+
'additionalDestinations'?: {
|
|
6847
|
+
'destinationId': string;
|
|
6848
|
+
'type': 'custom';
|
|
6849
|
+
}[];
|
|
6746
6850
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
6747
6851
|
'compressionType'?: 'gz' | 'zstd';
|
|
6748
6852
|
/** 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 */
|
|
@@ -6753,6 +6857,8 @@ type PutAddonData = {
|
|
|
6753
6857
|
'name': string;
|
|
6754
6858
|
/** A description of the addon. Example: "An addon description" */
|
|
6755
6859
|
'description'?: string;
|
|
6860
|
+
/** ID of parent project Example: "example-project" */
|
|
6861
|
+
'projectId'?: string;
|
|
6756
6862
|
/** An array of previously defined tags to help identify and group the resource. */
|
|
6757
6863
|
'tags'?: string[];
|
|
6758
6864
|
/** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
|
|
@@ -6935,6 +7041,11 @@ type PatchAddonResult = {
|
|
|
6935
7041
|
};
|
|
6936
7042
|
/** The type of the backup to be performed. Example: "snapshot" */
|
|
6937
7043
|
'backupType': 'dump' | 'snapshot';
|
|
7044
|
+
/** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
|
|
7045
|
+
'additionalDestinations'?: {
|
|
7046
|
+
'destinationId': string;
|
|
7047
|
+
'type': 'custom';
|
|
7048
|
+
}[];
|
|
6938
7049
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
6939
7050
|
'compressionType'?: 'gz' | 'zstd';
|
|
6940
7051
|
/** 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 */
|
|
@@ -7057,6 +7168,11 @@ type PatchAddonData = {
|
|
|
7057
7168
|
};
|
|
7058
7169
|
/** The type of the backup to be performed. Example: "snapshot" */
|
|
7059
7170
|
'backupType': 'dump' | 'snapshot';
|
|
7171
|
+
/** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
|
|
7172
|
+
'additionalDestinations'?: {
|
|
7173
|
+
'destinationId': string;
|
|
7174
|
+
'type': 'custom';
|
|
7175
|
+
}[];
|
|
7060
7176
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
7061
7177
|
'compressionType'?: 'gz' | 'zstd';
|
|
7062
7178
|
/** 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 */
|
|
@@ -7178,6 +7294,11 @@ type CreateAddonBackupscheduleData = {
|
|
|
7178
7294
|
};
|
|
7179
7295
|
/** The type of the backup to be performed. Example: "snapshot" */
|
|
7180
7296
|
'backupType': 'dump' | 'snapshot';
|
|
7297
|
+
/** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
|
|
7298
|
+
'additionalDestinations'?: {
|
|
7299
|
+
'destinationId': string;
|
|
7300
|
+
'type': 'custom';
|
|
7301
|
+
}[];
|
|
7181
7302
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
7182
7303
|
'compressionType'?: 'gz' | 'zstd';
|
|
7183
7304
|
/** 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 */
|
|
@@ -7317,6 +7438,11 @@ type BackupAddonData = {
|
|
|
7317
7438
|
'backupType'?: 'dump' | 'snapshot';
|
|
7318
7439
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
7319
7440
|
'compressionType'?: 'gz' | 'zstd';
|
|
7441
|
+
/** A list of destinations to which the backup should be copied to. Example: "my-custom-backup-destination" */
|
|
7442
|
+
'additionalDestinations'?: {
|
|
7443
|
+
/** The id of the destination Example: "my-custom-backup-destination" */
|
|
7444
|
+
'destinationId': string;
|
|
7445
|
+
}[];
|
|
7320
7446
|
};
|
|
7321
7447
|
/** Initiates a backup for the given addon */
|
|
7322
7448
|
declare class BackupAddonEndpoint extends PostApiEndpoint<BackupAddonRequest, BackupAddonResult> {
|
|
@@ -7426,6 +7552,7 @@ type AbortAddonRestoreResult = any;
|
|
|
7426
7552
|
type AbortAddonRestoreCall = (opts: AbortAddonRestoreRequest) => Promise<ApiCallResponse<AbortAddonRestoreResult>>;
|
|
7427
7553
|
type AbortAddonRestoreRequest = {
|
|
7428
7554
|
parameters: AbortAddonRestoreParameters;
|
|
7555
|
+
options?: AbortAddonRestoreOptions;
|
|
7429
7556
|
data: AbortAddonRestoreData;
|
|
7430
7557
|
};
|
|
7431
7558
|
type AbortAddonRestoreParameters = {
|
|
@@ -7435,9 +7562,14 @@ type AbortAddonRestoreParameters = {
|
|
|
7435
7562
|
/** ID of the backup */
|
|
7436
7563
|
'backupId': string;
|
|
7437
7564
|
};
|
|
7565
|
+
type AbortAddonRestoreOptions = {
|
|
7566
|
+
/** Specify the source projectId when referring to a global backup. */ 'sourceProjectId'?: string;
|
|
7567
|
+
/** Specify the source addonId when referring to a global backup. */
|
|
7568
|
+
'sourceAddonId'?: string;
|
|
7569
|
+
};
|
|
7438
7570
|
type AbortAddonRestoreData = {
|
|
7439
|
-
/** ID of the restore to abort. Example:
|
|
7440
|
-
'restoreId':
|
|
7571
|
+
/** ID of the restore to abort. Example: "66845073ce75649ad18635f0" */
|
|
7572
|
+
'restoreId': string;
|
|
7441
7573
|
};
|
|
7442
7574
|
/** Aborts an in-progress backup restore. */
|
|
7443
7575
|
declare class AbortAddonRestoreEndpoint extends PostApiEndpoint<AbortAddonRestoreRequest, AbortAddonRestoreResult> {
|
|
@@ -7479,6 +7611,7 @@ type RestoreAddonBackupResult = {
|
|
|
7479
7611
|
type RestoreAddonBackupCall = (opts: RestoreAddonBackupRequest) => Promise<ApiCallResponse<RestoreAddonBackupResult>>;
|
|
7480
7612
|
type RestoreAddonBackupRequest = {
|
|
7481
7613
|
parameters: RestoreAddonBackupParameters;
|
|
7614
|
+
options?: RestoreAddonBackupOptions;
|
|
7482
7615
|
};
|
|
7483
7616
|
type RestoreAddonBackupParameters = {
|
|
7484
7617
|
/** ID of the project */ 'projectId': string;
|
|
@@ -7487,6 +7620,11 @@ type RestoreAddonBackupParameters = {
|
|
|
7487
7620
|
/** ID of the backup */
|
|
7488
7621
|
'backupId': string;
|
|
7489
7622
|
};
|
|
7623
|
+
type RestoreAddonBackupOptions = {
|
|
7624
|
+
/** Specify the source projectId when referring to a global backup. */ 'sourceProjectId'?: string;
|
|
7625
|
+
/** Specify the source addonId when referring to a global backup. */
|
|
7626
|
+
'sourceAddonId'?: string;
|
|
7627
|
+
};
|
|
7490
7628
|
/** Restores the given addon to the given backup state. */
|
|
7491
7629
|
declare class RestoreAddonBackupEndpoint extends PostApiEndpoint<RestoreAddonBackupRequest, RestoreAddonBackupResult> {
|
|
7492
7630
|
description: string;
|
|
@@ -7496,45 +7634,49 @@ declare class RestoreAddonBackupEndpoint extends PostApiEndpoint<RestoreAddonBac
|
|
|
7496
7634
|
body: () => undefined;
|
|
7497
7635
|
}
|
|
7498
7636
|
|
|
7499
|
-
type
|
|
7500
|
-
/** A list of backup
|
|
7637
|
+
type GetAddonBackupRestoresResult = {
|
|
7638
|
+
/** A list of restores for the given backup. */
|
|
7501
7639
|
'restores'?: {
|
|
7502
|
-
/**
|
|
7503
|
-
'id':
|
|
7640
|
+
/** The identifier for the backup. Example: "668596c647fed81696a8a82c" */
|
|
7641
|
+
'id': string;
|
|
7642
|
+
/** The current status of the backup. Example: "completed" */
|
|
7643
|
+
'status': 'scheduled' | 'in-progress' | 'completed' | 'aborting' | 'aborted' | 'failed' | 'not-supported';
|
|
7504
7644
|
/** The time the backup was initiated. Example: "2021-01-20T11:19:54.494Z" */
|
|
7505
7645
|
'restoreTimestamp': string;
|
|
7506
|
-
/** The current status of the restore. Example: "completed" */
|
|
7507
|
-
'status': 'scheduled' | 'in-progress' | 'completed' | 'aborting' | 'aborted' | 'failed' | 'not-supported';
|
|
7508
7646
|
/** The time the restore was completed. Example: "2021-01-20T11:19:54.494Z" */
|
|
7509
7647
|
'completedAt'?: string;
|
|
7510
7648
|
}[];
|
|
7511
7649
|
};
|
|
7512
|
-
type
|
|
7513
|
-
type
|
|
7514
|
-
parameters:
|
|
7515
|
-
options?:
|
|
7650
|
+
type GetAddonBackupRestoresCall = (opts: GetAddonBackupRestoresRequest) => Promise<ApiCallResponse<GetAddonBackupRestoresResult>>;
|
|
7651
|
+
type GetAddonBackupRestoresRequest = {
|
|
7652
|
+
parameters: GetAddonBackupRestoresParameters;
|
|
7653
|
+
options?: GetAddonBackupRestoresOptions;
|
|
7516
7654
|
};
|
|
7517
|
-
type
|
|
7655
|
+
type GetAddonBackupRestoresParameters = {
|
|
7518
7656
|
/** ID of the project */ 'projectId': string;
|
|
7519
7657
|
/** ID of the addon */
|
|
7520
7658
|
'addonId': string;
|
|
7521
7659
|
/** ID of the backup */
|
|
7522
7660
|
'backupId': string;
|
|
7523
7661
|
};
|
|
7524
|
-
type
|
|
7662
|
+
type GetAddonBackupRestoresOptions = {
|
|
7525
7663
|
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
7526
7664
|
'per_page'?: number;
|
|
7527
7665
|
/** The page number to access. */
|
|
7528
7666
|
'page'?: number;
|
|
7529
7667
|
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
7530
7668
|
'cursor'?: string;
|
|
7669
|
+
/** Specify the source projectId when referring to a global backup. */
|
|
7670
|
+
'sourceProjectId'?: string;
|
|
7671
|
+
/** Specify the source addonId when referring to a global backup. */
|
|
7672
|
+
'sourceAddonId'?: string;
|
|
7531
7673
|
};
|
|
7532
7674
|
/** Gets a list of restores for the given backup. */
|
|
7533
|
-
declare class
|
|
7675
|
+
declare class GetAddonBackupRestoresEndpoint extends GetApiEndpoint<GetAddonBackupRestoresRequest, GetAddonBackupRestoresResult> {
|
|
7534
7676
|
description: string;
|
|
7535
7677
|
withAuth: boolean;
|
|
7536
7678
|
requiredPermissions: string;
|
|
7537
|
-
endpointUrl: (opts:
|
|
7679
|
+
endpointUrl: (opts: GetAddonBackupRestoresRequest) => string;
|
|
7538
7680
|
body: () => undefined;
|
|
7539
7681
|
}
|
|
7540
7682
|
|
|
@@ -7818,32 +7960,46 @@ declare class RestartAddonEndpoint extends PostApiEndpoint<RestartAddonRequest,
|
|
|
7818
7960
|
body: () => undefined;
|
|
7819
7961
|
}
|
|
7820
7962
|
|
|
7821
|
-
type
|
|
7822
|
-
/**
|
|
7823
|
-
'
|
|
7963
|
+
type GetAddonRestoresResult = {
|
|
7964
|
+
/** A list of restores for the given addon. */
|
|
7965
|
+
'restores': {
|
|
7966
|
+
/** The identifier for the backup. Example: "668596c647fed81696a8a82c" */
|
|
7967
|
+
'id': string;
|
|
7968
|
+
/** The current status of the backup. Example: "completed" */
|
|
7969
|
+
'status': 'scheduled' | 'in-progress' | 'completed' | 'aborting' | 'aborted' | 'failed' | 'not-supported';
|
|
7970
|
+
/** The time the backup was initiated. Example: "2021-01-20T11:19:54.494Z" */
|
|
7971
|
+
'restoreTimestamp': string;
|
|
7972
|
+
/** The time the restore was completed. Example: "2021-01-20T11:19:54.494Z" */
|
|
7973
|
+
'completedAt'?: string;
|
|
7974
|
+
/** The identifier for the backup. Example: "example-backup" */
|
|
7975
|
+
'backupId': string;
|
|
7976
|
+
}[];
|
|
7824
7977
|
};
|
|
7825
|
-
type
|
|
7826
|
-
type
|
|
7827
|
-
parameters:
|
|
7828
|
-
|
|
7978
|
+
type GetAddonRestoresCall = (opts: GetAddonRestoresRequest) => Promise<ApiCallResponse<GetAddonRestoresResult>>;
|
|
7979
|
+
type GetAddonRestoresRequest = {
|
|
7980
|
+
parameters: GetAddonRestoresParameters;
|
|
7981
|
+
options?: GetAddonRestoresOptions;
|
|
7829
7982
|
};
|
|
7830
|
-
type
|
|
7983
|
+
type GetAddonRestoresParameters = {
|
|
7831
7984
|
/** ID of the project */ 'projectId': string;
|
|
7832
7985
|
/** ID of the addon */
|
|
7833
7986
|
'addonId': string;
|
|
7834
7987
|
};
|
|
7835
|
-
type
|
|
7836
|
-
|
|
7837
|
-
'
|
|
7838
|
-
|
|
7988
|
+
type GetAddonRestoresOptions = {
|
|
7989
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
7990
|
+
'per_page'?: number;
|
|
7991
|
+
/** The page number to access. */
|
|
7992
|
+
'page'?: number;
|
|
7993
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
7994
|
+
'cursor'?: string;
|
|
7839
7995
|
};
|
|
7840
|
-
/**
|
|
7841
|
-
declare class
|
|
7996
|
+
/** Returns a list of restores for the given addon. */
|
|
7997
|
+
declare class GetAddonRestoresEndpoint extends GetApiEndpoint<GetAddonRestoresRequest, GetAddonRestoresResult> {
|
|
7842
7998
|
description: string;
|
|
7843
7999
|
withAuth: boolean;
|
|
7844
8000
|
requiredPermissions: string;
|
|
7845
|
-
endpointUrl: (opts:
|
|
7846
|
-
body: (
|
|
8001
|
+
endpointUrl: (opts: GetAddonRestoresRequest) => string;
|
|
8002
|
+
body: () => undefined;
|
|
7847
8003
|
}
|
|
7848
8004
|
|
|
7849
8005
|
type ResumeAddonResult = any;
|
|
@@ -12338,6 +12494,8 @@ type GetPreviewtemplateResult = {
|
|
|
12338
12494
|
'selfHostedVcsId'?: string;
|
|
12339
12495
|
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
|
|
12340
12496
|
'accountLogin'?: string;
|
|
12497
|
+
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. Example: "000000000000000000000000" */
|
|
12498
|
+
'vcsLinkId'?: string;
|
|
12341
12499
|
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
12342
12500
|
'repoUrl': string;
|
|
12343
12501
|
'branchRestrictions'?: string[];
|
|
@@ -12421,6 +12579,8 @@ type UpdatePreviewtemplateData = {
|
|
|
12421
12579
|
'selfHostedVcsId'?: string;
|
|
12422
12580
|
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
|
|
12423
12581
|
'accountLogin'?: string;
|
|
12582
|
+
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. Example: "000000000000000000000000" */
|
|
12583
|
+
'vcsLinkId'?: string;
|
|
12424
12584
|
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
12425
12585
|
'repoUrl': string;
|
|
12426
12586
|
'branchRestrictions'?: string[];
|
|
@@ -12573,6 +12733,8 @@ type GetPreviewtemplaterunResult = {
|
|
|
12573
12733
|
'selfHostedVcsId'?: string;
|
|
12574
12734
|
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
|
|
12575
12735
|
'accountLogin'?: string;
|
|
12736
|
+
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. Example: "000000000000000000000000" */
|
|
12737
|
+
'vcsLinkId'?: string;
|
|
12576
12738
|
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
12577
12739
|
'repoUrl': string;
|
|
12578
12740
|
'branchRestrictions'?: string[];
|
|
@@ -12636,6 +12798,8 @@ type GetReleaseflowResult = {
|
|
|
12636
12798
|
'selfHostedVcsId'?: string;
|
|
12637
12799
|
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
|
|
12638
12800
|
'accountLogin'?: string;
|
|
12801
|
+
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. Example: "000000000000000000000000" */
|
|
12802
|
+
'vcsLinkId'?: string;
|
|
12639
12803
|
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
12640
12804
|
'repoUrl': string;
|
|
12641
12805
|
'branchRestrictions'?: string[];
|
|
@@ -12710,6 +12874,8 @@ type UpdateReleaseflowData = {
|
|
|
12710
12874
|
'selfHostedVcsId'?: string;
|
|
12711
12875
|
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
|
|
12712
12876
|
'accountLogin'?: string;
|
|
12877
|
+
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. Example: "000000000000000000000000" */
|
|
12878
|
+
'vcsLinkId'?: string;
|
|
12713
12879
|
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
12714
12880
|
'repoUrl': string;
|
|
12715
12881
|
'branchRestrictions'?: string[];
|
|
@@ -12842,6 +13008,8 @@ type GetReleaseflowrunResult = {
|
|
|
12842
13008
|
'selfHostedVcsId'?: string;
|
|
12843
13009
|
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
|
|
12844
13010
|
'accountLogin'?: string;
|
|
13011
|
+
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. Example: "000000000000000000000000" */
|
|
13012
|
+
'vcsLinkId'?: string;
|
|
12845
13013
|
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
12846
13014
|
'repoUrl': string;
|
|
12847
13015
|
'branchRestrictions'?: string[];
|
|
@@ -12911,6 +13079,8 @@ type AbortReleaseflowrunResult = {
|
|
|
12911
13079
|
'selfHostedVcsId'?: string;
|
|
12912
13080
|
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
|
|
12913
13081
|
'accountLogin'?: string;
|
|
13082
|
+
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. Example: "000000000000000000000000" */
|
|
13083
|
+
'vcsLinkId'?: string;
|
|
12914
13084
|
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
12915
13085
|
'repoUrl': string;
|
|
12916
13086
|
'branchRestrictions'?: string[];
|
|
@@ -20561,16 +20731,17 @@ declare class ApiClient {
|
|
|
20561
20731
|
backups: GetAddonBackupsCall;
|
|
20562
20732
|
backup: GetAddonBackupCall & {
|
|
20563
20733
|
download: GetAddonBackupDownloadCall;
|
|
20734
|
+
restores: GetAddonBackupRestoresCall;
|
|
20564
20735
|
logs: GetAddonBackupLogsCall;
|
|
20565
20736
|
logTail: TailAddonBackupLogsCall;
|
|
20566
20737
|
};
|
|
20738
|
+
containers: GetAddonContainersCall;
|
|
20739
|
+
credentials: GetAddonCredentialsCall;
|
|
20740
|
+
pitrWindow: GetAddonPitrwindowCall;
|
|
20567
20741
|
restores: GetAddonRestoresCall & {
|
|
20568
20742
|
logs: GetAddonRestoresLogsCall;
|
|
20569
20743
|
logTail: TailAddonRestoresLogsCall;
|
|
20570
20744
|
};
|
|
20571
|
-
containers: GetAddonContainersCall;
|
|
20572
|
-
credentials: GetAddonCredentialsCall;
|
|
20573
|
-
pitrWindow: GetAddonPitrwindowCall;
|
|
20574
20745
|
version: GetAddonVersionCall;
|
|
20575
20746
|
logs: GetAddonLogsCall;
|
|
20576
20747
|
logTail: TailAddonLogsCall;
|
|
@@ -20891,9 +21062,7 @@ declare class ApiClient {
|
|
|
20891
21062
|
};
|
|
20892
21063
|
restore: {
|
|
20893
21064
|
addon: {
|
|
20894
|
-
backup: RestoreAddonBackupCall
|
|
20895
|
-
global: RestoreAddonBackupGlobalCall;
|
|
20896
|
-
};
|
|
21065
|
+
backup: RestoreAddonBackupCall;
|
|
20897
21066
|
};
|
|
20898
21067
|
};
|
|
20899
21068
|
retain: {
|
|
@@ -20946,11 +21115,12 @@ declare class ApiClient {
|
|
|
20946
21115
|
backups: GetAddonBackupsEndpoint;
|
|
20947
21116
|
backup: GetAddonBackupEndpoint & {
|
|
20948
21117
|
download: GetAddonBackupDownloadEndpoint;
|
|
21118
|
+
restores: GetAddonBackupRestoresEndpoint;
|
|
20949
21119
|
};
|
|
20950
|
-
restores: GetAddonRestoresEndpoint;
|
|
20951
21120
|
containers: GetAddonContainersEndpoint;
|
|
20952
21121
|
credentials: GetAddonCredentialsEndpoint;
|
|
20953
21122
|
pitrWindow: GetAddonPitrwindowEndpoint;
|
|
21123
|
+
restores: GetAddonRestoresEndpoint;
|
|
20954
21124
|
version: GetAddonVersionEndpoint;
|
|
20955
21125
|
};
|
|
20956
21126
|
invoice: {
|
|
@@ -21251,9 +21421,7 @@ declare class ApiClient {
|
|
|
21251
21421
|
};
|
|
21252
21422
|
restore: {
|
|
21253
21423
|
addon: {
|
|
21254
|
-
backup: RestoreAddonBackupEndpoint
|
|
21255
|
-
global: RestoreAddonBackupGlobalEndpoint;
|
|
21256
|
-
};
|
|
21424
|
+
backup: RestoreAddonBackupEndpoint;
|
|
21257
21425
|
};
|
|
21258
21426
|
};
|
|
21259
21427
|
retain: {
|
|
@@ -21307,4 +21475,4 @@ type ApiClientOpts = {
|
|
|
21307
21475
|
customUserAgent?: string;
|
|
21308
21476
|
};
|
|
21309
21477
|
|
|
21310
|
-
export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortReleaseflowrunCall, AbortReleaseflowrunEndpoint, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunEndpoint, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, 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, 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, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonPitrwindowCall, GetAddonPitrwindowEndpoint, GetAddonPitrwindowParameters, GetAddonPitrwindowRequest, GetAddonPitrwindowResult, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationEndpoint, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, 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, RestoreAddonBackupGlobalCall, RestoreAddonBackupGlobalData, RestoreAddonBackupGlobalEndpoint, RestoreAddonBackupGlobalParameters, RestoreAddonBackupGlobalRequest, RestoreAddonBackupGlobalResult, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobEndpoint, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkEndpoint, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupEndpoint, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowEndpoint, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateEndpoint, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartAddonPitrCall, StartAddonPitrData, StartAddonPitrEndpoint, StartAddonPitrParameters, StartAddonPitrRequest, StartAddonPitrResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobEndpoint, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonBackupLogsCall, TailAddonLogsCall, TailAddonRestoresLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathEndpoint, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateCloudClusterCall, UpdateCloudClusterData, UpdateCloudClusterEndpoint, UpdateCloudClusterParameters, UpdateCloudClusterRequest, UpdateCloudClusterResult, UpdateCloudIntegrationCall, UpdateCloudIntegrationData, UpdateCloudIntegrationEndpoint, UpdateCloudIntegrationParameters, UpdateCloudIntegrationRequest, UpdateCloudIntegrationResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationEndpoint, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, 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 };
|
|
21478
|
+
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, 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, 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, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationEndpoint, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, 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, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathEndpoint, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateCloudClusterCall, UpdateCloudClusterData, UpdateCloudClusterEndpoint, UpdateCloudClusterParameters, UpdateCloudClusterRequest, UpdateCloudClusterResult, UpdateCloudIntegrationCall, UpdateCloudIntegrationData, UpdateCloudIntegrationEndpoint, UpdateCloudIntegrationParameters, UpdateCloudIntegrationRequest, UpdateCloudIntegrationResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationEndpoint, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, 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 };
|