@northflank/js-client 0.5.5 → 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 +475 -168
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +475 -168
- 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;
|
|
@@ -1567,6 +1585,8 @@ declare type CreateJobManualData = {
|
|
|
1567
1585
|
'branch'?: string;
|
|
1568
1586
|
/** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
|
|
1569
1587
|
'buildSHA'?: any;
|
|
1588
|
+
/** ID of the build that should be deployed Example: "premium-guide-6393" */
|
|
1589
|
+
'buildId'?: string;
|
|
1570
1590
|
};
|
|
1571
1591
|
} | any;
|
|
1572
1592
|
'buildConfiguration'?: {
|
|
@@ -1594,10 +1614,14 @@ declare type CreateJobManualData = {
|
|
|
1594
1614
|
'buildContext'?: string;
|
|
1595
1615
|
};
|
|
1596
1616
|
};
|
|
1597
|
-
/** An object containing the environment
|
|
1598
|
-
'
|
|
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"} */
|
|
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;
|
|
1599
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"} */
|
|
1600
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;
|
|
1601
1625
|
};
|
|
1602
1626
|
/** Creates a new manual job that only runs when initiated via the UI, CLI, API or JS client. */
|
|
1603
1627
|
declare class CreateJobManualEndpoint extends PostApiEndpoint<CreateJobManualRequest, CreateJobManualResult> {
|
|
@@ -1714,6 +1738,12 @@ declare type CreateJobCronData = {
|
|
|
1714
1738
|
'deployment'?: {
|
|
1715
1739
|
/** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
|
|
1716
1740
|
'cmdOverride'?: string;
|
|
1741
|
+
'storage'?: {
|
|
1742
|
+
'ephemeralStorage'?: {
|
|
1743
|
+
/** Ephemeral storage per container in MB */
|
|
1744
|
+
'storageSize'?: number;
|
|
1745
|
+
};
|
|
1746
|
+
};
|
|
1717
1747
|
'vcs': {
|
|
1718
1748
|
/** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
1719
1749
|
'projectUrl': string;
|
|
@@ -1729,6 +1759,12 @@ declare type CreateJobCronData = {
|
|
|
1729
1759
|
} | {
|
|
1730
1760
|
/** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
|
|
1731
1761
|
'cmdOverride'?: string;
|
|
1762
|
+
'storage'?: {
|
|
1763
|
+
'ephemeralStorage'?: {
|
|
1764
|
+
/** Ephemeral storage per container in MB */
|
|
1765
|
+
'storageSize'?: number;
|
|
1766
|
+
};
|
|
1767
|
+
};
|
|
1732
1768
|
'external': {
|
|
1733
1769
|
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
1734
1770
|
'imagePath': string;
|
|
@@ -1738,6 +1774,12 @@ declare type CreateJobCronData = {
|
|
|
1738
1774
|
} | {
|
|
1739
1775
|
/** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
|
|
1740
1776
|
'cmdOverride'?: string;
|
|
1777
|
+
'storage'?: {
|
|
1778
|
+
'ephemeralStorage'?: {
|
|
1779
|
+
/** Ephemeral storage per container in MB */
|
|
1780
|
+
'storageSize'?: number;
|
|
1781
|
+
};
|
|
1782
|
+
};
|
|
1741
1783
|
'internal': {
|
|
1742
1784
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
1743
1785
|
'id'?: string;
|
|
@@ -1745,6 +1787,8 @@ declare type CreateJobCronData = {
|
|
|
1745
1787
|
'branch'?: string;
|
|
1746
1788
|
/** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
|
|
1747
1789
|
'buildSHA'?: any;
|
|
1790
|
+
/** ID of the build that should be deployed Example: "premium-guide-6393" */
|
|
1791
|
+
'buildId'?: string;
|
|
1748
1792
|
};
|
|
1749
1793
|
} | any;
|
|
1750
1794
|
'buildConfiguration'?: {
|
|
@@ -1772,10 +1816,14 @@ declare type CreateJobCronData = {
|
|
|
1772
1816
|
'buildContext'?: string;
|
|
1773
1817
|
};
|
|
1774
1818
|
};
|
|
1775
|
-
/** An object containing the environment
|
|
1776
|
-
'
|
|
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"} */
|
|
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;
|
|
1777
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"} */
|
|
1778
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;
|
|
1779
1827
|
/** The cron timer scheduling when to run the job. Example: "30 8 * * *" */
|
|
1780
1828
|
'schedule': string;
|
|
1781
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" */
|
|
@@ -1789,6 +1837,35 @@ declare class CreateJobCronEndpoint extends PostApiEndpoint<CreateJobCronRequest
|
|
|
1789
1837
|
body: (payload: CreateJobCronRequest) => string;
|
|
1790
1838
|
}
|
|
1791
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
|
+
|
|
1792
1869
|
declare type GetJobRunsResult = {
|
|
1793
1870
|
/** An array of job run objects. */
|
|
1794
1871
|
'runs': {
|
|
@@ -1862,6 +1939,12 @@ declare type StartJobRunData = {
|
|
|
1862
1939
|
'deployment'?: {
|
|
1863
1940
|
/** The CMD override to use when running the job. Example: "nginx -g" */
|
|
1864
1941
|
'cmdOverride'?: string;
|
|
1942
|
+
'storage'?: {
|
|
1943
|
+
'ephemeralStorage'?: {
|
|
1944
|
+
/** Ephemeral storage per container in MB */
|
|
1945
|
+
'storageSize'?: number;
|
|
1946
|
+
};
|
|
1947
|
+
};
|
|
1865
1948
|
/** Optional: Specify the commit to run */
|
|
1866
1949
|
'internal'?: {
|
|
1867
1950
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
@@ -1870,10 +1953,18 @@ declare type StartJobRunData = {
|
|
|
1870
1953
|
'branch'?: string;
|
|
1871
1954
|
/** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
|
|
1872
1955
|
'buildSHA'?: any;
|
|
1956
|
+
/** ID of the build that should be deployed Example: "premium-guide-6393" */
|
|
1957
|
+
'buildId'?: string;
|
|
1873
1958
|
};
|
|
1874
1959
|
} | {
|
|
1875
1960
|
/** The CMD override to use when running the job. Example: "nginx -g" */
|
|
1876
1961
|
'cmdOverride'?: string;
|
|
1962
|
+
'storage'?: {
|
|
1963
|
+
'ephemeralStorage'?: {
|
|
1964
|
+
/** Ephemeral storage per container in MB */
|
|
1965
|
+
'storageSize'?: number;
|
|
1966
|
+
};
|
|
1967
|
+
};
|
|
1877
1968
|
/** Optional: Specify the external image to run */
|
|
1878
1969
|
'external'?: {
|
|
1879
1970
|
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
@@ -2150,7 +2241,12 @@ declare type StartJobBuildParameters = {
|
|
|
2150
2241
|
declare type StartJobBuildData = {
|
|
2151
2242
|
/** Commit sha to build. If not provided, will build the most recent commit of the job's branch. Example: "262ed9817b3cad5142fbceabe0c9e371e390d616" */
|
|
2152
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. */
|
|
2153
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"} */
|
|
2154
2250
|
'buildArguments'?: any;
|
|
2155
2251
|
};
|
|
2156
2252
|
};
|
|
@@ -2324,7 +2420,12 @@ declare class UpdateJobCmdoverrideEndpoint extends PostApiEndpoint<UpdateJobCmdo
|
|
|
2324
2420
|
body: (payload: UpdateJobCmdoverrideRequest) => string;
|
|
2325
2421
|
}
|
|
2326
2422
|
|
|
2327
|
-
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
|
+
};
|
|
2328
2429
|
declare type GetJobBuildargumentsCall = (opts: GetJobBuildargumentsRequest) => Promise<ApiCallResponse<GetJobBuildargumentsResult>>;
|
|
2329
2430
|
declare type GetJobBuildargumentsRequest = {
|
|
2330
2431
|
parameters: GetJobBuildargumentsParameters;
|
|
@@ -2359,8 +2460,13 @@ declare type UpdateJobBuildargumentsParameters = {
|
|
|
2359
2460
|
'jobId': string;
|
|
2360
2461
|
};
|
|
2361
2462
|
declare type UpdateJobBuildargumentsData = {
|
|
2362
|
-
/** 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"} */
|
|
2363
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"} */
|
|
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;
|
|
2364
2470
|
};
|
|
2365
2471
|
/** Sets build arguments for the given job. */
|
|
2366
2472
|
declare class UpdateJobBuildargumentsEndpoint extends PostApiEndpoint<UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult> {
|
|
@@ -2371,27 +2477,56 @@ declare class UpdateJobBuildargumentsEndpoint extends PostApiEndpoint<UpdateJobB
|
|
|
2371
2477
|
}
|
|
2372
2478
|
|
|
2373
2479
|
declare type GetJobBuildargumentdetailsResult = {
|
|
2374
|
-
/**
|
|
2375
|
-
'
|
|
2376
|
-
/**
|
|
2377
|
-
'
|
|
2378
|
-
|
|
2379
|
-
'inheritedFrom'?: string;
|
|
2380
|
-
/** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
|
|
2381
|
-
'addonId'?: string;
|
|
2382
|
-
/** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
|
|
2383
|
-
'priority'?: number;
|
|
2384
|
-
/** 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. */
|
|
2385
|
-
'overriding': {
|
|
2386
|
-
/** 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" */
|
|
2387
2485
|
'value': any;
|
|
2388
|
-
/** The ID of the secret group the secret is inherited from. Example: "secret
|
|
2389
|
-
'inheritedFrom'
|
|
2390
|
-
/** 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" */
|
|
2391
2489
|
'addonId'?: string;
|
|
2392
|
-
/** The priority of the secret group the secret is inherited from. */
|
|
2393
|
-
'priority'
|
|
2394
|
-
|
|
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
|
+
};
|
|
2395
2530
|
};
|
|
2396
2531
|
};
|
|
2397
2532
|
declare type GetJobBuildargumentdetailsCall = (opts: GetJobBuildargumentdetailsRequest) => Promise<ApiCallResponse<GetJobBuildargumentdetailsResult>>;
|
|
@@ -2403,7 +2538,7 @@ declare type GetJobBuildargumentdetailsParameters = {
|
|
|
2403
2538
|
/** ID of the job */
|
|
2404
2539
|
'jobId': string;
|
|
2405
2540
|
};
|
|
2406
|
-
/** 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' */
|
|
2407
2542
|
declare class GetJobBuildargumentdetailsEndpoint extends GetApiEndpoint<GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult> {
|
|
2408
2543
|
description: string;
|
|
2409
2544
|
withAuth: boolean;
|
|
@@ -2411,90 +2546,129 @@ declare class GetJobBuildargumentdetailsEndpoint extends GetApiEndpoint<GetJobBu
|
|
|
2411
2546
|
body: () => undefined;
|
|
2412
2547
|
}
|
|
2413
2548
|
|
|
2414
|
-
declare type
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
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
|
+
};
|
|
2555
|
+
declare type GetJobRuntimeenvironmentCall = (opts: GetJobRuntimeenvironmentRequest) => Promise<ApiCallResponse<GetJobRuntimeenvironmentResult>>;
|
|
2556
|
+
declare type GetJobRuntimeenvironmentRequest = {
|
|
2557
|
+
parameters: GetJobRuntimeenvironmentParameters;
|
|
2558
|
+
options?: GetJobRuntimeenvironmentOptions;
|
|
2419
2559
|
};
|
|
2420
|
-
declare type
|
|
2560
|
+
declare type GetJobRuntimeenvironmentParameters = {
|
|
2421
2561
|
/** ID of the project */ 'projectId': string;
|
|
2422
2562
|
/** ID of the job */
|
|
2423
2563
|
'jobId': string;
|
|
2424
2564
|
};
|
|
2425
|
-
declare type
|
|
2565
|
+
declare type GetJobRuntimeenvironmentOptions = {
|
|
2426
2566
|
/** Which secrets to display - if set to `this` only the group's secrets are displayed, if set to `inherited` only secrets from linked addons are displayed, if set to `all` or not provided, both are displayed. */
|
|
2427
2567
|
'show'?: string;
|
|
2428
2568
|
};
|
|
2429
|
-
/** Returns the environment
|
|
2430
|
-
declare class
|
|
2569
|
+
/** Returns the runtime environment for the given job. If the API key does not have the permission 'Project > Secrets > General > Read', secrets inherited from secret groups will not be displayed. */
|
|
2570
|
+
declare class GetJobRuntimeenvironmentEndpoint extends GetApiEndpoint<GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult> {
|
|
2431
2571
|
description: string;
|
|
2432
2572
|
withAuth: boolean;
|
|
2433
|
-
endpointUrl: (opts:
|
|
2573
|
+
endpointUrl: (opts: GetJobRuntimeenvironmentRequest) => string;
|
|
2434
2574
|
body: () => undefined;
|
|
2435
2575
|
}
|
|
2436
2576
|
|
|
2437
|
-
declare type
|
|
2438
|
-
declare type
|
|
2439
|
-
declare type
|
|
2440
|
-
parameters:
|
|
2441
|
-
data:
|
|
2577
|
+
declare type UpdateJobRuntimeenvironmentResult = any;
|
|
2578
|
+
declare type UpdateJobRuntimeenvironmentCall = (opts: UpdateJobRuntimeenvironmentRequest) => Promise<ApiCallResponse<UpdateJobRuntimeenvironmentResult>>;
|
|
2579
|
+
declare type UpdateJobRuntimeenvironmentRequest = {
|
|
2580
|
+
parameters: UpdateJobRuntimeenvironmentParameters;
|
|
2581
|
+
data: UpdateJobRuntimeenvironmentData;
|
|
2442
2582
|
};
|
|
2443
|
-
declare type
|
|
2583
|
+
declare type UpdateJobRuntimeenvironmentParameters = {
|
|
2444
2584
|
/** ID of the project */ 'projectId': string;
|
|
2445
2585
|
/** ID of the job */
|
|
2446
2586
|
'jobId': string;
|
|
2447
2587
|
};
|
|
2448
|
-
declare type
|
|
2588
|
+
declare type UpdateJobRuntimeenvironmentData = {
|
|
2449
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"} */
|
|
2450
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;
|
|
2451
2596
|
};
|
|
2452
|
-
/** Sets the environment
|
|
2453
|
-
declare class
|
|
2597
|
+
/** Sets the runtime environment for the given job. */
|
|
2598
|
+
declare class UpdateJobRuntimeenvironmentEndpoint extends PostApiEndpoint<UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult> {
|
|
2454
2599
|
description: string;
|
|
2455
2600
|
withAuth: boolean;
|
|
2456
|
-
endpointUrl: (opts:
|
|
2457
|
-
body: (payload:
|
|
2601
|
+
endpointUrl: (opts: UpdateJobRuntimeenvironmentRequest) => string;
|
|
2602
|
+
body: (payload: UpdateJobRuntimeenvironmentRequest) => string;
|
|
2458
2603
|
}
|
|
2459
2604
|
|
|
2460
|
-
declare type
|
|
2461
|
-
/**
|
|
2462
|
-
'
|
|
2463
|
-
/**
|
|
2464
|
-
'
|
|
2465
|
-
|
|
2466
|
-
'inheritedFrom'?: string;
|
|
2467
|
-
/** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
|
|
2468
|
-
'addonId'?: string;
|
|
2469
|
-
/** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
|
|
2470
|
-
'priority'?: number;
|
|
2471
|
-
/** 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. */
|
|
2472
|
-
'overriding': {
|
|
2473
|
-
/** The value of the secret. Example: "ffffffffffff" */
|
|
2605
|
+
declare type GetJobRuntimeenvironmentdetailsResult = {
|
|
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" */
|
|
2474
2611
|
'value': any;
|
|
2475
|
-
/** The ID of the secret group the secret is inherited from. Example: "secret
|
|
2476
|
-
'inheritedFrom'
|
|
2477
|
-
/** 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" */
|
|
2478
2615
|
'addonId'?: string;
|
|
2479
|
-
/** The priority of the secret group the secret is inherited from. */
|
|
2480
|
-
'priority'
|
|
2481
|
-
|
|
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
|
+
};
|
|
2482
2656
|
};
|
|
2483
2657
|
};
|
|
2484
|
-
declare type
|
|
2485
|
-
declare type
|
|
2486
|
-
parameters:
|
|
2658
|
+
declare type GetJobRuntimeenvironmentdetailsCall = (opts: GetJobRuntimeenvironmentdetailsRequest) => Promise<ApiCallResponse<GetJobRuntimeenvironmentdetailsResult>>;
|
|
2659
|
+
declare type GetJobRuntimeenvironmentdetailsRequest = {
|
|
2660
|
+
parameters: GetJobRuntimeenvironmentdetailsParameters;
|
|
2487
2661
|
};
|
|
2488
|
-
declare type
|
|
2662
|
+
declare type GetJobRuntimeenvironmentdetailsParameters = {
|
|
2489
2663
|
/** ID of the project */ 'projectId': string;
|
|
2490
2664
|
/** ID of the job */
|
|
2491
2665
|
'jobId': string;
|
|
2492
2666
|
};
|
|
2493
|
-
/** Get details about the environment
|
|
2494
|
-
declare class
|
|
2667
|
+
/** Get details about the runtime environment accessible by the given job. Also requires the permission 'Project > Secrets > General > Read' */
|
|
2668
|
+
declare class GetJobRuntimeenvironmentdetailsEndpoint extends GetApiEndpoint<GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult> {
|
|
2495
2669
|
description: string;
|
|
2496
2670
|
withAuth: boolean;
|
|
2497
|
-
endpointUrl: (opts:
|
|
2671
|
+
endpointUrl: (opts: GetJobRuntimeenvironmentdetailsRequest) => string;
|
|
2498
2672
|
body: () => undefined;
|
|
2499
2673
|
}
|
|
2500
2674
|
|
|
@@ -2574,6 +2748,8 @@ declare type UpdateJobDeploymentData = {
|
|
|
2574
2748
|
'branch'?: string;
|
|
2575
2749
|
/** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
|
|
2576
2750
|
'buildSHA'?: any;
|
|
2751
|
+
/** ID of the build that should be deployed Example: "premium-guide-6393" */
|
|
2752
|
+
'buildId'?: string;
|
|
2577
2753
|
};
|
|
2578
2754
|
};
|
|
2579
2755
|
/** Updates the deployment settings of the given job. */
|
|
@@ -3360,8 +3536,12 @@ declare type CreateSecretData = {
|
|
|
3360
3536
|
'aliases'?: string[];
|
|
3361
3537
|
}[];
|
|
3362
3538
|
}[];
|
|
3363
|
-
|
|
3364
|
-
|
|
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
|
+
};
|
|
3365
3545
|
};
|
|
3366
3546
|
/** Creates a secret with the specified payload */
|
|
3367
3547
|
declare class CreateSecretEndpoint extends PostApiEndpoint<CreateSecretRequest, CreateSecretResult> {
|
|
@@ -3400,8 +3580,8 @@ declare type GetSecretResult = {
|
|
|
3400
3580
|
'createdAt': string;
|
|
3401
3581
|
/** The timestamp the secret group was last updated at Example: "2021-01-01 12:00:00.000Z" */
|
|
3402
3582
|
'updatedAt': string;
|
|
3403
|
-
/** 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"} */
|
|
3404
|
-
'
|
|
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;
|
|
3405
3585
|
};
|
|
3406
3586
|
declare type GetSecretCall = (opts: GetSecretRequest) => Promise<ApiCallResponse<GetSecretResult>>;
|
|
3407
3587
|
declare type GetSecretRequest = {
|
|
@@ -3485,8 +3665,12 @@ declare type UpdateSecretData = {
|
|
|
3485
3665
|
}[];
|
|
3486
3666
|
/** The type of the created secret Example: "environment" */
|
|
3487
3667
|
'secretType'?: 'environment-arguments' | 'environment' | 'arguments';
|
|
3488
|
-
|
|
3489
|
-
|
|
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
|
+
};
|
|
3490
3674
|
};
|
|
3491
3675
|
/** Update a secret */
|
|
3492
3676
|
declare class UpdateSecretEndpoint extends PostApiEndpoint<UpdateSecretRequest, UpdateSecretResult> {
|
|
@@ -3525,8 +3709,8 @@ declare type GetSecretdetailsResult = {
|
|
|
3525
3709
|
'createdAt': string;
|
|
3526
3710
|
/** The timestamp the secret group was last updated at Example: "2021-01-01 12:00:00.000Z" */
|
|
3527
3711
|
'updatedAt': string;
|
|
3528
|
-
/** Decrypted secret data from secrets saved to this group. Example: {"a_key":"a_secret","b_key":"b_secret"} */
|
|
3529
|
-
'
|
|
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;
|
|
3530
3714
|
/** Details about linked addons. */
|
|
3531
3715
|
'addonSecrets': {
|
|
3532
3716
|
/** The ID of the linked addon Example: "example-addon" */
|
|
@@ -3855,10 +4039,14 @@ declare type CreateServiceCombinedData = {
|
|
|
3855
4039
|
/** 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. */
|
|
3856
4040
|
'pathIgnoreRules'?: string[];
|
|
3857
4041
|
};
|
|
3858
|
-
/** An object containing the environment
|
|
3859
|
-
'
|
|
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"} */
|
|
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;
|
|
3860
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"} */
|
|
3861
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;
|
|
3862
4050
|
};
|
|
3863
4051
|
/** Creates a new combined service. */
|
|
3864
4052
|
declare class CreateServiceCombinedEndpoint extends PostApiEndpoint<CreateServiceCombinedRequest, CreateServiceCombinedResult> {
|
|
@@ -3965,6 +4153,12 @@ declare type CreateServiceDeploymentData = {
|
|
|
3965
4153
|
'instances': number;
|
|
3966
4154
|
/** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
|
|
3967
4155
|
'cmdOverride'?: string;
|
|
4156
|
+
'storage'?: {
|
|
4157
|
+
'ephemeralStorage'?: {
|
|
4158
|
+
/** Ephemeral storage per container in MB */
|
|
4159
|
+
'storageSize'?: number;
|
|
4160
|
+
};
|
|
4161
|
+
};
|
|
3968
4162
|
'internal': {
|
|
3969
4163
|
/** Internal ID of the build service to deploy Example: "example-build-service" */
|
|
3970
4164
|
'id': string;
|
|
@@ -3978,6 +4172,12 @@ declare type CreateServiceDeploymentData = {
|
|
|
3978
4172
|
'instances': number;
|
|
3979
4173
|
/** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
|
|
3980
4174
|
'cmdOverride'?: string;
|
|
4175
|
+
'storage'?: {
|
|
4176
|
+
'ephemeralStorage'?: {
|
|
4177
|
+
/** Ephemeral storage per container in MB */
|
|
4178
|
+
'storageSize'?: number;
|
|
4179
|
+
};
|
|
4180
|
+
};
|
|
3981
4181
|
'external': {
|
|
3982
4182
|
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
|
3983
4183
|
'imagePath': string;
|
|
@@ -3989,6 +4189,12 @@ declare type CreateServiceDeploymentData = {
|
|
|
3989
4189
|
'instances': number;
|
|
3990
4190
|
/** If set, the service runs a custom command rather than one defined in the Dockerfile. Example: "nginx -g" */
|
|
3991
4191
|
'cmdOverride'?: string;
|
|
4192
|
+
'storage'?: {
|
|
4193
|
+
'ephemeralStorage'?: {
|
|
4194
|
+
/** Ephemeral storage per container in MB */
|
|
4195
|
+
'storageSize'?: number;
|
|
4196
|
+
};
|
|
4197
|
+
};
|
|
3992
4198
|
};
|
|
3993
4199
|
'ports'?: {
|
|
3994
4200
|
/** The name used to identify the port. Example: "port-1" */
|
|
@@ -4020,8 +4226,10 @@ declare type CreateServiceDeploymentData = {
|
|
|
4020
4226
|
/** The protocol to use for the port. Example: "HTTP" */
|
|
4021
4227
|
'protocol': 'HTTP' | 'TCP' | 'UDP';
|
|
4022
4228
|
}[];
|
|
4023
|
-
/** An object containing the environment
|
|
4024
|
-
'
|
|
4229
|
+
/** An object containing the runtime environment to set for the service Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
|
|
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;
|
|
4025
4233
|
};
|
|
4026
4234
|
/** Creates a new deployment service. */
|
|
4027
4235
|
declare class CreateServiceDeploymentEndpoint extends PostApiEndpoint<CreateServiceDeploymentRequest, CreateServiceDeploymentResult> {
|
|
@@ -4171,6 +4379,8 @@ declare type CreateServiceBuildData = {
|
|
|
4171
4379
|
};
|
|
4172
4380
|
/** An object containing the build arguments to set for the service Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
|
|
4173
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;
|
|
4174
4384
|
};
|
|
4175
4385
|
/** Creates a new build service. */
|
|
4176
4386
|
declare class CreateServiceBuildEndpoint extends PostApiEndpoint<CreateServiceBuildRequest, CreateServiceBuildResult> {
|
|
@@ -4390,6 +4600,12 @@ declare type ScaleServiceData = {
|
|
|
4390
4600
|
'instances'?: number;
|
|
4391
4601
|
/** ID of the deployment plan to switch to. Example: "nf-compute-20" */
|
|
4392
4602
|
'deploymentPlan'?: string;
|
|
4603
|
+
'storage'?: {
|
|
4604
|
+
'ephemeralStorage'?: {
|
|
4605
|
+
/** Ephemeral storage per container in MB */
|
|
4606
|
+
'storageSize'?: number;
|
|
4607
|
+
};
|
|
4608
|
+
};
|
|
4393
4609
|
};
|
|
4394
4610
|
/** Modifies the scaling settings for the given service. */
|
|
4395
4611
|
declare class ScaleServiceEndpoint extends PostApiEndpoint<ScaleServiceRequest, ScaleServiceResult> {
|
|
@@ -4475,6 +4691,8 @@ declare type UpdateServiceDeploymentData = {
|
|
|
4475
4691
|
'branch'?: string;
|
|
4476
4692
|
/** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
|
|
4477
4693
|
'buildSHA'?: any;
|
|
4694
|
+
/** ID of the build that should be deployed Example: "premium-guide-6393" */
|
|
4695
|
+
'buildId'?: string;
|
|
4478
4696
|
};
|
|
4479
4697
|
};
|
|
4480
4698
|
/** Updates the deployment settings of the given service. */
|
|
@@ -4949,7 +5167,16 @@ declare type StartServiceBuildData = {
|
|
|
4949
5167
|
'branch'?: string;
|
|
4950
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. */
|
|
4951
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. */
|
|
4952
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"} */
|
|
4953
5180
|
'buildArguments'?: any;
|
|
4954
5181
|
};
|
|
4955
5182
|
};
|
|
@@ -5498,7 +5725,12 @@ declare class DetachVolumeEndpoint extends PostApiEndpoint<DetachVolumeRequest,
|
|
|
5498
5725
|
body: (payload: DetachVolumeRequest) => string;
|
|
5499
5726
|
}
|
|
5500
5727
|
|
|
5501
|
-
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
|
+
};
|
|
5502
5734
|
declare type GetServiceBuildargumentsCall = (opts: GetServiceBuildargumentsRequest) => Promise<ApiCallResponse<GetServiceBuildargumentsResult>>;
|
|
5503
5735
|
declare type GetServiceBuildargumentsRequest = {
|
|
5504
5736
|
parameters: GetServiceBuildargumentsParameters;
|
|
@@ -5534,7 +5766,12 @@ declare type UpdateServiceBuildargumentsParameters = {
|
|
|
5534
5766
|
};
|
|
5535
5767
|
declare type UpdateServiceBuildargumentsData = {
|
|
5536
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"} */
|
|
5537
|
-
'
|
|
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;
|
|
5538
5775
|
};
|
|
5539
5776
|
/** Sets the build arguments for the given service. */
|
|
5540
5777
|
declare class UpdateServiceBuildargumentsEndpoint extends PostApiEndpoint<UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult> {
|
|
@@ -5545,27 +5782,56 @@ declare class UpdateServiceBuildargumentsEndpoint extends PostApiEndpoint<Update
|
|
|
5545
5782
|
}
|
|
5546
5783
|
|
|
5547
5784
|
declare type GetServiceBuildargumentdetailsResult = {
|
|
5548
|
-
/**
|
|
5549
|
-
'
|
|
5550
|
-
/**
|
|
5551
|
-
'
|
|
5552
|
-
|
|
5553
|
-
'inheritedFrom'?: string;
|
|
5554
|
-
/** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
|
|
5555
|
-
'addonId'?: string;
|
|
5556
|
-
/** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
|
|
5557
|
-
'priority'?: number;
|
|
5558
|
-
/** 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. */
|
|
5559
|
-
'overriding': {
|
|
5560
|
-
/** 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" */
|
|
5561
5790
|
'value': any;
|
|
5562
|
-
/** The ID of the secret group the secret is inherited from. Example: "secret
|
|
5563
|
-
'inheritedFrom'
|
|
5564
|
-
/** 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" */
|
|
5565
5794
|
'addonId'?: string;
|
|
5566
|
-
/** The priority of the secret group the secret is inherited from. */
|
|
5567
|
-
'priority'
|
|
5568
|
-
|
|
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
|
+
};
|
|
5569
5835
|
};
|
|
5570
5836
|
};
|
|
5571
5837
|
declare type GetServiceBuildargumentdetailsCall = (opts: GetServiceBuildargumentdetailsRequest) => Promise<ApiCallResponse<GetServiceBuildargumentdetailsResult>>;
|
|
@@ -5585,95 +5851,134 @@ declare class GetServiceBuildargumentdetailsEndpoint extends GetApiEndpoint<GetS
|
|
|
5585
5851
|
body: () => undefined;
|
|
5586
5852
|
}
|
|
5587
5853
|
|
|
5588
|
-
declare type
|
|
5589
|
-
|
|
5590
|
-
|
|
5591
|
-
|
|
5592
|
-
|
|
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;
|
|
5593
5859
|
};
|
|
5594
|
-
declare type
|
|
5860
|
+
declare type GetServiceRuntimeenvironmentCall = (opts: GetServiceRuntimeenvironmentRequest) => Promise<ApiCallResponse<GetServiceRuntimeenvironmentResult>>;
|
|
5861
|
+
declare type GetServiceRuntimeenvironmentRequest = {
|
|
5862
|
+
parameters: GetServiceRuntimeenvironmentParameters;
|
|
5863
|
+
options?: GetServiceRuntimeenvironmentOptions;
|
|
5864
|
+
};
|
|
5865
|
+
declare type GetServiceRuntimeenvironmentParameters = {
|
|
5595
5866
|
/** ID of the project */ 'projectId': string;
|
|
5596
5867
|
/** ID of the service */
|
|
5597
5868
|
'serviceId': string;
|
|
5598
5869
|
};
|
|
5599
|
-
declare type
|
|
5870
|
+
declare type GetServiceRuntimeenvironmentOptions = {
|
|
5600
5871
|
/** Which secrets to display - if set to `this` only the group's secrets are displayed, if set to `inherited` only secrets from linked addons are displayed, if set to `all` or not provided, both are displayed. */
|
|
5601
5872
|
'show'?: string;
|
|
5602
5873
|
};
|
|
5603
|
-
/** Gets the environment
|
|
5604
|
-
declare class
|
|
5874
|
+
/** Gets the runtime environment of the given service. If the API key does not have the permission 'Project > Secrets > General > Read', secrets inherited from secret groups will not be displayed. */
|
|
5875
|
+
declare class GetServiceRuntimeenvironmentEndpoint extends GetApiEndpoint<GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult> {
|
|
5605
5876
|
description: string;
|
|
5606
5877
|
withAuth: boolean;
|
|
5607
|
-
endpointUrl: (opts:
|
|
5878
|
+
endpointUrl: (opts: GetServiceRuntimeenvironmentRequest) => string;
|
|
5608
5879
|
body: () => undefined;
|
|
5609
5880
|
}
|
|
5610
5881
|
|
|
5611
|
-
declare type
|
|
5882
|
+
declare type UpdateServiceRuntimeenvironmentResult = {
|
|
5612
5883
|
/** True if the operation was successful. Example: true */
|
|
5613
5884
|
'success': boolean;
|
|
5614
5885
|
/** Did the service successfully restart with the new environment variables? Example: true */
|
|
5615
5886
|
'restartSuccessful': boolean;
|
|
5616
5887
|
};
|
|
5617
|
-
declare type
|
|
5618
|
-
declare type
|
|
5619
|
-
parameters:
|
|
5620
|
-
data:
|
|
5888
|
+
declare type UpdateServiceRuntimeenvironmentCall = (opts: UpdateServiceRuntimeenvironmentRequest) => Promise<ApiCallResponse<UpdateServiceRuntimeenvironmentResult>>;
|
|
5889
|
+
declare type UpdateServiceRuntimeenvironmentRequest = {
|
|
5890
|
+
parameters: UpdateServiceRuntimeenvironmentParameters;
|
|
5891
|
+
data: UpdateServiceRuntimeenvironmentData;
|
|
5621
5892
|
};
|
|
5622
|
-
declare type
|
|
5893
|
+
declare type UpdateServiceRuntimeenvironmentParameters = {
|
|
5623
5894
|
/** ID of the project */ 'projectId': string;
|
|
5624
5895
|
/** ID of the service */
|
|
5625
5896
|
'serviceId': string;
|
|
5626
5897
|
};
|
|
5627
|
-
declare type
|
|
5898
|
+
declare type UpdateServiceRuntimeenvironmentData = {
|
|
5628
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"} */
|
|
5629
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;
|
|
5630
5906
|
};
|
|
5631
|
-
/** Sets the environment
|
|
5632
|
-
declare class
|
|
5907
|
+
/** Sets the runtime environment for the given service. */
|
|
5908
|
+
declare class UpdateServiceRuntimeenvironmentEndpoint extends PostApiEndpoint<UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult> {
|
|
5633
5909
|
description: string;
|
|
5634
5910
|
withAuth: boolean;
|
|
5635
|
-
endpointUrl: (opts:
|
|
5636
|
-
body: (payload:
|
|
5911
|
+
endpointUrl: (opts: UpdateServiceRuntimeenvironmentRequest) => string;
|
|
5912
|
+
body: (payload: UpdateServiceRuntimeenvironmentRequest) => string;
|
|
5637
5913
|
}
|
|
5638
5914
|
|
|
5639
|
-
declare type
|
|
5640
|
-
/**
|
|
5641
|
-
'
|
|
5642
|
-
/**
|
|
5643
|
-
'
|
|
5644
|
-
|
|
5645
|
-
'inheritedFrom'?: string;
|
|
5646
|
-
/** The ID of the addon the secret is inherited from, if applicable. Example: "example-addon" */
|
|
5647
|
-
'addonId'?: string;
|
|
5648
|
-
/** The priority of the secret group the secret is inherited from, if applicable. Example: 10 */
|
|
5649
|
-
'priority'?: number;
|
|
5650
|
-
/** 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. */
|
|
5651
|
-
'overriding': {
|
|
5652
|
-
/** The value of the secret. Example: "ffffffffffff" */
|
|
5915
|
+
declare type GetServiceRuntimeenvironmentdetailsResult = {
|
|
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" */
|
|
5653
5921
|
'value': any;
|
|
5654
|
-
/** The ID of the secret group the secret is inherited from. Example: "secret
|
|
5655
|
-
'inheritedFrom'
|
|
5656
|
-
/** 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" */
|
|
5657
5925
|
'addonId'?: string;
|
|
5658
|
-
/** The priority of the secret group the secret is inherited from. */
|
|
5659
|
-
'priority'
|
|
5660
|
-
|
|
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
|
+
};
|
|
5661
5966
|
};
|
|
5662
5967
|
};
|
|
5663
|
-
declare type
|
|
5664
|
-
declare type
|
|
5665
|
-
parameters:
|
|
5968
|
+
declare type GetServiceRuntimeenvironmentdetailsCall = (opts: GetServiceRuntimeenvironmentdetailsRequest) => Promise<ApiCallResponse<GetServiceRuntimeenvironmentdetailsResult>>;
|
|
5969
|
+
declare type GetServiceRuntimeenvironmentdetailsRequest = {
|
|
5970
|
+
parameters: GetServiceRuntimeenvironmentdetailsParameters;
|
|
5666
5971
|
};
|
|
5667
|
-
declare type
|
|
5972
|
+
declare type GetServiceRuntimeenvironmentdetailsParameters = {
|
|
5668
5973
|
/** ID of the project */ 'projectId': string;
|
|
5669
5974
|
/** ID of the service */
|
|
5670
5975
|
'serviceId': string;
|
|
5671
5976
|
};
|
|
5672
|
-
/** Get details about the environment
|
|
5673
|
-
declare class
|
|
5977
|
+
/** Get details about the runtime environment accessible by the given service. Also requires the permission 'Project > Secrets > General > Read' */
|
|
5978
|
+
declare class GetServiceRuntimeenvironmentdetailsEndpoint extends GetApiEndpoint<GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult> {
|
|
5674
5979
|
description: string;
|
|
5675
5980
|
withAuth: boolean;
|
|
5676
|
-
endpointUrl: (opts:
|
|
5981
|
+
endpointUrl: (opts: GetServiceRuntimeenvironmentdetailsRequest) => string;
|
|
5677
5982
|
body: () => undefined;
|
|
5678
5983
|
}
|
|
5679
5984
|
|
|
@@ -5733,8 +6038,8 @@ declare class ApiClient {
|
|
|
5733
6038
|
build: GetJobBuildCall;
|
|
5734
6039
|
buildArguments: GetJobBuildargumentsCall;
|
|
5735
6040
|
buildArgumentDetails: GetJobBuildargumentdetailsCall;
|
|
5736
|
-
|
|
5737
|
-
|
|
6041
|
+
runtimeEnvironment: GetJobRuntimeenvironmentCall;
|
|
6042
|
+
runtimeEnvironmentDetails: GetJobRuntimeenvironmentdetailsCall;
|
|
5738
6043
|
deployment: GetJobDeploymentCall;
|
|
5739
6044
|
containers: GetJobContainersCall;
|
|
5740
6045
|
branches: GetJobBranchesCall;
|
|
@@ -5758,8 +6063,8 @@ declare class ApiClient {
|
|
|
5758
6063
|
pullRequests: GetServicePullrequestsCall;
|
|
5759
6064
|
buildArguments: GetServiceBuildargumentsCall;
|
|
5760
6065
|
buildArgumentDetails: GetServiceBuildargumentdetailsCall;
|
|
5761
|
-
|
|
5762
|
-
|
|
6066
|
+
runtimeEnvironment: GetServiceRuntimeenvironmentCall;
|
|
6067
|
+
runtimeEnvironmentDetails: GetServiceRuntimeenvironmentdetailsCall;
|
|
5763
6068
|
};
|
|
5764
6069
|
volume: GetVolumeCall;
|
|
5765
6070
|
};
|
|
@@ -5778,6 +6083,7 @@ declare class ApiClient {
|
|
|
5778
6083
|
};
|
|
5779
6084
|
scale: {
|
|
5780
6085
|
addon: ScaleAddonCall;
|
|
6086
|
+
job: ScaleJobCall;
|
|
5781
6087
|
service: ScaleServiceCall;
|
|
5782
6088
|
};
|
|
5783
6089
|
update: {
|
|
@@ -5793,7 +6099,7 @@ declare class ApiClient {
|
|
|
5793
6099
|
buildSource: UpdateJobBuildsourceCall;
|
|
5794
6100
|
cmdOverride: UpdateJobCmdoverrideCall;
|
|
5795
6101
|
buildArguments: UpdateJobBuildargumentsCall;
|
|
5796
|
-
|
|
6102
|
+
runtimeEnvironment: UpdateJobRuntimeenvironmentCall;
|
|
5797
6103
|
deployment: UpdateJobDeploymentCall;
|
|
5798
6104
|
};
|
|
5799
6105
|
registryCredentials: UpdateRegistrycredentialsCall;
|
|
@@ -5807,7 +6113,7 @@ declare class ApiClient {
|
|
|
5807
6113
|
cmdOverride: UpdateServiceCmdoverrideCall;
|
|
5808
6114
|
healthChecks: UpdateServiceHealthchecksCall;
|
|
5809
6115
|
buildArguments: UpdateServiceBuildargumentsCall;
|
|
5810
|
-
|
|
6116
|
+
runtimeEnvironment: UpdateServiceRuntimeenvironmentCall;
|
|
5811
6117
|
};
|
|
5812
6118
|
volume: UpdateVolumeCall;
|
|
5813
6119
|
};
|
|
@@ -5934,8 +6240,8 @@ declare class ApiClient {
|
|
|
5934
6240
|
build: GetJobBuildEndpoint;
|
|
5935
6241
|
buildArguments: GetJobBuildargumentsEndpoint;
|
|
5936
6242
|
buildArgumentDetails: GetJobBuildargumentdetailsEndpoint;
|
|
5937
|
-
|
|
5938
|
-
|
|
6243
|
+
runtimeEnvironment: GetJobRuntimeenvironmentEndpoint;
|
|
6244
|
+
runtimeEnvironmentDetails: GetJobRuntimeenvironmentdetailsEndpoint;
|
|
5939
6245
|
deployment: GetJobDeploymentEndpoint;
|
|
5940
6246
|
containers: GetJobContainersEndpoint;
|
|
5941
6247
|
branches: GetJobBranchesEndpoint;
|
|
@@ -5959,8 +6265,8 @@ declare class ApiClient {
|
|
|
5959
6265
|
pullRequests: GetServicePullrequestsEndpoint;
|
|
5960
6266
|
buildArguments: GetServiceBuildargumentsEndpoint;
|
|
5961
6267
|
buildArgumentDetails: GetServiceBuildargumentdetailsEndpoint;
|
|
5962
|
-
|
|
5963
|
-
|
|
6268
|
+
runtimeEnvironment: GetServiceRuntimeenvironmentEndpoint;
|
|
6269
|
+
runtimeEnvironmentDetails: GetServiceRuntimeenvironmentdetailsEndpoint;
|
|
5964
6270
|
};
|
|
5965
6271
|
volume: GetVolumeEndpoint;
|
|
5966
6272
|
};
|
|
@@ -5979,6 +6285,7 @@ declare class ApiClient {
|
|
|
5979
6285
|
};
|
|
5980
6286
|
scale: {
|
|
5981
6287
|
addon: ScaleAddonEndpoint;
|
|
6288
|
+
job: ScaleJobEndpoint;
|
|
5982
6289
|
service: ScaleServiceEndpoint;
|
|
5983
6290
|
};
|
|
5984
6291
|
update: {
|
|
@@ -5994,7 +6301,7 @@ declare class ApiClient {
|
|
|
5994
6301
|
buildSource: UpdateJobBuildsourceEndpoint;
|
|
5995
6302
|
cmdOverride: UpdateJobCmdoverrideEndpoint;
|
|
5996
6303
|
buildArguments: UpdateJobBuildargumentsEndpoint;
|
|
5997
|
-
|
|
6304
|
+
runtimeEnvironment: UpdateJobRuntimeenvironmentEndpoint;
|
|
5998
6305
|
deployment: UpdateJobDeploymentEndpoint;
|
|
5999
6306
|
};
|
|
6000
6307
|
registryCredentials: UpdateRegistrycredentialsEndpoint;
|
|
@@ -6008,7 +6315,7 @@ declare class ApiClient {
|
|
|
6008
6315
|
cmdOverride: UpdateServiceCmdoverrideEndpoint;
|
|
6009
6316
|
healthChecks: UpdateServiceHealthchecksEndpoint;
|
|
6010
6317
|
buildArguments: UpdateServiceBuildargumentsEndpoint;
|
|
6011
|
-
|
|
6318
|
+
runtimeEnvironment: UpdateServiceRuntimeenvironmentEndpoint;
|
|
6012
6319
|
};
|
|
6013
6320
|
volume: UpdateVolumeEndpoint;
|
|
6014
6321
|
};
|
|
@@ -6092,4 +6399,4 @@ declare type ApiClientOpts = {
|
|
|
6092
6399
|
customUserAgent?: string;
|
|
6093
6400
|
};
|
|
6094
6401
|
|
|
6095
|
-
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, GetJobEnvironmentCall, GetJobEnvironmentEndpoint, GetJobEnvironmentOptions, GetJobEnvironmentParameters, GetJobEnvironmentRequest, GetJobEnvironmentResult, GetJobEnvironmentdetailsCall, GetJobEnvironmentdetailsEndpoint, GetJobEnvironmentdetailsParameters, GetJobEnvironmentdetailsRequest, GetJobEnvironmentdetailsResult, 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, 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, GetServiceEnvironmentvariabledetailsCall, GetServiceEnvironmentvariabledetailsEndpoint, GetServiceEnvironmentvariabledetailsParameters, GetServiceEnvironmentvariabledetailsRequest, GetServiceEnvironmentvariabledetailsResult, GetServiceEnvironmentvariablesCall, GetServiceEnvironmentvariablesEndpoint, GetServiceEnvironmentvariablesOptions, GetServiceEnvironmentvariablesParameters, GetServiceEnvironmentvariablesRequest, GetServiceEnvironmentvariablesResult, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, 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, UpdateJobEnvironmentCall, UpdateJobEnvironmentData, UpdateJobEnvironmentEndpoint, UpdateJobEnvironmentParameters, UpdateJobEnvironmentRequest, UpdateJobEnvironmentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, 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, UpdateServiceEnvironmentvariablesCall, UpdateServiceEnvironmentvariablesData, UpdateServiceEnvironmentvariablesEndpoint, UpdateServiceEnvironmentvariablesParameters, UpdateServiceEnvironmentvariablesRequest, UpdateServiceEnvironmentvariablesResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, 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 };
|