@sovity.de/edc-client 13.0.4 → 14.1.0

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.
@@ -170,6 +170,157 @@ export declare function BuildInfoToJSON(json: any): BuildInfo;
170
170
 
171
171
  export declare function BuildInfoToJSONTyped(value?: BuildInfo | null, ignoreDiscriminator?: boolean): any;
172
172
 
173
+ /**
174
+ * Business Partner Group Create Submit
175
+ * @export
176
+ * @interface BusinessPartnerGroupCreateSubmit
177
+ */
178
+ export declare interface BusinessPartnerGroupCreateSubmit {
179
+ /**
180
+ * Business Partner Group ID
181
+ * @type {string}
182
+ * @memberof BusinessPartnerGroupCreateSubmit
183
+ */
184
+ groupId: string;
185
+ /**
186
+ * List of BPNs in the created group
187
+ * @type {Array<string>}
188
+ * @memberof BusinessPartnerGroupCreateSubmit
189
+ */
190
+ businessPartnerNumbers: Array<string>;
191
+ }
192
+
193
+ export declare function BusinessPartnerGroupCreateSubmitFromJSON(json: any): BusinessPartnerGroupCreateSubmit;
194
+
195
+ export declare function BusinessPartnerGroupCreateSubmitFromJSONTyped(json: any, ignoreDiscriminator: boolean): BusinessPartnerGroupCreateSubmit;
196
+
197
+ export declare interface BusinessPartnerGroupCreateSubmitRequest {
198
+ businessPartnerGroupCreateSubmit?: BusinessPartnerGroupCreateSubmit;
199
+ }
200
+
201
+ export declare function BusinessPartnerGroupCreateSubmitToJSON(json: any): BusinessPartnerGroupCreateSubmit;
202
+
203
+ export declare function BusinessPartnerGroupCreateSubmitToJSONTyped(value?: BusinessPartnerGroupCreateSubmit | null, ignoreDiscriminator?: boolean): any;
204
+
205
+ /**
206
+ * Business Partner Group Edit Page
207
+ * @export
208
+ * @interface BusinessPartnerGroupEditPage
209
+ */
210
+ export declare interface BusinessPartnerGroupEditPage {
211
+ /**
212
+ * Business Partner Group ID
213
+ * @type {string}
214
+ * @memberof BusinessPartnerGroupEditPage
215
+ */
216
+ groupId: string;
217
+ /**
218
+ * List of BPNs in this group
219
+ * @type {Array<string>}
220
+ * @memberof BusinessPartnerGroupEditPage
221
+ */
222
+ businessPartnerNumbers: Array<string>;
223
+ }
224
+
225
+ export declare function BusinessPartnerGroupEditPageFromJSON(json: any): BusinessPartnerGroupEditPage;
226
+
227
+ export declare function BusinessPartnerGroupEditPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): BusinessPartnerGroupEditPage;
228
+
229
+ export declare interface BusinessPartnerGroupEditPageRequest {
230
+ id: string;
231
+ }
232
+
233
+ export declare function BusinessPartnerGroupEditPageToJSON(json: any): BusinessPartnerGroupEditPage;
234
+
235
+ export declare function BusinessPartnerGroupEditPageToJSONTyped(value?: BusinessPartnerGroupEditPage | null, ignoreDiscriminator?: boolean): any;
236
+
237
+ /**
238
+ * Business Partner Group Edit Submit
239
+ * @export
240
+ * @interface BusinessPartnerGroupEditSubmit
241
+ */
242
+ export declare interface BusinessPartnerGroupEditSubmit {
243
+ /**
244
+ * List of BPNs in the edited group
245
+ * @type {Array<string>}
246
+ * @memberof BusinessPartnerGroupEditSubmit
247
+ */
248
+ businessPartnerNumbers: Array<string>;
249
+ }
250
+
251
+ export declare function BusinessPartnerGroupEditSubmitFromJSON(json: any): BusinessPartnerGroupEditSubmit;
252
+
253
+ export declare function BusinessPartnerGroupEditSubmitFromJSONTyped(json: any, ignoreDiscriminator: boolean): BusinessPartnerGroupEditSubmit;
254
+
255
+ export declare interface BusinessPartnerGroupEditSubmitRequest {
256
+ id: string;
257
+ businessPartnerGroupEditSubmit?: BusinessPartnerGroupEditSubmit;
258
+ }
259
+
260
+ export declare function BusinessPartnerGroupEditSubmitToJSON(json: any): BusinessPartnerGroupEditSubmit;
261
+
262
+ export declare function BusinessPartnerGroupEditSubmitToJSONTyped(value?: BusinessPartnerGroupEditSubmit | null, ignoreDiscriminator?: boolean): any;
263
+
264
+ /**
265
+ * Business Partner Group List Page Entry
266
+ * @export
267
+ * @interface BusinessPartnerGroupListPageEntry
268
+ */
269
+ export declare interface BusinessPartnerGroupListPageEntry {
270
+ /**
271
+ * Business Partner Group Id
272
+ * @type {string}
273
+ * @memberof BusinessPartnerGroupListPageEntry
274
+ */
275
+ groupId: string;
276
+ /**
277
+ * List of BPNs in this group
278
+ * @type {Array<string>}
279
+ * @memberof BusinessPartnerGroupListPageEntry
280
+ */
281
+ businessPartnerNumbers: Array<string>;
282
+ }
283
+
284
+ export declare function BusinessPartnerGroupListPageEntryFromJSON(json: any): BusinessPartnerGroupListPageEntry;
285
+
286
+ export declare function BusinessPartnerGroupListPageEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): BusinessPartnerGroupListPageEntry;
287
+
288
+ export declare function BusinessPartnerGroupListPageEntryToJSON(json: any): BusinessPartnerGroupListPageEntry;
289
+
290
+ export declare function BusinessPartnerGroupListPageEntryToJSONTyped(value?: BusinessPartnerGroupListPageEntry | null, ignoreDiscriminator?: boolean): any;
291
+
292
+ export declare interface BusinessPartnerGroupListPageRequest {
293
+ businessPartnerGroupQuery?: BusinessPartnerGroupQuery;
294
+ }
295
+
296
+ /**
297
+ * Query for filtering Business Partner Groups
298
+ * @export
299
+ * @interface BusinessPartnerGroupQuery
300
+ */
301
+ export declare interface BusinessPartnerGroupQuery {
302
+ /**
303
+ * Search Query String
304
+ * @type {string}
305
+ * @memberof BusinessPartnerGroupQuery
306
+ */
307
+ searchQuery?: string;
308
+ /**
309
+ * Number of items to display
310
+ * @type {number}
311
+ * @memberof BusinessPartnerGroupQuery
312
+ */
313
+ limit?: number;
314
+ }
315
+
316
+ export declare function BusinessPartnerGroupQueryFromJSON(json: any): BusinessPartnerGroupQuery;
317
+
318
+ export declare function BusinessPartnerGroupQueryFromJSONTyped(json: any, ignoreDiscriminator: boolean): BusinessPartnerGroupQuery;
319
+
320
+ export declare function BusinessPartnerGroupQueryToJSON(json: any): BusinessPartnerGroupQuery;
321
+
322
+ export declare function BusinessPartnerGroupQueryToJSONTyped(value?: BusinessPartnerGroupQuery | null, ignoreDiscriminator?: boolean): any;
323
+
173
324
  /**
174
325
  * Callback address to be called after a transfer or negotiation success/failure
175
326
  * @export
@@ -1132,6 +1283,10 @@ export declare interface CreatePolicyDefinitionV2Request {
1132
1283
  policyDefinitionCreateDto?: PolicyDefinitionCreateDto;
1133
1284
  }
1134
1285
 
1286
+ export declare interface CreateVaultSecretRequest {
1287
+ vaultSecretCreateSubmit?: VaultSecretCreateSubmit;
1288
+ }
1289
+
1135
1290
  /**
1136
1291
  * Managed Identity Wallet (MIW) Config
1137
1292
  * @export
@@ -1473,6 +1628,10 @@ export declare interface DeleteAssetRequest {
1473
1628
  assetId: string;
1474
1629
  }
1475
1630
 
1631
+ export declare interface DeleteBusinessPartnerGroupRequest {
1632
+ id: string;
1633
+ }
1634
+
1476
1635
  export declare interface DeleteContractDefinitionRequest {
1477
1636
  contractDefinitionId: string;
1478
1637
  }
@@ -1481,6 +1640,10 @@ export declare interface DeletePolicyDefinitionRequest {
1481
1640
  policyId: string;
1482
1641
  }
1483
1642
 
1643
+ export declare interface DeleteVaultSecretRequest {
1644
+ key: string;
1645
+ }
1646
+
1484
1647
  /**
1485
1648
  * API Client for our sovity EDC
1486
1649
  */
@@ -1505,6 +1668,15 @@ export declare interface EditAssetRequest {
1505
1668
  uiAssetEditRequest?: UiAssetEditRequest;
1506
1669
  }
1507
1670
 
1671
+ export declare interface EditVaultSecretPageRequest {
1672
+ key: string;
1673
+ }
1674
+
1675
+ export declare interface EditVaultSecretRequest {
1676
+ key: string;
1677
+ vaultSecretEditSubmit?: VaultSecretEditSubmit;
1678
+ }
1679
+
1508
1680
  /**
1509
1681
  * Issued for a single transfer, calling the given endpoint allows you to directly interact with the data source. Depending on the asset you can pass data to the data source, provide query params or append a custom sub-path.
1510
1682
  * @export
@@ -1825,6 +1997,31 @@ export declare function instanceOfAssetPage(value: any): value is AssetPage;
1825
1997
  */
1826
1998
  export declare function instanceOfBuildInfo(value: any): value is BuildInfo;
1827
1999
 
2000
+ /**
2001
+ * Check if a given object implements the BusinessPartnerGroupCreateSubmit interface.
2002
+ */
2003
+ export declare function instanceOfBusinessPartnerGroupCreateSubmit(value: any): value is BusinessPartnerGroupCreateSubmit;
2004
+
2005
+ /**
2006
+ * Check if a given object implements the BusinessPartnerGroupEditPage interface.
2007
+ */
2008
+ export declare function instanceOfBusinessPartnerGroupEditPage(value: any): value is BusinessPartnerGroupEditPage;
2009
+
2010
+ /**
2011
+ * Check if a given object implements the BusinessPartnerGroupEditSubmit interface.
2012
+ */
2013
+ export declare function instanceOfBusinessPartnerGroupEditSubmit(value: any): value is BusinessPartnerGroupEditSubmit;
2014
+
2015
+ /**
2016
+ * Check if a given object implements the BusinessPartnerGroupListPageEntry interface.
2017
+ */
2018
+ export declare function instanceOfBusinessPartnerGroupListPageEntry(value: any): value is BusinessPartnerGroupListPageEntry;
2019
+
2020
+ /**
2021
+ * Check if a given object implements the BusinessPartnerGroupQuery interface.
2022
+ */
2023
+ export declare function instanceOfBusinessPartnerGroupQuery(value: any): value is BusinessPartnerGroupQuery;
2024
+
1828
2025
  /**
1829
2026
  * Check if a given object implements the CallbackAddressDto interface.
1830
2027
  */
@@ -2029,11 +2226,6 @@ export declare function instanceOfPolicyDefinitionDto(value: any): value is Poli
2029
2226
  */
2030
2227
  export declare function instanceOfPolicyDefinitionPage(value: any): value is PolicyDefinitionPage;
2031
2228
 
2032
- /**
2033
- * Check if a given object implements the SecretValue interface.
2034
- */
2035
- export declare function instanceOfSecretValue(value: any): value is SecretValue;
2036
-
2037
2229
  /**
2038
2230
  * Check if a given object implements the TransferHistoryEntry interface.
2039
2231
  */
@@ -2141,6 +2333,47 @@ export declare function instanceOfUiDataSourceHttpDataMethod(value: any): boolea
2141
2333
  */
2142
2334
  export declare function instanceOfUiDataSourceOnRequest(value: any): value is UiDataSourceOnRequest;
2143
2335
 
2336
+ /**
2337
+ * Check if a given object implements the UiHttpAuth interface.
2338
+ */
2339
+ export declare function instanceOfUiHttpAuth(value: any): value is UiHttpAuth;
2340
+
2341
+ /**
2342
+ * Check if a given object implements the UiHttpAuthApiKey interface.
2343
+ */
2344
+ export declare function instanceOfUiHttpAuthApiKey(value: any): value is UiHttpAuthApiKey;
2345
+
2346
+ /**
2347
+ * Check if a given object implements the UiHttpAuthBasic interface.
2348
+ */
2349
+ export declare function instanceOfUiHttpAuthBasic(value: any): value is UiHttpAuthBasic;
2350
+
2351
+ /**
2352
+ * Check if a given object implements the UiHttpAuthOauth2 interface.
2353
+ */
2354
+ export declare function instanceOfUiHttpAuthOauth2(value: any): value is UiHttpAuthOauth2;
2355
+
2356
+ export declare function instanceOfUiHttpAuthType(value: any): boolean;
2357
+
2358
+ export declare function instanceOfUiHttpOauth2AuthType(value: any): boolean;
2359
+
2360
+ /**
2361
+ * Check if a given object implements the UiHttpOauth2PrivateKeyAuthorization interface.
2362
+ */
2363
+ export declare function instanceOfUiHttpOauth2PrivateKeyAuthorization(value: any): value is UiHttpOauth2PrivateKeyAuthorization;
2364
+
2365
+ /**
2366
+ * Check if a given object implements the UiHttpOauth2SharedSecretAuthorization interface.
2367
+ */
2368
+ export declare function instanceOfUiHttpOauth2SharedSecretAuthorization(value: any): value is UiHttpOauth2SharedSecretAuthorization;
2369
+
2370
+ /**
2371
+ * Check if a given object implements the UiHttpPushAuth interface.
2372
+ */
2373
+ export declare function instanceOfUiHttpPushAuth(value: any): value is UiHttpPushAuth;
2374
+
2375
+ export declare function instanceOfUiHttpPushAuthType(value: any): boolean;
2376
+
2144
2377
  /**
2145
2378
  * Check if a given object implements the UiInitiateTransferRequest interface.
2146
2379
  */
@@ -2177,6 +2410,31 @@ export declare function instanceOfUiPolicyLiteral(value: any): value is UiPolicy
2177
2410
 
2178
2411
  export declare function instanceOfUiPolicyLiteralType(value: any): boolean;
2179
2412
 
2413
+ /**
2414
+ * Check if a given object implements the VaultSecretCreateSubmit interface.
2415
+ */
2416
+ export declare function instanceOfVaultSecretCreateSubmit(value: any): value is VaultSecretCreateSubmit;
2417
+
2418
+ /**
2419
+ * Check if a given object implements the VaultSecretEditPage interface.
2420
+ */
2421
+ export declare function instanceOfVaultSecretEditPage(value: any): value is VaultSecretEditPage;
2422
+
2423
+ /**
2424
+ * Check if a given object implements the VaultSecretEditSubmit interface.
2425
+ */
2426
+ export declare function instanceOfVaultSecretEditSubmit(value: any): value is VaultSecretEditSubmit;
2427
+
2428
+ /**
2429
+ * Check if a given object implements the VaultSecretListPageEntry interface.
2430
+ */
2431
+ export declare function instanceOfVaultSecretListPageEntry(value: any): value is VaultSecretListPageEntry;
2432
+
2433
+ /**
2434
+ * Check if a given object implements the VaultSecretQuery interface.
2435
+ */
2436
+ export declare function instanceOfVaultSecretQuery(value: any): value is VaultSecretQuery;
2437
+
2180
2438
  export declare interface IsAssetIdAvailableRequest {
2181
2439
  assetId: string;
2182
2440
  }
@@ -2244,6 +2502,10 @@ export declare function KpiResultToJSON(json: any): KpiResult;
2244
2502
 
2245
2503
  export declare function KpiResultToJSONTyped(value?: KpiResult | null, ignoreDiscriminator?: boolean): any;
2246
2504
 
2505
+ export declare interface ListVaultSecretsPageRequest {
2506
+ vaultSecretQuery?: VaultSecretQuery;
2507
+ }
2508
+
2247
2509
  export declare function mapValues(data: any, fn: (item: any) => any): {};
2248
2510
 
2249
2511
  export declare interface Middleware {
@@ -2579,34 +2841,6 @@ declare namespace runtime {
2579
2841
  }
2580
2842
  }
2581
2843
 
2582
- /**
2583
- * A value either inlined or to be fetched from the Vault. Raw secret values will land in the database and will be retrievable via the Eclipse EDC Management API.
2584
- * @export
2585
- * @interface SecretValue
2586
- */
2587
- export declare interface SecretValue {
2588
- /**
2589
- * Secret Name / Vault Key Name.
2590
- * @type {string}
2591
- * @memberof SecretValue
2592
- */
2593
- secretName?: string;
2594
- /**
2595
- * Raw inline Value.
2596
- * @type {string}
2597
- * @memberof SecretValue
2598
- */
2599
- rawValue?: string;
2600
- }
2601
-
2602
- export declare function SecretValueFromJSON(json: any): SecretValue;
2603
-
2604
- export declare function SecretValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): SecretValue;
2605
-
2606
- export declare function SecretValueToJSON(json: any): SecretValue;
2607
-
2608
- export declare function SecretValueToJSONTyped(value?: SecretValue | null, ignoreDiscriminator?: boolean): any;
2609
-
2610
2844
  export declare interface TerminateContractAgreementRequest {
2611
2845
  contractAgreementId: string;
2612
2846
  contractTerminationRequest?: ContractTerminationRequest;
@@ -2876,6 +3110,38 @@ export declare class UIApi extends runtime.BaseAPI {
2876
3110
  * Get the build version info
2877
3111
  */
2878
3112
  buildInfo(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<BuildInfo>;
3113
+ /**
3114
+ * Create a new Business Partner Group
3115
+ */
3116
+ businessPartnerGroupCreateSubmitRaw(requestParameters: BusinessPartnerGroupCreateSubmitRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
3117
+ /**
3118
+ * Create a new Business Partner Group
3119
+ */
3120
+ businessPartnerGroupCreateSubmit(requestParameters?: BusinessPartnerGroupCreateSubmitRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
3121
+ /**
3122
+ * Collect all data for the Business Partner Group Edit Page
3123
+ */
3124
+ businessPartnerGroupEditPageRaw(requestParameters: BusinessPartnerGroupEditPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<BusinessPartnerGroupEditPage>>;
3125
+ /**
3126
+ * Collect all data for the Business Partner Group Edit Page
3127
+ */
3128
+ businessPartnerGroupEditPage(requestParameters: BusinessPartnerGroupEditPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<BusinessPartnerGroupEditPage>;
3129
+ /**
3130
+ * Edit a Business Partner Group
3131
+ */
3132
+ businessPartnerGroupEditSubmitRaw(requestParameters: BusinessPartnerGroupEditSubmitRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
3133
+ /**
3134
+ * Edit a Business Partner Group
3135
+ */
3136
+ businessPartnerGroupEditSubmit(requestParameters: BusinessPartnerGroupEditSubmitRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
3137
+ /**
3138
+ * Collect all data for the Business Partner Groups List Page
3139
+ */
3140
+ businessPartnerGroupListPageRaw(requestParameters: BusinessPartnerGroupListPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<BusinessPartnerGroupListPageEntry>>>;
3141
+ /**
3142
+ * Collect all data for the Business Partner Groups List Page
3143
+ */
3144
+ businessPartnerGroupListPage(requestParameters?: BusinessPartnerGroupListPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<BusinessPartnerGroupListPageEntry>>;
2879
3145
  /**
2880
3146
  * Create a new Asset
2881
3147
  */
@@ -2920,6 +3186,14 @@ export declare class UIApi extends runtime.BaseAPI {
2920
3186
  * Create a new Policy Definition
2921
3187
  */
2922
3188
  createPolicyDefinitionV2(requestParameters?: CreatePolicyDefinitionV2Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
3189
+ /**
3190
+ * Create a new Vault Secret
3191
+ */
3192
+ createVaultSecretRaw(requestParameters: CreateVaultSecretRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
3193
+ /**
3194
+ * Create a new Vault Secret
3195
+ */
3196
+ createVaultSecret(requestParameters?: CreateVaultSecretRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
2923
3197
  /**
2924
3198
  * Delete an Asset
2925
3199
  */
@@ -2928,6 +3202,14 @@ export declare class UIApi extends runtime.BaseAPI {
2928
3202
  * Delete an Asset
2929
3203
  */
2930
3204
  deleteAsset(requestParameters: DeleteAssetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
3205
+ /**
3206
+ * Delete a Business Partner Group
3207
+ */
3208
+ deleteBusinessPartnerGroupRaw(requestParameters: DeleteBusinessPartnerGroupRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
3209
+ /**
3210
+ * Delete a Business Partner Group
3211
+ */
3212
+ deleteBusinessPartnerGroup(requestParameters: DeleteBusinessPartnerGroupRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
2931
3213
  /**
2932
3214
  * Delete a Contract Definition
2933
3215
  */
@@ -2944,6 +3226,14 @@ export declare class UIApi extends runtime.BaseAPI {
2944
3226
  * Delete a Policy Definition
2945
3227
  */
2946
3228
  deletePolicyDefinition(requestParameters: DeletePolicyDefinitionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
3229
+ /**
3230
+ * Delete a vault secret
3231
+ */
3232
+ deleteVaultSecretRaw(requestParameters: DeleteVaultSecretRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
3233
+ /**
3234
+ * Delete a vault secret
3235
+ */
3236
+ deleteVaultSecret(requestParameters: DeleteVaultSecretRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
2947
3237
  /**
2948
3238
  * Updates an Asset\'s metadata and optionally also the data source.
2949
3239
  */
@@ -2952,6 +3242,22 @@ export declare class UIApi extends runtime.BaseAPI {
2952
3242
  * Updates an Asset\'s metadata and optionally also the data source.
2953
3243
  */
2954
3244
  editAsset(requestParameters: EditAssetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
3245
+ /**
3246
+ * Edit an existing vault secret
3247
+ */
3248
+ editVaultSecretRaw(requestParameters: EditVaultSecretRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
3249
+ /**
3250
+ * Edit an existing vault secret
3251
+ */
3252
+ editVaultSecret(requestParameters: EditVaultSecretRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
3253
+ /**
3254
+ * Collect all data for the Edit Vault Secret Page
3255
+ */
3256
+ editVaultSecretPageRaw(requestParameters: EditVaultSecretPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VaultSecretEditPage>>;
3257
+ /**
3258
+ * Collect all data for the Edit Vault Secret Page
3259
+ */
3260
+ editVaultSecretPage(requestParameters: EditVaultSecretPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VaultSecretEditPage>;
2955
3261
  /**
2956
3262
  * Collect all data for Asset Page
2957
3263
  */
@@ -3100,6 +3406,14 @@ export declare class UIApi extends runtime.BaseAPI {
3100
3406
  * Validates if the provided policyId is already taken
3101
3407
  */
3102
3408
  isPolicyIdAvailable(requestParameters: IsPolicyIdAvailableRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdAvailabilityResponse>;
3409
+ /**
3410
+ * Collect all data for the Vault Secrets List Page
3411
+ */
3412
+ listVaultSecretsPageRaw(requestParameters: ListVaultSecretsPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<VaultSecretListPageEntry>>>;
3413
+ /**
3414
+ * Collect all data for the Vault Secrets List Page
3415
+ */
3416
+ listVaultSecretsPage(requestParameters?: ListVaultSecretsPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<VaultSecretListPageEntry>>;
3103
3417
  /**
3104
3418
  * Terminates a contract agreement designated by its contract agreement id.
3105
3419
  */
@@ -3722,6 +4036,9 @@ export declare const UiConfigFeature: {
3722
4036
  readonly ConnectorLimits: "CONNECTOR_LIMITS";
3723
4037
  readonly OpenSourceMarketing: "OPEN_SOURCE_MARKETING";
3724
4038
  readonly EeBasicMarketing: "EE_BASIC_MARKETING";
4039
+ readonly CatenaPolicies: "CATENA_POLICIES";
4040
+ readonly SovityPolicies: "SOVITY_POLICIES";
4041
+ readonly BusinessPartnerGroupManagement: "BUSINESS_PARTNER_GROUP_MANAGEMENT";
3725
4042
  };
3726
4043
 
3727
4044
  export declare type UiConfigFeature = (typeof UiConfigFeature)[keyof typeof UiConfigFeature];
@@ -4013,17 +4330,11 @@ export declare interface UiDataSinkHttpDataPush {
4013
4330
  */
4014
4331
  queryString?: string;
4015
4332
  /**
4016
- * Auth Header name. The auth header is handled specially by the EDC as its value can be read from a vault.
4017
- * @type {string}
4333
+ * The authentication method.
4334
+ * @type {UiHttpPushAuth}
4018
4335
  * @memberof UiDataSinkHttpDataPush
4019
4336
  */
4020
- authHeaderName?: string;
4021
- /**
4022
- * Auth Header value.
4023
- * @type {SecretValue}
4024
- * @memberof UiDataSinkHttpDataPush
4025
- */
4026
- authHeaderValue?: SecretValue;
4337
+ auth?: UiHttpPushAuth;
4027
4338
  /**
4028
4339
  * HTTP Request Headers.
4029
4340
  * @type {{ [key: string]: string; }}
@@ -4127,17 +4438,11 @@ export declare interface UiDataSourceHttpData {
4127
4438
  */
4128
4439
  queryString?: string;
4129
4440
  /**
4130
- * Auth Header name. The auth header is handled specially by the EDC as its value can be read from a vault.
4131
- * @type {string}
4441
+ * The authentication method.
4442
+ * @type {UiHttpAuth}
4132
4443
  * @memberof UiDataSourceHttpData
4133
4444
  */
4134
- authHeaderName?: string;
4135
- /**
4136
- * Auth Header value.
4137
- * @type {SecretValue}
4138
- * @memberof UiDataSourceHttpData
4139
- */
4140
- authHeaderValue?: SecretValue;
4445
+ auth?: UiHttpAuth;
4141
4446
  /**
4142
4447
  * HTTP Request Headers. HTTP Header Parameterization is not available.
4143
4448
  * @type {{ [key: string]: string; }}
@@ -4235,6 +4540,296 @@ export declare function UiDataSourceToJSON(json: any): UiDataSource;
4235
4540
 
4236
4541
  export declare function UiDataSourceToJSONTyped(value?: UiDataSource | null, ignoreDiscriminator?: boolean): any;
4237
4542
 
4543
+ /**
4544
+ * Available authentication methods for http data sources. Use only one.
4545
+ * @export
4546
+ * @interface UiHttpAuth
4547
+ */
4548
+ export declare interface UiHttpAuth {
4549
+ /**
4550
+ * The type of authentication.
4551
+ * @type {UiHttpAuthType}
4552
+ * @memberof UiHttpAuth
4553
+ */
4554
+ type: UiHttpAuthType;
4555
+ /**
4556
+ * Required when type=BASIC. To use basic authentication.
4557
+ * @type {UiHttpAuthBasic}
4558
+ * @memberof UiHttpAuth
4559
+ */
4560
+ basic?: UiHttpAuthBasic;
4561
+ /**
4562
+ * Required when type=API_KEY. To use api key authentication with a secret from the vault.
4563
+ * @type {UiHttpAuthApiKey}
4564
+ * @memberof UiHttpAuth
4565
+ */
4566
+ apiKey?: UiHttpAuthApiKey;
4567
+ /**
4568
+ * Required when type=OAUTH. To use oauth authentication.
4569
+ * @type {UiHttpAuthOauth2}
4570
+ * @memberof UiHttpAuth
4571
+ */
4572
+ oauth?: UiHttpAuthOauth2;
4573
+ }
4574
+
4575
+ /**
4576
+ * Api Key parameters
4577
+ * @export
4578
+ * @interface UiHttpAuthApiKey
4579
+ */
4580
+ export declare interface UiHttpAuthApiKey {
4581
+ /**
4582
+ * Auth Header name.
4583
+ * @type {string}
4584
+ * @memberof UiHttpAuthApiKey
4585
+ */
4586
+ headerName: string;
4587
+ /**
4588
+ * Auth Header key in the vault.
4589
+ * @type {string}
4590
+ * @memberof UiHttpAuthApiKey
4591
+ */
4592
+ vaultKey: string;
4593
+ }
4594
+
4595
+ export declare function UiHttpAuthApiKeyFromJSON(json: any): UiHttpAuthApiKey;
4596
+
4597
+ export declare function UiHttpAuthApiKeyFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiHttpAuthApiKey;
4598
+
4599
+ export declare function UiHttpAuthApiKeyToJSON(json: any): UiHttpAuthApiKey;
4600
+
4601
+ export declare function UiHttpAuthApiKeyToJSONTyped(value?: UiHttpAuthApiKey | null, ignoreDiscriminator?: boolean): any;
4602
+
4603
+ /**
4604
+ * Basic Auth as defined in RFC 7617. This is a wrapper for setting the header as Authorization: Basic Zm9vOnBhc3N3b3Jk. Using basic auth is not recommended in general for security reasons, but it is also not recommended because the secret will be saved in the database rather than the vault.
4605
+ * @export
4606
+ * @interface UiHttpAuthBasic
4607
+ */
4608
+ export declare interface UiHttpAuthBasic {
4609
+ /**
4610
+ * The username
4611
+ * @type {string}
4612
+ * @memberof UiHttpAuthBasic
4613
+ */
4614
+ username: string;
4615
+ /**
4616
+ * The password
4617
+ * @type {string}
4618
+ * @memberof UiHttpAuthBasic
4619
+ */
4620
+ password: string;
4621
+ }
4622
+
4623
+ export declare function UiHttpAuthBasicFromJSON(json: any): UiHttpAuthBasic;
4624
+
4625
+ export declare function UiHttpAuthBasicFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiHttpAuthBasic;
4626
+
4627
+ export declare function UiHttpAuthBasicToJSON(json: any): UiHttpAuthBasic;
4628
+
4629
+ export declare function UiHttpAuthBasicToJSONTyped(value?: UiHttpAuthBasic | null, ignoreDiscriminator?: boolean): any;
4630
+
4631
+ export declare function UiHttpAuthFromJSON(json: any): UiHttpAuth;
4632
+
4633
+ export declare function UiHttpAuthFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiHttpAuth;
4634
+
4635
+ /**
4636
+ * OAuth 2 authentication information
4637
+ * @export
4638
+ * @interface UiHttpAuthOauth2
4639
+ */
4640
+ export declare interface UiHttpAuthOauth2 {
4641
+ /**
4642
+ * The token URL where the access-token can be fetched from.
4643
+ * @type {string}
4644
+ * @memberof UiHttpAuthOauth2
4645
+ */
4646
+ tokenUrl: string;
4647
+ /**
4648
+ * (optional) The requested scope.
4649
+ * @type {string}
4650
+ * @memberof UiHttpAuthOauth2
4651
+ */
4652
+ scope?: string;
4653
+ /**
4654
+ * The type of credential.
4655
+ * @type {UiHttpOauth2AuthType}
4656
+ * @memberof UiHttpAuthOauth2
4657
+ */
4658
+ type: UiHttpOauth2AuthType;
4659
+ /**
4660
+ * Required if type=PRIVATE_KEY. For private key-based authorization.
4661
+ * @type {UiHttpOauth2PrivateKeyAuthorization}
4662
+ * @memberof UiHttpAuthOauth2
4663
+ */
4664
+ privateKey?: UiHttpOauth2PrivateKeyAuthorization;
4665
+ /**
4666
+ * Required if type=SHARED_SECRET. For shared secret-based authorization.
4667
+ * @type {UiHttpOauth2SharedSecretAuthorization}
4668
+ * @memberof UiHttpAuthOauth2
4669
+ */
4670
+ sharedSecret?: UiHttpOauth2SharedSecretAuthorization;
4671
+ }
4672
+
4673
+ export declare function UiHttpAuthOauth2FromJSON(json: any): UiHttpAuthOauth2;
4674
+
4675
+ export declare function UiHttpAuthOauth2FromJSONTyped(json: any, ignoreDiscriminator: boolean): UiHttpAuthOauth2;
4676
+
4677
+ export declare function UiHttpAuthOauth2ToJSON(json: any): UiHttpAuthOauth2;
4678
+
4679
+ export declare function UiHttpAuthOauth2ToJSONTyped(value?: UiHttpAuthOauth2 | null, ignoreDiscriminator?: boolean): any;
4680
+
4681
+ export declare function UiHttpAuthToJSON(json: any): UiHttpAuth;
4682
+
4683
+ export declare function UiHttpAuthToJSONTyped(value?: UiHttpAuth | null, ignoreDiscriminator?: boolean): any;
4684
+
4685
+ /**
4686
+ * Supported authentication types for HTTP Data Sinks
4687
+ * @export
4688
+ */
4689
+ export declare const UiHttpAuthType: {
4690
+ readonly Basic: "BASIC";
4691
+ readonly Oauth2: "OAUTH2";
4692
+ readonly ApiKey: "API_KEY";
4693
+ };
4694
+
4695
+ export declare type UiHttpAuthType = (typeof UiHttpAuthType)[keyof typeof UiHttpAuthType];
4696
+
4697
+ export declare function UiHttpAuthTypeFromJSON(json: any): UiHttpAuthType;
4698
+
4699
+ export declare function UiHttpAuthTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiHttpAuthType;
4700
+
4701
+ export declare function UiHttpAuthTypeToJSON(value?: UiHttpAuthType | null): any;
4702
+
4703
+ export declare function UiHttpAuthTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): UiHttpAuthType;
4704
+
4705
+ /**
4706
+ * Types of OAuth2 flows supported
4707
+ * @export
4708
+ */
4709
+ export declare const UiHttpOauth2AuthType: {
4710
+ readonly SharedSecret: "SHARED_SECRET";
4711
+ readonly PrivateKey: "PRIVATE_KEY";
4712
+ };
4713
+
4714
+ export declare type UiHttpOauth2AuthType = (typeof UiHttpOauth2AuthType)[keyof typeof UiHttpOauth2AuthType];
4715
+
4716
+ export declare function UiHttpOauth2AuthTypeFromJSON(json: any): UiHttpOauth2AuthType;
4717
+
4718
+ export declare function UiHttpOauth2AuthTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiHttpOauth2AuthType;
4719
+
4720
+ export declare function UiHttpOauth2AuthTypeToJSON(value?: UiHttpOauth2AuthType | null): any;
4721
+
4722
+ export declare function UiHttpOauth2AuthTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): UiHttpOauth2AuthType;
4723
+
4724
+ /**
4725
+ * OAuth 2 authorization with a private key
4726
+ * @export
4727
+ * @interface UiHttpOauth2PrivateKeyAuthorization
4728
+ */
4729
+ export declare interface UiHttpOauth2PrivateKeyAuthorization {
4730
+ /**
4731
+ * The vault entry name of the private key used to sign the JWT sent to the Oauth2 server.
4732
+ * @type {string}
4733
+ * @memberof UiHttpOauth2PrivateKeyAuthorization
4734
+ */
4735
+ privateKeyName: string;
4736
+ /**
4737
+ * The validity of the JWT token sent to the Oauth2 server (in seconds).
4738
+ * @type {number}
4739
+ * @memberof UiHttpOauth2PrivateKeyAuthorization
4740
+ */
4741
+ tokenValidityInSeconds: number;
4742
+ }
4743
+
4744
+ export declare function UiHttpOauth2PrivateKeyAuthorizationFromJSON(json: any): UiHttpOauth2PrivateKeyAuthorization;
4745
+
4746
+ export declare function UiHttpOauth2PrivateKeyAuthorizationFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiHttpOauth2PrivateKeyAuthorization;
4747
+
4748
+ export declare function UiHttpOauth2PrivateKeyAuthorizationToJSON(json: any): UiHttpOauth2PrivateKeyAuthorization;
4749
+
4750
+ export declare function UiHttpOauth2PrivateKeyAuthorizationToJSONTyped(value?: UiHttpOauth2PrivateKeyAuthorization | null, ignoreDiscriminator?: boolean): any;
4751
+
4752
+ /**
4753
+ * OAuth 2 shared secret authorization. This uses the OAuth2 client credentials flow.
4754
+ * @export
4755
+ * @interface UiHttpOauth2SharedSecretAuthorization
4756
+ */
4757
+ export declare interface UiHttpOauth2SharedSecretAuthorization {
4758
+ /**
4759
+ * The client identifier.
4760
+ * @type {string}
4761
+ * @memberof UiHttpOauth2SharedSecretAuthorization
4762
+ */
4763
+ clientId: string;
4764
+ /**
4765
+ * The key with which the shared secret for authenticating to the Oauth2 server is stored into the Vault.
4766
+ * @type {string}
4767
+ * @memberof UiHttpOauth2SharedSecretAuthorization
4768
+ */
4769
+ clientSecretName: string;
4770
+ }
4771
+
4772
+ export declare function UiHttpOauth2SharedSecretAuthorizationFromJSON(json: any): UiHttpOauth2SharedSecretAuthorization;
4773
+
4774
+ export declare function UiHttpOauth2SharedSecretAuthorizationFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiHttpOauth2SharedSecretAuthorization;
4775
+
4776
+ export declare function UiHttpOauth2SharedSecretAuthorizationToJSON(json: any): UiHttpOauth2SharedSecretAuthorization;
4777
+
4778
+ export declare function UiHttpOauth2SharedSecretAuthorizationToJSONTyped(value?: UiHttpOauth2SharedSecretAuthorization | null, ignoreDiscriminator?: boolean): any;
4779
+
4780
+ /**
4781
+ * Available authentication methods for when pushing data into a data sink with HTTP PUSH. Use only one.
4782
+ * @export
4783
+ * @interface UiHttpPushAuth
4784
+ */
4785
+ export declare interface UiHttpPushAuth {
4786
+ /**
4787
+ * The type of authentication.
4788
+ * @type {UiHttpPushAuthType}
4789
+ * @memberof UiHttpPushAuth
4790
+ */
4791
+ type: UiHttpPushAuthType;
4792
+ /**
4793
+ * Required when type=BASIC. To use basic authentication.
4794
+ * @type {UiHttpAuthBasic}
4795
+ * @memberof UiHttpPushAuth
4796
+ */
4797
+ basic?: UiHttpAuthBasic;
4798
+ /**
4799
+ * Required when type=API_KEY. To use api key authentication with a secret from the vault.
4800
+ * @type {UiHttpAuthApiKey}
4801
+ * @memberof UiHttpPushAuth
4802
+ */
4803
+ apiKey?: UiHttpAuthApiKey;
4804
+ }
4805
+
4806
+ export declare function UiHttpPushAuthFromJSON(json: any): UiHttpPushAuth;
4807
+
4808
+ export declare function UiHttpPushAuthFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiHttpPushAuth;
4809
+
4810
+ export declare function UiHttpPushAuthToJSON(json: any): UiHttpPushAuth;
4811
+
4812
+ export declare function UiHttpPushAuthToJSONTyped(value?: UiHttpPushAuth | null, ignoreDiscriminator?: boolean): any;
4813
+
4814
+ /**
4815
+ * Supported authentication types for HTTP Push Transfers. OAuth2 is not supported in the deprecated HttpPush transfer type due to previous security concerns in the architecture of this flow
4816
+ * @export
4817
+ */
4818
+ export declare const UiHttpPushAuthType: {
4819
+ readonly Basic: "BASIC";
4820
+ readonly ApiKey: "API_KEY";
4821
+ };
4822
+
4823
+ export declare type UiHttpPushAuthType = (typeof UiHttpPushAuthType)[keyof typeof UiHttpPushAuthType];
4824
+
4825
+ export declare function UiHttpPushAuthTypeFromJSON(json: any): UiHttpPushAuthType;
4826
+
4827
+ export declare function UiHttpPushAuthTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiHttpPushAuthType;
4828
+
4829
+ export declare function UiHttpPushAuthTypeToJSON(value?: UiHttpPushAuthType | null): any;
4830
+
4831
+ export declare function UiHttpPushAuthTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): UiHttpPushAuthType;
4832
+
4238
4833
  /**
4239
4834
  * Type-safe data sink as supported by the sovity product landscape. Contains extension points for using custom data address properties.
4240
4835
  * @export
@@ -4609,6 +5204,158 @@ export declare class UseCaseApi extends runtime.BaseAPI {
4609
5204
  terminateTransferProcess(requestParameters: TerminateTransferProcessRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
4610
5205
  }
4611
5206
 
5207
+ /**
5208
+ * Submit Request for creating a new User Managed Vault Secret
5209
+ * @export
5210
+ * @interface VaultSecretCreateSubmit
5211
+ */
5212
+ export declare interface VaultSecretCreateSubmit {
5213
+ /**
5214
+ * Key
5215
+ * @type {string}
5216
+ * @memberof VaultSecretCreateSubmit
5217
+ */
5218
+ key: string;
5219
+ /**
5220
+ * Value
5221
+ * @type {string}
5222
+ * @memberof VaultSecretCreateSubmit
5223
+ */
5224
+ value: string;
5225
+ /**
5226
+ * Description
5227
+ * @type {string}
5228
+ * @memberof VaultSecretCreateSubmit
5229
+ */
5230
+ description: string;
5231
+ }
5232
+
5233
+ export declare function VaultSecretCreateSubmitFromJSON(json: any): VaultSecretCreateSubmit;
5234
+
5235
+ export declare function VaultSecretCreateSubmitFromJSONTyped(json: any, ignoreDiscriminator: boolean): VaultSecretCreateSubmit;
5236
+
5237
+ export declare function VaultSecretCreateSubmitToJSON(json: any): VaultSecretCreateSubmit;
5238
+
5239
+ export declare function VaultSecretCreateSubmitToJSONTyped(value?: VaultSecretCreateSubmit | null, ignoreDiscriminator?: boolean): any;
5240
+
5241
+ /**
5242
+ * Data for the Edit Page for User Managed Vault Secrets
5243
+ * @export
5244
+ * @interface VaultSecretEditPage
5245
+ */
5246
+ export declare interface VaultSecretEditPage {
5247
+ /**
5248
+ * Key
5249
+ * @type {string}
5250
+ * @memberof VaultSecretEditPage
5251
+ */
5252
+ key: string;
5253
+ /**
5254
+ * Description
5255
+ * @type {string}
5256
+ * @memberof VaultSecretEditPage
5257
+ */
5258
+ description: string;
5259
+ }
5260
+
5261
+ export declare function VaultSecretEditPageFromJSON(json: any): VaultSecretEditPage;
5262
+
5263
+ export declare function VaultSecretEditPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): VaultSecretEditPage;
5264
+
5265
+ export declare function VaultSecretEditPageToJSON(json: any): VaultSecretEditPage;
5266
+
5267
+ export declare function VaultSecretEditPageToJSONTyped(value?: VaultSecretEditPage | null, ignoreDiscriminator?: boolean): any;
5268
+
5269
+ /**
5270
+ * Submit Request for editing a User Managed Vault Secret
5271
+ * @export
5272
+ * @interface VaultSecretEditSubmit
5273
+ */
5274
+ export declare interface VaultSecretEditSubmit {
5275
+ /**
5276
+ * Secret value of the vault secret. If null, will not change the stored value
5277
+ * @type {string}
5278
+ * @memberof VaultSecretEditSubmit
5279
+ */
5280
+ value?: string;
5281
+ /**
5282
+ * Description
5283
+ * @type {string}
5284
+ * @memberof VaultSecretEditSubmit
5285
+ */
5286
+ description: string;
5287
+ }
5288
+
5289
+ export declare function VaultSecretEditSubmitFromJSON(json: any): VaultSecretEditSubmit;
5290
+
5291
+ export declare function VaultSecretEditSubmitFromJSONTyped(json: any, ignoreDiscriminator: boolean): VaultSecretEditSubmit;
5292
+
5293
+ export declare function VaultSecretEditSubmitToJSON(json: any): VaultSecretEditSubmit;
5294
+
5295
+ export declare function VaultSecretEditSubmitToJSONTyped(value?: VaultSecretEditSubmit | null, ignoreDiscriminator?: boolean): any;
5296
+
5297
+ /**
5298
+ * List Page Entry for the List Page of User Managed Vault Secrets
5299
+ * @export
5300
+ * @interface VaultSecretListPageEntry
5301
+ */
5302
+ export declare interface VaultSecretListPageEntry {
5303
+ /**
5304
+ * Key
5305
+ * @type {string}
5306
+ * @memberof VaultSecretListPageEntry
5307
+ */
5308
+ key: string;
5309
+ /**
5310
+ * Description
5311
+ * @type {string}
5312
+ * @memberof VaultSecretListPageEntry
5313
+ */
5314
+ description: string;
5315
+ /**
5316
+ * Updated At
5317
+ * @type {Date}
5318
+ * @memberof VaultSecretListPageEntry
5319
+ */
5320
+ updatedAt: Date;
5321
+ }
5322
+
5323
+ export declare function VaultSecretListPageEntryFromJSON(json: any): VaultSecretListPageEntry;
5324
+
5325
+ export declare function VaultSecretListPageEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): VaultSecretListPageEntry;
5326
+
5327
+ export declare function VaultSecretListPageEntryToJSON(json: any): VaultSecretListPageEntry;
5328
+
5329
+ export declare function VaultSecretListPageEntryToJSONTyped(value?: VaultSecretListPageEntry | null, ignoreDiscriminator?: boolean): any;
5330
+
5331
+ /**
5332
+ * Query for filtering Vault Secrets
5333
+ * @export
5334
+ * @interface VaultSecretQuery
5335
+ */
5336
+ export declare interface VaultSecretQuery {
5337
+ /**
5338
+ * Search Query String
5339
+ * @type {string}
5340
+ * @memberof VaultSecretQuery
5341
+ */
5342
+ searchQuery?: string;
5343
+ /**
5344
+ * Number of items to display
5345
+ * @type {number}
5346
+ * @memberof VaultSecretQuery
5347
+ */
5348
+ limit?: number;
5349
+ }
5350
+
5351
+ export declare function VaultSecretQueryFromJSON(json: any): VaultSecretQuery;
5352
+
5353
+ export declare function VaultSecretQueryFromJSONTyped(json: any, ignoreDiscriminator: boolean): VaultSecretQuery;
5354
+
5355
+ export declare function VaultSecretQueryToJSON(json: any): VaultSecretQuery;
5356
+
5357
+ export declare function VaultSecretQueryToJSONTyped(value?: VaultSecretQuery | null, ignoreDiscriminator?: boolean): any;
5358
+
4612
5359
  export declare class VoidApiResponse {
4613
5360
  raw: Response;
4614
5361
  constructor(raw: Response);