@northflank/js-client 0.5.7 → 0.5.8
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 +389 -92
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +389 -92
- package/dist/esm/api-client.js +1 -1
- package/package.json +1 -1
package/dist/cjs/api-client.d.ts
CHANGED
|
@@ -1536,6 +1536,12 @@ declare type CreateJobManualData = {
|
|
|
1536
1536
|
'deployment'?: {
|
|
1537
1537
|
/** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
|
|
1538
1538
|
'cmdOverride'?: string;
|
|
1539
|
+
'storage'?: {
|
|
1540
|
+
'ephemeralStorage'?: {
|
|
1541
|
+
/** Ephemeral storage per container in MB */
|
|
1542
|
+
'storageSize'?: number;
|
|
1543
|
+
};
|
|
1544
|
+
};
|
|
1539
1545
|
'vcs': {
|
|
1540
1546
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
1541
1547
|
'projectUrl': string;
|
|
@@ -1551,6 +1557,12 @@ declare type CreateJobManualData = {
|
|
|
1551
1557
|
} | {
|
|
1552
1558
|
/** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
|
|
1553
1559
|
'cmdOverride'?: string;
|
|
1560
|
+
'storage'?: {
|
|
1561
|
+
'ephemeralStorage'?: {
|
|
1562
|
+
/** Ephemeral storage per container in MB */
|
|
1563
|
+
'storageSize'?: number;
|
|
1564
|
+
};
|
|
1565
|
+
};
|
|
1554
1566
|
'external': {
|
|
1555
1567
|
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
1556
1568
|
'imagePath': string;
|
|
@@ -1560,6 +1572,12 @@ declare type CreateJobManualData = {
|
|
|
1560
1572
|
} | {
|
|
1561
1573
|
/** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
|
|
1562
1574
|
'cmdOverride'?: string;
|
|
1575
|
+
'storage'?: {
|
|
1576
|
+
'ephemeralStorage'?: {
|
|
1577
|
+
/** Ephemeral storage per container in MB */
|
|
1578
|
+
'storageSize'?: number;
|
|
1579
|
+
};
|
|
1580
|
+
};
|
|
1563
1581
|
'internal': {
|
|
1564
1582
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
1565
1583
|
'id'?: string;
|
|
@@ -1598,8 +1616,12 @@ declare type CreateJobManualData = {
|
|
|
1598
1616
|
};
|
|
1599
1617
|
/** An object containing the runtime environment to set for the job. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"variable1":"abcdef","variable2":"12345"} */
|
|
1600
1618
|
'runtimeEnvironment'?: any;
|
|
1619
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
1620
|
+
'runtimeFiles'?: any;
|
|
1601
1621
|
/** An object containing the build arguments to set for the job. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"variable1":"abcdef","variable2":"12345"} */
|
|
1602
1622
|
'buildArguments'?: any;
|
|
1623
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
1624
|
+
'buildFiles'?: any;
|
|
1603
1625
|
};
|
|
1604
1626
|
/** Creates a new manual job that only runs when initiated via the UI, CLI, API or JS client. */
|
|
1605
1627
|
declare class CreateJobManualEndpoint extends PostApiEndpoint<CreateJobManualRequest, CreateJobManualResult> {
|
|
@@ -1716,6 +1738,12 @@ declare type CreateJobCronData = {
|
|
|
1716
1738
|
'deployment'?: {
|
|
1717
1739
|
/** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
|
|
1718
1740
|
'cmdOverride'?: string;
|
|
1741
|
+
'storage'?: {
|
|
1742
|
+
'ephemeralStorage'?: {
|
|
1743
|
+
/** Ephemeral storage per container in MB */
|
|
1744
|
+
'storageSize'?: number;
|
|
1745
|
+
};
|
|
1746
|
+
};
|
|
1719
1747
|
'vcs': {
|
|
1720
1748
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
1721
1749
|
'projectUrl': string;
|
|
@@ -1731,6 +1759,12 @@ declare type CreateJobCronData = {
|
|
|
1731
1759
|
} | {
|
|
1732
1760
|
/** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
|
|
1733
1761
|
'cmdOverride'?: string;
|
|
1762
|
+
'storage'?: {
|
|
1763
|
+
'ephemeralStorage'?: {
|
|
1764
|
+
/** Ephemeral storage per container in MB */
|
|
1765
|
+
'storageSize'?: number;
|
|
1766
|
+
};
|
|
1767
|
+
};
|
|
1734
1768
|
'external': {
|
|
1735
1769
|
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
1736
1770
|
'imagePath': string;
|
|
@@ -1740,6 +1774,12 @@ declare type CreateJobCronData = {
|
|
|
1740
1774
|
} | {
|
|
1741
1775
|
/** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
|
|
1742
1776
|
'cmdOverride'?: string;
|
|
1777
|
+
'storage'?: {
|
|
1778
|
+
'ephemeralStorage'?: {
|
|
1779
|
+
/** Ephemeral storage per container in MB */
|
|
1780
|
+
'storageSize'?: number;
|
|
1781
|
+
};
|
|
1782
|
+
};
|
|
1743
1783
|
'internal': {
|
|
1744
1784
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
1745
1785
|
'id'?: string;
|
|
@@ -1778,8 +1818,12 @@ declare type CreateJobCronData = {
|
|
|
1778
1818
|
};
|
|
1779
1819
|
/** An object containing the runtime environment to set for the job. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"variable1":"abcdef","variable2":"12345"} */
|
|
1780
1820
|
'runtimeEnvironment'?: any;
|
|
1821
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
1822
|
+
'runtimeFiles'?: any;
|
|
1781
1823
|
/** An object containing the build arguments to set for the job. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"variable1":"abcdef","variable2":"12345"} */
|
|
1782
1824
|
'buildArguments'?: any;
|
|
1825
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
1826
|
+
'buildFiles'?: any;
|
|
1783
1827
|
/** The cron timer scheduling when to run the job. Example: "30 8 * * *" */
|
|
1784
1828
|
'schedule': string;
|
|
1785
1829
|
/** Whether this job should run when another instance of the job is already running. `allow` will enable multiple instances of this job to run. `forbid` will keep the current instance of the job running and stop a new instance from being run. `replace` will terminate any currently running instance of the job and start a new one. Example: "forbid" */
|
|
@@ -1793,6 +1837,35 @@ declare class CreateJobCronEndpoint extends PostApiEndpoint<CreateJobCronRequest
|
|
|
1793
1837
|
body: (payload: CreateJobCronRequest) => string;
|
|
1794
1838
|
}
|
|
1795
1839
|
|
|
1840
|
+
declare type ScaleJobResult = any;
|
|
1841
|
+
declare type ScaleJobCall = (opts: ScaleJobRequest) => Promise<ApiCallResponse<ScaleJobResult>>;
|
|
1842
|
+
declare type ScaleJobRequest = {
|
|
1843
|
+
parameters: ScaleJobParameters;
|
|
1844
|
+
data: ScaleJobData;
|
|
1845
|
+
};
|
|
1846
|
+
declare type ScaleJobParameters = {
|
|
1847
|
+
/** ID of the project */ 'projectId': string;
|
|
1848
|
+
/** ID of the job */
|
|
1849
|
+
'jobId': string;
|
|
1850
|
+
};
|
|
1851
|
+
declare type ScaleJobData = {
|
|
1852
|
+
/** ID of the deployment plan to switch to. Example: "nf-compute-20" */
|
|
1853
|
+
'deploymentPlan'?: string;
|
|
1854
|
+
'storage'?: {
|
|
1855
|
+
'ephemeralStorage'?: {
|
|
1856
|
+
/** Ephemeral storage per container in MB */
|
|
1857
|
+
'storageSize'?: number;
|
|
1858
|
+
};
|
|
1859
|
+
};
|
|
1860
|
+
};
|
|
1861
|
+
/** Modifies the scaling settings for the given job. */
|
|
1862
|
+
declare class ScaleJobEndpoint extends PostApiEndpoint<ScaleJobRequest, ScaleJobResult> {
|
|
1863
|
+
description: string;
|
|
1864
|
+
withAuth: boolean;
|
|
1865
|
+
endpointUrl: (opts: ScaleJobRequest) => string;
|
|
1866
|
+
body: (payload: ScaleJobRequest) => string;
|
|
1867
|
+
}
|
|
1868
|
+
|
|
1796
1869
|
declare type GetJobRunsResult = {
|
|
1797
1870
|
/** An array of job run objects. */
|
|
1798
1871
|
'runs': {
|
|
@@ -1866,6 +1939,12 @@ declare type StartJobRunData = {
|
|
|
1866
1939
|
'deployment'?: {
|
|
1867
1940
|
/** The CMD override to use when running the job. Example: "nginx -g" */
|
|
1868
1941
|
'cmdOverride'?: string;
|
|
1942
|
+
'storage'?: {
|
|
1943
|
+
'ephemeralStorage'?: {
|
|
1944
|
+
/** Ephemeral storage per container in MB */
|
|
1945
|
+
'storageSize'?: number;
|
|
1946
|
+
};
|
|
1947
|
+
};
|
|
1869
1948
|
/** Optional: Specify the commit to run */
|
|
1870
1949
|
'internal'?: {
|
|
1871
1950
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
@@ -1880,6 +1959,12 @@ declare type StartJobRunData = {
|
|
|
1880
1959
|
} | {
|
|
1881
1960
|
/** The CMD override to use when running the job. Example: "nginx -g" */
|
|
1882
1961
|
'cmdOverride'?: string;
|
|
1962
|
+
'storage'?: {
|
|
1963
|
+
'ephemeralStorage'?: {
|
|
1964
|
+
/** Ephemeral storage per container in MB */
|
|
1965
|
+
'storageSize'?: number;
|
|
1966
|
+
};
|
|
1967
|
+
};
|
|
1883
1968
|
/** Optional: Specify the external image to run */
|
|
1884
1969
|
'external'?: {
|
|
1885
1970
|
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
@@ -2156,7 +2241,12 @@ declare type StartJobBuildParameters = {
|
|
|
2156
2241
|
declare type StartJobBuildData = {
|
|
2157
2242
|
/** Commit sha to build. If not provided, will build the most recent commit of the job's branch. Example: "262ed9817b3cad5142fbceabe0c9e371e390d616" */
|
|
2158
2243
|
'sha'?: string;
|
|
2244
|
+
} | {
|
|
2245
|
+
/** Commit sha to build. If not provided, will build the most recent commit of the job's branch. Example: "262ed9817b3cad5142fbceabe0c9e371e390d616" */
|
|
2246
|
+
'sha'?: string;
|
|
2247
|
+
/** An optional object that may specify several different overrides on the build level. */
|
|
2159
2248
|
'overrides'?: {
|
|
2249
|
+
/** Build arguments that will be set on this build only. In case of conflicts these values take precedence. Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
|
|
2160
2250
|
'buildArguments'?: any;
|
|
2161
2251
|
};
|
|
2162
2252
|
};
|
|
@@ -2330,7 +2420,12 @@ declare class UpdateJobCmdoverrideEndpoint extends PostApiEndpoint<UpdateJobCmdo
|
|
|
2330
2420
|
body: (payload: UpdateJobCmdoverrideRequest) => string;
|
|
2331
2421
|
}
|
|
2332
2422
|
|
|
2333
|
-
declare type GetJobBuildargumentsResult =
|
|
2423
|
+
declare type GetJobBuildargumentsResult = {
|
|
2424
|
+
/** The build arguments, formatted as a JSON object. If the `show` parameter is set to `this`, this will only contain secrets saved to this entity. If the `show` parameter is set to `inherited`, this will only contain secrets inherited from linked secret groups. Otherwise, this will contain both. Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
|
|
2425
|
+
'buildArguments': any;
|
|
2426
|
+
/** The build secret files, formatted as a JSON object. If the `show` parameter is set to `this`, this will only contain files saved to this entity. If the `show` parameter is set to `inherited`, this will only contain files inherited from linked secret groups. Otherwise, this will contain both. Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
2427
|
+
'buildFiles': any;
|
|
2428
|
+
};
|
|
2334
2429
|
declare type GetJobBuildargumentsCall = (opts: GetJobBuildargumentsRequest) => Promise<ApiCallResponse<GetJobBuildargumentsResult>>;
|
|
2335
2430
|
declare type GetJobBuildargumentsRequest = {
|
|
2336
2431
|
parameters: GetJobBuildargumentsParameters;
|
|
@@ -2365,8 +2460,13 @@ declare type UpdateJobBuildargumentsParameters = {
|
|
|
2365
2460
|
'jobId': string;
|
|
2366
2461
|
};
|
|
2367
2462
|
declare type UpdateJobBuildargumentsData = {
|
|
2368
|
-
/** An object containing the all of the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
|
|
2463
|
+
/** An object containing the all of the build arguments to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
|
|
2464
|
+
'buildArguments': any;
|
|
2465
|
+
} | {
|
|
2466
|
+
/** An object containing the all of the build arguments to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
|
|
2369
2467
|
'buildArguments': any;
|
|
2468
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
2469
|
+
'buildFiles'?: any;
|
|
2370
2470
|
};
|
|
2371
2471
|
/** Sets build arguments for the given job. */
|
|
2372
2472
|
declare class UpdateJobBuildargumentsEndpoint extends PostApiEndpoint<UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult> {
|
|
@@ -2377,27 +2477,56 @@ declare class UpdateJobBuildargumentsEndpoint extends PostApiEndpoint<UpdateJobB
|
|
|
2377
2477
|
}
|
|
2378
2478
|
|
|
2379
2479
|
declare type GetJobBuildargumentdetailsResult = {
|
|
2380
|
-
/**
|
|
2381
|
-
'
|
|
2382
|
-
/**
|
|
2383
|
-
'
|
|
2384
|
-
|
|
2385
|
-
'inheritedFrom'?: string;
|
|
2386
|
-
/** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
|
|
2387
|
-
'addonId'?: string;
|
|
2388
|
-
/** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
|
|
2389
|
-
'priority'?: number;
|
|
2390
|
-
/** An array containing data about other places the secret has been inherited from, but that are not being used as a secret with the same key exists with a higher priority. */
|
|
2391
|
-
'overriding': {
|
|
2392
|
-
/** The value of the secret. Example: "ffffffffffff" */
|
|
2480
|
+
/** Details about all the secrets accessible by the service. */
|
|
2481
|
+
'buildArguments': {
|
|
2482
|
+
/** A stored secret and details about it and its value. This can have the name of any saved secret. */
|
|
2483
|
+
'MY_VARIABLE_NAME'?: {
|
|
2484
|
+
/** The value of the secret. Example: "abcdef123456" */
|
|
2393
2485
|
'value': any;
|
|
2394
|
-
/** The ID of the secret group the secret is inherited from. Example: "secret
|
|
2395
|
-
'inheritedFrom'
|
|
2396
|
-
/** The ID of the addon the secret is inherited from, if applicable. Example: "addon
|
|
2486
|
+
/** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
|
|
2487
|
+
'inheritedFrom'?: string;
|
|
2488
|
+
/** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
|
|
2397
2489
|
'addonId'?: string;
|
|
2398
|
-
/** The priority of the secret group the secret is inherited from. */
|
|
2399
|
-
'priority'
|
|
2400
|
-
|
|
2490
|
+
/** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
|
|
2491
|
+
'priority'?: number;
|
|
2492
|
+
/** An array containing data about other places the secret has been inherited from, but that are not being used as a secret with the same key exists with a higher priority. */
|
|
2493
|
+
'overriding': {
|
|
2494
|
+
/** The value of the secret. Example: "ffffffffffff" */
|
|
2495
|
+
'value': any;
|
|
2496
|
+
/** The ID of the secret group the secret is inherited from. Example: "secret-2" */
|
|
2497
|
+
'inheritedFrom': string;
|
|
2498
|
+
/** The ID of the addon the secret is inherited from, if applicable. Example: "addon-2" */
|
|
2499
|
+
'addonId'?: string;
|
|
2500
|
+
/** The priority of the secret group the secret is inherited from. */
|
|
2501
|
+
'priority': number;
|
|
2502
|
+
}[];
|
|
2503
|
+
};
|
|
2504
|
+
};
|
|
2505
|
+
/** Details about all the secrets accessible by the service. */
|
|
2506
|
+
'buildFiles': {
|
|
2507
|
+
/** A stored secret and details about it and its value. This can have the name of any saved secret. */
|
|
2508
|
+
'/dir/fileName'?: {
|
|
2509
|
+
/** The value of the secret. Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
2510
|
+
'value': {
|
|
2511
|
+
/** base64 encoded string of the file contents Example: "VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==" */
|
|
2512
|
+
'data'?: string;
|
|
2513
|
+
/** Original encoding of the file Example: "utf-8" */
|
|
2514
|
+
'encoding'?: string;
|
|
2515
|
+
};
|
|
2516
|
+
/** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
|
|
2517
|
+
'inheritedFrom'?: string;
|
|
2518
|
+
/** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
|
|
2519
|
+
'priority'?: number;
|
|
2520
|
+
/** An array containing data about other places the file has been inherited from, but that are not being used as a secret with the same file path exists with a higher priority. */
|
|
2521
|
+
'overriding': {
|
|
2522
|
+
/** The value of the secret. Example: "ffffffffffff" */
|
|
2523
|
+
'value': any;
|
|
2524
|
+
/** The ID of the secret group the secret is inherited from. Example: "secret-2" */
|
|
2525
|
+
'inheritedFrom': string;
|
|
2526
|
+
/** The priority of the secret group the secret is inherited from. */
|
|
2527
|
+
'priority': number;
|
|
2528
|
+
}[];
|
|
2529
|
+
};
|
|
2401
2530
|
};
|
|
2402
2531
|
};
|
|
2403
2532
|
declare type GetJobBuildargumentdetailsCall = (opts: GetJobBuildargumentdetailsRequest) => Promise<ApiCallResponse<GetJobBuildargumentdetailsResult>>;
|
|
@@ -2409,7 +2538,7 @@ declare type GetJobBuildargumentdetailsParameters = {
|
|
|
2409
2538
|
/** ID of the job */
|
|
2410
2539
|
'jobId': string;
|
|
2411
2540
|
};
|
|
2412
|
-
/** Get details about the build arguments accessible by the given
|
|
2541
|
+
/** Get details about the build arguments accessible by the given job. Also requires the permission 'Project > Secrets > General > Read' */
|
|
2413
2542
|
declare class GetJobBuildargumentdetailsEndpoint extends GetApiEndpoint<GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult> {
|
|
2414
2543
|
description: string;
|
|
2415
2544
|
withAuth: boolean;
|
|
@@ -2417,7 +2546,12 @@ declare class GetJobBuildargumentdetailsEndpoint extends GetApiEndpoint<GetJobBu
|
|
|
2417
2546
|
body: () => undefined;
|
|
2418
2547
|
}
|
|
2419
2548
|
|
|
2420
|
-
declare type GetJobRuntimeenvironmentResult =
|
|
2549
|
+
declare type GetJobRuntimeenvironmentResult = {
|
|
2550
|
+
/** The runtime environment variables, formatted as a JSON object. If the `show` parameter is set to `this`, this will only contain secrets saved to this entity. If the `show` parameter is set to `inherited`, this will only contain secrets inherited from linked secret groups. Otherwise, this will contain both. Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
|
|
2551
|
+
'runtimeEnvironment': any;
|
|
2552
|
+
/** The runtime secret files, formatted as a JSON object. If the `show` parameter is set to `this`, this will only contain files saved to this entity. If the `show` parameter is set to `inherited`, this will only contain files inherited from linked secret groups. Otherwise, this will contain both. Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
2553
|
+
'runtimeFiles': any;
|
|
2554
|
+
};
|
|
2421
2555
|
declare type GetJobRuntimeenvironmentCall = (opts: GetJobRuntimeenvironmentRequest) => Promise<ApiCallResponse<GetJobRuntimeenvironmentResult>>;
|
|
2422
2556
|
declare type GetJobRuntimeenvironmentRequest = {
|
|
2423
2557
|
parameters: GetJobRuntimeenvironmentParameters;
|
|
@@ -2454,6 +2588,11 @@ declare type UpdateJobRuntimeenvironmentParameters = {
|
|
|
2454
2588
|
declare type UpdateJobRuntimeenvironmentData = {
|
|
2455
2589
|
/** An object containing the all of the environment variables to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
|
|
2456
2590
|
'runtimeEnvironment': any;
|
|
2591
|
+
} | {
|
|
2592
|
+
/** An object containing the all of the environment variables to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
|
|
2593
|
+
'runtimeEnvironment': any;
|
|
2594
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
2595
|
+
'runtimeFiles'?: any;
|
|
2457
2596
|
};
|
|
2458
2597
|
/** Sets the runtime environment for the given job. */
|
|
2459
2598
|
declare class UpdateJobRuntimeenvironmentEndpoint extends PostApiEndpoint<UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult> {
|
|
@@ -2464,27 +2603,56 @@ declare class UpdateJobRuntimeenvironmentEndpoint extends PostApiEndpoint<Update
|
|
|
2464
2603
|
}
|
|
2465
2604
|
|
|
2466
2605
|
declare type GetJobRuntimeenvironmentdetailsResult = {
|
|
2467
|
-
/**
|
|
2468
|
-
'
|
|
2469
|
-
/**
|
|
2470
|
-
'
|
|
2471
|
-
|
|
2472
|
-
'inheritedFrom'?: string;
|
|
2473
|
-
/** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
|
|
2474
|
-
'addonId'?: string;
|
|
2475
|
-
/** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
|
|
2476
|
-
'priority'?: number;
|
|
2477
|
-
/** An array containing data about other places the secret has been inherited from, but that are not being used as a secret with the same key exists with a higher priority. */
|
|
2478
|
-
'overriding': {
|
|
2479
|
-
/** The value of the secret. Example: "ffffffffffff" */
|
|
2606
|
+
/** Details about all the secrets accessible by the service. */
|
|
2607
|
+
'runtimeEnvironment': {
|
|
2608
|
+
/** A stored secret and details about it and its value. This can have the name of any saved secret. */
|
|
2609
|
+
'MY_VARIABLE_NAME'?: {
|
|
2610
|
+
/** The value of the secret. Example: "abcdef123456" */
|
|
2480
2611
|
'value': any;
|
|
2481
|
-
/** The ID of the secret group the secret is inherited from. Example: "secret
|
|
2482
|
-
'inheritedFrom'
|
|
2483
|
-
/** The ID of the addon the secret is inherited from, if applicable. Example: "addon
|
|
2612
|
+
/** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
|
|
2613
|
+
'inheritedFrom'?: string;
|
|
2614
|
+
/** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
|
|
2484
2615
|
'addonId'?: string;
|
|
2485
|
-
/** The priority of the secret group the secret is inherited from. */
|
|
2486
|
-
'priority'
|
|
2487
|
-
|
|
2616
|
+
/** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
|
|
2617
|
+
'priority'?: number;
|
|
2618
|
+
/** An array containing data about other places the secret has been inherited from, but that are not being used as a secret with the same key exists with a higher priority. */
|
|
2619
|
+
'overriding': {
|
|
2620
|
+
/** The value of the secret. Example: "ffffffffffff" */
|
|
2621
|
+
'value': any;
|
|
2622
|
+
/** The ID of the secret group the secret is inherited from. Example: "secret-2" */
|
|
2623
|
+
'inheritedFrom': string;
|
|
2624
|
+
/** The ID of the addon the secret is inherited from, if applicable. Example: "addon-2" */
|
|
2625
|
+
'addonId'?: string;
|
|
2626
|
+
/** The priority of the secret group the secret is inherited from. */
|
|
2627
|
+
'priority': number;
|
|
2628
|
+
}[];
|
|
2629
|
+
};
|
|
2630
|
+
};
|
|
2631
|
+
/** Details about all the secrets accessible by the service. */
|
|
2632
|
+
'runtimeFiles': {
|
|
2633
|
+
/** A stored secret and details about it and its value. This can have the name of any saved secret. */
|
|
2634
|
+
'/dir/fileName'?: {
|
|
2635
|
+
/** The value of the secret. Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
2636
|
+
'value': {
|
|
2637
|
+
/** base64 encoded string of the file contents Example: "VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==" */
|
|
2638
|
+
'data'?: string;
|
|
2639
|
+
/** Original encoding of the file Example: "utf-8" */
|
|
2640
|
+
'encoding'?: string;
|
|
2641
|
+
};
|
|
2642
|
+
/** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
|
|
2643
|
+
'inheritedFrom'?: string;
|
|
2644
|
+
/** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
|
|
2645
|
+
'priority'?: number;
|
|
2646
|
+
/** An array containing data about other places the file has been inherited from, but that are not being used as a secret with the same file path exists with a higher priority. */
|
|
2647
|
+
'overriding': {
|
|
2648
|
+
/** The value of the secret. Example: "ffffffffffff" */
|
|
2649
|
+
'value': any;
|
|
2650
|
+
/** The ID of the secret group the secret is inherited from. Example: "secret-2" */
|
|
2651
|
+
'inheritedFrom': string;
|
|
2652
|
+
/** The priority of the secret group the secret is inherited from. */
|
|
2653
|
+
'priority': number;
|
|
2654
|
+
}[];
|
|
2655
|
+
};
|
|
2488
2656
|
};
|
|
2489
2657
|
};
|
|
2490
2658
|
declare type GetJobRuntimeenvironmentdetailsCall = (opts: GetJobRuntimeenvironmentdetailsRequest) => Promise<ApiCallResponse<GetJobRuntimeenvironmentdetailsResult>>;
|
|
@@ -3368,8 +3536,12 @@ declare type CreateSecretData = {
|
|
|
3368
3536
|
'aliases'?: string[];
|
|
3369
3537
|
}[];
|
|
3370
3538
|
}[];
|
|
3371
|
-
|
|
3372
|
-
|
|
3539
|
+
'secrets'?: {
|
|
3540
|
+
/** Secret variables as JSON object, encrypted at rest. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"NODE_ENV":"production","MONGO_DB":"some_connection_string"} */
|
|
3541
|
+
'variables'?: any;
|
|
3542
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
3543
|
+
'files'?: any;
|
|
3544
|
+
};
|
|
3373
3545
|
};
|
|
3374
3546
|
/** Creates a secret with the specified payload */
|
|
3375
3547
|
declare class CreateSecretEndpoint extends PostApiEndpoint<CreateSecretRequest, CreateSecretResult> {
|
|
@@ -3408,8 +3580,8 @@ declare type GetSecretResult = {
|
|
|
3408
3580
|
'createdAt': string;
|
|
3409
3581
|
/** The timestamp the secret group was last updated at Example: "2021-01-01 12:00:00.000Z" */
|
|
3410
3582
|
'updatedAt': string;
|
|
3411
|
-
/** Decrypted secret data. If the `show` parameter is set to `this`, this will only contain secrets saved to this group. If the `show` parameter is set to `inherited`, this will only contain secrets inherited from linked addons. Otherwise, this will contain both. Example: {"a_key":"a_secret","b_key":"b_secret"} */
|
|
3412
|
-
'
|
|
3583
|
+
/** Decrypted secret data. If the `show` parameter is set to `this`, this will only contain secrets saved to this group. If the `show` parameter is set to `inherited`, this will only contain secrets inherited from linked addons. Otherwise, this will contain both. Example: {"variables":{"a_key":"a_secret","b_key":"b_secret"},"files":{"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}}} */
|
|
3584
|
+
'secrets': any;
|
|
3413
3585
|
};
|
|
3414
3586
|
declare type GetSecretCall = (opts: GetSecretRequest) => Promise<ApiCallResponse<GetSecretResult>>;
|
|
3415
3587
|
declare type GetSecretRequest = {
|
|
@@ -3493,8 +3665,12 @@ declare type UpdateSecretData = {
|
|
|
3493
3665
|
}[];
|
|
3494
3666
|
/** The type of the created secret Example: "environment" */
|
|
3495
3667
|
'secretType'?: 'environment-arguments' | 'environment' | 'arguments';
|
|
3496
|
-
|
|
3497
|
-
|
|
3668
|
+
'secrets'?: {
|
|
3669
|
+
/** Secret variables as JSON object, encrypted at rest. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"NODE_ENV":"production","MONGO_DB":"some_connection_string"} */
|
|
3670
|
+
'variables'?: any;
|
|
3671
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
3672
|
+
'files'?: any;
|
|
3673
|
+
};
|
|
3498
3674
|
};
|
|
3499
3675
|
/** Update a secret */
|
|
3500
3676
|
declare class UpdateSecretEndpoint extends PostApiEndpoint<UpdateSecretRequest, UpdateSecretResult> {
|
|
@@ -3533,8 +3709,8 @@ declare type GetSecretdetailsResult = {
|
|
|
3533
3709
|
'createdAt': string;
|
|
3534
3710
|
/** The timestamp the secret group was last updated at Example: "2021-01-01 12:00:00.000Z" */
|
|
3535
3711
|
'updatedAt': string;
|
|
3536
|
-
/** Decrypted secret data from secrets saved to this group. Example: {"a_key":"a_secret","b_key":"b_secret"} */
|
|
3537
|
-
'
|
|
3712
|
+
/** Decrypted secret data from secrets saved to this group. Example: {"variables":{"a_key":"a_secret","b_key":"b_secret"},"files":{"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}}} */
|
|
3713
|
+
'secrets': any;
|
|
3538
3714
|
/** Details about linked addons. */
|
|
3539
3715
|
'addonSecrets': {
|
|
3540
3716
|
/** The ID of the linked addon Example: "example-addon" */
|
|
@@ -3865,8 +4041,12 @@ declare type CreateServiceCombinedData = {
|
|
|
3865
4041
|
};
|
|
3866
4042
|
/** An object containing the runtime environment to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
|
|
3867
4043
|
'runtimeEnvironment'?: any;
|
|
4044
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
4045
|
+
'runtimeFiles'?: any;
|
|
3868
4046
|
/** An object containing the build arguments to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
|
|
3869
4047
|
'buildArguments'?: any;
|
|
4048
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
4049
|
+
'buildFiles'?: any;
|
|
3870
4050
|
};
|
|
3871
4051
|
/** Creates a new combined service. */
|
|
3872
4052
|
declare class CreateServiceCombinedEndpoint extends PostApiEndpoint<CreateServiceCombinedRequest, CreateServiceCombinedResult> {
|
|
@@ -3973,6 +4153,12 @@ declare type CreateServiceDeploymentData = {
|
|
|
3973
4153
|
'instances': number;
|
|
3974
4154
|
/** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
|
|
3975
4155
|
'cmdOverride'?: string;
|
|
4156
|
+
'storage'?: {
|
|
4157
|
+
'ephemeralStorage'?: {
|
|
4158
|
+
/** Ephemeral storage per container in MB */
|
|
4159
|
+
'storageSize'?: number;
|
|
4160
|
+
};
|
|
4161
|
+
};
|
|
3976
4162
|
'internal': {
|
|
3977
4163
|
/** Internal ID of the build service to deploy Example: "example-build-service" */
|
|
3978
4164
|
'id': string;
|
|
@@ -3986,6 +4172,12 @@ declare type CreateServiceDeploymentData = {
|
|
|
3986
4172
|
'instances': number;
|
|
3987
4173
|
/** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
|
|
3988
4174
|
'cmdOverride'?: string;
|
|
4175
|
+
'storage'?: {
|
|
4176
|
+
'ephemeralStorage'?: {
|
|
4177
|
+
/** Ephemeral storage per container in MB */
|
|
4178
|
+
'storageSize'?: number;
|
|
4179
|
+
};
|
|
4180
|
+
};
|
|
3989
4181
|
'external': {
|
|
3990
4182
|
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
3991
4183
|
'imagePath': string;
|
|
@@ -3997,6 +4189,12 @@ declare type CreateServiceDeploymentData = {
|
|
|
3997
4189
|
'instances': number;
|
|
3998
4190
|
/** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
|
|
3999
4191
|
'cmdOverride'?: string;
|
|
4192
|
+
'storage'?: {
|
|
4193
|
+
'ephemeralStorage'?: {
|
|
4194
|
+
/** Ephemeral storage per container in MB */
|
|
4195
|
+
'storageSize'?: number;
|
|
4196
|
+
};
|
|
4197
|
+
};
|
|
4000
4198
|
};
|
|
4001
4199
|
'ports'?: {
|
|
4002
4200
|
/** The name used to identify the port. Example: "port-1" */
|
|
@@ -4030,6 +4228,8 @@ declare type CreateServiceDeploymentData = {
|
|
|
4030
4228
|
}[];
|
|
4031
4229
|
/** An object containing the runtime environment to set for the service Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
|
|
4032
4230
|
'runtimeEnvironment'?: any;
|
|
4231
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
4232
|
+
'runtimeFiles'?: any;
|
|
4033
4233
|
};
|
|
4034
4234
|
/** Creates a new deployment service. */
|
|
4035
4235
|
declare class CreateServiceDeploymentEndpoint extends PostApiEndpoint<CreateServiceDeploymentRequest, CreateServiceDeploymentResult> {
|
|
@@ -4179,6 +4379,8 @@ declare type CreateServiceBuildData = {
|
|
|
4179
4379
|
};
|
|
4180
4380
|
/** An object containing the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
|
|
4181
4381
|
'buildArguments'?: any;
|
|
4382
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
4383
|
+
'buildFiles'?: any;
|
|
4182
4384
|
};
|
|
4183
4385
|
/** Creates a new build service. */
|
|
4184
4386
|
declare class CreateServiceBuildEndpoint extends PostApiEndpoint<CreateServiceBuildRequest, CreateServiceBuildResult> {
|
|
@@ -4398,6 +4600,12 @@ declare type ScaleServiceData = {
|
|
|
4398
4600
|
'instances'?: number;
|
|
4399
4601
|
/** ID of the deployment plan to switch to. Example: "nf-compute-20" */
|
|
4400
4602
|
'deploymentPlan'?: string;
|
|
4603
|
+
'storage'?: {
|
|
4604
|
+
'ephemeralStorage'?: {
|
|
4605
|
+
/** Ephemeral storage per container in MB */
|
|
4606
|
+
'storageSize'?: number;
|
|
4607
|
+
};
|
|
4608
|
+
};
|
|
4401
4609
|
};
|
|
4402
4610
|
/** Modifies the scaling settings for the given service. */
|
|
4403
4611
|
declare class ScaleServiceEndpoint extends PostApiEndpoint<ScaleServiceRequest, ScaleServiceResult> {
|
|
@@ -4959,7 +5167,16 @@ declare type StartServiceBuildData = {
|
|
|
4959
5167
|
'branch'?: string;
|
|
4960
5168
|
/** ID of a pull request to build from. If `sha` is not provided, the latest commit of this pull request will be built. Only supported by build services. Build services require either `branch` or `pullRequestId` field, but cannot be provided with both. */
|
|
4961
5169
|
'pullRequestId'?: number;
|
|
5170
|
+
} | {
|
|
5171
|
+
/** Commit sha to build. If not provided, builds the most recent relevant commit. Example: "262ed9817b3cad5142fbceabe0c9e371e390d616" */
|
|
5172
|
+
'sha'?: string;
|
|
5173
|
+
/** Branch to build from. If `sha` is not provided, the latest commit of this branch will be built. Only supported by build services. Build services require either `branch` or `pullRequestId` field, but cannot be provided with both. */
|
|
5174
|
+
'branch'?: string;
|
|
5175
|
+
/** ID of a pull request to build from. If `sha` is not provided, the latest commit of this pull request will be built. Only supported by build services. Build services require either `branch` or `pullRequestId` field, but cannot be provided with both. */
|
|
5176
|
+
'pullRequestId'?: number;
|
|
5177
|
+
/** An optional object that may specify several different overrides on the build level. */
|
|
4962
5178
|
'overrides'?: {
|
|
5179
|
+
/** Build arguments that will be set on this build only. In case of conflicts these values take precedence. Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
|
|
4963
5180
|
'buildArguments'?: any;
|
|
4964
5181
|
};
|
|
4965
5182
|
};
|
|
@@ -5508,7 +5725,12 @@ declare class DetachVolumeEndpoint extends PostApiEndpoint<DetachVolumeRequest,
|
|
|
5508
5725
|
body: (payload: DetachVolumeRequest) => string;
|
|
5509
5726
|
}
|
|
5510
5727
|
|
|
5511
|
-
declare type GetServiceBuildargumentsResult =
|
|
5728
|
+
declare type GetServiceBuildargumentsResult = {
|
|
5729
|
+
/** The build arguments, formatted as a JSON object. If the `show` parameter is set to `this`, this will only contain secrets saved to this entity. If the `show` parameter is set to `inherited`, this will only contain secrets inherited from linked secret groups. Otherwise, this will contain both. Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
|
|
5730
|
+
'buildArguments': any;
|
|
5731
|
+
/** The build secret files, formatted as a JSON object. If the `show` parameter is set to `this`, this will only contain files saved to this entity. If the `show` parameter is set to `inherited`, this will only contain files inherited from linked secret groups. Otherwise, this will contain both. Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
5732
|
+
'buildFiles': any;
|
|
5733
|
+
};
|
|
5512
5734
|
declare type GetServiceBuildargumentsCall = (opts: GetServiceBuildargumentsRequest) => Promise<ApiCallResponse<GetServiceBuildargumentsResult>>;
|
|
5513
5735
|
declare type GetServiceBuildargumentsRequest = {
|
|
5514
5736
|
parameters: GetServiceBuildargumentsParameters;
|
|
@@ -5543,8 +5765,13 @@ declare type UpdateServiceBuildargumentsParameters = {
|
|
|
5543
5765
|
'serviceId': string;
|
|
5544
5766
|
};
|
|
5545
5767
|
declare type UpdateServiceBuildargumentsData = {
|
|
5546
|
-
/** An object containing the all of the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
|
|
5768
|
+
/** An object containing the all of the build arguments to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
|
|
5547
5769
|
'buildArguments': any;
|
|
5770
|
+
} | {
|
|
5771
|
+
/** An object containing the all of the build arguments to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
|
|
5772
|
+
'buildArguments': any;
|
|
5773
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
5774
|
+
'buildFiles'?: any;
|
|
5548
5775
|
};
|
|
5549
5776
|
/** Sets the build arguments for the given service. */
|
|
5550
5777
|
declare class UpdateServiceBuildargumentsEndpoint extends PostApiEndpoint<UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult> {
|
|
@@ -5555,27 +5782,56 @@ declare class UpdateServiceBuildargumentsEndpoint extends PostApiEndpoint<Update
|
|
|
5555
5782
|
}
|
|
5556
5783
|
|
|
5557
5784
|
declare type GetServiceBuildargumentdetailsResult = {
|
|
5558
|
-
/**
|
|
5559
|
-
'
|
|
5560
|
-
/**
|
|
5561
|
-
'
|
|
5562
|
-
|
|
5563
|
-
'inheritedFrom'?: string;
|
|
5564
|
-
/** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
|
|
5565
|
-
'addonId'?: string;
|
|
5566
|
-
/** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
|
|
5567
|
-
'priority'?: number;
|
|
5568
|
-
/** An array containing data about other places the secret has been inherited from, but that are not being used as a secret with the same key exists with a higher priority. */
|
|
5569
|
-
'overriding': {
|
|
5570
|
-
/** The value of the secret. Example: "ffffffffffff" */
|
|
5785
|
+
/** Details about all the secrets accessible by the service. */
|
|
5786
|
+
'buildArguments': {
|
|
5787
|
+
/** A stored secret and details about it and its value. This can have the name of any saved secret. */
|
|
5788
|
+
'MY_VARIABLE_NAME'?: {
|
|
5789
|
+
/** The value of the secret. Example: "abcdef123456" */
|
|
5571
5790
|
'value': any;
|
|
5572
|
-
/** The ID of the secret group the secret is inherited from. Example: "secret
|
|
5573
|
-
'inheritedFrom'
|
|
5574
|
-
/** The ID of the addon the secret is inherited from, if applicable. Example: "addon
|
|
5791
|
+
/** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
|
|
5792
|
+
'inheritedFrom'?: string;
|
|
5793
|
+
/** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
|
|
5575
5794
|
'addonId'?: string;
|
|
5576
|
-
/** The priority of the secret group the secret is inherited from. */
|
|
5577
|
-
'priority'
|
|
5578
|
-
|
|
5795
|
+
/** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
|
|
5796
|
+
'priority'?: number;
|
|
5797
|
+
/** An array containing data about other places the secret has been inherited from, but that are not being used as a secret with the same key exists with a higher priority. */
|
|
5798
|
+
'overriding': {
|
|
5799
|
+
/** The value of the secret. Example: "ffffffffffff" */
|
|
5800
|
+
'value': any;
|
|
5801
|
+
/** The ID of the secret group the secret is inherited from. Example: "secret-2" */
|
|
5802
|
+
'inheritedFrom': string;
|
|
5803
|
+
/** The ID of the addon the secret is inherited from, if applicable. Example: "addon-2" */
|
|
5804
|
+
'addonId'?: string;
|
|
5805
|
+
/** The priority of the secret group the secret is inherited from. */
|
|
5806
|
+
'priority': number;
|
|
5807
|
+
}[];
|
|
5808
|
+
};
|
|
5809
|
+
};
|
|
5810
|
+
/** Details about all the secrets accessible by the service. */
|
|
5811
|
+
'buildFiles': {
|
|
5812
|
+
/** A stored secret and details about it and its value. This can have the name of any saved secret. */
|
|
5813
|
+
'/dir/fileName'?: {
|
|
5814
|
+
/** The value of the secret. Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
5815
|
+
'value': {
|
|
5816
|
+
/** base64 encoded string of the file contents Example: "VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==" */
|
|
5817
|
+
'data'?: string;
|
|
5818
|
+
/** Original encoding of the file Example: "utf-8" */
|
|
5819
|
+
'encoding'?: string;
|
|
5820
|
+
};
|
|
5821
|
+
/** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
|
|
5822
|
+
'inheritedFrom'?: string;
|
|
5823
|
+
/** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
|
|
5824
|
+
'priority'?: number;
|
|
5825
|
+
/** An array containing data about other places the file has been inherited from, but that are not being used as a secret with the same file path exists with a higher priority. */
|
|
5826
|
+
'overriding': {
|
|
5827
|
+
/** The value of the secret. Example: "ffffffffffff" */
|
|
5828
|
+
'value': any;
|
|
5829
|
+
/** The ID of the secret group the secret is inherited from. Example: "secret-2" */
|
|
5830
|
+
'inheritedFrom': string;
|
|
5831
|
+
/** The priority of the secret group the secret is inherited from. */
|
|
5832
|
+
'priority': number;
|
|
5833
|
+
}[];
|
|
5834
|
+
};
|
|
5579
5835
|
};
|
|
5580
5836
|
};
|
|
5581
5837
|
declare type GetServiceBuildargumentdetailsCall = (opts: GetServiceBuildargumentdetailsRequest) => Promise<ApiCallResponse<GetServiceBuildargumentdetailsResult>>;
|
|
@@ -5595,7 +5851,12 @@ declare class GetServiceBuildargumentdetailsEndpoint extends GetApiEndpoint<GetS
|
|
|
5595
5851
|
body: () => undefined;
|
|
5596
5852
|
}
|
|
5597
5853
|
|
|
5598
|
-
declare type GetServiceRuntimeenvironmentResult =
|
|
5854
|
+
declare type GetServiceRuntimeenvironmentResult = {
|
|
5855
|
+
/** The runtime environment variables, formatted as a JSON object. If the `show` parameter is set to `this`, this will only contain secrets saved to this entity. If the `show` parameter is set to `inherited`, this will only contain secrets inherited from linked secret groups. Otherwise, this will contain both. Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
|
|
5856
|
+
'runtimeEnvironment': any;
|
|
5857
|
+
/** The runtime secret files, formatted as a JSON object. If the `show` parameter is set to `this`, this will only contain files saved to this entity. If the `show` parameter is set to `inherited`, this will only contain files inherited from linked secret groups. Otherwise, this will contain both. Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
5858
|
+
'runtimeFiles': any;
|
|
5859
|
+
};
|
|
5599
5860
|
declare type GetServiceRuntimeenvironmentCall = (opts: GetServiceRuntimeenvironmentRequest) => Promise<ApiCallResponse<GetServiceRuntimeenvironmentResult>>;
|
|
5600
5861
|
declare type GetServiceRuntimeenvironmentRequest = {
|
|
5601
5862
|
parameters: GetServiceRuntimeenvironmentParameters;
|
|
@@ -5637,6 +5898,11 @@ declare type UpdateServiceRuntimeenvironmentParameters = {
|
|
|
5637
5898
|
declare type UpdateServiceRuntimeenvironmentData = {
|
|
5638
5899
|
/** An object containing the all of the environment variables to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
|
|
5639
5900
|
'runtimeEnvironment': any;
|
|
5901
|
+
} | {
|
|
5902
|
+
/** An object containing the all of the environment variables to set for the service. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
|
|
5903
|
+
'runtimeEnvironment': any;
|
|
5904
|
+
/** Secret files as JSON object, encrypted at rest. File path must be absolute Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
5905
|
+
'runtimeFiles'?: any;
|
|
5640
5906
|
};
|
|
5641
5907
|
/** Sets the runtime environment for the given service. */
|
|
5642
5908
|
declare class UpdateServiceRuntimeenvironmentEndpoint extends PostApiEndpoint<UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult> {
|
|
@@ -5647,27 +5913,56 @@ declare class UpdateServiceRuntimeenvironmentEndpoint extends PostApiEndpoint<Up
|
|
|
5647
5913
|
}
|
|
5648
5914
|
|
|
5649
5915
|
declare type GetServiceRuntimeenvironmentdetailsResult = {
|
|
5650
|
-
/**
|
|
5651
|
-
'
|
|
5652
|
-
/**
|
|
5653
|
-
'
|
|
5654
|
-
|
|
5655
|
-
'inheritedFrom'?: string;
|
|
5656
|
-
/** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
|
|
5657
|
-
'addonId'?: string;
|
|
5658
|
-
/** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
|
|
5659
|
-
'priority'?: number;
|
|
5660
|
-
/** An array containing data about other places the secret has been inherited from, but that are not being used as a secret with the same key exists with a higher priority. */
|
|
5661
|
-
'overriding': {
|
|
5662
|
-
/** The value of the secret. Example: "ffffffffffff" */
|
|
5916
|
+
/** Details about all the secrets accessible by the service. */
|
|
5917
|
+
'runtimeEnvironment': {
|
|
5918
|
+
/** A stored secret and details about it and its value. This can have the name of any saved secret. */
|
|
5919
|
+
'MY_VARIABLE_NAME'?: {
|
|
5920
|
+
/** The value of the secret. Example: "abcdef123456" */
|
|
5663
5921
|
'value': any;
|
|
5664
|
-
/** The ID of the secret group the secret is inherited from. Example: "secret
|
|
5665
|
-
'inheritedFrom'
|
|
5666
|
-
/** The ID of the addon the secret is inherited from, if applicable. Example: "addon
|
|
5922
|
+
/** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
|
|
5923
|
+
'inheritedFrom'?: string;
|
|
5924
|
+
/** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
|
|
5667
5925
|
'addonId'?: string;
|
|
5668
|
-
/** The priority of the secret group the secret is inherited from. */
|
|
5669
|
-
'priority'
|
|
5670
|
-
|
|
5926
|
+
/** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
|
|
5927
|
+
'priority'?: number;
|
|
5928
|
+
/** An array containing data about other places the secret has been inherited from, but that are not being used as a secret with the same key exists with a higher priority. */
|
|
5929
|
+
'overriding': {
|
|
5930
|
+
/** The value of the secret. Example: "ffffffffffff" */
|
|
5931
|
+
'value': any;
|
|
5932
|
+
/** The ID of the secret group the secret is inherited from. Example: "secret-2" */
|
|
5933
|
+
'inheritedFrom': string;
|
|
5934
|
+
/** The ID of the addon the secret is inherited from, if applicable. Example: "addon-2" */
|
|
5935
|
+
'addonId'?: string;
|
|
5936
|
+
/** The priority of the secret group the secret is inherited from. */
|
|
5937
|
+
'priority': number;
|
|
5938
|
+
}[];
|
|
5939
|
+
};
|
|
5940
|
+
};
|
|
5941
|
+
/** Details about all the secrets accessible by the service. */
|
|
5942
|
+
'runtimeFiles': {
|
|
5943
|
+
/** A stored secret and details about it and its value. This can have the name of any saved secret. */
|
|
5944
|
+
'/dir/fileName'?: {
|
|
5945
|
+
/** The value of the secret. Example: {"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==","encoding":"utf-8"}} */
|
|
5946
|
+
'value': {
|
|
5947
|
+
/** base64 encoded string of the file contents Example: "VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU==" */
|
|
5948
|
+
'data'?: string;
|
|
5949
|
+
/** Original encoding of the file Example: "utf-8" */
|
|
5950
|
+
'encoding'?: string;
|
|
5951
|
+
};
|
|
5952
|
+
/** The ID of the secret group the secret is inherited from, if applicable. Example: "example-secret" */
|
|
5953
|
+
'inheritedFrom'?: string;
|
|
5954
|
+
/** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
|
|
5955
|
+
'priority'?: number;
|
|
5956
|
+
/** An array containing data about other places the file has been inherited from, but that are not being used as a secret with the same file path exists with a higher priority. */
|
|
5957
|
+
'overriding': {
|
|
5958
|
+
/** The value of the secret. Example: "ffffffffffff" */
|
|
5959
|
+
'value': any;
|
|
5960
|
+
/** The ID of the secret group the secret is inherited from. Example: "secret-2" */
|
|
5961
|
+
'inheritedFrom': string;
|
|
5962
|
+
/** The priority of the secret group the secret is inherited from. */
|
|
5963
|
+
'priority': number;
|
|
5964
|
+
}[];
|
|
5965
|
+
};
|
|
5671
5966
|
};
|
|
5672
5967
|
};
|
|
5673
5968
|
declare type GetServiceRuntimeenvironmentdetailsCall = (opts: GetServiceRuntimeenvironmentdetailsRequest) => Promise<ApiCallResponse<GetServiceRuntimeenvironmentdetailsResult>>;
|
|
@@ -5788,6 +6083,7 @@ declare class ApiClient {
|
|
|
5788
6083
|
};
|
|
5789
6084
|
scale: {
|
|
5790
6085
|
addon: ScaleAddonCall;
|
|
6086
|
+
job: ScaleJobCall;
|
|
5791
6087
|
service: ScaleServiceCall;
|
|
5792
6088
|
};
|
|
5793
6089
|
update: {
|
|
@@ -5989,6 +6285,7 @@ declare class ApiClient {
|
|
|
5989
6285
|
};
|
|
5990
6286
|
scale: {
|
|
5991
6287
|
addon: ScaleAddonEndpoint;
|
|
6288
|
+
job: ScaleJobEndpoint;
|
|
5992
6289
|
service: ScaleServiceEndpoint;
|
|
5993
6290
|
};
|
|
5994
6291
|
update: {
|
|
@@ -6102,4 +6399,4 @@ declare type ApiClientOpts = {
|
|
|
6102
6399
|
customUserAgent?: string;
|
|
6103
6400
|
};
|
|
6104
6401
|
|
|
6105
|
-
export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, 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, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonParameters, GetAddonRequest, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, 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, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainRequest, GetSubdomainResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, NorthflankPortForwarder, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobCmdoverrideCall, UpdateJobCmdoverrideData, UpdateJobCmdoverrideEndpoint, UpdateJobCmdoverrideParameters, UpdateJobCmdoverrideRequest, UpdateJobCmdoverrideResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, 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, UpdateServiceCmdoverrideCall, UpdateServiceCmdoverrideData, UpdateServiceCmdoverrideEndpoint, UpdateServiceCmdoverrideParameters, UpdateServiceCmdoverrideRequest, UpdateServiceCmdoverrideResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
|
|
6402
|
+
export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, 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, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonParameters, GetAddonRequest, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, 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, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainRequest, GetSubdomainResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, NorthflankPortForwarder, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobCmdoverrideCall, UpdateJobCmdoverrideData, UpdateJobCmdoverrideEndpoint, UpdateJobCmdoverrideParameters, UpdateJobCmdoverrideRequest, UpdateJobCmdoverrideResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, 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, UpdateServiceCmdoverrideCall, UpdateServiceCmdoverrideData, UpdateServiceCmdoverrideEndpoint, UpdateServiceCmdoverrideParameters, UpdateServiceCmdoverrideRequest, UpdateServiceCmdoverrideResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
|