system-initiative-api-client 0.0.3 → 1.0.2

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