@northflank/js-client 0.7.18 → 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 +356 -48
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +356 -48
- package/dist/esm/api-client.js +1 -1
- package/package.json +1 -1
package/dist/cjs/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'?: {
|
|
@@ -1793,6 +1819,8 @@ type CreateCloudClusterResult = {
|
|
|
1793
1819
|
/** List of subnets the cluster should be created for. At least 2 must be specified. */
|
|
1794
1820
|
'subnets': string;
|
|
1795
1821
|
};
|
|
1822
|
+
/** The ID of cluster Example: "gcp-cluster-1" */
|
|
1823
|
+
'id': string;
|
|
1796
1824
|
'status'?: {
|
|
1797
1825
|
'state'?: {
|
|
1798
1826
|
'state'?: string;
|
|
@@ -1874,6 +1902,8 @@ type CreateCloudClusterData = {
|
|
|
1874
1902
|
'allowBuilds'?: boolean;
|
|
1875
1903
|
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
1876
1904
|
'onlyGpuBuilds'?: boolean;
|
|
1905
|
+
/** Allow the placement of Ceph pods */
|
|
1906
|
+
'allowCeph'?: boolean;
|
|
1877
1907
|
};
|
|
1878
1908
|
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
1879
1909
|
'labels'?: any;
|
|
@@ -1926,6 +1956,17 @@ type CreateCloudClusterData = {
|
|
|
1926
1956
|
'installGvisor'?: boolean;
|
|
1927
1957
|
'cleanupVolumes'?: boolean;
|
|
1928
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
|
+
};
|
|
1929
1970
|
};
|
|
1930
1971
|
/** Request modifiers to use for different resources. */
|
|
1931
1972
|
'requestModifiers'?: {
|
|
@@ -2035,6 +2076,8 @@ type GetCloudClusterResult = {
|
|
|
2035
2076
|
'allowBuilds'?: boolean;
|
|
2036
2077
|
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2037
2078
|
'onlyGpuBuilds'?: boolean;
|
|
2079
|
+
/** Allow the placement of Ceph pods */
|
|
2080
|
+
'allowCeph'?: boolean;
|
|
2038
2081
|
};
|
|
2039
2082
|
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
2040
2083
|
'labels'?: any;
|
|
@@ -2087,6 +2130,17 @@ type GetCloudClusterResult = {
|
|
|
2087
2130
|
'installGvisor'?: boolean;
|
|
2088
2131
|
'cleanupVolumes'?: boolean;
|
|
2089
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
|
+
};
|
|
2090
2144
|
};
|
|
2091
2145
|
/** Request modifiers to use for different resources. */
|
|
2092
2146
|
'requestModifiers'?: {
|
|
@@ -2123,6 +2177,8 @@ type GetCloudClusterResult = {
|
|
|
2123
2177
|
/** List of subnets the cluster should be created for. At least 2 must be specified. */
|
|
2124
2178
|
'subnets': string;
|
|
2125
2179
|
};
|
|
2180
|
+
/** The ID of cluster Example: "gcp-cluster-1" */
|
|
2181
|
+
'id': string;
|
|
2126
2182
|
'status'?: {
|
|
2127
2183
|
'state'?: {
|
|
2128
2184
|
'state'?: string;
|
|
@@ -2216,6 +2272,8 @@ type UpdateCloudClusterResult = {
|
|
|
2216
2272
|
'allowBuilds'?: boolean;
|
|
2217
2273
|
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2218
2274
|
'onlyGpuBuilds'?: boolean;
|
|
2275
|
+
/** Allow the placement of Ceph pods */
|
|
2276
|
+
'allowCeph'?: boolean;
|
|
2219
2277
|
};
|
|
2220
2278
|
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
2221
2279
|
'labels'?: any;
|
|
@@ -2268,6 +2326,17 @@ type UpdateCloudClusterResult = {
|
|
|
2268
2326
|
'installGvisor'?: boolean;
|
|
2269
2327
|
'cleanupVolumes'?: boolean;
|
|
2270
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
|
+
};
|
|
2271
2340
|
};
|
|
2272
2341
|
/** Request modifiers to use for different resources. */
|
|
2273
2342
|
'requestModifiers'?: {
|
|
@@ -2304,6 +2373,8 @@ type UpdateCloudClusterResult = {
|
|
|
2304
2373
|
/** List of subnets the cluster should be created for. At least 2 must be specified. */
|
|
2305
2374
|
'subnets': string;
|
|
2306
2375
|
};
|
|
2376
|
+
/** The ID of cluster Example: "gcp-cluster-1" */
|
|
2377
|
+
'id': string;
|
|
2307
2378
|
'status'?: {
|
|
2308
2379
|
'state'?: {
|
|
2309
2380
|
'state'?: string;
|
|
@@ -2378,6 +2449,8 @@ type UpdateCloudClusterData = {
|
|
|
2378
2449
|
'allowBuilds'?: boolean;
|
|
2379
2450
|
/** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
|
|
2380
2451
|
'onlyGpuBuilds'?: boolean;
|
|
2452
|
+
/** Allow the placement of Ceph pods */
|
|
2453
|
+
'allowCeph'?: boolean;
|
|
2381
2454
|
};
|
|
2382
2455
|
/** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
|
|
2383
2456
|
'labels'?: any;
|
|
@@ -2432,6 +2505,17 @@ type UpdateCloudClusterData = {
|
|
|
2432
2505
|
'installGvisor'?: boolean;
|
|
2433
2506
|
'cleanupVolumes'?: boolean;
|
|
2434
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
|
+
};
|
|
2435
2519
|
};
|
|
2436
2520
|
/** Request modifiers to use for different resources. */
|
|
2437
2521
|
'requestModifiers'?: {
|
|
@@ -2485,6 +2569,53 @@ declare class DeleteCloudClusterEndpoint extends DeleteApiEndpoint<DeleteCloudCl
|
|
|
2485
2569
|
body: () => undefined;
|
|
2486
2570
|
}
|
|
2487
2571
|
|
|
2572
|
+
type ListCloudClusterNodesResult = {
|
|
2573
|
+
/** An array of nodes. */
|
|
2574
|
+
'nodes': {
|
|
2575
|
+
/** The id of the node. Example: "87a11ea9-3493-40d3-9f50-280c1d7c77a3" */
|
|
2576
|
+
'nodeId'?: string;
|
|
2577
|
+
/** The name of the node. Example: "gke-nf-example-cluster-nf-951dfaf6-a70a-7697bc0d-n771" */
|
|
2578
|
+
'nodeName'?: string;
|
|
2579
|
+
/** The node pool the node is a part of. Example: "nf-951dfaf6-a70a-4550-bab6-b5364d5da20c" */
|
|
2580
|
+
'nodePool'?: string;
|
|
2581
|
+
/** The status of the node. Example: "RUNNING" */
|
|
2582
|
+
'status'?: string;
|
|
2583
|
+
/** The zone the node is running in. Example: "us-central1-c" */
|
|
2584
|
+
'zone'?: string;
|
|
2585
|
+
/** The region the node is running in. Example: "us-central1" */
|
|
2586
|
+
'region'?: string;
|
|
2587
|
+
/** The type of the node. Example: "n2-standard-4" */
|
|
2588
|
+
'instanceType'?: string;
|
|
2589
|
+
'createdAt'?: string;
|
|
2590
|
+
}[];
|
|
2591
|
+
};
|
|
2592
|
+
type ListCloudClusterNodesCall = (opts: ListCloudClusterNodesRequest) => Promise<ApiCallResponse<ListCloudClusterNodesResult>>;
|
|
2593
|
+
type ListCloudClusterNodesRequest = {
|
|
2594
|
+
parameters: ListCloudClusterNodesParameters;
|
|
2595
|
+
options?: ListCloudClusterNodesOptions;
|
|
2596
|
+
};
|
|
2597
|
+
type ListCloudClusterNodesParameters = {
|
|
2598
|
+
/** ID of the cluster */ 'clusterId': string;
|
|
2599
|
+
};
|
|
2600
|
+
type ListCloudClusterNodesOptions = {
|
|
2601
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
2602
|
+
'per_page'?: number;
|
|
2603
|
+
/** The page number to access. */
|
|
2604
|
+
'page'?: number;
|
|
2605
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
2606
|
+
'cursor'?: string;
|
|
2607
|
+
/** Filter the node list by state of the nodes. */
|
|
2608
|
+
'status'?: string;
|
|
2609
|
+
};
|
|
2610
|
+
/** Get a list of nodes for the given cluster */
|
|
2611
|
+
declare class ListCloudClusterNodesEndpoint extends GetApiEndpoint<ListCloudClusterNodesRequest, ListCloudClusterNodesResult> {
|
|
2612
|
+
description: string;
|
|
2613
|
+
withAuth: boolean;
|
|
2614
|
+
requiredPermissions: string;
|
|
2615
|
+
endpointUrl: (opts: ListCloudClusterNodesRequest) => string;
|
|
2616
|
+
body: () => undefined;
|
|
2617
|
+
}
|
|
2618
|
+
|
|
2488
2619
|
type ListCloudDockerregistryResult = {
|
|
2489
2620
|
/** An array of integrations. */
|
|
2490
2621
|
'registries': {
|
|
@@ -3545,11 +3676,12 @@ type AddSubdomainPathResult = {
|
|
|
3545
3676
|
'corsPolicy'?: {
|
|
3546
3677
|
'enabled': boolean;
|
|
3547
3678
|
'allowOrigins'?: {
|
|
3548
|
-
/** Mode of the path, determining how the URI will be interpreted. */
|
|
3549
|
-
'mode'
|
|
3550
|
-
|
|
3679
|
+
/** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
|
|
3680
|
+
'mode': 'prefix' | 'exact' | 'regex';
|
|
3681
|
+
/** Origin definition. Example: "https://example.com" */
|
|
3682
|
+
'origin'?: string;
|
|
3551
3683
|
}[];
|
|
3552
|
-
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'[];
|
|
3684
|
+
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'OPTIONS' | 'TRACE' | 'CONNECT' | 'HEAD'[];
|
|
3553
3685
|
'allowCredentials'?: boolean;
|
|
3554
3686
|
'allowHeaders'?: string[];
|
|
3555
3687
|
'maxAge'?: string;
|
|
@@ -3616,11 +3748,12 @@ type AddSubdomainPathData = {
|
|
|
3616
3748
|
'corsPolicy'?: {
|
|
3617
3749
|
'enabled': boolean;
|
|
3618
3750
|
'allowOrigins'?: {
|
|
3619
|
-
/** Mode of the path, determining how the URI will be interpreted. */
|
|
3620
|
-
'mode'
|
|
3621
|
-
|
|
3751
|
+
/** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
|
|
3752
|
+
'mode': 'prefix' | 'exact' | 'regex';
|
|
3753
|
+
/** Origin definition. Example: "https://example.com" */
|
|
3754
|
+
'origin'?: string;
|
|
3622
3755
|
}[];
|
|
3623
|
-
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'[];
|
|
3756
|
+
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'OPTIONS' | 'TRACE' | 'CONNECT' | 'HEAD'[];
|
|
3624
3757
|
'allowCredentials'?: boolean;
|
|
3625
3758
|
'allowHeaders'?: string[];
|
|
3626
3759
|
'maxAge'?: string;
|
|
@@ -3686,11 +3819,12 @@ type ListSubdomainPathResult = {
|
|
|
3686
3819
|
'corsPolicy'?: {
|
|
3687
3820
|
'enabled': boolean;
|
|
3688
3821
|
'allowOrigins'?: {
|
|
3689
|
-
/** Mode of the path, determining how the URI will be interpreted. */
|
|
3690
|
-
'mode'
|
|
3691
|
-
|
|
3822
|
+
/** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
|
|
3823
|
+
'mode': 'prefix' | 'exact' | 'regex';
|
|
3824
|
+
/** Origin definition. Example: "https://example.com" */
|
|
3825
|
+
'origin'?: string;
|
|
3692
3826
|
}[];
|
|
3693
|
-
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'[];
|
|
3827
|
+
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'OPTIONS' | 'TRACE' | 'CONNECT' | 'HEAD'[];
|
|
3694
3828
|
'allowCredentials'?: boolean;
|
|
3695
3829
|
'allowHeaders'?: string[];
|
|
3696
3830
|
'maxAge'?: string;
|
|
@@ -3766,11 +3900,12 @@ type GetSubdomainPathResult = {
|
|
|
3766
3900
|
'corsPolicy'?: {
|
|
3767
3901
|
'enabled': boolean;
|
|
3768
3902
|
'allowOrigins'?: {
|
|
3769
|
-
/** Mode of the path, determining how the URI will be interpreted. */
|
|
3770
|
-
'mode'
|
|
3771
|
-
|
|
3903
|
+
/** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
|
|
3904
|
+
'mode': 'prefix' | 'exact' | 'regex';
|
|
3905
|
+
/** Origin definition. Example: "https://example.com" */
|
|
3906
|
+
'origin'?: string;
|
|
3772
3907
|
}[];
|
|
3773
|
-
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'[];
|
|
3908
|
+
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'OPTIONS' | 'TRACE' | 'CONNECT' | 'HEAD'[];
|
|
3774
3909
|
'allowCredentials'?: boolean;
|
|
3775
3910
|
'allowHeaders'?: string[];
|
|
3776
3911
|
'maxAge'?: string;
|
|
@@ -3886,11 +4021,12 @@ type UpdateSubdomainPathData = {
|
|
|
3886
4021
|
'corsPolicy'?: {
|
|
3887
4022
|
'enabled': boolean;
|
|
3888
4023
|
'allowOrigins'?: {
|
|
3889
|
-
/** Mode of the path, determining how the URI will be interpreted. */
|
|
3890
|
-
'mode'
|
|
3891
|
-
|
|
4024
|
+
/** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
|
|
4025
|
+
'mode': 'prefix' | 'exact' | 'regex';
|
|
4026
|
+
/** Origin definition. Example: "https://example.com" */
|
|
4027
|
+
'origin'?: string;
|
|
3892
4028
|
}[];
|
|
3893
|
-
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'[];
|
|
4029
|
+
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'OPTIONS' | 'TRACE' | 'CONNECT' | 'HEAD'[];
|
|
3894
4030
|
'allowCredentials'?: boolean;
|
|
3895
4031
|
'allowHeaders'?: string[];
|
|
3896
4032
|
'maxAge'?: string;
|
|
@@ -6290,6 +6426,11 @@ type CreateAddonResult = {
|
|
|
6290
6426
|
};
|
|
6291
6427
|
/** The type of the backup to be performed. Example: "snapshot" */
|
|
6292
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
|
+
}[];
|
|
6293
6434
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
6294
6435
|
'compressionType'?: 'gz' | 'zstd';
|
|
6295
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 */
|
|
@@ -6358,6 +6499,8 @@ type CreateAddonData = {
|
|
|
6358
6499
|
'name': string;
|
|
6359
6500
|
/** A description of the addon. Example: "An addon description" */
|
|
6360
6501
|
'description'?: string;
|
|
6502
|
+
/** ID of parent project Example: "example-project" */
|
|
6503
|
+
'projectId'?: string;
|
|
6361
6504
|
/** An array of previously defined tags to help identify and group the resource. */
|
|
6362
6505
|
'tags'?: string[];
|
|
6363
6506
|
/** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
|
|
@@ -6434,6 +6577,11 @@ type CreateAddonData = {
|
|
|
6434
6577
|
};
|
|
6435
6578
|
/** The type of the backup to be performed. Example: "snapshot" */
|
|
6436
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
|
+
}[];
|
|
6437
6585
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
6438
6586
|
'compressionType'?: 'gz' | 'zstd';
|
|
6439
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 */
|
|
@@ -6444,6 +6592,8 @@ type CreateAddonData = {
|
|
|
6444
6592
|
'name': string;
|
|
6445
6593
|
/** A description of the addon. Example: "An addon description" */
|
|
6446
6594
|
'description'?: string;
|
|
6595
|
+
/** ID of parent project Example: "example-project" */
|
|
6596
|
+
'projectId'?: string;
|
|
6447
6597
|
/** An array of previously defined tags to help identify and group the resource. */
|
|
6448
6598
|
'tags'?: string[];
|
|
6449
6599
|
/** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
|
|
@@ -6541,6 +6691,11 @@ type PutAddonResult = {
|
|
|
6541
6691
|
};
|
|
6542
6692
|
/** The type of the backup to be performed. Example: "snapshot" */
|
|
6543
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
|
+
}[];
|
|
6544
6699
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
6545
6700
|
'compressionType'?: 'gz' | 'zstd';
|
|
6546
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 */
|
|
@@ -6609,6 +6764,8 @@ type PutAddonData = {
|
|
|
6609
6764
|
'name': string;
|
|
6610
6765
|
/** A description of the addon. Example: "An addon description" */
|
|
6611
6766
|
'description'?: string;
|
|
6767
|
+
/** ID of parent project Example: "example-project" */
|
|
6768
|
+
'projectId'?: string;
|
|
6612
6769
|
/** An array of previously defined tags to help identify and group the resource. */
|
|
6613
6770
|
'tags'?: string[];
|
|
6614
6771
|
/** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
|
|
@@ -6685,6 +6842,11 @@ type PutAddonData = {
|
|
|
6685
6842
|
};
|
|
6686
6843
|
/** The type of the backup to be performed. Example: "snapshot" */
|
|
6687
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
|
+
}[];
|
|
6688
6850
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
6689
6851
|
'compressionType'?: 'gz' | 'zstd';
|
|
6690
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 */
|
|
@@ -6695,6 +6857,8 @@ type PutAddonData = {
|
|
|
6695
6857
|
'name': string;
|
|
6696
6858
|
/** A description of the addon. Example: "An addon description" */
|
|
6697
6859
|
'description'?: string;
|
|
6860
|
+
/** ID of parent project Example: "example-project" */
|
|
6861
|
+
'projectId'?: string;
|
|
6698
6862
|
/** An array of previously defined tags to help identify and group the resource. */
|
|
6699
6863
|
'tags'?: string[];
|
|
6700
6864
|
/** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
|
|
@@ -6877,6 +7041,11 @@ type PatchAddonResult = {
|
|
|
6877
7041
|
};
|
|
6878
7042
|
/** The type of the backup to be performed. Example: "snapshot" */
|
|
6879
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
|
+
}[];
|
|
6880
7049
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
6881
7050
|
'compressionType'?: 'gz' | 'zstd';
|
|
6882
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 */
|
|
@@ -6999,6 +7168,11 @@ type PatchAddonData = {
|
|
|
6999
7168
|
};
|
|
7000
7169
|
/** The type of the backup to be performed. Example: "snapshot" */
|
|
7001
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
|
+
}[];
|
|
7002
7176
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
7003
7177
|
'compressionType'?: 'gz' | 'zstd';
|
|
7004
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 */
|
|
@@ -7120,6 +7294,11 @@ type CreateAddonBackupscheduleData = {
|
|
|
7120
7294
|
};
|
|
7121
7295
|
/** The type of the backup to be performed. Example: "snapshot" */
|
|
7122
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
|
+
}[];
|
|
7123
7302
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
7124
7303
|
'compressionType'?: 'gz' | 'zstd';
|
|
7125
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 */
|
|
@@ -7259,6 +7438,11 @@ type BackupAddonData = {
|
|
|
7259
7438
|
'backupType'?: 'dump' | 'snapshot';
|
|
7260
7439
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
7261
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
|
+
}[];
|
|
7262
7446
|
};
|
|
7263
7447
|
/** Initiates a backup for the given addon */
|
|
7264
7448
|
declare class BackupAddonEndpoint extends PostApiEndpoint<BackupAddonRequest, BackupAddonResult> {
|
|
@@ -7368,6 +7552,7 @@ type AbortAddonRestoreResult = any;
|
|
|
7368
7552
|
type AbortAddonRestoreCall = (opts: AbortAddonRestoreRequest) => Promise<ApiCallResponse<AbortAddonRestoreResult>>;
|
|
7369
7553
|
type AbortAddonRestoreRequest = {
|
|
7370
7554
|
parameters: AbortAddonRestoreParameters;
|
|
7555
|
+
options?: AbortAddonRestoreOptions;
|
|
7371
7556
|
data: AbortAddonRestoreData;
|
|
7372
7557
|
};
|
|
7373
7558
|
type AbortAddonRestoreParameters = {
|
|
@@ -7377,9 +7562,14 @@ type AbortAddonRestoreParameters = {
|
|
|
7377
7562
|
/** ID of the backup */
|
|
7378
7563
|
'backupId': string;
|
|
7379
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
|
+
};
|
|
7380
7570
|
type AbortAddonRestoreData = {
|
|
7381
|
-
/** ID of the restore to abort. Example:
|
|
7382
|
-
'restoreId':
|
|
7571
|
+
/** ID of the restore to abort. Example: "66845073ce75649ad18635f0" */
|
|
7572
|
+
'restoreId': string;
|
|
7383
7573
|
};
|
|
7384
7574
|
/** Aborts an in-progress backup restore. */
|
|
7385
7575
|
declare class AbortAddonRestoreEndpoint extends PostApiEndpoint<AbortAddonRestoreRequest, AbortAddonRestoreResult> {
|
|
@@ -7421,6 +7611,7 @@ type RestoreAddonBackupResult = {
|
|
|
7421
7611
|
type RestoreAddonBackupCall = (opts: RestoreAddonBackupRequest) => Promise<ApiCallResponse<RestoreAddonBackupResult>>;
|
|
7422
7612
|
type RestoreAddonBackupRequest = {
|
|
7423
7613
|
parameters: RestoreAddonBackupParameters;
|
|
7614
|
+
options?: RestoreAddonBackupOptions;
|
|
7424
7615
|
};
|
|
7425
7616
|
type RestoreAddonBackupParameters = {
|
|
7426
7617
|
/** ID of the project */ 'projectId': string;
|
|
@@ -7429,6 +7620,11 @@ type RestoreAddonBackupParameters = {
|
|
|
7429
7620
|
/** ID of the backup */
|
|
7430
7621
|
'backupId': string;
|
|
7431
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
|
+
};
|
|
7432
7628
|
/** Restores the given addon to the given backup state. */
|
|
7433
7629
|
declare class RestoreAddonBackupEndpoint extends PostApiEndpoint<RestoreAddonBackupRequest, RestoreAddonBackupResult> {
|
|
7434
7630
|
description: string;
|
|
@@ -7438,45 +7634,49 @@ declare class RestoreAddonBackupEndpoint extends PostApiEndpoint<RestoreAddonBac
|
|
|
7438
7634
|
body: () => undefined;
|
|
7439
7635
|
}
|
|
7440
7636
|
|
|
7441
|
-
type
|
|
7442
|
-
/** A list of backup
|
|
7637
|
+
type GetAddonBackupRestoresResult = {
|
|
7638
|
+
/** A list of restores for the given backup. */
|
|
7443
7639
|
'restores'?: {
|
|
7444
|
-
/**
|
|
7445
|
-
'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';
|
|
7446
7644
|
/** The time the backup was initiated. Example: "2021-01-20T11:19:54.494Z" */
|
|
7447
7645
|
'restoreTimestamp': string;
|
|
7448
|
-
/** The current status of the restore. Example: "completed" */
|
|
7449
|
-
'status': 'scheduled' | 'in-progress' | 'completed' | 'aborting' | 'aborted' | 'failed' | 'not-supported';
|
|
7450
7646
|
/** The time the restore was completed. Example: "2021-01-20T11:19:54.494Z" */
|
|
7451
7647
|
'completedAt'?: string;
|
|
7452
7648
|
}[];
|
|
7453
7649
|
};
|
|
7454
|
-
type
|
|
7455
|
-
type
|
|
7456
|
-
parameters:
|
|
7457
|
-
options?:
|
|
7650
|
+
type GetAddonBackupRestoresCall = (opts: GetAddonBackupRestoresRequest) => Promise<ApiCallResponse<GetAddonBackupRestoresResult>>;
|
|
7651
|
+
type GetAddonBackupRestoresRequest = {
|
|
7652
|
+
parameters: GetAddonBackupRestoresParameters;
|
|
7653
|
+
options?: GetAddonBackupRestoresOptions;
|
|
7458
7654
|
};
|
|
7459
|
-
type
|
|
7655
|
+
type GetAddonBackupRestoresParameters = {
|
|
7460
7656
|
/** ID of the project */ 'projectId': string;
|
|
7461
7657
|
/** ID of the addon */
|
|
7462
7658
|
'addonId': string;
|
|
7463
7659
|
/** ID of the backup */
|
|
7464
7660
|
'backupId': string;
|
|
7465
7661
|
};
|
|
7466
|
-
type
|
|
7662
|
+
type GetAddonBackupRestoresOptions = {
|
|
7467
7663
|
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
7468
7664
|
'per_page'?: number;
|
|
7469
7665
|
/** The page number to access. */
|
|
7470
7666
|
'page'?: number;
|
|
7471
7667
|
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
7472
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;
|
|
7473
7673
|
};
|
|
7474
7674
|
/** Gets a list of restores for the given backup. */
|
|
7475
|
-
declare class
|
|
7675
|
+
declare class GetAddonBackupRestoresEndpoint extends GetApiEndpoint<GetAddonBackupRestoresRequest, GetAddonBackupRestoresResult> {
|
|
7476
7676
|
description: string;
|
|
7477
7677
|
withAuth: boolean;
|
|
7478
7678
|
requiredPermissions: string;
|
|
7479
|
-
endpointUrl: (opts:
|
|
7679
|
+
endpointUrl: (opts: GetAddonBackupRestoresRequest) => string;
|
|
7480
7680
|
body: () => undefined;
|
|
7481
7681
|
}
|
|
7482
7682
|
|
|
@@ -7760,6 +7960,48 @@ declare class RestartAddonEndpoint extends PostApiEndpoint<RestartAddonRequest,
|
|
|
7760
7960
|
body: () => undefined;
|
|
7761
7961
|
}
|
|
7762
7962
|
|
|
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
|
+
}[];
|
|
7977
|
+
};
|
|
7978
|
+
type GetAddonRestoresCall = (opts: GetAddonRestoresRequest) => Promise<ApiCallResponse<GetAddonRestoresResult>>;
|
|
7979
|
+
type GetAddonRestoresRequest = {
|
|
7980
|
+
parameters: GetAddonRestoresParameters;
|
|
7981
|
+
options?: GetAddonRestoresOptions;
|
|
7982
|
+
};
|
|
7983
|
+
type GetAddonRestoresParameters = {
|
|
7984
|
+
/** ID of the project */ 'projectId': string;
|
|
7985
|
+
/** ID of the addon */
|
|
7986
|
+
'addonId': string;
|
|
7987
|
+
};
|
|
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;
|
|
7995
|
+
};
|
|
7996
|
+
/** Returns a list of restores for the given addon. */
|
|
7997
|
+
declare class GetAddonRestoresEndpoint extends GetApiEndpoint<GetAddonRestoresRequest, GetAddonRestoresResult> {
|
|
7998
|
+
description: string;
|
|
7999
|
+
withAuth: boolean;
|
|
8000
|
+
requiredPermissions: string;
|
|
8001
|
+
endpointUrl: (opts: GetAddonRestoresRequest) => string;
|
|
8002
|
+
body: () => undefined;
|
|
8003
|
+
}
|
|
8004
|
+
|
|
7763
8005
|
type ResumeAddonResult = any;
|
|
7764
8006
|
type ResumeAddonCall = (opts: ResumeAddonRequest) => Promise<ApiCallResponse<ResumeAddonResult>>;
|
|
7765
8007
|
type ResumeAddonRequest = {
|
|
@@ -12252,11 +12494,15 @@ type GetPreviewtemplateResult = {
|
|
|
12252
12494
|
'selfHostedVcsId'?: string;
|
|
12253
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" */
|
|
12254
12496
|
'accountLogin'?: string;
|
|
12255
|
-
/**
|
|
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;
|
|
12499
|
+
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
12256
12500
|
'repoUrl': string;
|
|
12257
12501
|
'branchRestrictions'?: string[];
|
|
12258
12502
|
'prRestrictions'?: string[];
|
|
12503
|
+
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
12259
12504
|
'pathIgnoreRules'?: string[];
|
|
12505
|
+
/** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
|
|
12260
12506
|
'ciIgnoreFlags'?: string[];
|
|
12261
12507
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
12262
12508
|
'isAllowList'?: boolean;
|
|
@@ -12333,11 +12579,15 @@ type UpdatePreviewtemplateData = {
|
|
|
12333
12579
|
'selfHostedVcsId'?: string;
|
|
12334
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" */
|
|
12335
12581
|
'accountLogin'?: string;
|
|
12336
|
-
/**
|
|
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;
|
|
12584
|
+
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
12337
12585
|
'repoUrl': string;
|
|
12338
12586
|
'branchRestrictions'?: string[];
|
|
12339
12587
|
'prRestrictions'?: string[];
|
|
12588
|
+
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
12340
12589
|
'pathIgnoreRules'?: string[];
|
|
12590
|
+
/** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
|
|
12341
12591
|
'ciIgnoreFlags'?: string[];
|
|
12342
12592
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
12343
12593
|
'isAllowList'?: boolean;
|
|
@@ -12483,11 +12733,15 @@ type GetPreviewtemplaterunResult = {
|
|
|
12483
12733
|
'selfHostedVcsId'?: string;
|
|
12484
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" */
|
|
12485
12735
|
'accountLogin'?: string;
|
|
12486
|
-
/**
|
|
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;
|
|
12738
|
+
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
12487
12739
|
'repoUrl': string;
|
|
12488
12740
|
'branchRestrictions'?: string[];
|
|
12489
12741
|
'prRestrictions'?: string[];
|
|
12742
|
+
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
12490
12743
|
'pathIgnoreRules'?: string[];
|
|
12744
|
+
/** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
|
|
12491
12745
|
'ciIgnoreFlags'?: string[];
|
|
12492
12746
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
12493
12747
|
'isAllowList'?: boolean;
|
|
@@ -12544,11 +12798,15 @@ type GetReleaseflowResult = {
|
|
|
12544
12798
|
'selfHostedVcsId'?: string;
|
|
12545
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" */
|
|
12546
12800
|
'accountLogin'?: string;
|
|
12547
|
-
/**
|
|
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;
|
|
12803
|
+
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
12548
12804
|
'repoUrl': string;
|
|
12549
12805
|
'branchRestrictions'?: string[];
|
|
12550
12806
|
'prRestrictions'?: string[];
|
|
12807
|
+
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
12551
12808
|
'pathIgnoreRules'?: string[];
|
|
12809
|
+
/** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
|
|
12552
12810
|
'ciIgnoreFlags'?: string[];
|
|
12553
12811
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
12554
12812
|
'isAllowList'?: boolean;
|
|
@@ -12616,11 +12874,15 @@ type UpdateReleaseflowData = {
|
|
|
12616
12874
|
'selfHostedVcsId'?: string;
|
|
12617
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" */
|
|
12618
12876
|
'accountLogin'?: string;
|
|
12619
|
-
/**
|
|
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;
|
|
12879
|
+
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
12620
12880
|
'repoUrl': string;
|
|
12621
12881
|
'branchRestrictions'?: string[];
|
|
12622
12882
|
'prRestrictions'?: string[];
|
|
12883
|
+
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
12623
12884
|
'pathIgnoreRules'?: string[];
|
|
12885
|
+
/** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
|
|
12624
12886
|
'ciIgnoreFlags'?: string[];
|
|
12625
12887
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
12626
12888
|
'isAllowList'?: boolean;
|
|
@@ -12746,11 +13008,15 @@ type GetReleaseflowrunResult = {
|
|
|
12746
13008
|
'selfHostedVcsId'?: string;
|
|
12747
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" */
|
|
12748
13010
|
'accountLogin'?: string;
|
|
12749
|
-
/**
|
|
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;
|
|
13013
|
+
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
12750
13014
|
'repoUrl': string;
|
|
12751
13015
|
'branchRestrictions'?: string[];
|
|
12752
13016
|
'prRestrictions'?: string[];
|
|
13017
|
+
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
12753
13018
|
'pathIgnoreRules'?: string[];
|
|
13019
|
+
/** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
|
|
12754
13020
|
'ciIgnoreFlags'?: string[];
|
|
12755
13021
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
12756
13022
|
'isAllowList'?: boolean;
|
|
@@ -12813,11 +13079,15 @@ type AbortReleaseflowrunResult = {
|
|
|
12813
13079
|
'selfHostedVcsId'?: string;
|
|
12814
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" */
|
|
12815
13081
|
'accountLogin'?: string;
|
|
12816
|
-
/**
|
|
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;
|
|
13084
|
+
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
12817
13085
|
'repoUrl': string;
|
|
12818
13086
|
'branchRestrictions'?: string[];
|
|
12819
13087
|
'prRestrictions'?: string[];
|
|
13088
|
+
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
12820
13089
|
'pathIgnoreRules'?: string[];
|
|
13090
|
+
/** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
|
|
12821
13091
|
'ciIgnoreFlags'?: string[];
|
|
12822
13092
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
12823
13093
|
'isAllowList'?: boolean;
|
|
@@ -14380,6 +14650,8 @@ type CreateServiceCombinedResult = {
|
|
|
14380
14650
|
'directoryGroupIds'?: string[];
|
|
14381
14651
|
/** Enforce internal traffic through SSO authentication flow */
|
|
14382
14652
|
'validateInternalTraffic'?: boolean;
|
|
14653
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
14654
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
14383
14655
|
};
|
|
14384
14656
|
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
14385
14657
|
'verificationMode'?: 'or' | 'and';
|
|
@@ -14743,6 +15015,8 @@ type CreateServiceCombinedData = {
|
|
|
14743
15015
|
'directoryGroupIds'?: string[];
|
|
14744
15016
|
/** Enforce internal traffic through SSO authentication flow */
|
|
14745
15017
|
'validateInternalTraffic'?: boolean;
|
|
15018
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
15019
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
14746
15020
|
};
|
|
14747
15021
|
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
14748
15022
|
'verificationMode'?: 'or' | 'and';
|
|
@@ -14960,6 +15234,8 @@ type PutServiceCombinedResult = {
|
|
|
14960
15234
|
'directoryGroupIds'?: string[];
|
|
14961
15235
|
/** Enforce internal traffic through SSO authentication flow */
|
|
14962
15236
|
'validateInternalTraffic'?: boolean;
|
|
15237
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
15238
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
14963
15239
|
};
|
|
14964
15240
|
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
14965
15241
|
'verificationMode'?: 'or' | 'and';
|
|
@@ -15323,6 +15599,8 @@ type PutServiceCombinedData = {
|
|
|
15323
15599
|
'directoryGroupIds'?: string[];
|
|
15324
15600
|
/** Enforce internal traffic through SSO authentication flow */
|
|
15325
15601
|
'validateInternalTraffic'?: boolean;
|
|
15602
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
15603
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
15326
15604
|
};
|
|
15327
15605
|
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
15328
15606
|
'verificationMode'?: 'or' | 'and';
|
|
@@ -15540,6 +15818,8 @@ type PatchServiceCombinedResult = {
|
|
|
15540
15818
|
'directoryGroupIds'?: string[];
|
|
15541
15819
|
/** Enforce internal traffic through SSO authentication flow */
|
|
15542
15820
|
'validateInternalTraffic'?: boolean;
|
|
15821
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
15822
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
15543
15823
|
};
|
|
15544
15824
|
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
15545
15825
|
'verificationMode'?: 'or' | 'and';
|
|
@@ -15901,6 +16181,8 @@ type PatchServiceCombinedData = {
|
|
|
15901
16181
|
'directoryGroupIds'?: string[];
|
|
15902
16182
|
/** Enforce internal traffic through SSO authentication flow */
|
|
15903
16183
|
'validateInternalTraffic'?: boolean;
|
|
16184
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
16185
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
15904
16186
|
};
|
|
15905
16187
|
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
15906
16188
|
'verificationMode'?: 'or' | 'and';
|
|
@@ -16106,6 +16388,8 @@ type CreateServiceDeploymentResult = {
|
|
|
16106
16388
|
'directoryGroupIds'?: string[];
|
|
16107
16389
|
/** Enforce internal traffic through SSO authentication flow */
|
|
16108
16390
|
'validateInternalTraffic'?: boolean;
|
|
16391
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
16392
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
16109
16393
|
};
|
|
16110
16394
|
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
16111
16395
|
'verificationMode'?: 'or' | 'and';
|
|
@@ -16508,6 +16792,8 @@ type CreateServiceDeploymentData = {
|
|
|
16508
16792
|
'directoryGroupIds'?: string[];
|
|
16509
16793
|
/** Enforce internal traffic through SSO authentication flow */
|
|
16510
16794
|
'validateInternalTraffic'?: boolean;
|
|
16795
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
16796
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
16511
16797
|
};
|
|
16512
16798
|
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
16513
16799
|
'verificationMode'?: 'or' | 'and';
|
|
@@ -16636,6 +16922,8 @@ type PutServiceDeploymentResult = {
|
|
|
16636
16922
|
'directoryGroupIds'?: string[];
|
|
16637
16923
|
/** Enforce internal traffic through SSO authentication flow */
|
|
16638
16924
|
'validateInternalTraffic'?: boolean;
|
|
16925
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
16926
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
16639
16927
|
};
|
|
16640
16928
|
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
16641
16929
|
'verificationMode'?: 'or' | 'and';
|
|
@@ -17038,6 +17326,8 @@ type PutServiceDeploymentData = {
|
|
|
17038
17326
|
'directoryGroupIds'?: string[];
|
|
17039
17327
|
/** Enforce internal traffic through SSO authentication flow */
|
|
17040
17328
|
'validateInternalTraffic'?: boolean;
|
|
17329
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
17330
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
17041
17331
|
};
|
|
17042
17332
|
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
17043
17333
|
'verificationMode'?: 'or' | 'and';
|
|
@@ -17166,6 +17456,8 @@ type PatchServiceDeploymentResult = {
|
|
|
17166
17456
|
'directoryGroupIds'?: string[];
|
|
17167
17457
|
/** Enforce internal traffic through SSO authentication flow */
|
|
17168
17458
|
'validateInternalTraffic'?: boolean;
|
|
17459
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
17460
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
17169
17461
|
};
|
|
17170
17462
|
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
17171
17463
|
'verificationMode'?: 'or' | 'and';
|
|
@@ -17568,6 +17860,8 @@ type PatchServiceDeploymentData = {
|
|
|
17568
17860
|
'directoryGroupIds'?: string[];
|
|
17569
17861
|
/** Enforce internal traffic through SSO authentication flow */
|
|
17570
17862
|
'validateInternalTraffic'?: boolean;
|
|
17863
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
17864
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
17571
17865
|
};
|
|
17572
17866
|
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
17573
17867
|
'verificationMode'?: 'or' | 'and';
|
|
@@ -17890,6 +18184,8 @@ type GetServiceResult = {
|
|
|
17890
18184
|
'directoryGroupIds'?: string[];
|
|
17891
18185
|
/** Enforce internal traffic through SSO authentication flow */
|
|
17892
18186
|
'validateInternalTraffic'?: boolean;
|
|
18187
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
18188
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
17893
18189
|
};
|
|
17894
18190
|
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
17895
18191
|
'verificationMode'?: 'or' | 'and';
|
|
@@ -18831,6 +19127,8 @@ type GetServicePortsResult = {
|
|
|
18831
19127
|
'directoryGroupIds'?: string[];
|
|
18832
19128
|
/** Enforce internal traffic through SSO authentication flow */
|
|
18833
19129
|
'validateInternalTraffic'?: boolean;
|
|
19130
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
19131
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
18834
19132
|
};
|
|
18835
19133
|
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
18836
19134
|
'verificationMode'?: 'or' | 'and';
|
|
@@ -18908,6 +19206,8 @@ type UpdateServicePortsData = {
|
|
|
18908
19206
|
'directoryGroupIds'?: string[];
|
|
18909
19207
|
/** Enforce internal traffic through SSO authentication flow */
|
|
18910
19208
|
'validateInternalTraffic'?: boolean;
|
|
19209
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
19210
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
18911
19211
|
};
|
|
18912
19212
|
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
18913
19213
|
'verificationMode'?: 'or' | 'and';
|
|
@@ -20431,16 +20731,17 @@ declare class ApiClient {
|
|
|
20431
20731
|
backups: GetAddonBackupsCall;
|
|
20432
20732
|
backup: GetAddonBackupCall & {
|
|
20433
20733
|
download: GetAddonBackupDownloadCall;
|
|
20734
|
+
restores: GetAddonBackupRestoresCall;
|
|
20434
20735
|
logs: GetAddonBackupLogsCall;
|
|
20435
20736
|
logTail: TailAddonBackupLogsCall;
|
|
20436
20737
|
};
|
|
20738
|
+
containers: GetAddonContainersCall;
|
|
20739
|
+
credentials: GetAddonCredentialsCall;
|
|
20740
|
+
pitrWindow: GetAddonPitrwindowCall;
|
|
20437
20741
|
restores: GetAddonRestoresCall & {
|
|
20438
20742
|
logs: GetAddonRestoresLogsCall;
|
|
20439
20743
|
logTail: TailAddonRestoresLogsCall;
|
|
20440
20744
|
};
|
|
20441
|
-
containers: GetAddonContainersCall;
|
|
20442
|
-
credentials: GetAddonCredentialsCall;
|
|
20443
|
-
pitrWindow: GetAddonPitrwindowCall;
|
|
20444
20745
|
version: GetAddonVersionCall;
|
|
20445
20746
|
logs: GetAddonLogsCall;
|
|
20446
20747
|
logTail: TailAddonLogsCall;
|
|
@@ -20527,6 +20828,9 @@ declare class ApiClient {
|
|
|
20527
20828
|
cloud: {
|
|
20528
20829
|
providers: ListCloudProvidersCall;
|
|
20529
20830
|
clusters: ListCloudClustersCall;
|
|
20831
|
+
cluster: {
|
|
20832
|
+
nodes: ListCloudClusterNodesCall;
|
|
20833
|
+
};
|
|
20530
20834
|
dockerRegistry: ListCloudDockerregistryCall;
|
|
20531
20835
|
integrations: ListCloudIntegrationsCall;
|
|
20532
20836
|
nodeTypes: ListCloudNodetypesCall;
|
|
@@ -20811,11 +21115,12 @@ declare class ApiClient {
|
|
|
20811
21115
|
backups: GetAddonBackupsEndpoint;
|
|
20812
21116
|
backup: GetAddonBackupEndpoint & {
|
|
20813
21117
|
download: GetAddonBackupDownloadEndpoint;
|
|
21118
|
+
restores: GetAddonBackupRestoresEndpoint;
|
|
20814
21119
|
};
|
|
20815
|
-
restores: GetAddonRestoresEndpoint;
|
|
20816
21120
|
containers: GetAddonContainersEndpoint;
|
|
20817
21121
|
credentials: GetAddonCredentialsEndpoint;
|
|
20818
21122
|
pitrWindow: GetAddonPitrwindowEndpoint;
|
|
21123
|
+
restores: GetAddonRestoresEndpoint;
|
|
20819
21124
|
version: GetAddonVersionEndpoint;
|
|
20820
21125
|
};
|
|
20821
21126
|
invoice: {
|
|
@@ -20882,6 +21187,9 @@ declare class ApiClient {
|
|
|
20882
21187
|
cloud: {
|
|
20883
21188
|
providers: ListCloudProvidersEndpoint;
|
|
20884
21189
|
clusters: ListCloudClustersEndpoint;
|
|
21190
|
+
cluster: {
|
|
21191
|
+
nodes: ListCloudClusterNodesEndpoint;
|
|
21192
|
+
};
|
|
20885
21193
|
dockerRegistry: ListCloudDockerregistryEndpoint;
|
|
20886
21194
|
integrations: ListCloudIntegrationsEndpoint;
|
|
20887
21195
|
nodeTypes: ListCloudNodetypesEndpoint;
|
|
@@ -21167,4 +21475,4 @@ type ApiClientOpts = {
|
|
|
21167
21475
|
customUserAgent?: string;
|
|
21168
21476
|
};
|
|
21169
21477
|
|
|
21170
|
-
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, 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, 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 };
|