system-initiative-api-client 0.0.3 → 1.0.3
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.d.ts +738 -101
- package/dist/cjs/api.js +452 -69
- package/package.json +1 -1
package/dist/cjs/api.d.ts
CHANGED
|
@@ -227,6 +227,31 @@ export interface ChangeSetViewV1 {
|
|
|
227
227
|
*/
|
|
228
228
|
'status': string;
|
|
229
229
|
}
|
|
230
|
+
/**
|
|
231
|
+
*
|
|
232
|
+
* @export
|
|
233
|
+
* @interface ComponentDetailsV1
|
|
234
|
+
*/
|
|
235
|
+
export interface ComponentDetailsV1 {
|
|
236
|
+
/**
|
|
237
|
+
*
|
|
238
|
+
* @type {string}
|
|
239
|
+
* @memberof ComponentDetailsV1
|
|
240
|
+
*/
|
|
241
|
+
'componentId': string;
|
|
242
|
+
/**
|
|
243
|
+
*
|
|
244
|
+
* @type {string}
|
|
245
|
+
* @memberof ComponentDetailsV1
|
|
246
|
+
*/
|
|
247
|
+
'name': string;
|
|
248
|
+
/**
|
|
249
|
+
*
|
|
250
|
+
* @type {string}
|
|
251
|
+
* @memberof ComponentDetailsV1
|
|
252
|
+
*/
|
|
253
|
+
'schemaName': string;
|
|
254
|
+
}
|
|
230
255
|
/**
|
|
231
256
|
* @type ComponentPropKey
|
|
232
257
|
* @export
|
|
@@ -313,6 +338,14 @@ export interface ComponentV1RequestPath {
|
|
|
313
338
|
* @interface ComponentViewV1
|
|
314
339
|
*/
|
|
315
340
|
export interface ComponentViewV1 {
|
|
341
|
+
/**
|
|
342
|
+
*
|
|
343
|
+
* @type {{ [key: string]: any; }}
|
|
344
|
+
* @memberof ComponentViewV1
|
|
345
|
+
*/
|
|
346
|
+
'attributes': {
|
|
347
|
+
[key: string]: any;
|
|
348
|
+
};
|
|
316
349
|
/**
|
|
317
350
|
*
|
|
318
351
|
* @type {boolean}
|
|
@@ -562,6 +595,14 @@ export interface CreateChangeSetV1Response {
|
|
|
562
595
|
* @interface CreateComponentV1Request
|
|
563
596
|
*/
|
|
564
597
|
export interface CreateComponentV1Request {
|
|
598
|
+
/**
|
|
599
|
+
*
|
|
600
|
+
* @type {{ [key: string]: any; }}
|
|
601
|
+
* @memberof CreateComponentV1Request
|
|
602
|
+
*/
|
|
603
|
+
'attributes'?: {
|
|
604
|
+
[key: string]: any;
|
|
605
|
+
};
|
|
565
606
|
/**
|
|
566
607
|
*
|
|
567
608
|
* @type {Array<Connection>}
|
|
@@ -572,10 +613,17 @@ export interface CreateComponentV1Request {
|
|
|
572
613
|
*
|
|
573
614
|
* @type {{ [key: string]: any; }}
|
|
574
615
|
* @memberof CreateComponentV1Request
|
|
616
|
+
* @deprecated
|
|
575
617
|
*/
|
|
576
618
|
'domain'?: {
|
|
577
619
|
[key: string]: any;
|
|
578
620
|
};
|
|
621
|
+
/**
|
|
622
|
+
*
|
|
623
|
+
* @type {ComponentReference}
|
|
624
|
+
* @memberof CreateComponentV1Request
|
|
625
|
+
*/
|
|
626
|
+
'managedBy'?: ComponentReference;
|
|
579
627
|
/**
|
|
580
628
|
*
|
|
581
629
|
* @type {string}
|
|
@@ -598,10 +646,20 @@ export interface CreateComponentV1Request {
|
|
|
598
646
|
*
|
|
599
647
|
* @type {{ [key: string]: any; }}
|
|
600
648
|
* @memberof CreateComponentV1Request
|
|
649
|
+
* @deprecated
|
|
601
650
|
*/
|
|
602
651
|
'secrets'?: {
|
|
603
652
|
[key: string]: any;
|
|
604
653
|
};
|
|
654
|
+
/**
|
|
655
|
+
*
|
|
656
|
+
* @type {{ [key: string]: Subscription; }}
|
|
657
|
+
* @memberof CreateComponentV1Request
|
|
658
|
+
* @deprecated
|
|
659
|
+
*/
|
|
660
|
+
'subscriptions'?: {
|
|
661
|
+
[key: string]: Subscription;
|
|
662
|
+
};
|
|
605
663
|
/**
|
|
606
664
|
*
|
|
607
665
|
* @type {string}
|
|
@@ -774,8 +832,27 @@ export interface ExecuteManagementFunctionV1Response {
|
|
|
774
832
|
*
|
|
775
833
|
* @type {string}
|
|
776
834
|
* @memberof ExecuteManagementFunctionV1Response
|
|
835
|
+
* @deprecated
|
|
777
836
|
*/
|
|
778
837
|
'funcRunId': string;
|
|
838
|
+
/**
|
|
839
|
+
*
|
|
840
|
+
* @type {string}
|
|
841
|
+
* @memberof ExecuteManagementFunctionV1Response
|
|
842
|
+
*/
|
|
843
|
+
'managementFuncJobStateId': string;
|
|
844
|
+
/**
|
|
845
|
+
*
|
|
846
|
+
* @type {string}
|
|
847
|
+
* @memberof ExecuteManagementFunctionV1Response
|
|
848
|
+
*/
|
|
849
|
+
'message'?: string;
|
|
850
|
+
/**
|
|
851
|
+
*
|
|
852
|
+
* @type {string}
|
|
853
|
+
* @memberof ExecuteManagementFunctionV1Response
|
|
854
|
+
*/
|
|
855
|
+
'status': string;
|
|
779
856
|
}
|
|
780
857
|
/**
|
|
781
858
|
*
|
|
@@ -1229,6 +1306,25 @@ export interface GetFuncV1Response {
|
|
|
1229
1306
|
*/
|
|
1230
1307
|
'name': string;
|
|
1231
1308
|
}
|
|
1309
|
+
/**
|
|
1310
|
+
*
|
|
1311
|
+
* @export
|
|
1312
|
+
* @interface GetManagementFuncJobStateV1Response
|
|
1313
|
+
*/
|
|
1314
|
+
export interface GetManagementFuncJobStateV1Response {
|
|
1315
|
+
/**
|
|
1316
|
+
*
|
|
1317
|
+
* @type {string}
|
|
1318
|
+
* @memberof GetManagementFuncJobStateV1Response
|
|
1319
|
+
*/
|
|
1320
|
+
'funcRunId': string;
|
|
1321
|
+
/**
|
|
1322
|
+
*
|
|
1323
|
+
* @type {string}
|
|
1324
|
+
* @memberof GetManagementFuncJobStateV1Response
|
|
1325
|
+
*/
|
|
1326
|
+
'state': string;
|
|
1327
|
+
}
|
|
1232
1328
|
/**
|
|
1233
1329
|
*
|
|
1234
1330
|
* @export
|
|
@@ -1396,6 +1492,12 @@ export interface ListChangeSetV1Response {
|
|
|
1396
1492
|
* @interface ListComponentsV1Response
|
|
1397
1493
|
*/
|
|
1398
1494
|
export interface ListComponentsV1Response {
|
|
1495
|
+
/**
|
|
1496
|
+
*
|
|
1497
|
+
* @type {Array<ComponentDetailsV1>}
|
|
1498
|
+
* @memberof ListComponentsV1Response
|
|
1499
|
+
*/
|
|
1500
|
+
'componentDetails': Array<ComponentDetailsV1>;
|
|
1399
1501
|
/**
|
|
1400
1502
|
*
|
|
1401
1503
|
* @type {Array<Array<string>>}
|
|
@@ -1428,6 +1530,32 @@ export interface ListSchemaV1Response {
|
|
|
1428
1530
|
*/
|
|
1429
1531
|
'schemas': Array<SchemaResponse>;
|
|
1430
1532
|
}
|
|
1533
|
+
/**
|
|
1534
|
+
*
|
|
1535
|
+
* @export
|
|
1536
|
+
* @interface ManageComponentV1Request
|
|
1537
|
+
*/
|
|
1538
|
+
export interface ManageComponentV1Request {
|
|
1539
|
+
/**
|
|
1540
|
+
*
|
|
1541
|
+
* @type {string}
|
|
1542
|
+
* @memberof ManageComponentV1Request
|
|
1543
|
+
*/
|
|
1544
|
+
'componentId': string;
|
|
1545
|
+
}
|
|
1546
|
+
/**
|
|
1547
|
+
*
|
|
1548
|
+
* @export
|
|
1549
|
+
* @interface ManageComponentV1Response
|
|
1550
|
+
*/
|
|
1551
|
+
export interface ManageComponentV1Response {
|
|
1552
|
+
/**
|
|
1553
|
+
*
|
|
1554
|
+
* @type {ComponentViewV1}
|
|
1555
|
+
* @memberof ManageComponentV1Response
|
|
1556
|
+
*/
|
|
1557
|
+
'component': ComponentViewV1;
|
|
1558
|
+
}
|
|
1431
1559
|
/**
|
|
1432
1560
|
*
|
|
1433
1561
|
* @export
|
|
@@ -1447,6 +1575,19 @@ export interface ManagedByConnectionViewV1 {
|
|
|
1447
1575
|
*/
|
|
1448
1576
|
'componentName': string;
|
|
1449
1577
|
}
|
|
1578
|
+
/**
|
|
1579
|
+
*
|
|
1580
|
+
* @export
|
|
1581
|
+
* @interface ManagementFuncJobStateV1RequestPath
|
|
1582
|
+
*/
|
|
1583
|
+
export interface ManagementFuncJobStateV1RequestPath {
|
|
1584
|
+
/**
|
|
1585
|
+
*
|
|
1586
|
+
* @type {string}
|
|
1587
|
+
* @memberof ManagementFuncJobStateV1RequestPath
|
|
1588
|
+
*/
|
|
1589
|
+
'management_func_job_state_id': string;
|
|
1590
|
+
}
|
|
1450
1591
|
/**
|
|
1451
1592
|
* @type ManagementFunctionReference
|
|
1452
1593
|
* Reference to a management function by either name or ID. This allows clients to use the more human-friendly name approach or the more precise ID approach when working with management functions.
|
|
@@ -1793,6 +1934,32 @@ export interface SchemaVariantV1RequestPath {
|
|
|
1793
1934
|
*/
|
|
1794
1935
|
'schema_variant_id': string;
|
|
1795
1936
|
}
|
|
1937
|
+
/**
|
|
1938
|
+
*
|
|
1939
|
+
* @export
|
|
1940
|
+
* @interface SearchComponentsV1Request
|
|
1941
|
+
*/
|
|
1942
|
+
export interface SearchComponentsV1Request {
|
|
1943
|
+
/**
|
|
1944
|
+
*
|
|
1945
|
+
* @type {string}
|
|
1946
|
+
* @memberof SearchComponentsV1Request
|
|
1947
|
+
*/
|
|
1948
|
+
'schemaName'?: string | null;
|
|
1949
|
+
}
|
|
1950
|
+
/**
|
|
1951
|
+
*
|
|
1952
|
+
* @export
|
|
1953
|
+
* @interface SearchComponentsV1Response
|
|
1954
|
+
*/
|
|
1955
|
+
export interface SearchComponentsV1Response {
|
|
1956
|
+
/**
|
|
1957
|
+
*
|
|
1958
|
+
* @type {Array<Array<string>>}
|
|
1959
|
+
* @memberof SearchComponentsV1Response
|
|
1960
|
+
*/
|
|
1961
|
+
'components': Array<Array<string>>;
|
|
1962
|
+
}
|
|
1796
1963
|
/**
|
|
1797
1964
|
*
|
|
1798
1965
|
* @export
|
|
@@ -1916,21 +2083,71 @@ export interface SocketViewV1 {
|
|
|
1916
2083
|
/**
|
|
1917
2084
|
*
|
|
1918
2085
|
* @export
|
|
1919
|
-
* @interface
|
|
2086
|
+
* @interface SourceViewV1
|
|
1920
2087
|
*/
|
|
1921
|
-
export interface
|
|
2088
|
+
export interface SourceViewV1 {
|
|
1922
2089
|
/**
|
|
1923
2090
|
*
|
|
1924
2091
|
* @type {string}
|
|
1925
|
-
* @memberof
|
|
2092
|
+
* @memberof SourceViewV1
|
|
1926
2093
|
*/
|
|
1927
|
-
'
|
|
2094
|
+
'component': string;
|
|
2095
|
+
/**
|
|
2096
|
+
*
|
|
2097
|
+
* @type {string}
|
|
2098
|
+
* @memberof SourceViewV1
|
|
2099
|
+
*/
|
|
2100
|
+
'propPath': string;
|
|
2101
|
+
}
|
|
2102
|
+
/**
|
|
2103
|
+
*
|
|
2104
|
+
* @export
|
|
2105
|
+
* @interface Subscription
|
|
2106
|
+
*/
|
|
2107
|
+
export interface Subscription {
|
|
2108
|
+
/**
|
|
2109
|
+
*
|
|
2110
|
+
* @type {string}
|
|
2111
|
+
* @memberof Subscription
|
|
2112
|
+
*/
|
|
2113
|
+
'component': string;
|
|
2114
|
+
/**
|
|
2115
|
+
*
|
|
2116
|
+
* @type {string}
|
|
2117
|
+
* @memberof Subscription
|
|
2118
|
+
*/
|
|
2119
|
+
'componentId': string;
|
|
2120
|
+
/**
|
|
2121
|
+
*
|
|
2122
|
+
* @type {string}
|
|
2123
|
+
* @memberof Subscription
|
|
2124
|
+
*/
|
|
2125
|
+
'function'?: string;
|
|
2126
|
+
/**
|
|
2127
|
+
*
|
|
2128
|
+
* @type {boolean}
|
|
2129
|
+
* @memberof Subscription
|
|
2130
|
+
*/
|
|
2131
|
+
'keepExistingSubscriptions'?: boolean | null;
|
|
2132
|
+
/**
|
|
2133
|
+
*
|
|
2134
|
+
* @type {string}
|
|
2135
|
+
* @memberof Subscription
|
|
2136
|
+
*/
|
|
2137
|
+
'propPath': string;
|
|
2138
|
+
}
|
|
2139
|
+
/**
|
|
2140
|
+
*
|
|
2141
|
+
* @export
|
|
2142
|
+
* @interface SystemStatusResponse
|
|
2143
|
+
*/
|
|
2144
|
+
export interface SystemStatusResponse {
|
|
1928
2145
|
/**
|
|
1929
2146
|
*
|
|
1930
2147
|
* @type {string}
|
|
1931
2148
|
* @memberof SystemStatusResponse
|
|
1932
2149
|
*/
|
|
1933
|
-
'
|
|
2150
|
+
'API Documentation': string;
|
|
1934
2151
|
}
|
|
1935
2152
|
/**
|
|
1936
2153
|
*
|
|
@@ -1938,6 +2155,14 @@ export interface SystemStatusResponse {
|
|
|
1938
2155
|
* @interface UpdateComponentV1Request
|
|
1939
2156
|
*/
|
|
1940
2157
|
export interface UpdateComponentV1Request {
|
|
2158
|
+
/**
|
|
2159
|
+
*
|
|
2160
|
+
* @type {{ [key: string]: any; }}
|
|
2161
|
+
* @memberof UpdateComponentV1Request
|
|
2162
|
+
*/
|
|
2163
|
+
'attributes'?: {
|
|
2164
|
+
[key: string]: any;
|
|
2165
|
+
};
|
|
1941
2166
|
/**
|
|
1942
2167
|
*
|
|
1943
2168
|
* @type {ConnectionDetails}
|
|
@@ -1948,6 +2173,7 @@ export interface UpdateComponentV1Request {
|
|
|
1948
2173
|
*
|
|
1949
2174
|
* @type {{ [key: string]: any; }}
|
|
1950
2175
|
* @memberof UpdateComponentV1Request
|
|
2176
|
+
* @deprecated
|
|
1951
2177
|
*/
|
|
1952
2178
|
'domain'?: {
|
|
1953
2179
|
[key: string]: any;
|
|
@@ -1968,16 +2194,26 @@ export interface UpdateComponentV1Request {
|
|
|
1968
2194
|
*
|
|
1969
2195
|
* @type {{ [key: string]: any; }}
|
|
1970
2196
|
* @memberof UpdateComponentV1Request
|
|
2197
|
+
* @deprecated
|
|
1971
2198
|
*/
|
|
1972
2199
|
'secrets'?: {
|
|
1973
2200
|
[key: string]: any;
|
|
1974
2201
|
};
|
|
1975
2202
|
/**
|
|
1976
2203
|
*
|
|
1977
|
-
* @type {
|
|
2204
|
+
* @type {{ [key: string]: Subscription; }}
|
|
1978
2205
|
* @memberof UpdateComponentV1Request
|
|
2206
|
+
* @deprecated
|
|
1979
2207
|
*/
|
|
1980
|
-
'
|
|
2208
|
+
'subscriptions'?: {
|
|
2209
|
+
[key: string]: Subscription;
|
|
2210
|
+
};
|
|
2211
|
+
/**
|
|
2212
|
+
*
|
|
2213
|
+
* @type {Array<ComponentPropKey>}
|
|
2214
|
+
* @memberof UpdateComponentV1Request
|
|
2215
|
+
*/
|
|
2216
|
+
'unset'?: Array<ComponentPropKey>;
|
|
1981
2217
|
}
|
|
1982
2218
|
/**
|
|
1983
2219
|
*
|
|
@@ -2101,8 +2337,9 @@ export interface WhoamiResponse {
|
|
|
2101
2337
|
export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2102
2338
|
/**
|
|
2103
2339
|
*
|
|
2340
|
+
* @summary Remove queued action
|
|
2104
2341
|
* @param {string} workspaceId Workspace identifier
|
|
2105
|
-
* @param {string} changeSetId Change
|
|
2342
|
+
* @param {string} changeSetId Change Set identifier
|
|
2106
2343
|
* @param {string} actionId Action identifier
|
|
2107
2344
|
* @param {*} [options] Override http request option.
|
|
2108
2345
|
* @throws {RequiredError}
|
|
@@ -2110,16 +2347,18 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2110
2347
|
cancelAction: (workspaceId: string, changeSetId: string, actionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2111
2348
|
/**
|
|
2112
2349
|
*
|
|
2350
|
+
* @summary List queued actions
|
|
2113
2351
|
* @param {string} workspaceId Workspace identifier
|
|
2114
|
-
* @param {string} changeSetId Change
|
|
2352
|
+
* @param {string} changeSetId Change Set identifier
|
|
2115
2353
|
* @param {*} [options] Override http request option.
|
|
2116
2354
|
* @throws {RequiredError}
|
|
2117
2355
|
*/
|
|
2118
2356
|
getActions: (workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2119
2357
|
/**
|
|
2120
2358
|
*
|
|
2359
|
+
* @summary Put action on-hold
|
|
2121
2360
|
* @param {string} workspaceId Workspace identifier
|
|
2122
|
-
* @param {string} changeSetId Change
|
|
2361
|
+
* @param {string} changeSetId Change Set identifier
|
|
2123
2362
|
* @param {string} actionId Action identifier
|
|
2124
2363
|
* @param {*} [options] Override http request option.
|
|
2125
2364
|
* @throws {RequiredError}
|
|
@@ -2127,8 +2366,9 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2127
2366
|
putOnHold: (workspaceId: string, changeSetId: string, actionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2128
2367
|
/**
|
|
2129
2368
|
*
|
|
2369
|
+
* @summary Retry action
|
|
2130
2370
|
* @param {string} workspaceId Workspace identifier
|
|
2131
|
-
* @param {string} changeSetId Change
|
|
2371
|
+
* @param {string} changeSetId Change Set identifier
|
|
2132
2372
|
* @param {string} actionId Action identifier
|
|
2133
2373
|
* @param {*} [options] Override http request option.
|
|
2134
2374
|
* @throws {RequiredError}
|
|
@@ -2142,8 +2382,9 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2142
2382
|
export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
2143
2383
|
/**
|
|
2144
2384
|
*
|
|
2385
|
+
* @summary Remove queued action
|
|
2145
2386
|
* @param {string} workspaceId Workspace identifier
|
|
2146
|
-
* @param {string} changeSetId Change
|
|
2387
|
+
* @param {string} changeSetId Change Set identifier
|
|
2147
2388
|
* @param {string} actionId Action identifier
|
|
2148
2389
|
* @param {*} [options] Override http request option.
|
|
2149
2390
|
* @throws {RequiredError}
|
|
@@ -2151,16 +2392,18 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
2151
2392
|
cancelAction(workspaceId: string, changeSetId: string, actionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CancelActionV1Response>>;
|
|
2152
2393
|
/**
|
|
2153
2394
|
*
|
|
2395
|
+
* @summary List queued actions
|
|
2154
2396
|
* @param {string} workspaceId Workspace identifier
|
|
2155
|
-
* @param {string} changeSetId Change
|
|
2397
|
+
* @param {string} changeSetId Change Set identifier
|
|
2156
2398
|
* @param {*} [options] Override http request option.
|
|
2157
2399
|
* @throws {RequiredError}
|
|
2158
2400
|
*/
|
|
2159
2401
|
getActions(workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetActionsV1Response>>;
|
|
2160
2402
|
/**
|
|
2161
2403
|
*
|
|
2404
|
+
* @summary Put action on-hold
|
|
2162
2405
|
* @param {string} workspaceId Workspace identifier
|
|
2163
|
-
* @param {string} changeSetId Change
|
|
2406
|
+
* @param {string} changeSetId Change Set identifier
|
|
2164
2407
|
* @param {string} actionId Action identifier
|
|
2165
2408
|
* @param {*} [options] Override http request option.
|
|
2166
2409
|
* @throws {RequiredError}
|
|
@@ -2168,8 +2411,9 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
2168
2411
|
putOnHold(workspaceId: string, changeSetId: string, actionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PutOnHoldActionV1Response>>;
|
|
2169
2412
|
/**
|
|
2170
2413
|
*
|
|
2414
|
+
* @summary Retry action
|
|
2171
2415
|
* @param {string} workspaceId Workspace identifier
|
|
2172
|
-
* @param {string} changeSetId Change
|
|
2416
|
+
* @param {string} changeSetId Change Set identifier
|
|
2173
2417
|
* @param {string} actionId Action identifier
|
|
2174
2418
|
* @param {*} [options] Override http request option.
|
|
2175
2419
|
* @throws {RequiredError}
|
|
@@ -2183,6 +2427,7 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
2183
2427
|
export declare const ActionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2184
2428
|
/**
|
|
2185
2429
|
*
|
|
2430
|
+
* @summary Remove queued action
|
|
2186
2431
|
* @param {ActionsApiCancelActionRequest} requestParameters Request parameters.
|
|
2187
2432
|
* @param {*} [options] Override http request option.
|
|
2188
2433
|
* @throws {RequiredError}
|
|
@@ -2190,6 +2435,7 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
2190
2435
|
cancelAction(requestParameters: ActionsApiCancelActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CancelActionV1Response>;
|
|
2191
2436
|
/**
|
|
2192
2437
|
*
|
|
2438
|
+
* @summary List queued actions
|
|
2193
2439
|
* @param {ActionsApiGetActionsRequest} requestParameters Request parameters.
|
|
2194
2440
|
* @param {*} [options] Override http request option.
|
|
2195
2441
|
* @throws {RequiredError}
|
|
@@ -2197,6 +2443,7 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
2197
2443
|
getActions(requestParameters: ActionsApiGetActionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetActionsV1Response>;
|
|
2198
2444
|
/**
|
|
2199
2445
|
*
|
|
2446
|
+
* @summary Put action on-hold
|
|
2200
2447
|
* @param {ActionsApiPutOnHoldRequest} requestParameters Request parameters.
|
|
2201
2448
|
* @param {*} [options] Override http request option.
|
|
2202
2449
|
* @throws {RequiredError}
|
|
@@ -2204,6 +2451,7 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
2204
2451
|
putOnHold(requestParameters: ActionsApiPutOnHoldRequest, options?: RawAxiosRequestConfig): AxiosPromise<PutOnHoldActionV1Response>;
|
|
2205
2452
|
/**
|
|
2206
2453
|
*
|
|
2454
|
+
* @summary Retry action
|
|
2207
2455
|
* @param {ActionsApiRetryActionRequest} requestParameters Request parameters.
|
|
2208
2456
|
* @param {*} [options] Override http request option.
|
|
2209
2457
|
* @throws {RequiredError}
|
|
@@ -2218,6 +2466,7 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
2218
2466
|
export interface ActionsApiInterface {
|
|
2219
2467
|
/**
|
|
2220
2468
|
*
|
|
2469
|
+
* @summary Remove queued action
|
|
2221
2470
|
* @param {ActionsApiCancelActionRequest} requestParameters Request parameters.
|
|
2222
2471
|
* @param {*} [options] Override http request option.
|
|
2223
2472
|
* @throws {RequiredError}
|
|
@@ -2226,6 +2475,7 @@ export interface ActionsApiInterface {
|
|
|
2226
2475
|
cancelAction(requestParameters: ActionsApiCancelActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CancelActionV1Response>;
|
|
2227
2476
|
/**
|
|
2228
2477
|
*
|
|
2478
|
+
* @summary List queued actions
|
|
2229
2479
|
* @param {ActionsApiGetActionsRequest} requestParameters Request parameters.
|
|
2230
2480
|
* @param {*} [options] Override http request option.
|
|
2231
2481
|
* @throws {RequiredError}
|
|
@@ -2234,6 +2484,7 @@ export interface ActionsApiInterface {
|
|
|
2234
2484
|
getActions(requestParameters: ActionsApiGetActionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetActionsV1Response>;
|
|
2235
2485
|
/**
|
|
2236
2486
|
*
|
|
2487
|
+
* @summary Put action on-hold
|
|
2237
2488
|
* @param {ActionsApiPutOnHoldRequest} requestParameters Request parameters.
|
|
2238
2489
|
* @param {*} [options] Override http request option.
|
|
2239
2490
|
* @throws {RequiredError}
|
|
@@ -2242,6 +2493,7 @@ export interface ActionsApiInterface {
|
|
|
2242
2493
|
putOnHold(requestParameters: ActionsApiPutOnHoldRequest, options?: RawAxiosRequestConfig): AxiosPromise<PutOnHoldActionV1Response>;
|
|
2243
2494
|
/**
|
|
2244
2495
|
*
|
|
2496
|
+
* @summary Retry action
|
|
2245
2497
|
* @param {ActionsApiRetryActionRequest} requestParameters Request parameters.
|
|
2246
2498
|
* @param {*} [options] Override http request option.
|
|
2247
2499
|
* @throws {RequiredError}
|
|
@@ -2262,7 +2514,7 @@ export interface ActionsApiCancelActionRequest {
|
|
|
2262
2514
|
*/
|
|
2263
2515
|
readonly workspaceId: string;
|
|
2264
2516
|
/**
|
|
2265
|
-
* Change
|
|
2517
|
+
* Change Set identifier
|
|
2266
2518
|
* @type {string}
|
|
2267
2519
|
* @memberof ActionsApiCancelAction
|
|
2268
2520
|
*/
|
|
@@ -2287,7 +2539,7 @@ export interface ActionsApiGetActionsRequest {
|
|
|
2287
2539
|
*/
|
|
2288
2540
|
readonly workspaceId: string;
|
|
2289
2541
|
/**
|
|
2290
|
-
* Change
|
|
2542
|
+
* Change Set identifier
|
|
2291
2543
|
* @type {string}
|
|
2292
2544
|
* @memberof ActionsApiGetActions
|
|
2293
2545
|
*/
|
|
@@ -2306,7 +2558,7 @@ export interface ActionsApiPutOnHoldRequest {
|
|
|
2306
2558
|
*/
|
|
2307
2559
|
readonly workspaceId: string;
|
|
2308
2560
|
/**
|
|
2309
|
-
* Change
|
|
2561
|
+
* Change Set identifier
|
|
2310
2562
|
* @type {string}
|
|
2311
2563
|
* @memberof ActionsApiPutOnHold
|
|
2312
2564
|
*/
|
|
@@ -2331,7 +2583,7 @@ export interface ActionsApiRetryActionRequest {
|
|
|
2331
2583
|
*/
|
|
2332
2584
|
readonly workspaceId: string;
|
|
2333
2585
|
/**
|
|
2334
|
-
* Change
|
|
2586
|
+
* Change Set identifier
|
|
2335
2587
|
* @type {string}
|
|
2336
2588
|
* @memberof ActionsApiRetryAction
|
|
2337
2589
|
*/
|
|
@@ -2352,6 +2604,7 @@ export interface ActionsApiRetryActionRequest {
|
|
|
2352
2604
|
export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
2353
2605
|
/**
|
|
2354
2606
|
*
|
|
2607
|
+
* @summary Remove queued action
|
|
2355
2608
|
* @param {ActionsApiCancelActionRequest} requestParameters Request parameters.
|
|
2356
2609
|
* @param {*} [options] Override http request option.
|
|
2357
2610
|
* @throws {RequiredError}
|
|
@@ -2360,6 +2613,7 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
2360
2613
|
cancelAction(requestParameters: ActionsApiCancelActionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CancelActionV1Response, any>>;
|
|
2361
2614
|
/**
|
|
2362
2615
|
*
|
|
2616
|
+
* @summary List queued actions
|
|
2363
2617
|
* @param {ActionsApiGetActionsRequest} requestParameters Request parameters.
|
|
2364
2618
|
* @param {*} [options] Override http request option.
|
|
2365
2619
|
* @throws {RequiredError}
|
|
@@ -2368,6 +2622,7 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
2368
2622
|
getActions(requestParameters: ActionsApiGetActionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetActionsV1Response, any>>;
|
|
2369
2623
|
/**
|
|
2370
2624
|
*
|
|
2625
|
+
* @summary Put action on-hold
|
|
2371
2626
|
* @param {ActionsApiPutOnHoldRequest} requestParameters Request parameters.
|
|
2372
2627
|
* @param {*} [options] Override http request option.
|
|
2373
2628
|
* @throws {RequiredError}
|
|
@@ -2376,6 +2631,7 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
2376
2631
|
putOnHold(requestParameters: ActionsApiPutOnHoldRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PutOnHoldActionV1Response, any>>;
|
|
2377
2632
|
/**
|
|
2378
2633
|
*
|
|
2634
|
+
* @summary Retry action
|
|
2379
2635
|
* @param {ActionsApiRetryActionRequest} requestParameters Request parameters.
|
|
2380
2636
|
* @param {*} [options] Override http request option.
|
|
2381
2637
|
* @throws {RequiredError}
|
|
@@ -2390,14 +2646,16 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
2390
2646
|
export declare const ChangeSetsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2391
2647
|
/**
|
|
2392
2648
|
*
|
|
2649
|
+
* @summary Delete a Change Set
|
|
2393
2650
|
* @param {string} workspaceId Workspace identifier
|
|
2394
|
-
* @param {string} changeSetId Change
|
|
2651
|
+
* @param {string} changeSetId Change Set identifier
|
|
2395
2652
|
* @param {*} [options] Override http request option.
|
|
2396
2653
|
* @throws {RequiredError}
|
|
2397
2654
|
*/
|
|
2398
2655
|
abandonChangeSet: (workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2399
2656
|
/**
|
|
2400
2657
|
*
|
|
2658
|
+
* @summary Create a Change Set
|
|
2401
2659
|
* @param {string} workspaceId Workspace identifier
|
|
2402
2660
|
* @param {CreateChangeSetV1Request} createChangeSetV1Request
|
|
2403
2661
|
* @param {*} [options] Override http request option.
|
|
@@ -2406,22 +2664,25 @@ export declare const ChangeSetsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
2406
2664
|
createChangeSet: (workspaceId: string, createChangeSetV1Request: CreateChangeSetV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2407
2665
|
/**
|
|
2408
2666
|
*
|
|
2667
|
+
* @summary Merge Change Set without approval
|
|
2409
2668
|
* @param {string} workspaceId Workspace identifier
|
|
2410
|
-
* @param {string} changeSetId Change
|
|
2669
|
+
* @param {string} changeSetId Change Set identifier
|
|
2411
2670
|
* @param {*} [options] Override http request option.
|
|
2412
2671
|
* @throws {RequiredError}
|
|
2413
2672
|
*/
|
|
2414
2673
|
forceApply: (workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2415
2674
|
/**
|
|
2416
2675
|
*
|
|
2676
|
+
* @summary Get a Change Set by Change Set Id
|
|
2417
2677
|
* @param {string} workspaceId Workspace identifier
|
|
2418
|
-
* @param {string} changeSetId Change
|
|
2678
|
+
* @param {string} changeSetId Change Set identifier
|
|
2419
2679
|
* @param {*} [options] Override http request option.
|
|
2420
2680
|
* @throws {RequiredError}
|
|
2421
2681
|
*/
|
|
2422
2682
|
getChangeSet: (workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2423
2683
|
/**
|
|
2424
2684
|
*
|
|
2685
|
+
* @summary List all active Change Sets
|
|
2425
2686
|
* @param {string} workspaceId Workspace identifier
|
|
2426
2687
|
* @param {*} [options] Override http request option.
|
|
2427
2688
|
* @throws {RequiredError}
|
|
@@ -2429,14 +2690,16 @@ export declare const ChangeSetsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
2429
2690
|
listChangeSets: (workspaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2430
2691
|
/**
|
|
2431
2692
|
*
|
|
2693
|
+
* @summary Get Change Set post merge status
|
|
2432
2694
|
* @param {string} workspaceId Workspace identifier
|
|
2433
|
-
* @param {string} changeSetId Change
|
|
2695
|
+
* @param {string} changeSetId Change Set identifier
|
|
2434
2696
|
* @param {*} [options] Override http request option.
|
|
2435
2697
|
* @throws {RequiredError}
|
|
2436
2698
|
*/
|
|
2437
2699
|
mergeStatus: (workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2438
2700
|
/**
|
|
2439
2701
|
*
|
|
2702
|
+
* @summary Abandon all active Change Sets
|
|
2440
2703
|
* @param {string} workspaceId Workspace identifier
|
|
2441
2704
|
* @param {*} [options] Override http request option.
|
|
2442
2705
|
* @throws {RequiredError}
|
|
@@ -2444,8 +2707,9 @@ export declare const ChangeSetsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
2444
2707
|
purgeOpen: (workspaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2445
2708
|
/**
|
|
2446
2709
|
*
|
|
2710
|
+
* @summary Request Change Set merge approval
|
|
2447
2711
|
* @param {string} workspaceId Workspace identifier
|
|
2448
|
-
* @param {string} changeSetId Change
|
|
2712
|
+
* @param {string} changeSetId Change Set identifier
|
|
2449
2713
|
* @param {*} [options] Override http request option.
|
|
2450
2714
|
* @throws {RequiredError}
|
|
2451
2715
|
*/
|
|
@@ -2458,14 +2722,16 @@ export declare const ChangeSetsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
2458
2722
|
export declare const ChangeSetsApiFp: (configuration?: Configuration) => {
|
|
2459
2723
|
/**
|
|
2460
2724
|
*
|
|
2725
|
+
* @summary Delete a Change Set
|
|
2461
2726
|
* @param {string} workspaceId Workspace identifier
|
|
2462
|
-
* @param {string} changeSetId Change
|
|
2727
|
+
* @param {string} changeSetId Change Set identifier
|
|
2463
2728
|
* @param {*} [options] Override http request option.
|
|
2464
2729
|
* @throws {RequiredError}
|
|
2465
2730
|
*/
|
|
2466
2731
|
abandonChangeSet(workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteChangeSetV1Response>>;
|
|
2467
2732
|
/**
|
|
2468
2733
|
*
|
|
2734
|
+
* @summary Create a Change Set
|
|
2469
2735
|
* @param {string} workspaceId Workspace identifier
|
|
2470
2736
|
* @param {CreateChangeSetV1Request} createChangeSetV1Request
|
|
2471
2737
|
* @param {*} [options] Override http request option.
|
|
@@ -2474,22 +2740,25 @@ export declare const ChangeSetsApiFp: (configuration?: Configuration) => {
|
|
|
2474
2740
|
createChangeSet(workspaceId: string, createChangeSetV1Request: CreateChangeSetV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateChangeSetV1Response>>;
|
|
2475
2741
|
/**
|
|
2476
2742
|
*
|
|
2743
|
+
* @summary Merge Change Set without approval
|
|
2477
2744
|
* @param {string} workspaceId Workspace identifier
|
|
2478
|
-
* @param {string} changeSetId Change
|
|
2745
|
+
* @param {string} changeSetId Change Set identifier
|
|
2479
2746
|
* @param {*} [options] Override http request option.
|
|
2480
2747
|
* @throws {RequiredError}
|
|
2481
2748
|
*/
|
|
2482
2749
|
forceApply(workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForceApplyChangeSetV1Response>>;
|
|
2483
2750
|
/**
|
|
2484
2751
|
*
|
|
2752
|
+
* @summary Get a Change Set by Change Set Id
|
|
2485
2753
|
* @param {string} workspaceId Workspace identifier
|
|
2486
|
-
* @param {string} changeSetId Change
|
|
2754
|
+
* @param {string} changeSetId Change Set identifier
|
|
2487
2755
|
* @param {*} [options] Override http request option.
|
|
2488
2756
|
* @throws {RequiredError}
|
|
2489
2757
|
*/
|
|
2490
2758
|
getChangeSet(workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetChangeSetV1Response>>;
|
|
2491
2759
|
/**
|
|
2492
2760
|
*
|
|
2761
|
+
* @summary List all active Change Sets
|
|
2493
2762
|
* @param {string} workspaceId Workspace identifier
|
|
2494
2763
|
* @param {*} [options] Override http request option.
|
|
2495
2764
|
* @throws {RequiredError}
|
|
@@ -2497,14 +2766,16 @@ export declare const ChangeSetsApiFp: (configuration?: Configuration) => {
|
|
|
2497
2766
|
listChangeSets(workspaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListChangeSetV1Response>>;
|
|
2498
2767
|
/**
|
|
2499
2768
|
*
|
|
2769
|
+
* @summary Get Change Set post merge status
|
|
2500
2770
|
* @param {string} workspaceId Workspace identifier
|
|
2501
|
-
* @param {string} changeSetId Change
|
|
2771
|
+
* @param {string} changeSetId Change Set identifier
|
|
2502
2772
|
* @param {*} [options] Override http request option.
|
|
2503
2773
|
* @throws {RequiredError}
|
|
2504
2774
|
*/
|
|
2505
2775
|
mergeStatus(workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MergeStatusV1Response>>;
|
|
2506
2776
|
/**
|
|
2507
2777
|
*
|
|
2778
|
+
* @summary Abandon all active Change Sets
|
|
2508
2779
|
* @param {string} workspaceId Workspace identifier
|
|
2509
2780
|
* @param {*} [options] Override http request option.
|
|
2510
2781
|
* @throws {RequiredError}
|
|
@@ -2512,8 +2783,9 @@ export declare const ChangeSetsApiFp: (configuration?: Configuration) => {
|
|
|
2512
2783
|
purgeOpen(workspaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PurgeOpenChangeSetsV1Response>>;
|
|
2513
2784
|
/**
|
|
2514
2785
|
*
|
|
2786
|
+
* @summary Request Change Set merge approval
|
|
2515
2787
|
* @param {string} workspaceId Workspace identifier
|
|
2516
|
-
* @param {string} changeSetId Change
|
|
2788
|
+
* @param {string} changeSetId Change Set identifier
|
|
2517
2789
|
* @param {*} [options] Override http request option.
|
|
2518
2790
|
* @throws {RequiredError}
|
|
2519
2791
|
*/
|
|
@@ -2526,6 +2798,7 @@ export declare const ChangeSetsApiFp: (configuration?: Configuration) => {
|
|
|
2526
2798
|
export declare const ChangeSetsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2527
2799
|
/**
|
|
2528
2800
|
*
|
|
2801
|
+
* @summary Delete a Change Set
|
|
2529
2802
|
* @param {ChangeSetsApiAbandonChangeSetRequest} requestParameters Request parameters.
|
|
2530
2803
|
* @param {*} [options] Override http request option.
|
|
2531
2804
|
* @throws {RequiredError}
|
|
@@ -2533,6 +2806,7 @@ export declare const ChangeSetsApiFactory: (configuration?: Configuration, baseP
|
|
|
2533
2806
|
abandonChangeSet(requestParameters: ChangeSetsApiAbandonChangeSetRequest, options?: RawAxiosRequestConfig): AxiosPromise<DeleteChangeSetV1Response>;
|
|
2534
2807
|
/**
|
|
2535
2808
|
*
|
|
2809
|
+
* @summary Create a Change Set
|
|
2536
2810
|
* @param {ChangeSetsApiCreateChangeSetRequest} requestParameters Request parameters.
|
|
2537
2811
|
* @param {*} [options] Override http request option.
|
|
2538
2812
|
* @throws {RequiredError}
|
|
@@ -2540,6 +2814,7 @@ export declare const ChangeSetsApiFactory: (configuration?: Configuration, baseP
|
|
|
2540
2814
|
createChangeSet(requestParameters: ChangeSetsApiCreateChangeSetRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateChangeSetV1Response>;
|
|
2541
2815
|
/**
|
|
2542
2816
|
*
|
|
2817
|
+
* @summary Merge Change Set without approval
|
|
2543
2818
|
* @param {ChangeSetsApiForceApplyRequest} requestParameters Request parameters.
|
|
2544
2819
|
* @param {*} [options] Override http request option.
|
|
2545
2820
|
* @throws {RequiredError}
|
|
@@ -2547,6 +2822,7 @@ export declare const ChangeSetsApiFactory: (configuration?: Configuration, baseP
|
|
|
2547
2822
|
forceApply(requestParameters: ChangeSetsApiForceApplyRequest, options?: RawAxiosRequestConfig): AxiosPromise<ForceApplyChangeSetV1Response>;
|
|
2548
2823
|
/**
|
|
2549
2824
|
*
|
|
2825
|
+
* @summary Get a Change Set by Change Set Id
|
|
2550
2826
|
* @param {ChangeSetsApiGetChangeSetRequest} requestParameters Request parameters.
|
|
2551
2827
|
* @param {*} [options] Override http request option.
|
|
2552
2828
|
* @throws {RequiredError}
|
|
@@ -2554,6 +2830,7 @@ export declare const ChangeSetsApiFactory: (configuration?: Configuration, baseP
|
|
|
2554
2830
|
getChangeSet(requestParameters: ChangeSetsApiGetChangeSetRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetChangeSetV1Response>;
|
|
2555
2831
|
/**
|
|
2556
2832
|
*
|
|
2833
|
+
* @summary List all active Change Sets
|
|
2557
2834
|
* @param {ChangeSetsApiListChangeSetsRequest} requestParameters Request parameters.
|
|
2558
2835
|
* @param {*} [options] Override http request option.
|
|
2559
2836
|
* @throws {RequiredError}
|
|
@@ -2561,6 +2838,7 @@ export declare const ChangeSetsApiFactory: (configuration?: Configuration, baseP
|
|
|
2561
2838
|
listChangeSets(requestParameters: ChangeSetsApiListChangeSetsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListChangeSetV1Response>;
|
|
2562
2839
|
/**
|
|
2563
2840
|
*
|
|
2841
|
+
* @summary Get Change Set post merge status
|
|
2564
2842
|
* @param {ChangeSetsApiMergeStatusRequest} requestParameters Request parameters.
|
|
2565
2843
|
* @param {*} [options] Override http request option.
|
|
2566
2844
|
* @throws {RequiredError}
|
|
@@ -2568,6 +2846,7 @@ export declare const ChangeSetsApiFactory: (configuration?: Configuration, baseP
|
|
|
2568
2846
|
mergeStatus(requestParameters: ChangeSetsApiMergeStatusRequest, options?: RawAxiosRequestConfig): AxiosPromise<MergeStatusV1Response>;
|
|
2569
2847
|
/**
|
|
2570
2848
|
*
|
|
2849
|
+
* @summary Abandon all active Change Sets
|
|
2571
2850
|
* @param {ChangeSetsApiPurgeOpenRequest} requestParameters Request parameters.
|
|
2572
2851
|
* @param {*} [options] Override http request option.
|
|
2573
2852
|
* @throws {RequiredError}
|
|
@@ -2575,6 +2854,7 @@ export declare const ChangeSetsApiFactory: (configuration?: Configuration, baseP
|
|
|
2575
2854
|
purgeOpen(requestParameters: ChangeSetsApiPurgeOpenRequest, options?: RawAxiosRequestConfig): AxiosPromise<PurgeOpenChangeSetsV1Response>;
|
|
2576
2855
|
/**
|
|
2577
2856
|
*
|
|
2857
|
+
* @summary Request Change Set merge approval
|
|
2578
2858
|
* @param {ChangeSetsApiRequestApprovalRequest} requestParameters Request parameters.
|
|
2579
2859
|
* @param {*} [options] Override http request option.
|
|
2580
2860
|
* @throws {RequiredError}
|
|
@@ -2589,6 +2869,7 @@ export declare const ChangeSetsApiFactory: (configuration?: Configuration, baseP
|
|
|
2589
2869
|
export interface ChangeSetsApiInterface {
|
|
2590
2870
|
/**
|
|
2591
2871
|
*
|
|
2872
|
+
* @summary Delete a Change Set
|
|
2592
2873
|
* @param {ChangeSetsApiAbandonChangeSetRequest} requestParameters Request parameters.
|
|
2593
2874
|
* @param {*} [options] Override http request option.
|
|
2594
2875
|
* @throws {RequiredError}
|
|
@@ -2597,6 +2878,7 @@ export interface ChangeSetsApiInterface {
|
|
|
2597
2878
|
abandonChangeSet(requestParameters: ChangeSetsApiAbandonChangeSetRequest, options?: RawAxiosRequestConfig): AxiosPromise<DeleteChangeSetV1Response>;
|
|
2598
2879
|
/**
|
|
2599
2880
|
*
|
|
2881
|
+
* @summary Create a Change Set
|
|
2600
2882
|
* @param {ChangeSetsApiCreateChangeSetRequest} requestParameters Request parameters.
|
|
2601
2883
|
* @param {*} [options] Override http request option.
|
|
2602
2884
|
* @throws {RequiredError}
|
|
@@ -2605,6 +2887,7 @@ export interface ChangeSetsApiInterface {
|
|
|
2605
2887
|
createChangeSet(requestParameters: ChangeSetsApiCreateChangeSetRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateChangeSetV1Response>;
|
|
2606
2888
|
/**
|
|
2607
2889
|
*
|
|
2890
|
+
* @summary Merge Change Set without approval
|
|
2608
2891
|
* @param {ChangeSetsApiForceApplyRequest} requestParameters Request parameters.
|
|
2609
2892
|
* @param {*} [options] Override http request option.
|
|
2610
2893
|
* @throws {RequiredError}
|
|
@@ -2613,6 +2896,7 @@ export interface ChangeSetsApiInterface {
|
|
|
2613
2896
|
forceApply(requestParameters: ChangeSetsApiForceApplyRequest, options?: RawAxiosRequestConfig): AxiosPromise<ForceApplyChangeSetV1Response>;
|
|
2614
2897
|
/**
|
|
2615
2898
|
*
|
|
2899
|
+
* @summary Get a Change Set by Change Set Id
|
|
2616
2900
|
* @param {ChangeSetsApiGetChangeSetRequest} requestParameters Request parameters.
|
|
2617
2901
|
* @param {*} [options] Override http request option.
|
|
2618
2902
|
* @throws {RequiredError}
|
|
@@ -2621,6 +2905,7 @@ export interface ChangeSetsApiInterface {
|
|
|
2621
2905
|
getChangeSet(requestParameters: ChangeSetsApiGetChangeSetRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetChangeSetV1Response>;
|
|
2622
2906
|
/**
|
|
2623
2907
|
*
|
|
2908
|
+
* @summary List all active Change Sets
|
|
2624
2909
|
* @param {ChangeSetsApiListChangeSetsRequest} requestParameters Request parameters.
|
|
2625
2910
|
* @param {*} [options] Override http request option.
|
|
2626
2911
|
* @throws {RequiredError}
|
|
@@ -2629,6 +2914,7 @@ export interface ChangeSetsApiInterface {
|
|
|
2629
2914
|
listChangeSets(requestParameters: ChangeSetsApiListChangeSetsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListChangeSetV1Response>;
|
|
2630
2915
|
/**
|
|
2631
2916
|
*
|
|
2917
|
+
* @summary Get Change Set post merge status
|
|
2632
2918
|
* @param {ChangeSetsApiMergeStatusRequest} requestParameters Request parameters.
|
|
2633
2919
|
* @param {*} [options] Override http request option.
|
|
2634
2920
|
* @throws {RequiredError}
|
|
@@ -2637,6 +2923,7 @@ export interface ChangeSetsApiInterface {
|
|
|
2637
2923
|
mergeStatus(requestParameters: ChangeSetsApiMergeStatusRequest, options?: RawAxiosRequestConfig): AxiosPromise<MergeStatusV1Response>;
|
|
2638
2924
|
/**
|
|
2639
2925
|
*
|
|
2926
|
+
* @summary Abandon all active Change Sets
|
|
2640
2927
|
* @param {ChangeSetsApiPurgeOpenRequest} requestParameters Request parameters.
|
|
2641
2928
|
* @param {*} [options] Override http request option.
|
|
2642
2929
|
* @throws {RequiredError}
|
|
@@ -2645,6 +2932,7 @@ export interface ChangeSetsApiInterface {
|
|
|
2645
2932
|
purgeOpen(requestParameters: ChangeSetsApiPurgeOpenRequest, options?: RawAxiosRequestConfig): AxiosPromise<PurgeOpenChangeSetsV1Response>;
|
|
2646
2933
|
/**
|
|
2647
2934
|
*
|
|
2935
|
+
* @summary Request Change Set merge approval
|
|
2648
2936
|
* @param {ChangeSetsApiRequestApprovalRequest} requestParameters Request parameters.
|
|
2649
2937
|
* @param {*} [options] Override http request option.
|
|
2650
2938
|
* @throws {RequiredError}
|
|
@@ -2665,7 +2953,7 @@ export interface ChangeSetsApiAbandonChangeSetRequest {
|
|
|
2665
2953
|
*/
|
|
2666
2954
|
readonly workspaceId: string;
|
|
2667
2955
|
/**
|
|
2668
|
-
* Change
|
|
2956
|
+
* Change Set identifier
|
|
2669
2957
|
* @type {string}
|
|
2670
2958
|
* @memberof ChangeSetsApiAbandonChangeSet
|
|
2671
2959
|
*/
|
|
@@ -2703,7 +2991,7 @@ export interface ChangeSetsApiForceApplyRequest {
|
|
|
2703
2991
|
*/
|
|
2704
2992
|
readonly workspaceId: string;
|
|
2705
2993
|
/**
|
|
2706
|
-
* Change
|
|
2994
|
+
* Change Set identifier
|
|
2707
2995
|
* @type {string}
|
|
2708
2996
|
* @memberof ChangeSetsApiForceApply
|
|
2709
2997
|
*/
|
|
@@ -2722,7 +3010,7 @@ export interface ChangeSetsApiGetChangeSetRequest {
|
|
|
2722
3010
|
*/
|
|
2723
3011
|
readonly workspaceId: string;
|
|
2724
3012
|
/**
|
|
2725
|
-
* Change
|
|
3013
|
+
* Change Set identifier
|
|
2726
3014
|
* @type {string}
|
|
2727
3015
|
* @memberof ChangeSetsApiGetChangeSet
|
|
2728
3016
|
*/
|
|
@@ -2754,7 +3042,7 @@ export interface ChangeSetsApiMergeStatusRequest {
|
|
|
2754
3042
|
*/
|
|
2755
3043
|
readonly workspaceId: string;
|
|
2756
3044
|
/**
|
|
2757
|
-
* Change
|
|
3045
|
+
* Change Set identifier
|
|
2758
3046
|
* @type {string}
|
|
2759
3047
|
* @memberof ChangeSetsApiMergeStatus
|
|
2760
3048
|
*/
|
|
@@ -2786,7 +3074,7 @@ export interface ChangeSetsApiRequestApprovalRequest {
|
|
|
2786
3074
|
*/
|
|
2787
3075
|
readonly workspaceId: string;
|
|
2788
3076
|
/**
|
|
2789
|
-
* Change
|
|
3077
|
+
* Change Set identifier
|
|
2790
3078
|
* @type {string}
|
|
2791
3079
|
* @memberof ChangeSetsApiRequestApproval
|
|
2792
3080
|
*/
|
|
@@ -2801,6 +3089,7 @@ export interface ChangeSetsApiRequestApprovalRequest {
|
|
|
2801
3089
|
export declare class ChangeSetsApi extends BaseAPI implements ChangeSetsApiInterface {
|
|
2802
3090
|
/**
|
|
2803
3091
|
*
|
|
3092
|
+
* @summary Delete a Change Set
|
|
2804
3093
|
* @param {ChangeSetsApiAbandonChangeSetRequest} requestParameters Request parameters.
|
|
2805
3094
|
* @param {*} [options] Override http request option.
|
|
2806
3095
|
* @throws {RequiredError}
|
|
@@ -2809,6 +3098,7 @@ export declare class ChangeSetsApi extends BaseAPI implements ChangeSetsApiInter
|
|
|
2809
3098
|
abandonChangeSet(requestParameters: ChangeSetsApiAbandonChangeSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteChangeSetV1Response, any>>;
|
|
2810
3099
|
/**
|
|
2811
3100
|
*
|
|
3101
|
+
* @summary Create a Change Set
|
|
2812
3102
|
* @param {ChangeSetsApiCreateChangeSetRequest} requestParameters Request parameters.
|
|
2813
3103
|
* @param {*} [options] Override http request option.
|
|
2814
3104
|
* @throws {RequiredError}
|
|
@@ -2817,6 +3107,7 @@ export declare class ChangeSetsApi extends BaseAPI implements ChangeSetsApiInter
|
|
|
2817
3107
|
createChangeSet(requestParameters: ChangeSetsApiCreateChangeSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateChangeSetV1Response, any>>;
|
|
2818
3108
|
/**
|
|
2819
3109
|
*
|
|
3110
|
+
* @summary Merge Change Set without approval
|
|
2820
3111
|
* @param {ChangeSetsApiForceApplyRequest} requestParameters Request parameters.
|
|
2821
3112
|
* @param {*} [options] Override http request option.
|
|
2822
3113
|
* @throws {RequiredError}
|
|
@@ -2825,6 +3116,7 @@ export declare class ChangeSetsApi extends BaseAPI implements ChangeSetsApiInter
|
|
|
2825
3116
|
forceApply(requestParameters: ChangeSetsApiForceApplyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ForceApplyChangeSetV1Response, any>>;
|
|
2826
3117
|
/**
|
|
2827
3118
|
*
|
|
3119
|
+
* @summary Get a Change Set by Change Set Id
|
|
2828
3120
|
* @param {ChangeSetsApiGetChangeSetRequest} requestParameters Request parameters.
|
|
2829
3121
|
* @param {*} [options] Override http request option.
|
|
2830
3122
|
* @throws {RequiredError}
|
|
@@ -2833,6 +3125,7 @@ export declare class ChangeSetsApi extends BaseAPI implements ChangeSetsApiInter
|
|
|
2833
3125
|
getChangeSet(requestParameters: ChangeSetsApiGetChangeSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetChangeSetV1Response, any>>;
|
|
2834
3126
|
/**
|
|
2835
3127
|
*
|
|
3128
|
+
* @summary List all active Change Sets
|
|
2836
3129
|
* @param {ChangeSetsApiListChangeSetsRequest} requestParameters Request parameters.
|
|
2837
3130
|
* @param {*} [options] Override http request option.
|
|
2838
3131
|
* @throws {RequiredError}
|
|
@@ -2841,6 +3134,7 @@ export declare class ChangeSetsApi extends BaseAPI implements ChangeSetsApiInter
|
|
|
2841
3134
|
listChangeSets(requestParameters: ChangeSetsApiListChangeSetsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListChangeSetV1Response, any>>;
|
|
2842
3135
|
/**
|
|
2843
3136
|
*
|
|
3137
|
+
* @summary Get Change Set post merge status
|
|
2844
3138
|
* @param {ChangeSetsApiMergeStatusRequest} requestParameters Request parameters.
|
|
2845
3139
|
* @param {*} [options] Override http request option.
|
|
2846
3140
|
* @throws {RequiredError}
|
|
@@ -2849,6 +3143,7 @@ export declare class ChangeSetsApi extends BaseAPI implements ChangeSetsApiInter
|
|
|
2849
3143
|
mergeStatus(requestParameters: ChangeSetsApiMergeStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MergeStatusV1Response, any>>;
|
|
2850
3144
|
/**
|
|
2851
3145
|
*
|
|
3146
|
+
* @summary Abandon all active Change Sets
|
|
2852
3147
|
* @param {ChangeSetsApiPurgeOpenRequest} requestParameters Request parameters.
|
|
2853
3148
|
* @param {*} [options] Override http request option.
|
|
2854
3149
|
* @throws {RequiredError}
|
|
@@ -2857,6 +3152,7 @@ export declare class ChangeSetsApi extends BaseAPI implements ChangeSetsApiInter
|
|
|
2857
3152
|
purgeOpen(requestParameters: ChangeSetsApiPurgeOpenRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PurgeOpenChangeSetsV1Response, any>>;
|
|
2858
3153
|
/**
|
|
2859
3154
|
*
|
|
3155
|
+
* @summary Request Change Set merge approval
|
|
2860
3156
|
* @param {ChangeSetsApiRequestApprovalRequest} requestParameters Request parameters.
|
|
2861
3157
|
* @param {*} [options] Override http request option.
|
|
2862
3158
|
* @throws {RequiredError}
|
|
@@ -2871,8 +3167,9 @@ export declare class ChangeSetsApi extends BaseAPI implements ChangeSetsApiInter
|
|
|
2871
3167
|
export declare const ComponentsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2872
3168
|
/**
|
|
2873
3169
|
*
|
|
3170
|
+
* @summary Queue action for a component
|
|
2874
3171
|
* @param {string} workspaceId Workspace identifier
|
|
2875
|
-
* @param {string} changeSetId Change
|
|
3172
|
+
* @param {string} changeSetId Change Set identifier
|
|
2876
3173
|
* @param {string} componentId Component identifier
|
|
2877
3174
|
* @param {AddActionV1Request} addActionV1Request
|
|
2878
3175
|
* @param {*} [options] Override http request option.
|
|
@@ -2881,8 +3178,9 @@ export declare const ComponentsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
2881
3178
|
addAction: (workspaceId: string, changeSetId: string, componentId: string, addActionV1Request: AddActionV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2882
3179
|
/**
|
|
2883
3180
|
*
|
|
3181
|
+
* @summary Create a component
|
|
2884
3182
|
* @param {string} workspaceId Workspace identifier
|
|
2885
|
-
* @param {string} changeSetId Change
|
|
3183
|
+
* @param {string} changeSetId Change Set identifier
|
|
2886
3184
|
* @param {CreateComponentV1Request} createComponentV1Request
|
|
2887
3185
|
* @param {*} [options] Override http request option.
|
|
2888
3186
|
* @throws {RequiredError}
|
|
@@ -2890,8 +3188,9 @@ export declare const ComponentsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
2890
3188
|
createComponent: (workspaceId: string, changeSetId: string, createComponentV1Request: CreateComponentV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2891
3189
|
/**
|
|
2892
3190
|
*
|
|
3191
|
+
* @summary Delete a component
|
|
2893
3192
|
* @param {string} workspaceId Workspace identifier
|
|
2894
|
-
* @param {string} changeSetId Change
|
|
3193
|
+
* @param {string} changeSetId Change Set identifier
|
|
2895
3194
|
* @param {string} componentId Component identifier
|
|
2896
3195
|
* @param {*} [options] Override http request option.
|
|
2897
3196
|
* @throws {RequiredError}
|
|
@@ -2899,8 +3198,9 @@ export declare const ComponentsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
2899
3198
|
deleteComponent: (workspaceId: string, changeSetId: string, componentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2900
3199
|
/**
|
|
2901
3200
|
*
|
|
3201
|
+
* @summary Execute a component\'s management function
|
|
2902
3202
|
* @param {string} workspaceId Workspace identifier
|
|
2903
|
-
* @param {string} changeSetId Change
|
|
3203
|
+
* @param {string} changeSetId Change Set identifier
|
|
2904
3204
|
* @param {string} componentId Component identifier
|
|
2905
3205
|
* @param {ExecuteManagementFunctionV1Request} executeManagementFunctionV1Request
|
|
2906
3206
|
* @param {*} [options] Override http request option.
|
|
@@ -2909,8 +3209,9 @@ export declare const ComponentsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
2909
3209
|
executeManagementFunction: (workspaceId: string, changeSetId: string, componentId: string, executeManagementFunctionV1Request: ExecuteManagementFunctionV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2910
3210
|
/**
|
|
2911
3211
|
*
|
|
3212
|
+
* @summary Find a component by name or component Id
|
|
2912
3213
|
* @param {string} workspaceId Workspace identifier
|
|
2913
|
-
* @param {string} changeSetId Change
|
|
3214
|
+
* @param {string} changeSetId Change Set identifier
|
|
2914
3215
|
* @param {string | null} [component]
|
|
2915
3216
|
* @param {string | null} [componentId]
|
|
2916
3217
|
* @param {*} [options] Override http request option.
|
|
@@ -2919,8 +3220,9 @@ export declare const ComponentsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
2919
3220
|
findComponent: (workspaceId: string, changeSetId: string, component?: string | null, componentId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2920
3221
|
/**
|
|
2921
3222
|
*
|
|
3223
|
+
* @summary Get a component by component Id
|
|
2922
3224
|
* @param {string} workspaceId Workspace identifier
|
|
2923
|
-
* @param {string} changeSetId Change
|
|
3225
|
+
* @param {string} changeSetId Change Set identifier
|
|
2924
3226
|
* @param {string} componentId Component identifier
|
|
2925
3227
|
* @param {*} [options] Override http request option.
|
|
2926
3228
|
* @throws {RequiredError}
|
|
@@ -2928,8 +3230,9 @@ export declare const ComponentsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
2928
3230
|
getComponent: (workspaceId: string, changeSetId: string, componentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2929
3231
|
/**
|
|
2930
3232
|
*
|
|
3233
|
+
* @summary List all components
|
|
2931
3234
|
* @param {string} workspaceId Workspace identifier
|
|
2932
|
-
* @param {string} changeSetId Change
|
|
3235
|
+
* @param {string} changeSetId Change Set identifier
|
|
2933
3236
|
* @param {string} [limit] Maximum number of results to return (default: 50, max: 300)
|
|
2934
3237
|
* @param {string} [cursor] Cursor for pagination (ComponentId of the last item from previous page)
|
|
2935
3238
|
* @param {*} [options] Override http request option.
|
|
@@ -2938,8 +3241,30 @@ export declare const ComponentsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
2938
3241
|
listComponents: (workspaceId: string, changeSetId: string, limit?: string, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2939
3242
|
/**
|
|
2940
3243
|
*
|
|
3244
|
+
* @summary Putting a component under the management of another component
|
|
3245
|
+
* @param {string} workspaceId Workspace identifier
|
|
3246
|
+
* @param {string} changeSetId Change Set identifier
|
|
3247
|
+
* @param {string} componentId Component identifier
|
|
3248
|
+
* @param {ManageComponentV1Request} manageComponentV1Request
|
|
3249
|
+
* @param {*} [options] Override http request option.
|
|
3250
|
+
* @throws {RequiredError}
|
|
3251
|
+
*/
|
|
3252
|
+
manageComponent: (workspaceId: string, changeSetId: string, componentId: string, manageComponentV1Request: ManageComponentV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3253
|
+
/**
|
|
3254
|
+
*
|
|
3255
|
+
* @summary Complex search for components
|
|
2941
3256
|
* @param {string} workspaceId Workspace identifier
|
|
2942
|
-
* @param {string} changeSetId Change
|
|
3257
|
+
* @param {string} changeSetId Change Set identifier
|
|
3258
|
+
* @param {SearchComponentsV1Request} searchComponentsV1Request
|
|
3259
|
+
* @param {*} [options] Override http request option.
|
|
3260
|
+
* @throws {RequiredError}
|
|
3261
|
+
*/
|
|
3262
|
+
searchComponents: (workspaceId: string, changeSetId: string, searchComponentsV1Request: SearchComponentsV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3263
|
+
/**
|
|
3264
|
+
*
|
|
3265
|
+
* @summary Update a component
|
|
3266
|
+
* @param {string} workspaceId Workspace identifier
|
|
3267
|
+
* @param {string} changeSetId Change Set identifier
|
|
2943
3268
|
* @param {string} componentId Component identifier
|
|
2944
3269
|
* @param {UpdateComponentV1Request} updateComponentV1Request
|
|
2945
3270
|
* @param {*} [options] Override http request option.
|
|
@@ -2954,8 +3279,9 @@ export declare const ComponentsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
2954
3279
|
export declare const ComponentsApiFp: (configuration?: Configuration) => {
|
|
2955
3280
|
/**
|
|
2956
3281
|
*
|
|
3282
|
+
* @summary Queue action for a component
|
|
2957
3283
|
* @param {string} workspaceId Workspace identifier
|
|
2958
|
-
* @param {string} changeSetId Change
|
|
3284
|
+
* @param {string} changeSetId Change Set identifier
|
|
2959
3285
|
* @param {string} componentId Component identifier
|
|
2960
3286
|
* @param {AddActionV1Request} addActionV1Request
|
|
2961
3287
|
* @param {*} [options] Override http request option.
|
|
@@ -2964,8 +3290,9 @@ export declare const ComponentsApiFp: (configuration?: Configuration) => {
|
|
|
2964
3290
|
addAction(workspaceId: string, changeSetId: string, componentId: string, addActionV1Request: AddActionV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddActionV1Response>>;
|
|
2965
3291
|
/**
|
|
2966
3292
|
*
|
|
3293
|
+
* @summary Create a component
|
|
2967
3294
|
* @param {string} workspaceId Workspace identifier
|
|
2968
|
-
* @param {string} changeSetId Change
|
|
3295
|
+
* @param {string} changeSetId Change Set identifier
|
|
2969
3296
|
* @param {CreateComponentV1Request} createComponentV1Request
|
|
2970
3297
|
* @param {*} [options] Override http request option.
|
|
2971
3298
|
* @throws {RequiredError}
|
|
@@ -2973,8 +3300,9 @@ export declare const ComponentsApiFp: (configuration?: Configuration) => {
|
|
|
2973
3300
|
createComponent(workspaceId: string, changeSetId: string, createComponentV1Request: CreateComponentV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateComponentV1Response>>;
|
|
2974
3301
|
/**
|
|
2975
3302
|
*
|
|
3303
|
+
* @summary Delete a component
|
|
2976
3304
|
* @param {string} workspaceId Workspace identifier
|
|
2977
|
-
* @param {string} changeSetId Change
|
|
3305
|
+
* @param {string} changeSetId Change Set identifier
|
|
2978
3306
|
* @param {string} componentId Component identifier
|
|
2979
3307
|
* @param {*} [options] Override http request option.
|
|
2980
3308
|
* @throws {RequiredError}
|
|
@@ -2982,8 +3310,9 @@ export declare const ComponentsApiFp: (configuration?: Configuration) => {
|
|
|
2982
3310
|
deleteComponent(workspaceId: string, changeSetId: string, componentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteComponentV1Response>>;
|
|
2983
3311
|
/**
|
|
2984
3312
|
*
|
|
3313
|
+
* @summary Execute a component\'s management function
|
|
2985
3314
|
* @param {string} workspaceId Workspace identifier
|
|
2986
|
-
* @param {string} changeSetId Change
|
|
3315
|
+
* @param {string} changeSetId Change Set identifier
|
|
2987
3316
|
* @param {string} componentId Component identifier
|
|
2988
3317
|
* @param {ExecuteManagementFunctionV1Request} executeManagementFunctionV1Request
|
|
2989
3318
|
* @param {*} [options] Override http request option.
|
|
@@ -2992,8 +3321,9 @@ export declare const ComponentsApiFp: (configuration?: Configuration) => {
|
|
|
2992
3321
|
executeManagementFunction(workspaceId: string, changeSetId: string, componentId: string, executeManagementFunctionV1Request: ExecuteManagementFunctionV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteManagementFunctionV1Response>>;
|
|
2993
3322
|
/**
|
|
2994
3323
|
*
|
|
3324
|
+
* @summary Find a component by name or component Id
|
|
2995
3325
|
* @param {string} workspaceId Workspace identifier
|
|
2996
|
-
* @param {string} changeSetId Change
|
|
3326
|
+
* @param {string} changeSetId Change Set identifier
|
|
2997
3327
|
* @param {string | null} [component]
|
|
2998
3328
|
* @param {string | null} [componentId]
|
|
2999
3329
|
* @param {*} [options] Override http request option.
|
|
@@ -3002,8 +3332,9 @@ export declare const ComponentsApiFp: (configuration?: Configuration) => {
|
|
|
3002
3332
|
findComponent(workspaceId: string, changeSetId: string, component?: string | null, componentId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetComponentV1Response>>;
|
|
3003
3333
|
/**
|
|
3004
3334
|
*
|
|
3335
|
+
* @summary Get a component by component Id
|
|
3005
3336
|
* @param {string} workspaceId Workspace identifier
|
|
3006
|
-
* @param {string} changeSetId Change
|
|
3337
|
+
* @param {string} changeSetId Change Set identifier
|
|
3007
3338
|
* @param {string} componentId Component identifier
|
|
3008
3339
|
* @param {*} [options] Override http request option.
|
|
3009
3340
|
* @throws {RequiredError}
|
|
@@ -3011,8 +3342,9 @@ export declare const ComponentsApiFp: (configuration?: Configuration) => {
|
|
|
3011
3342
|
getComponent(workspaceId: string, changeSetId: string, componentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetComponentV1Response>>;
|
|
3012
3343
|
/**
|
|
3013
3344
|
*
|
|
3345
|
+
* @summary List all components
|
|
3014
3346
|
* @param {string} workspaceId Workspace identifier
|
|
3015
|
-
* @param {string} changeSetId Change
|
|
3347
|
+
* @param {string} changeSetId Change Set identifier
|
|
3016
3348
|
* @param {string} [limit] Maximum number of results to return (default: 50, max: 300)
|
|
3017
3349
|
* @param {string} [cursor] Cursor for pagination (ComponentId of the last item from previous page)
|
|
3018
3350
|
* @param {*} [options] Override http request option.
|
|
@@ -3021,8 +3353,30 @@ export declare const ComponentsApiFp: (configuration?: Configuration) => {
|
|
|
3021
3353
|
listComponents(workspaceId: string, changeSetId: string, limit?: string, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListComponentsV1Response>>;
|
|
3022
3354
|
/**
|
|
3023
3355
|
*
|
|
3356
|
+
* @summary Putting a component under the management of another component
|
|
3357
|
+
* @param {string} workspaceId Workspace identifier
|
|
3358
|
+
* @param {string} changeSetId Change Set identifier
|
|
3359
|
+
* @param {string} componentId Component identifier
|
|
3360
|
+
* @param {ManageComponentV1Request} manageComponentV1Request
|
|
3361
|
+
* @param {*} [options] Override http request option.
|
|
3362
|
+
* @throws {RequiredError}
|
|
3363
|
+
*/
|
|
3364
|
+
manageComponent(workspaceId: string, changeSetId: string, componentId: string, manageComponentV1Request: ManageComponentV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManageComponentV1Response>>;
|
|
3365
|
+
/**
|
|
3366
|
+
*
|
|
3367
|
+
* @summary Complex search for components
|
|
3368
|
+
* @param {string} workspaceId Workspace identifier
|
|
3369
|
+
* @param {string} changeSetId Change Set identifier
|
|
3370
|
+
* @param {SearchComponentsV1Request} searchComponentsV1Request
|
|
3371
|
+
* @param {*} [options] Override http request option.
|
|
3372
|
+
* @throws {RequiredError}
|
|
3373
|
+
*/
|
|
3374
|
+
searchComponents(workspaceId: string, changeSetId: string, searchComponentsV1Request: SearchComponentsV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchComponentsV1Response>>;
|
|
3375
|
+
/**
|
|
3376
|
+
*
|
|
3377
|
+
* @summary Update a component
|
|
3024
3378
|
* @param {string} workspaceId Workspace identifier
|
|
3025
|
-
* @param {string} changeSetId Change
|
|
3379
|
+
* @param {string} changeSetId Change Set identifier
|
|
3026
3380
|
* @param {string} componentId Component identifier
|
|
3027
3381
|
* @param {UpdateComponentV1Request} updateComponentV1Request
|
|
3028
3382
|
* @param {*} [options] Override http request option.
|
|
@@ -3037,6 +3391,7 @@ export declare const ComponentsApiFp: (configuration?: Configuration) => {
|
|
|
3037
3391
|
export declare const ComponentsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3038
3392
|
/**
|
|
3039
3393
|
*
|
|
3394
|
+
* @summary Queue action for a component
|
|
3040
3395
|
* @param {ComponentsApiAddActionRequest} requestParameters Request parameters.
|
|
3041
3396
|
* @param {*} [options] Override http request option.
|
|
3042
3397
|
* @throws {RequiredError}
|
|
@@ -3044,6 +3399,7 @@ export declare const ComponentsApiFactory: (configuration?: Configuration, baseP
|
|
|
3044
3399
|
addAction(requestParameters: ComponentsApiAddActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<AddActionV1Response>;
|
|
3045
3400
|
/**
|
|
3046
3401
|
*
|
|
3402
|
+
* @summary Create a component
|
|
3047
3403
|
* @param {ComponentsApiCreateComponentRequest} requestParameters Request parameters.
|
|
3048
3404
|
* @param {*} [options] Override http request option.
|
|
3049
3405
|
* @throws {RequiredError}
|
|
@@ -3051,6 +3407,7 @@ export declare const ComponentsApiFactory: (configuration?: Configuration, baseP
|
|
|
3051
3407
|
createComponent(requestParameters: ComponentsApiCreateComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateComponentV1Response>;
|
|
3052
3408
|
/**
|
|
3053
3409
|
*
|
|
3410
|
+
* @summary Delete a component
|
|
3054
3411
|
* @param {ComponentsApiDeleteComponentRequest} requestParameters Request parameters.
|
|
3055
3412
|
* @param {*} [options] Override http request option.
|
|
3056
3413
|
* @throws {RequiredError}
|
|
@@ -3058,6 +3415,7 @@ export declare const ComponentsApiFactory: (configuration?: Configuration, baseP
|
|
|
3058
3415
|
deleteComponent(requestParameters: ComponentsApiDeleteComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<DeleteComponentV1Response>;
|
|
3059
3416
|
/**
|
|
3060
3417
|
*
|
|
3418
|
+
* @summary Execute a component\'s management function
|
|
3061
3419
|
* @param {ComponentsApiExecuteManagementFunctionRequest} requestParameters Request parameters.
|
|
3062
3420
|
* @param {*} [options] Override http request option.
|
|
3063
3421
|
* @throws {RequiredError}
|
|
@@ -3065,6 +3423,7 @@ export declare const ComponentsApiFactory: (configuration?: Configuration, baseP
|
|
|
3065
3423
|
executeManagementFunction(requestParameters: ComponentsApiExecuteManagementFunctionRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteManagementFunctionV1Response>;
|
|
3066
3424
|
/**
|
|
3067
3425
|
*
|
|
3426
|
+
* @summary Find a component by name or component Id
|
|
3068
3427
|
* @param {ComponentsApiFindComponentRequest} requestParameters Request parameters.
|
|
3069
3428
|
* @param {*} [options] Override http request option.
|
|
3070
3429
|
* @throws {RequiredError}
|
|
@@ -3072,6 +3431,7 @@ export declare const ComponentsApiFactory: (configuration?: Configuration, baseP
|
|
|
3072
3431
|
findComponent(requestParameters: ComponentsApiFindComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetComponentV1Response>;
|
|
3073
3432
|
/**
|
|
3074
3433
|
*
|
|
3434
|
+
* @summary Get a component by component Id
|
|
3075
3435
|
* @param {ComponentsApiGetComponentRequest} requestParameters Request parameters.
|
|
3076
3436
|
* @param {*} [options] Override http request option.
|
|
3077
3437
|
* @throws {RequiredError}
|
|
@@ -3079,6 +3439,7 @@ export declare const ComponentsApiFactory: (configuration?: Configuration, baseP
|
|
|
3079
3439
|
getComponent(requestParameters: ComponentsApiGetComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetComponentV1Response>;
|
|
3080
3440
|
/**
|
|
3081
3441
|
*
|
|
3442
|
+
* @summary List all components
|
|
3082
3443
|
* @param {ComponentsApiListComponentsRequest} requestParameters Request parameters.
|
|
3083
3444
|
* @param {*} [options] Override http request option.
|
|
3084
3445
|
* @throws {RequiredError}
|
|
@@ -3086,6 +3447,23 @@ export declare const ComponentsApiFactory: (configuration?: Configuration, baseP
|
|
|
3086
3447
|
listComponents(requestParameters: ComponentsApiListComponentsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListComponentsV1Response>;
|
|
3087
3448
|
/**
|
|
3088
3449
|
*
|
|
3450
|
+
* @summary Putting a component under the management of another component
|
|
3451
|
+
* @param {ComponentsApiManageComponentRequest} requestParameters Request parameters.
|
|
3452
|
+
* @param {*} [options] Override http request option.
|
|
3453
|
+
* @throws {RequiredError}
|
|
3454
|
+
*/
|
|
3455
|
+
manageComponent(requestParameters: ComponentsApiManageComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<ManageComponentV1Response>;
|
|
3456
|
+
/**
|
|
3457
|
+
*
|
|
3458
|
+
* @summary Complex search for components
|
|
3459
|
+
* @param {ComponentsApiSearchComponentsRequest} requestParameters Request parameters.
|
|
3460
|
+
* @param {*} [options] Override http request option.
|
|
3461
|
+
* @throws {RequiredError}
|
|
3462
|
+
*/
|
|
3463
|
+
searchComponents(requestParameters: ComponentsApiSearchComponentsRequest, options?: RawAxiosRequestConfig): AxiosPromise<SearchComponentsV1Response>;
|
|
3464
|
+
/**
|
|
3465
|
+
*
|
|
3466
|
+
* @summary Update a component
|
|
3089
3467
|
* @param {ComponentsApiUpdateComponentRequest} requestParameters Request parameters.
|
|
3090
3468
|
* @param {*} [options] Override http request option.
|
|
3091
3469
|
* @throws {RequiredError}
|
|
@@ -3100,6 +3478,7 @@ export declare const ComponentsApiFactory: (configuration?: Configuration, baseP
|
|
|
3100
3478
|
export interface ComponentsApiInterface {
|
|
3101
3479
|
/**
|
|
3102
3480
|
*
|
|
3481
|
+
* @summary Queue action for a component
|
|
3103
3482
|
* @param {ComponentsApiAddActionRequest} requestParameters Request parameters.
|
|
3104
3483
|
* @param {*} [options] Override http request option.
|
|
3105
3484
|
* @throws {RequiredError}
|
|
@@ -3108,6 +3487,7 @@ export interface ComponentsApiInterface {
|
|
|
3108
3487
|
addAction(requestParameters: ComponentsApiAddActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<AddActionV1Response>;
|
|
3109
3488
|
/**
|
|
3110
3489
|
*
|
|
3490
|
+
* @summary Create a component
|
|
3111
3491
|
* @param {ComponentsApiCreateComponentRequest} requestParameters Request parameters.
|
|
3112
3492
|
* @param {*} [options] Override http request option.
|
|
3113
3493
|
* @throws {RequiredError}
|
|
@@ -3116,6 +3496,7 @@ export interface ComponentsApiInterface {
|
|
|
3116
3496
|
createComponent(requestParameters: ComponentsApiCreateComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateComponentV1Response>;
|
|
3117
3497
|
/**
|
|
3118
3498
|
*
|
|
3499
|
+
* @summary Delete a component
|
|
3119
3500
|
* @param {ComponentsApiDeleteComponentRequest} requestParameters Request parameters.
|
|
3120
3501
|
* @param {*} [options] Override http request option.
|
|
3121
3502
|
* @throws {RequiredError}
|
|
@@ -3124,6 +3505,7 @@ export interface ComponentsApiInterface {
|
|
|
3124
3505
|
deleteComponent(requestParameters: ComponentsApiDeleteComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<DeleteComponentV1Response>;
|
|
3125
3506
|
/**
|
|
3126
3507
|
*
|
|
3508
|
+
* @summary Execute a component\'s management function
|
|
3127
3509
|
* @param {ComponentsApiExecuteManagementFunctionRequest} requestParameters Request parameters.
|
|
3128
3510
|
* @param {*} [options] Override http request option.
|
|
3129
3511
|
* @throws {RequiredError}
|
|
@@ -3132,6 +3514,7 @@ export interface ComponentsApiInterface {
|
|
|
3132
3514
|
executeManagementFunction(requestParameters: ComponentsApiExecuteManagementFunctionRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteManagementFunctionV1Response>;
|
|
3133
3515
|
/**
|
|
3134
3516
|
*
|
|
3517
|
+
* @summary Find a component by name or component Id
|
|
3135
3518
|
* @param {ComponentsApiFindComponentRequest} requestParameters Request parameters.
|
|
3136
3519
|
* @param {*} [options] Override http request option.
|
|
3137
3520
|
* @throws {RequiredError}
|
|
@@ -3140,6 +3523,7 @@ export interface ComponentsApiInterface {
|
|
|
3140
3523
|
findComponent(requestParameters: ComponentsApiFindComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetComponentV1Response>;
|
|
3141
3524
|
/**
|
|
3142
3525
|
*
|
|
3526
|
+
* @summary Get a component by component Id
|
|
3143
3527
|
* @param {ComponentsApiGetComponentRequest} requestParameters Request parameters.
|
|
3144
3528
|
* @param {*} [options] Override http request option.
|
|
3145
3529
|
* @throws {RequiredError}
|
|
@@ -3148,6 +3532,7 @@ export interface ComponentsApiInterface {
|
|
|
3148
3532
|
getComponent(requestParameters: ComponentsApiGetComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetComponentV1Response>;
|
|
3149
3533
|
/**
|
|
3150
3534
|
*
|
|
3535
|
+
* @summary List all components
|
|
3151
3536
|
* @param {ComponentsApiListComponentsRequest} requestParameters Request parameters.
|
|
3152
3537
|
* @param {*} [options] Override http request option.
|
|
3153
3538
|
* @throws {RequiredError}
|
|
@@ -3156,6 +3541,25 @@ export interface ComponentsApiInterface {
|
|
|
3156
3541
|
listComponents(requestParameters: ComponentsApiListComponentsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListComponentsV1Response>;
|
|
3157
3542
|
/**
|
|
3158
3543
|
*
|
|
3544
|
+
* @summary Putting a component under the management of another component
|
|
3545
|
+
* @param {ComponentsApiManageComponentRequest} requestParameters Request parameters.
|
|
3546
|
+
* @param {*} [options] Override http request option.
|
|
3547
|
+
* @throws {RequiredError}
|
|
3548
|
+
* @memberof ComponentsApiInterface
|
|
3549
|
+
*/
|
|
3550
|
+
manageComponent(requestParameters: ComponentsApiManageComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<ManageComponentV1Response>;
|
|
3551
|
+
/**
|
|
3552
|
+
*
|
|
3553
|
+
* @summary Complex search for components
|
|
3554
|
+
* @param {ComponentsApiSearchComponentsRequest} requestParameters Request parameters.
|
|
3555
|
+
* @param {*} [options] Override http request option.
|
|
3556
|
+
* @throws {RequiredError}
|
|
3557
|
+
* @memberof ComponentsApiInterface
|
|
3558
|
+
*/
|
|
3559
|
+
searchComponents(requestParameters: ComponentsApiSearchComponentsRequest, options?: RawAxiosRequestConfig): AxiosPromise<SearchComponentsV1Response>;
|
|
3560
|
+
/**
|
|
3561
|
+
*
|
|
3562
|
+
* @summary Update a component
|
|
3159
3563
|
* @param {ComponentsApiUpdateComponentRequest} requestParameters Request parameters.
|
|
3160
3564
|
* @param {*} [options] Override http request option.
|
|
3161
3565
|
* @throws {RequiredError}
|
|
@@ -3176,7 +3580,7 @@ export interface ComponentsApiAddActionRequest {
|
|
|
3176
3580
|
*/
|
|
3177
3581
|
readonly workspaceId: string;
|
|
3178
3582
|
/**
|
|
3179
|
-
* Change
|
|
3583
|
+
* Change Set identifier
|
|
3180
3584
|
* @type {string}
|
|
3181
3585
|
* @memberof ComponentsApiAddAction
|
|
3182
3586
|
*/
|
|
@@ -3207,7 +3611,7 @@ export interface ComponentsApiCreateComponentRequest {
|
|
|
3207
3611
|
*/
|
|
3208
3612
|
readonly workspaceId: string;
|
|
3209
3613
|
/**
|
|
3210
|
-
* Change
|
|
3614
|
+
* Change Set identifier
|
|
3211
3615
|
* @type {string}
|
|
3212
3616
|
* @memberof ComponentsApiCreateComponent
|
|
3213
3617
|
*/
|
|
@@ -3232,7 +3636,7 @@ export interface ComponentsApiDeleteComponentRequest {
|
|
|
3232
3636
|
*/
|
|
3233
3637
|
readonly workspaceId: string;
|
|
3234
3638
|
/**
|
|
3235
|
-
* Change
|
|
3639
|
+
* Change Set identifier
|
|
3236
3640
|
* @type {string}
|
|
3237
3641
|
* @memberof ComponentsApiDeleteComponent
|
|
3238
3642
|
*/
|
|
@@ -3257,7 +3661,7 @@ export interface ComponentsApiExecuteManagementFunctionRequest {
|
|
|
3257
3661
|
*/
|
|
3258
3662
|
readonly workspaceId: string;
|
|
3259
3663
|
/**
|
|
3260
|
-
* Change
|
|
3664
|
+
* Change Set identifier
|
|
3261
3665
|
* @type {string}
|
|
3262
3666
|
* @memberof ComponentsApiExecuteManagementFunction
|
|
3263
3667
|
*/
|
|
@@ -3288,7 +3692,7 @@ export interface ComponentsApiFindComponentRequest {
|
|
|
3288
3692
|
*/
|
|
3289
3693
|
readonly workspaceId: string;
|
|
3290
3694
|
/**
|
|
3291
|
-
* Change
|
|
3695
|
+
* Change Set identifier
|
|
3292
3696
|
* @type {string}
|
|
3293
3697
|
* @memberof ComponentsApiFindComponent
|
|
3294
3698
|
*/
|
|
@@ -3319,7 +3723,7 @@ export interface ComponentsApiGetComponentRequest {
|
|
|
3319
3723
|
*/
|
|
3320
3724
|
readonly workspaceId: string;
|
|
3321
3725
|
/**
|
|
3322
|
-
* Change
|
|
3726
|
+
* Change Set identifier
|
|
3323
3727
|
* @type {string}
|
|
3324
3728
|
* @memberof ComponentsApiGetComponent
|
|
3325
3729
|
*/
|
|
@@ -3344,7 +3748,7 @@ export interface ComponentsApiListComponentsRequest {
|
|
|
3344
3748
|
*/
|
|
3345
3749
|
readonly workspaceId: string;
|
|
3346
3750
|
/**
|
|
3347
|
-
* Change
|
|
3751
|
+
* Change Set identifier
|
|
3348
3752
|
* @type {string}
|
|
3349
3753
|
* @memberof ComponentsApiListComponents
|
|
3350
3754
|
*/
|
|
@@ -3362,6 +3766,62 @@ export interface ComponentsApiListComponentsRequest {
|
|
|
3362
3766
|
*/
|
|
3363
3767
|
readonly cursor?: string;
|
|
3364
3768
|
}
|
|
3769
|
+
/**
|
|
3770
|
+
* Request parameters for manageComponent operation in ComponentsApi.
|
|
3771
|
+
* @export
|
|
3772
|
+
* @interface ComponentsApiManageComponentRequest
|
|
3773
|
+
*/
|
|
3774
|
+
export interface ComponentsApiManageComponentRequest {
|
|
3775
|
+
/**
|
|
3776
|
+
* Workspace identifier
|
|
3777
|
+
* @type {string}
|
|
3778
|
+
* @memberof ComponentsApiManageComponent
|
|
3779
|
+
*/
|
|
3780
|
+
readonly workspaceId: string;
|
|
3781
|
+
/**
|
|
3782
|
+
* Change Set identifier
|
|
3783
|
+
* @type {string}
|
|
3784
|
+
* @memberof ComponentsApiManageComponent
|
|
3785
|
+
*/
|
|
3786
|
+
readonly changeSetId: string;
|
|
3787
|
+
/**
|
|
3788
|
+
* Component identifier
|
|
3789
|
+
* @type {string}
|
|
3790
|
+
* @memberof ComponentsApiManageComponent
|
|
3791
|
+
*/
|
|
3792
|
+
readonly componentId: string;
|
|
3793
|
+
/**
|
|
3794
|
+
*
|
|
3795
|
+
* @type {ManageComponentV1Request}
|
|
3796
|
+
* @memberof ComponentsApiManageComponent
|
|
3797
|
+
*/
|
|
3798
|
+
readonly manageComponentV1Request: ManageComponentV1Request;
|
|
3799
|
+
}
|
|
3800
|
+
/**
|
|
3801
|
+
* Request parameters for searchComponents operation in ComponentsApi.
|
|
3802
|
+
* @export
|
|
3803
|
+
* @interface ComponentsApiSearchComponentsRequest
|
|
3804
|
+
*/
|
|
3805
|
+
export interface ComponentsApiSearchComponentsRequest {
|
|
3806
|
+
/**
|
|
3807
|
+
* Workspace identifier
|
|
3808
|
+
* @type {string}
|
|
3809
|
+
* @memberof ComponentsApiSearchComponents
|
|
3810
|
+
*/
|
|
3811
|
+
readonly workspaceId: string;
|
|
3812
|
+
/**
|
|
3813
|
+
* Change Set identifier
|
|
3814
|
+
* @type {string}
|
|
3815
|
+
* @memberof ComponentsApiSearchComponents
|
|
3816
|
+
*/
|
|
3817
|
+
readonly changeSetId: string;
|
|
3818
|
+
/**
|
|
3819
|
+
*
|
|
3820
|
+
* @type {SearchComponentsV1Request}
|
|
3821
|
+
* @memberof ComponentsApiSearchComponents
|
|
3822
|
+
*/
|
|
3823
|
+
readonly searchComponentsV1Request: SearchComponentsV1Request;
|
|
3824
|
+
}
|
|
3365
3825
|
/**
|
|
3366
3826
|
* Request parameters for updateComponent operation in ComponentsApi.
|
|
3367
3827
|
* @export
|
|
@@ -3375,7 +3835,7 @@ export interface ComponentsApiUpdateComponentRequest {
|
|
|
3375
3835
|
*/
|
|
3376
3836
|
readonly workspaceId: string;
|
|
3377
3837
|
/**
|
|
3378
|
-
* Change
|
|
3838
|
+
* Change Set identifier
|
|
3379
3839
|
* @type {string}
|
|
3380
3840
|
* @memberof ComponentsApiUpdateComponent
|
|
3381
3841
|
*/
|
|
@@ -3402,6 +3862,7 @@ export interface ComponentsApiUpdateComponentRequest {
|
|
|
3402
3862
|
export declare class ComponentsApi extends BaseAPI implements ComponentsApiInterface {
|
|
3403
3863
|
/**
|
|
3404
3864
|
*
|
|
3865
|
+
* @summary Queue action for a component
|
|
3405
3866
|
* @param {ComponentsApiAddActionRequest} requestParameters Request parameters.
|
|
3406
3867
|
* @param {*} [options] Override http request option.
|
|
3407
3868
|
* @throws {RequiredError}
|
|
@@ -3410,6 +3871,7 @@ export declare class ComponentsApi extends BaseAPI implements ComponentsApiInter
|
|
|
3410
3871
|
addAction(requestParameters: ComponentsApiAddActionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddActionV1Response, any>>;
|
|
3411
3872
|
/**
|
|
3412
3873
|
*
|
|
3874
|
+
* @summary Create a component
|
|
3413
3875
|
* @param {ComponentsApiCreateComponentRequest} requestParameters Request parameters.
|
|
3414
3876
|
* @param {*} [options] Override http request option.
|
|
3415
3877
|
* @throws {RequiredError}
|
|
@@ -3418,6 +3880,7 @@ export declare class ComponentsApi extends BaseAPI implements ComponentsApiInter
|
|
|
3418
3880
|
createComponent(requestParameters: ComponentsApiCreateComponentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateComponentV1Response, any>>;
|
|
3419
3881
|
/**
|
|
3420
3882
|
*
|
|
3883
|
+
* @summary Delete a component
|
|
3421
3884
|
* @param {ComponentsApiDeleteComponentRequest} requestParameters Request parameters.
|
|
3422
3885
|
* @param {*} [options] Override http request option.
|
|
3423
3886
|
* @throws {RequiredError}
|
|
@@ -3426,6 +3889,7 @@ export declare class ComponentsApi extends BaseAPI implements ComponentsApiInter
|
|
|
3426
3889
|
deleteComponent(requestParameters: ComponentsApiDeleteComponentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteComponentV1Response, any>>;
|
|
3427
3890
|
/**
|
|
3428
3891
|
*
|
|
3892
|
+
* @summary Execute a component\'s management function
|
|
3429
3893
|
* @param {ComponentsApiExecuteManagementFunctionRequest} requestParameters Request parameters.
|
|
3430
3894
|
* @param {*} [options] Override http request option.
|
|
3431
3895
|
* @throws {RequiredError}
|
|
@@ -3434,6 +3898,7 @@ export declare class ComponentsApi extends BaseAPI implements ComponentsApiInter
|
|
|
3434
3898
|
executeManagementFunction(requestParameters: ComponentsApiExecuteManagementFunctionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ExecuteManagementFunctionV1Response, any>>;
|
|
3435
3899
|
/**
|
|
3436
3900
|
*
|
|
3901
|
+
* @summary Find a component by name or component Id
|
|
3437
3902
|
* @param {ComponentsApiFindComponentRequest} requestParameters Request parameters.
|
|
3438
3903
|
* @param {*} [options] Override http request option.
|
|
3439
3904
|
* @throws {RequiredError}
|
|
@@ -3442,6 +3907,7 @@ export declare class ComponentsApi extends BaseAPI implements ComponentsApiInter
|
|
|
3442
3907
|
findComponent(requestParameters: ComponentsApiFindComponentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetComponentV1Response, any>>;
|
|
3443
3908
|
/**
|
|
3444
3909
|
*
|
|
3910
|
+
* @summary Get a component by component Id
|
|
3445
3911
|
* @param {ComponentsApiGetComponentRequest} requestParameters Request parameters.
|
|
3446
3912
|
* @param {*} [options] Override http request option.
|
|
3447
3913
|
* @throws {RequiredError}
|
|
@@ -3450,6 +3916,7 @@ export declare class ComponentsApi extends BaseAPI implements ComponentsApiInter
|
|
|
3450
3916
|
getComponent(requestParameters: ComponentsApiGetComponentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetComponentV1Response, any>>;
|
|
3451
3917
|
/**
|
|
3452
3918
|
*
|
|
3919
|
+
* @summary List all components
|
|
3453
3920
|
* @param {ComponentsApiListComponentsRequest} requestParameters Request parameters.
|
|
3454
3921
|
* @param {*} [options] Override http request option.
|
|
3455
3922
|
* @throws {RequiredError}
|
|
@@ -3458,6 +3925,25 @@ export declare class ComponentsApi extends BaseAPI implements ComponentsApiInter
|
|
|
3458
3925
|
listComponents(requestParameters: ComponentsApiListComponentsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListComponentsV1Response, any>>;
|
|
3459
3926
|
/**
|
|
3460
3927
|
*
|
|
3928
|
+
* @summary Putting a component under the management of another component
|
|
3929
|
+
* @param {ComponentsApiManageComponentRequest} requestParameters Request parameters.
|
|
3930
|
+
* @param {*} [options] Override http request option.
|
|
3931
|
+
* @throws {RequiredError}
|
|
3932
|
+
* @memberof ComponentsApi
|
|
3933
|
+
*/
|
|
3934
|
+
manageComponent(requestParameters: ComponentsApiManageComponentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ManageComponentV1Response, any>>;
|
|
3935
|
+
/**
|
|
3936
|
+
*
|
|
3937
|
+
* @summary Complex search for components
|
|
3938
|
+
* @param {ComponentsApiSearchComponentsRequest} requestParameters Request parameters.
|
|
3939
|
+
* @param {*} [options] Override http request option.
|
|
3940
|
+
* @throws {RequiredError}
|
|
3941
|
+
* @memberof ComponentsApi
|
|
3942
|
+
*/
|
|
3943
|
+
searchComponents(requestParameters: ComponentsApiSearchComponentsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchComponentsV1Response, any>>;
|
|
3944
|
+
/**
|
|
3945
|
+
*
|
|
3946
|
+
* @summary Update a component
|
|
3461
3947
|
* @param {ComponentsApiUpdateComponentRequest} requestParameters Request parameters.
|
|
3462
3948
|
* @param {*} [options] Override http request option.
|
|
3463
3949
|
* @throws {RequiredError}
|
|
@@ -3472,8 +3958,9 @@ export declare class ComponentsApi extends BaseAPI implements ComponentsApiInter
|
|
|
3472
3958
|
export declare const FuncsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3473
3959
|
/**
|
|
3474
3960
|
*
|
|
3961
|
+
* @summary Get function details
|
|
3475
3962
|
* @param {string} workspaceId Workspace identifier
|
|
3476
|
-
* @param {string} changeSetId Change
|
|
3963
|
+
* @param {string} changeSetId Change Set identifier
|
|
3477
3964
|
* @param {string} funcId Func identifier
|
|
3478
3965
|
* @param {*} [options] Override http request option.
|
|
3479
3966
|
* @throws {RequiredError}
|
|
@@ -3481,8 +3968,9 @@ export declare const FuncsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3481
3968
|
getFunc: (workspaceId: string, changeSetId: string, funcId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3482
3969
|
/**
|
|
3483
3970
|
*
|
|
3971
|
+
* @summary Get func execution run logs
|
|
3484
3972
|
* @param {string} workspaceId Workspace identifier
|
|
3485
|
-
* @param {string} changeSetId Change
|
|
3973
|
+
* @param {string} changeSetId Change Set identifier
|
|
3486
3974
|
* @param {string} funcRunId Func run identifier
|
|
3487
3975
|
* @param {*} [options] Override http request option.
|
|
3488
3976
|
* @throws {RequiredError}
|
|
@@ -3496,8 +3984,9 @@ export declare const FuncsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3496
3984
|
export declare const FuncsApiFp: (configuration?: Configuration) => {
|
|
3497
3985
|
/**
|
|
3498
3986
|
*
|
|
3987
|
+
* @summary Get function details
|
|
3499
3988
|
* @param {string} workspaceId Workspace identifier
|
|
3500
|
-
* @param {string} changeSetId Change
|
|
3989
|
+
* @param {string} changeSetId Change Set identifier
|
|
3501
3990
|
* @param {string} funcId Func identifier
|
|
3502
3991
|
* @param {*} [options] Override http request option.
|
|
3503
3992
|
* @throws {RequiredError}
|
|
@@ -3505,8 +3994,9 @@ export declare const FuncsApiFp: (configuration?: Configuration) => {
|
|
|
3505
3994
|
getFunc(workspaceId: string, changeSetId: string, funcId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFuncV1Response>>;
|
|
3506
3995
|
/**
|
|
3507
3996
|
*
|
|
3997
|
+
* @summary Get func execution run logs
|
|
3508
3998
|
* @param {string} workspaceId Workspace identifier
|
|
3509
|
-
* @param {string} changeSetId Change
|
|
3999
|
+
* @param {string} changeSetId Change Set identifier
|
|
3510
4000
|
* @param {string} funcRunId Func run identifier
|
|
3511
4001
|
* @param {*} [options] Override http request option.
|
|
3512
4002
|
* @throws {RequiredError}
|
|
@@ -3520,6 +4010,7 @@ export declare const FuncsApiFp: (configuration?: Configuration) => {
|
|
|
3520
4010
|
export declare const FuncsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3521
4011
|
/**
|
|
3522
4012
|
*
|
|
4013
|
+
* @summary Get function details
|
|
3523
4014
|
* @param {FuncsApiGetFuncRequest} requestParameters Request parameters.
|
|
3524
4015
|
* @param {*} [options] Override http request option.
|
|
3525
4016
|
* @throws {RequiredError}
|
|
@@ -3527,6 +4018,7 @@ export declare const FuncsApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3527
4018
|
getFunc(requestParameters: FuncsApiGetFuncRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFuncV1Response>;
|
|
3528
4019
|
/**
|
|
3529
4020
|
*
|
|
4021
|
+
* @summary Get func execution run logs
|
|
3530
4022
|
* @param {FuncsApiGetFuncRunRequest} requestParameters Request parameters.
|
|
3531
4023
|
* @param {*} [options] Override http request option.
|
|
3532
4024
|
* @throws {RequiredError}
|
|
@@ -3541,6 +4033,7 @@ export declare const FuncsApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3541
4033
|
export interface FuncsApiInterface {
|
|
3542
4034
|
/**
|
|
3543
4035
|
*
|
|
4036
|
+
* @summary Get function details
|
|
3544
4037
|
* @param {FuncsApiGetFuncRequest} requestParameters Request parameters.
|
|
3545
4038
|
* @param {*} [options] Override http request option.
|
|
3546
4039
|
* @throws {RequiredError}
|
|
@@ -3549,6 +4042,7 @@ export interface FuncsApiInterface {
|
|
|
3549
4042
|
getFunc(requestParameters: FuncsApiGetFuncRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFuncV1Response>;
|
|
3550
4043
|
/**
|
|
3551
4044
|
*
|
|
4045
|
+
* @summary Get func execution run logs
|
|
3552
4046
|
* @param {FuncsApiGetFuncRunRequest} requestParameters Request parameters.
|
|
3553
4047
|
* @param {*} [options] Override http request option.
|
|
3554
4048
|
* @throws {RequiredError}
|
|
@@ -3569,7 +4063,7 @@ export interface FuncsApiGetFuncRequest {
|
|
|
3569
4063
|
*/
|
|
3570
4064
|
readonly workspaceId: string;
|
|
3571
4065
|
/**
|
|
3572
|
-
* Change
|
|
4066
|
+
* Change Set identifier
|
|
3573
4067
|
* @type {string}
|
|
3574
4068
|
* @memberof FuncsApiGetFunc
|
|
3575
4069
|
*/
|
|
@@ -3594,7 +4088,7 @@ export interface FuncsApiGetFuncRunRequest {
|
|
|
3594
4088
|
*/
|
|
3595
4089
|
readonly workspaceId: string;
|
|
3596
4090
|
/**
|
|
3597
|
-
* Change
|
|
4091
|
+
* Change Set identifier
|
|
3598
4092
|
* @type {string}
|
|
3599
4093
|
* @memberof FuncsApiGetFuncRun
|
|
3600
4094
|
*/
|
|
@@ -3615,6 +4109,7 @@ export interface FuncsApiGetFuncRunRequest {
|
|
|
3615
4109
|
export declare class FuncsApi extends BaseAPI implements FuncsApiInterface {
|
|
3616
4110
|
/**
|
|
3617
4111
|
*
|
|
4112
|
+
* @summary Get function details
|
|
3618
4113
|
* @param {FuncsApiGetFuncRequest} requestParameters Request parameters.
|
|
3619
4114
|
* @param {*} [options] Override http request option.
|
|
3620
4115
|
* @throws {RequiredError}
|
|
@@ -3623,6 +4118,7 @@ export declare class FuncsApi extends BaseAPI implements FuncsApiInterface {
|
|
|
3623
4118
|
getFunc(requestParameters: FuncsApiGetFuncRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetFuncV1Response, any>>;
|
|
3624
4119
|
/**
|
|
3625
4120
|
*
|
|
4121
|
+
* @summary Get func execution run logs
|
|
3626
4122
|
* @param {FuncsApiGetFuncRunRequest} requestParameters Request parameters.
|
|
3627
4123
|
* @param {*} [options] Override http request option.
|
|
3628
4124
|
* @throws {RequiredError}
|
|
@@ -3630,6 +4126,110 @@ export declare class FuncsApi extends BaseAPI implements FuncsApiInterface {
|
|
|
3630
4126
|
*/
|
|
3631
4127
|
getFuncRun(requestParameters: FuncsApiGetFuncRunRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetFuncRunV1Response, any>>;
|
|
3632
4128
|
}
|
|
4129
|
+
/**
|
|
4130
|
+
* ManagementFuncsApi - axios parameter creator
|
|
4131
|
+
* @export
|
|
4132
|
+
*/
|
|
4133
|
+
export declare const ManagementFuncsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4134
|
+
/**
|
|
4135
|
+
*
|
|
4136
|
+
* @summary Get management funcs job state details
|
|
4137
|
+
* @param {string} workspaceId Workspace identifier
|
|
4138
|
+
* @param {string} changeSetId Change Set identifier
|
|
4139
|
+
* @param {string} managementFuncJobStateId Management Func Job identifier
|
|
4140
|
+
* @param {*} [options] Override http request option.
|
|
4141
|
+
* @throws {RequiredError}
|
|
4142
|
+
*/
|
|
4143
|
+
getManagementFuncRunState: (workspaceId: string, changeSetId: string, managementFuncJobStateId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4144
|
+
};
|
|
4145
|
+
/**
|
|
4146
|
+
* ManagementFuncsApi - functional programming interface
|
|
4147
|
+
* @export
|
|
4148
|
+
*/
|
|
4149
|
+
export declare const ManagementFuncsApiFp: (configuration?: Configuration) => {
|
|
4150
|
+
/**
|
|
4151
|
+
*
|
|
4152
|
+
* @summary Get management funcs job state details
|
|
4153
|
+
* @param {string} workspaceId Workspace identifier
|
|
4154
|
+
* @param {string} changeSetId Change Set identifier
|
|
4155
|
+
* @param {string} managementFuncJobStateId Management Func Job identifier
|
|
4156
|
+
* @param {*} [options] Override http request option.
|
|
4157
|
+
* @throws {RequiredError}
|
|
4158
|
+
*/
|
|
4159
|
+
getManagementFuncRunState(workspaceId: string, changeSetId: string, managementFuncJobStateId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetManagementFuncJobStateV1Response>>;
|
|
4160
|
+
};
|
|
4161
|
+
/**
|
|
4162
|
+
* ManagementFuncsApi - factory interface
|
|
4163
|
+
* @export
|
|
4164
|
+
*/
|
|
4165
|
+
export declare const ManagementFuncsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4166
|
+
/**
|
|
4167
|
+
*
|
|
4168
|
+
* @summary Get management funcs job state details
|
|
4169
|
+
* @param {ManagementFuncsApiGetManagementFuncRunStateRequest} requestParameters Request parameters.
|
|
4170
|
+
* @param {*} [options] Override http request option.
|
|
4171
|
+
* @throws {RequiredError}
|
|
4172
|
+
*/
|
|
4173
|
+
getManagementFuncRunState(requestParameters: ManagementFuncsApiGetManagementFuncRunStateRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetManagementFuncJobStateV1Response>;
|
|
4174
|
+
};
|
|
4175
|
+
/**
|
|
4176
|
+
* ManagementFuncsApi - interface
|
|
4177
|
+
* @export
|
|
4178
|
+
* @interface ManagementFuncsApi
|
|
4179
|
+
*/
|
|
4180
|
+
export interface ManagementFuncsApiInterface {
|
|
4181
|
+
/**
|
|
4182
|
+
*
|
|
4183
|
+
* @summary Get management funcs job state details
|
|
4184
|
+
* @param {ManagementFuncsApiGetManagementFuncRunStateRequest} requestParameters Request parameters.
|
|
4185
|
+
* @param {*} [options] Override http request option.
|
|
4186
|
+
* @throws {RequiredError}
|
|
4187
|
+
* @memberof ManagementFuncsApiInterface
|
|
4188
|
+
*/
|
|
4189
|
+
getManagementFuncRunState(requestParameters: ManagementFuncsApiGetManagementFuncRunStateRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetManagementFuncJobStateV1Response>;
|
|
4190
|
+
}
|
|
4191
|
+
/**
|
|
4192
|
+
* Request parameters for getManagementFuncRunState operation in ManagementFuncsApi.
|
|
4193
|
+
* @export
|
|
4194
|
+
* @interface ManagementFuncsApiGetManagementFuncRunStateRequest
|
|
4195
|
+
*/
|
|
4196
|
+
export interface ManagementFuncsApiGetManagementFuncRunStateRequest {
|
|
4197
|
+
/**
|
|
4198
|
+
* Workspace identifier
|
|
4199
|
+
* @type {string}
|
|
4200
|
+
* @memberof ManagementFuncsApiGetManagementFuncRunState
|
|
4201
|
+
*/
|
|
4202
|
+
readonly workspaceId: string;
|
|
4203
|
+
/**
|
|
4204
|
+
* Change Set identifier
|
|
4205
|
+
* @type {string}
|
|
4206
|
+
* @memberof ManagementFuncsApiGetManagementFuncRunState
|
|
4207
|
+
*/
|
|
4208
|
+
readonly changeSetId: string;
|
|
4209
|
+
/**
|
|
4210
|
+
* Management Func Job identifier
|
|
4211
|
+
* @type {string}
|
|
4212
|
+
* @memberof ManagementFuncsApiGetManagementFuncRunState
|
|
4213
|
+
*/
|
|
4214
|
+
readonly managementFuncJobStateId: string;
|
|
4215
|
+
}
|
|
4216
|
+
/**
|
|
4217
|
+
* ManagementFuncsApi - object-oriented interface
|
|
4218
|
+
* @export
|
|
4219
|
+
* @class ManagementFuncsApi
|
|
4220
|
+
* @extends {BaseAPI}
|
|
4221
|
+
*/
|
|
4222
|
+
export declare class ManagementFuncsApi extends BaseAPI implements ManagementFuncsApiInterface {
|
|
4223
|
+
/**
|
|
4224
|
+
*
|
|
4225
|
+
* @summary Get management funcs job state details
|
|
4226
|
+
* @param {ManagementFuncsApiGetManagementFuncRunStateRequest} requestParameters Request parameters.
|
|
4227
|
+
* @param {*} [options] Override http request option.
|
|
4228
|
+
* @throws {RequiredError}
|
|
4229
|
+
* @memberof ManagementFuncsApi
|
|
4230
|
+
*/
|
|
4231
|
+
getManagementFuncRunState(requestParameters: ManagementFuncsApiGetManagementFuncRunStateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetManagementFuncJobStateV1Response, any>>;
|
|
4232
|
+
}
|
|
3633
4233
|
/**
|
|
3634
4234
|
* RootApi - axios parameter creator
|
|
3635
4235
|
* @export
|
|
@@ -3702,8 +4302,9 @@ export declare class RootApi extends BaseAPI implements RootApiInterface {
|
|
|
3702
4302
|
export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3703
4303
|
/**
|
|
3704
4304
|
*
|
|
4305
|
+
* @summary Find schema by name or schema id
|
|
3705
4306
|
* @param {string} workspaceId Workspace identifier
|
|
3706
|
-
* @param {string} changeSetId Change
|
|
4307
|
+
* @param {string} changeSetId Change Set identifier
|
|
3707
4308
|
* @param {string | null} [schema]
|
|
3708
4309
|
* @param {string | null} [schemaId]
|
|
3709
4310
|
* @param {*} [options] Override http request option.
|
|
@@ -3712,18 +4313,19 @@ export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3712
4313
|
findSchema: (workspaceId: string, changeSetId: string, schema?: string | null, schemaId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3713
4314
|
/**
|
|
3714
4315
|
*
|
|
4316
|
+
* @summary Get the default variant for a schema id
|
|
3715
4317
|
* @param {string} workspaceId Workspace identifier
|
|
3716
|
-
* @param {string} changeSetId Change
|
|
4318
|
+
* @param {string} changeSetId Change Set identifier
|
|
3717
4319
|
* @param {string} schemaId Schema identifier
|
|
3718
|
-
* @param {string} schemaVariantId Schema variant identifier
|
|
3719
4320
|
* @param {*} [options] Override http request option.
|
|
3720
4321
|
* @throws {RequiredError}
|
|
3721
4322
|
*/
|
|
3722
|
-
getDefaultVariant: (workspaceId: string, changeSetId: string, schemaId: string,
|
|
4323
|
+
getDefaultVariant: (workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3723
4324
|
/**
|
|
3724
4325
|
*
|
|
4326
|
+
* @summary Get a schema by schema id
|
|
3725
4327
|
* @param {string} workspaceId Workspace identifier
|
|
3726
|
-
* @param {string} changeSetId Change
|
|
4328
|
+
* @param {string} changeSetId Change Set identifier
|
|
3727
4329
|
* @param {string} schemaId Schema identifier
|
|
3728
4330
|
* @param {*} [options] Override http request option.
|
|
3729
4331
|
* @throws {RequiredError}
|
|
@@ -3731,8 +4333,9 @@ export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3731
4333
|
getSchema: (workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3732
4334
|
/**
|
|
3733
4335
|
*
|
|
4336
|
+
* @summary Get a schema variant by schema id and schema variant id
|
|
3734
4337
|
* @param {string} workspaceId Workspace identifier
|
|
3735
|
-
* @param {string} changeSetId Change
|
|
4338
|
+
* @param {string} changeSetId Change Set identifier
|
|
3736
4339
|
* @param {string} schemaId Schema identifier
|
|
3737
4340
|
* @param {string} schemaVariantId Schema variant identifier
|
|
3738
4341
|
* @param {*} [options] Override http request option.
|
|
@@ -3741,8 +4344,9 @@ export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3741
4344
|
getVariant: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3742
4345
|
/**
|
|
3743
4346
|
*
|
|
4347
|
+
* @summary List all schemas (paginated endpoint)
|
|
3744
4348
|
* @param {string} workspaceId Workspace identifier
|
|
3745
|
-
* @param {string} changeSetId Change
|
|
4349
|
+
* @param {string} changeSetId Change Set identifier
|
|
3746
4350
|
* @param {string} [limit] Maximum number of results to return (default: 50, max: 300)
|
|
3747
4351
|
* @param {string} [cursor] Cursor for pagination (SchemaId of the last item from previous page)
|
|
3748
4352
|
* @param {*} [options] Override http request option.
|
|
@@ -3757,8 +4361,9 @@ export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3757
4361
|
export declare const SchemasApiFp: (configuration?: Configuration) => {
|
|
3758
4362
|
/**
|
|
3759
4363
|
*
|
|
4364
|
+
* @summary Find schema by name or schema id
|
|
3760
4365
|
* @param {string} workspaceId Workspace identifier
|
|
3761
|
-
* @param {string} changeSetId Change
|
|
4366
|
+
* @param {string} changeSetId Change Set identifier
|
|
3762
4367
|
* @param {string | null} [schema]
|
|
3763
4368
|
* @param {string | null} [schemaId]
|
|
3764
4369
|
* @param {*} [options] Override http request option.
|
|
@@ -3767,18 +4372,19 @@ export declare const SchemasApiFp: (configuration?: Configuration) => {
|
|
|
3767
4372
|
findSchema(workspaceId: string, changeSetId: string, schema?: string | null, schemaId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FindSchemaV1Response>>;
|
|
3768
4373
|
/**
|
|
3769
4374
|
*
|
|
4375
|
+
* @summary Get the default variant for a schema id
|
|
3770
4376
|
* @param {string} workspaceId Workspace identifier
|
|
3771
|
-
* @param {string} changeSetId Change
|
|
4377
|
+
* @param {string} changeSetId Change Set identifier
|
|
3772
4378
|
* @param {string} schemaId Schema identifier
|
|
3773
|
-
* @param {string} schemaVariantId Schema variant identifier
|
|
3774
4379
|
* @param {*} [options] Override http request option.
|
|
3775
4380
|
* @throws {RequiredError}
|
|
3776
4381
|
*/
|
|
3777
|
-
getDefaultVariant(workspaceId: string, changeSetId: string, schemaId: string,
|
|
4382
|
+
getDefaultVariant(workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSchemaVariantV1Response>>;
|
|
3778
4383
|
/**
|
|
3779
4384
|
*
|
|
4385
|
+
* @summary Get a schema by schema id
|
|
3780
4386
|
* @param {string} workspaceId Workspace identifier
|
|
3781
|
-
* @param {string} changeSetId Change
|
|
4387
|
+
* @param {string} changeSetId Change Set identifier
|
|
3782
4388
|
* @param {string} schemaId Schema identifier
|
|
3783
4389
|
* @param {*} [options] Override http request option.
|
|
3784
4390
|
* @throws {RequiredError}
|
|
@@ -3786,8 +4392,9 @@ export declare const SchemasApiFp: (configuration?: Configuration) => {
|
|
|
3786
4392
|
getSchema(workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSchemaV1Response>>;
|
|
3787
4393
|
/**
|
|
3788
4394
|
*
|
|
4395
|
+
* @summary Get a schema variant by schema id and schema variant id
|
|
3789
4396
|
* @param {string} workspaceId Workspace identifier
|
|
3790
|
-
* @param {string} changeSetId Change
|
|
4397
|
+
* @param {string} changeSetId Change Set identifier
|
|
3791
4398
|
* @param {string} schemaId Schema identifier
|
|
3792
4399
|
* @param {string} schemaVariantId Schema variant identifier
|
|
3793
4400
|
* @param {*} [options] Override http request option.
|
|
@@ -3796,8 +4403,9 @@ export declare const SchemasApiFp: (configuration?: Configuration) => {
|
|
|
3796
4403
|
getVariant(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSchemaVariantV1Response>>;
|
|
3797
4404
|
/**
|
|
3798
4405
|
*
|
|
4406
|
+
* @summary List all schemas (paginated endpoint)
|
|
3799
4407
|
* @param {string} workspaceId Workspace identifier
|
|
3800
|
-
* @param {string} changeSetId Change
|
|
4408
|
+
* @param {string} changeSetId Change Set identifier
|
|
3801
4409
|
* @param {string} [limit] Maximum number of results to return (default: 50, max: 300)
|
|
3802
4410
|
* @param {string} [cursor] Cursor for pagination (SchemaId of the last item from previous page)
|
|
3803
4411
|
* @param {*} [options] Override http request option.
|
|
@@ -3812,6 +4420,7 @@ export declare const SchemasApiFp: (configuration?: Configuration) => {
|
|
|
3812
4420
|
export declare const SchemasApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3813
4421
|
/**
|
|
3814
4422
|
*
|
|
4423
|
+
* @summary Find schema by name or schema id
|
|
3815
4424
|
* @param {SchemasApiFindSchemaRequest} requestParameters Request parameters.
|
|
3816
4425
|
* @param {*} [options] Override http request option.
|
|
3817
4426
|
* @throws {RequiredError}
|
|
@@ -3819,6 +4428,7 @@ export declare const SchemasApiFactory: (configuration?: Configuration, basePath
|
|
|
3819
4428
|
findSchema(requestParameters: SchemasApiFindSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<FindSchemaV1Response>;
|
|
3820
4429
|
/**
|
|
3821
4430
|
*
|
|
4431
|
+
* @summary Get the default variant for a schema id
|
|
3822
4432
|
* @param {SchemasApiGetDefaultVariantRequest} requestParameters Request parameters.
|
|
3823
4433
|
* @param {*} [options] Override http request option.
|
|
3824
4434
|
* @throws {RequiredError}
|
|
@@ -3826,6 +4436,7 @@ export declare const SchemasApiFactory: (configuration?: Configuration, basePath
|
|
|
3826
4436
|
getDefaultVariant(requestParameters: SchemasApiGetDefaultVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
|
|
3827
4437
|
/**
|
|
3828
4438
|
*
|
|
4439
|
+
* @summary Get a schema by schema id
|
|
3829
4440
|
* @param {SchemasApiGetSchemaRequest} requestParameters Request parameters.
|
|
3830
4441
|
* @param {*} [options] Override http request option.
|
|
3831
4442
|
* @throws {RequiredError}
|
|
@@ -3833,6 +4444,7 @@ export declare const SchemasApiFactory: (configuration?: Configuration, basePath
|
|
|
3833
4444
|
getSchema(requestParameters: SchemasApiGetSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaV1Response>;
|
|
3834
4445
|
/**
|
|
3835
4446
|
*
|
|
4447
|
+
* @summary Get a schema variant by schema id and schema variant id
|
|
3836
4448
|
* @param {SchemasApiGetVariantRequest} requestParameters Request parameters.
|
|
3837
4449
|
* @param {*} [options] Override http request option.
|
|
3838
4450
|
* @throws {RequiredError}
|
|
@@ -3840,6 +4452,7 @@ export declare const SchemasApiFactory: (configuration?: Configuration, basePath
|
|
|
3840
4452
|
getVariant(requestParameters: SchemasApiGetVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
|
|
3841
4453
|
/**
|
|
3842
4454
|
*
|
|
4455
|
+
* @summary List all schemas (paginated endpoint)
|
|
3843
4456
|
* @param {SchemasApiListSchemasRequest} requestParameters Request parameters.
|
|
3844
4457
|
* @param {*} [options] Override http request option.
|
|
3845
4458
|
* @throws {RequiredError}
|
|
@@ -3854,6 +4467,7 @@ export declare const SchemasApiFactory: (configuration?: Configuration, basePath
|
|
|
3854
4467
|
export interface SchemasApiInterface {
|
|
3855
4468
|
/**
|
|
3856
4469
|
*
|
|
4470
|
+
* @summary Find schema by name or schema id
|
|
3857
4471
|
* @param {SchemasApiFindSchemaRequest} requestParameters Request parameters.
|
|
3858
4472
|
* @param {*} [options] Override http request option.
|
|
3859
4473
|
* @throws {RequiredError}
|
|
@@ -3862,6 +4476,7 @@ export interface SchemasApiInterface {
|
|
|
3862
4476
|
findSchema(requestParameters: SchemasApiFindSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<FindSchemaV1Response>;
|
|
3863
4477
|
/**
|
|
3864
4478
|
*
|
|
4479
|
+
* @summary Get the default variant for a schema id
|
|
3865
4480
|
* @param {SchemasApiGetDefaultVariantRequest} requestParameters Request parameters.
|
|
3866
4481
|
* @param {*} [options] Override http request option.
|
|
3867
4482
|
* @throws {RequiredError}
|
|
@@ -3870,6 +4485,7 @@ export interface SchemasApiInterface {
|
|
|
3870
4485
|
getDefaultVariant(requestParameters: SchemasApiGetDefaultVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
|
|
3871
4486
|
/**
|
|
3872
4487
|
*
|
|
4488
|
+
* @summary Get a schema by schema id
|
|
3873
4489
|
* @param {SchemasApiGetSchemaRequest} requestParameters Request parameters.
|
|
3874
4490
|
* @param {*} [options] Override http request option.
|
|
3875
4491
|
* @throws {RequiredError}
|
|
@@ -3878,6 +4494,7 @@ export interface SchemasApiInterface {
|
|
|
3878
4494
|
getSchema(requestParameters: SchemasApiGetSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaV1Response>;
|
|
3879
4495
|
/**
|
|
3880
4496
|
*
|
|
4497
|
+
* @summary Get a schema variant by schema id and schema variant id
|
|
3881
4498
|
* @param {SchemasApiGetVariantRequest} requestParameters Request parameters.
|
|
3882
4499
|
* @param {*} [options] Override http request option.
|
|
3883
4500
|
* @throws {RequiredError}
|
|
@@ -3886,6 +4503,7 @@ export interface SchemasApiInterface {
|
|
|
3886
4503
|
getVariant(requestParameters: SchemasApiGetVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
|
|
3887
4504
|
/**
|
|
3888
4505
|
*
|
|
4506
|
+
* @summary List all schemas (paginated endpoint)
|
|
3889
4507
|
* @param {SchemasApiListSchemasRequest} requestParameters Request parameters.
|
|
3890
4508
|
* @param {*} [options] Override http request option.
|
|
3891
4509
|
* @throws {RequiredError}
|
|
@@ -3906,7 +4524,7 @@ export interface SchemasApiFindSchemaRequest {
|
|
|
3906
4524
|
*/
|
|
3907
4525
|
readonly workspaceId: string;
|
|
3908
4526
|
/**
|
|
3909
|
-
* Change
|
|
4527
|
+
* Change Set identifier
|
|
3910
4528
|
* @type {string}
|
|
3911
4529
|
* @memberof SchemasApiFindSchema
|
|
3912
4530
|
*/
|
|
@@ -3937,7 +4555,7 @@ export interface SchemasApiGetDefaultVariantRequest {
|
|
|
3937
4555
|
*/
|
|
3938
4556
|
readonly workspaceId: string;
|
|
3939
4557
|
/**
|
|
3940
|
-
* Change
|
|
4558
|
+
* Change Set identifier
|
|
3941
4559
|
* @type {string}
|
|
3942
4560
|
* @memberof SchemasApiGetDefaultVariant
|
|
3943
4561
|
*/
|
|
@@ -3948,12 +4566,6 @@ export interface SchemasApiGetDefaultVariantRequest {
|
|
|
3948
4566
|
* @memberof SchemasApiGetDefaultVariant
|
|
3949
4567
|
*/
|
|
3950
4568
|
readonly schemaId: string;
|
|
3951
|
-
/**
|
|
3952
|
-
* Schema variant identifier
|
|
3953
|
-
* @type {string}
|
|
3954
|
-
* @memberof SchemasApiGetDefaultVariant
|
|
3955
|
-
*/
|
|
3956
|
-
readonly schemaVariantId: string;
|
|
3957
4569
|
}
|
|
3958
4570
|
/**
|
|
3959
4571
|
* Request parameters for getSchema operation in SchemasApi.
|
|
@@ -3968,7 +4580,7 @@ export interface SchemasApiGetSchemaRequest {
|
|
|
3968
4580
|
*/
|
|
3969
4581
|
readonly workspaceId: string;
|
|
3970
4582
|
/**
|
|
3971
|
-
* Change
|
|
4583
|
+
* Change Set identifier
|
|
3972
4584
|
* @type {string}
|
|
3973
4585
|
* @memberof SchemasApiGetSchema
|
|
3974
4586
|
*/
|
|
@@ -3993,7 +4605,7 @@ export interface SchemasApiGetVariantRequest {
|
|
|
3993
4605
|
*/
|
|
3994
4606
|
readonly workspaceId: string;
|
|
3995
4607
|
/**
|
|
3996
|
-
* Change
|
|
4608
|
+
* Change Set identifier
|
|
3997
4609
|
* @type {string}
|
|
3998
4610
|
* @memberof SchemasApiGetVariant
|
|
3999
4611
|
*/
|
|
@@ -4024,7 +4636,7 @@ export interface SchemasApiListSchemasRequest {
|
|
|
4024
4636
|
*/
|
|
4025
4637
|
readonly workspaceId: string;
|
|
4026
4638
|
/**
|
|
4027
|
-
* Change
|
|
4639
|
+
* Change Set identifier
|
|
4028
4640
|
* @type {string}
|
|
4029
4641
|
* @memberof SchemasApiListSchemas
|
|
4030
4642
|
*/
|
|
@@ -4051,6 +4663,7 @@ export interface SchemasApiListSchemasRequest {
|
|
|
4051
4663
|
export declare class SchemasApi extends BaseAPI implements SchemasApiInterface {
|
|
4052
4664
|
/**
|
|
4053
4665
|
*
|
|
4666
|
+
* @summary Find schema by name or schema id
|
|
4054
4667
|
* @param {SchemasApiFindSchemaRequest} requestParameters Request parameters.
|
|
4055
4668
|
* @param {*} [options] Override http request option.
|
|
4056
4669
|
* @throws {RequiredError}
|
|
@@ -4059,6 +4672,7 @@ export declare class SchemasApi extends BaseAPI implements SchemasApiInterface {
|
|
|
4059
4672
|
findSchema(requestParameters: SchemasApiFindSchemaRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FindSchemaV1Response, any>>;
|
|
4060
4673
|
/**
|
|
4061
4674
|
*
|
|
4675
|
+
* @summary Get the default variant for a schema id
|
|
4062
4676
|
* @param {SchemasApiGetDefaultVariantRequest} requestParameters Request parameters.
|
|
4063
4677
|
* @param {*} [options] Override http request option.
|
|
4064
4678
|
* @throws {RequiredError}
|
|
@@ -4067,6 +4681,7 @@ export declare class SchemasApi extends BaseAPI implements SchemasApiInterface {
|
|
|
4067
4681
|
getDefaultVariant(requestParameters: SchemasApiGetDefaultVariantRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetSchemaVariantV1Response, any>>;
|
|
4068
4682
|
/**
|
|
4069
4683
|
*
|
|
4684
|
+
* @summary Get a schema by schema id
|
|
4070
4685
|
* @param {SchemasApiGetSchemaRequest} requestParameters Request parameters.
|
|
4071
4686
|
* @param {*} [options] Override http request option.
|
|
4072
4687
|
* @throws {RequiredError}
|
|
@@ -4075,6 +4690,7 @@ export declare class SchemasApi extends BaseAPI implements SchemasApiInterface {
|
|
|
4075
4690
|
getSchema(requestParameters: SchemasApiGetSchemaRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetSchemaV1Response, any>>;
|
|
4076
4691
|
/**
|
|
4077
4692
|
*
|
|
4693
|
+
* @summary Get a schema variant by schema id and schema variant id
|
|
4078
4694
|
* @param {SchemasApiGetVariantRequest} requestParameters Request parameters.
|
|
4079
4695
|
* @param {*} [options] Override http request option.
|
|
4080
4696
|
* @throws {RequiredError}
|
|
@@ -4083,6 +4699,7 @@ export declare class SchemasApi extends BaseAPI implements SchemasApiInterface {
|
|
|
4083
4699
|
getVariant(requestParameters: SchemasApiGetVariantRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetSchemaVariantV1Response, any>>;
|
|
4084
4700
|
/**
|
|
4085
4701
|
*
|
|
4702
|
+
* @summary List all schemas (paginated endpoint)
|
|
4086
4703
|
* @param {SchemasApiListSchemasRequest} requestParameters Request parameters.
|
|
4087
4704
|
* @param {*} [options] Override http request option.
|
|
4088
4705
|
* @throws {RequiredError}
|
|
@@ -4097,8 +4714,9 @@ export declare class SchemasApi extends BaseAPI implements SchemasApiInterface {
|
|
|
4097
4714
|
export declare const SecretsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4098
4715
|
/**
|
|
4099
4716
|
*
|
|
4717
|
+
* @summary Create a secret
|
|
4100
4718
|
* @param {string} workspaceId Workspace identifier
|
|
4101
|
-
* @param {string} changeSetId Change
|
|
4719
|
+
* @param {string} changeSetId Change Set identifier
|
|
4102
4720
|
* @param {CreateSecretV1Request} createSecretV1Request
|
|
4103
4721
|
* @param {*} [options] Override http request option.
|
|
4104
4722
|
* @throws {RequiredError}
|
|
@@ -4106,8 +4724,9 @@ export declare const SecretsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4106
4724
|
createSecret: (workspaceId: string, changeSetId: string, createSecretV1Request: CreateSecretV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4107
4725
|
/**
|
|
4108
4726
|
*
|
|
4727
|
+
* @summary Delete a secret
|
|
4109
4728
|
* @param {string} workspaceId Workspace identifier
|
|
4110
|
-
* @param {string} changeSetId Change
|
|
4729
|
+
* @param {string} changeSetId Change Set identifier
|
|
4111
4730
|
* @param {string} secretId Secret identifier
|
|
4112
4731
|
* @param {*} [options] Override http request option.
|
|
4113
4732
|
* @throws {RequiredError}
|
|
@@ -4115,16 +4734,18 @@ export declare const SecretsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4115
4734
|
deleteSecret: (workspaceId: string, changeSetId: string, secretId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4116
4735
|
/**
|
|
4117
4736
|
*
|
|
4737
|
+
* @summary List all secrets
|
|
4118
4738
|
* @param {string} workspaceId Workspace identifier
|
|
4119
|
-
* @param {string} changeSetId Change
|
|
4739
|
+
* @param {string} changeSetId Change Set identifier
|
|
4120
4740
|
* @param {*} [options] Override http request option.
|
|
4121
4741
|
* @throws {RequiredError}
|
|
4122
4742
|
*/
|
|
4123
4743
|
getSecrets: (workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4124
4744
|
/**
|
|
4125
4745
|
*
|
|
4746
|
+
* @summary Update a secret
|
|
4126
4747
|
* @param {string} workspaceId Workspace identifier
|
|
4127
|
-
* @param {string} changeSetId Change
|
|
4748
|
+
* @param {string} changeSetId Change Set identifier
|
|
4128
4749
|
* @param {string} secretId Secret identifier
|
|
4129
4750
|
* @param {UpdateSecretV1Request} updateSecretV1Request
|
|
4130
4751
|
* @param {*} [options] Override http request option.
|
|
@@ -4139,8 +4760,9 @@ export declare const SecretsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4139
4760
|
export declare const SecretsApiFp: (configuration?: Configuration) => {
|
|
4140
4761
|
/**
|
|
4141
4762
|
*
|
|
4763
|
+
* @summary Create a secret
|
|
4142
4764
|
* @param {string} workspaceId Workspace identifier
|
|
4143
|
-
* @param {string} changeSetId Change
|
|
4765
|
+
* @param {string} changeSetId Change Set identifier
|
|
4144
4766
|
* @param {CreateSecretV1Request} createSecretV1Request
|
|
4145
4767
|
* @param {*} [options] Override http request option.
|
|
4146
4768
|
* @throws {RequiredError}
|
|
@@ -4148,8 +4770,9 @@ export declare const SecretsApiFp: (configuration?: Configuration) => {
|
|
|
4148
4770
|
createSecret(workspaceId: string, changeSetId: string, createSecretV1Request: CreateSecretV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateSecretV1Response>>;
|
|
4149
4771
|
/**
|
|
4150
4772
|
*
|
|
4773
|
+
* @summary Delete a secret
|
|
4151
4774
|
* @param {string} workspaceId Workspace identifier
|
|
4152
|
-
* @param {string} changeSetId Change
|
|
4775
|
+
* @param {string} changeSetId Change Set identifier
|
|
4153
4776
|
* @param {string} secretId Secret identifier
|
|
4154
4777
|
* @param {*} [options] Override http request option.
|
|
4155
4778
|
* @throws {RequiredError}
|
|
@@ -4157,8 +4780,9 @@ export declare const SecretsApiFp: (configuration?: Configuration) => {
|
|
|
4157
4780
|
deleteSecret(workspaceId: string, changeSetId: string, secretId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteSecretV1Response>>;
|
|
4158
4781
|
/**
|
|
4159
4782
|
*
|
|
4783
|
+
* @summary List all secrets
|
|
4160
4784
|
* @param {string} workspaceId Workspace identifier
|
|
4161
|
-
* @param {string} changeSetId Change
|
|
4785
|
+
* @param {string} changeSetId Change Set identifier
|
|
4162
4786
|
* @param {*} [options] Override http request option.
|
|
4163
4787
|
* @throws {RequiredError}
|
|
4164
4788
|
*/
|
|
@@ -4167,8 +4791,9 @@ export declare const SecretsApiFp: (configuration?: Configuration) => {
|
|
|
4167
4791
|
}>>;
|
|
4168
4792
|
/**
|
|
4169
4793
|
*
|
|
4794
|
+
* @summary Update a secret
|
|
4170
4795
|
* @param {string} workspaceId Workspace identifier
|
|
4171
|
-
* @param {string} changeSetId Change
|
|
4796
|
+
* @param {string} changeSetId Change Set identifier
|
|
4172
4797
|
* @param {string} secretId Secret identifier
|
|
4173
4798
|
* @param {UpdateSecretV1Request} updateSecretV1Request
|
|
4174
4799
|
* @param {*} [options] Override http request option.
|
|
@@ -4183,6 +4808,7 @@ export declare const SecretsApiFp: (configuration?: Configuration) => {
|
|
|
4183
4808
|
export declare const SecretsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4184
4809
|
/**
|
|
4185
4810
|
*
|
|
4811
|
+
* @summary Create a secret
|
|
4186
4812
|
* @param {SecretsApiCreateSecretRequest} requestParameters Request parameters.
|
|
4187
4813
|
* @param {*} [options] Override http request option.
|
|
4188
4814
|
* @throws {RequiredError}
|
|
@@ -4190,6 +4816,7 @@ export declare const SecretsApiFactory: (configuration?: Configuration, basePath
|
|
|
4190
4816
|
createSecret(requestParameters: SecretsApiCreateSecretRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateSecretV1Response>;
|
|
4191
4817
|
/**
|
|
4192
4818
|
*
|
|
4819
|
+
* @summary Delete a secret
|
|
4193
4820
|
* @param {SecretsApiDeleteSecretRequest} requestParameters Request parameters.
|
|
4194
4821
|
* @param {*} [options] Override http request option.
|
|
4195
4822
|
* @throws {RequiredError}
|
|
@@ -4197,6 +4824,7 @@ export declare const SecretsApiFactory: (configuration?: Configuration, basePath
|
|
|
4197
4824
|
deleteSecret(requestParameters: SecretsApiDeleteSecretRequest, options?: RawAxiosRequestConfig): AxiosPromise<DeleteSecretV1Response>;
|
|
4198
4825
|
/**
|
|
4199
4826
|
*
|
|
4827
|
+
* @summary List all secrets
|
|
4200
4828
|
* @param {SecretsApiGetSecretsRequest} requestParameters Request parameters.
|
|
4201
4829
|
* @param {*} [options] Override http request option.
|
|
4202
4830
|
* @throws {RequiredError}
|
|
@@ -4206,6 +4834,7 @@ export declare const SecretsApiFactory: (configuration?: Configuration, basePath
|
|
|
4206
4834
|
}>;
|
|
4207
4835
|
/**
|
|
4208
4836
|
*
|
|
4837
|
+
* @summary Update a secret
|
|
4209
4838
|
* @param {SecretsApiUpdateSecretRequest} requestParameters Request parameters.
|
|
4210
4839
|
* @param {*} [options] Override http request option.
|
|
4211
4840
|
* @throws {RequiredError}
|
|
@@ -4220,6 +4849,7 @@ export declare const SecretsApiFactory: (configuration?: Configuration, basePath
|
|
|
4220
4849
|
export interface SecretsApiInterface {
|
|
4221
4850
|
/**
|
|
4222
4851
|
*
|
|
4852
|
+
* @summary Create a secret
|
|
4223
4853
|
* @param {SecretsApiCreateSecretRequest} requestParameters Request parameters.
|
|
4224
4854
|
* @param {*} [options] Override http request option.
|
|
4225
4855
|
* @throws {RequiredError}
|
|
@@ -4228,6 +4858,7 @@ export interface SecretsApiInterface {
|
|
|
4228
4858
|
createSecret(requestParameters: SecretsApiCreateSecretRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateSecretV1Response>;
|
|
4229
4859
|
/**
|
|
4230
4860
|
*
|
|
4861
|
+
* @summary Delete a secret
|
|
4231
4862
|
* @param {SecretsApiDeleteSecretRequest} requestParameters Request parameters.
|
|
4232
4863
|
* @param {*} [options] Override http request option.
|
|
4233
4864
|
* @throws {RequiredError}
|
|
@@ -4236,6 +4867,7 @@ export interface SecretsApiInterface {
|
|
|
4236
4867
|
deleteSecret(requestParameters: SecretsApiDeleteSecretRequest, options?: RawAxiosRequestConfig): AxiosPromise<DeleteSecretV1Response>;
|
|
4237
4868
|
/**
|
|
4238
4869
|
*
|
|
4870
|
+
* @summary List all secrets
|
|
4239
4871
|
* @param {SecretsApiGetSecretsRequest} requestParameters Request parameters.
|
|
4240
4872
|
* @param {*} [options] Override http request option.
|
|
4241
4873
|
* @throws {RequiredError}
|
|
@@ -4246,6 +4878,7 @@ export interface SecretsApiInterface {
|
|
|
4246
4878
|
}>;
|
|
4247
4879
|
/**
|
|
4248
4880
|
*
|
|
4881
|
+
* @summary Update a secret
|
|
4249
4882
|
* @param {SecretsApiUpdateSecretRequest} requestParameters Request parameters.
|
|
4250
4883
|
* @param {*} [options] Override http request option.
|
|
4251
4884
|
* @throws {RequiredError}
|
|
@@ -4266,7 +4899,7 @@ export interface SecretsApiCreateSecretRequest {
|
|
|
4266
4899
|
*/
|
|
4267
4900
|
readonly workspaceId: string;
|
|
4268
4901
|
/**
|
|
4269
|
-
* Change
|
|
4902
|
+
* Change Set identifier
|
|
4270
4903
|
* @type {string}
|
|
4271
4904
|
* @memberof SecretsApiCreateSecret
|
|
4272
4905
|
*/
|
|
@@ -4291,7 +4924,7 @@ export interface SecretsApiDeleteSecretRequest {
|
|
|
4291
4924
|
*/
|
|
4292
4925
|
readonly workspaceId: string;
|
|
4293
4926
|
/**
|
|
4294
|
-
* Change
|
|
4927
|
+
* Change Set identifier
|
|
4295
4928
|
* @type {string}
|
|
4296
4929
|
* @memberof SecretsApiDeleteSecret
|
|
4297
4930
|
*/
|
|
@@ -4316,7 +4949,7 @@ export interface SecretsApiGetSecretsRequest {
|
|
|
4316
4949
|
*/
|
|
4317
4950
|
readonly workspaceId: string;
|
|
4318
4951
|
/**
|
|
4319
|
-
* Change
|
|
4952
|
+
* Change Set identifier
|
|
4320
4953
|
* @type {string}
|
|
4321
4954
|
* @memberof SecretsApiGetSecrets
|
|
4322
4955
|
*/
|
|
@@ -4335,7 +4968,7 @@ export interface SecretsApiUpdateSecretRequest {
|
|
|
4335
4968
|
*/
|
|
4336
4969
|
readonly workspaceId: string;
|
|
4337
4970
|
/**
|
|
4338
|
-
* Change
|
|
4971
|
+
* Change Set identifier
|
|
4339
4972
|
* @type {string}
|
|
4340
4973
|
* @memberof SecretsApiUpdateSecret
|
|
4341
4974
|
*/
|
|
@@ -4362,6 +4995,7 @@ export interface SecretsApiUpdateSecretRequest {
|
|
|
4362
4995
|
export declare class SecretsApi extends BaseAPI implements SecretsApiInterface {
|
|
4363
4996
|
/**
|
|
4364
4997
|
*
|
|
4998
|
+
* @summary Create a secret
|
|
4365
4999
|
* @param {SecretsApiCreateSecretRequest} requestParameters Request parameters.
|
|
4366
5000
|
* @param {*} [options] Override http request option.
|
|
4367
5001
|
* @throws {RequiredError}
|
|
@@ -4370,6 +5004,7 @@ export declare class SecretsApi extends BaseAPI implements SecretsApiInterface {
|
|
|
4370
5004
|
createSecret(requestParameters: SecretsApiCreateSecretRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateSecretV1Response, any>>;
|
|
4371
5005
|
/**
|
|
4372
5006
|
*
|
|
5007
|
+
* @summary Delete a secret
|
|
4373
5008
|
* @param {SecretsApiDeleteSecretRequest} requestParameters Request parameters.
|
|
4374
5009
|
* @param {*} [options] Override http request option.
|
|
4375
5010
|
* @throws {RequiredError}
|
|
@@ -4378,6 +5013,7 @@ export declare class SecretsApi extends BaseAPI implements SecretsApiInterface {
|
|
|
4378
5013
|
deleteSecret(requestParameters: SecretsApiDeleteSecretRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteSecretV1Response, any>>;
|
|
4379
5014
|
/**
|
|
4380
5015
|
*
|
|
5016
|
+
* @summary List all secrets
|
|
4381
5017
|
* @param {SecretsApiGetSecretsRequest} requestParameters Request parameters.
|
|
4382
5018
|
* @param {*} [options] Override http request option.
|
|
4383
5019
|
* @throws {RequiredError}
|
|
@@ -4388,6 +5024,7 @@ export declare class SecretsApi extends BaseAPI implements SecretsApiInterface {
|
|
|
4388
5024
|
}, any>>;
|
|
4389
5025
|
/**
|
|
4390
5026
|
*
|
|
5027
|
+
* @summary Update a secret
|
|
4391
5028
|
* @param {SecretsApiUpdateSecretRequest} requestParameters Request parameters.
|
|
4392
5029
|
* @param {*} [options] Override http request option.
|
|
4393
5030
|
* @throws {RequiredError}
|