@sovity.de/edc-client 16.2.2 → 16.4.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.
|
@@ -192,6 +192,68 @@ export declare function AssetsPageSortPropertyToJSON(value?: AssetsPageSortPrope
|
|
|
192
192
|
|
|
193
193
|
export declare function AssetsPageSortPropertyToJSONTyped(value: any, ignoreDiscriminator: boolean): AssetsPageSortProperty;
|
|
194
194
|
|
|
195
|
+
/**
|
|
196
|
+
* Azure List Blobs Request
|
|
197
|
+
* @export
|
|
198
|
+
* @interface AzureStorageListBlobsRequest
|
|
199
|
+
*/
|
|
200
|
+
export declare interface AzureStorageListBlobsRequest {
|
|
201
|
+
/**
|
|
202
|
+
* Storage Account Name
|
|
203
|
+
* @type {string}
|
|
204
|
+
* @memberof AzureStorageListBlobsRequest
|
|
205
|
+
*/
|
|
206
|
+
storageAccountName: string;
|
|
207
|
+
/**
|
|
208
|
+
* Container Name
|
|
209
|
+
* @type {string}
|
|
210
|
+
* @memberof AzureStorageListBlobsRequest
|
|
211
|
+
*/
|
|
212
|
+
containerName: string;
|
|
213
|
+
/**
|
|
214
|
+
* Location of the Storage Account Secret in the Vault
|
|
215
|
+
* @type {string}
|
|
216
|
+
* @memberof AzureStorageListBlobsRequest
|
|
217
|
+
*/
|
|
218
|
+
storageAccountVaultKey: string;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
export declare function AzureStorageListBlobsRequestFromJSON(json: any): AzureStorageListBlobsRequest;
|
|
222
|
+
|
|
223
|
+
export declare function AzureStorageListBlobsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AzureStorageListBlobsRequest;
|
|
224
|
+
|
|
225
|
+
export declare function AzureStorageListBlobsRequestToJSON(json: any): AzureStorageListBlobsRequest;
|
|
226
|
+
|
|
227
|
+
export declare function AzureStorageListBlobsRequestToJSONTyped(value?: AzureStorageListBlobsRequest | null, ignoreDiscriminator?: boolean): any;
|
|
228
|
+
|
|
229
|
+
/**
|
|
230
|
+
* Azure List Containers Request
|
|
231
|
+
* @export
|
|
232
|
+
* @interface AzureStorageListContainersRequest
|
|
233
|
+
*/
|
|
234
|
+
export declare interface AzureStorageListContainersRequest {
|
|
235
|
+
/**
|
|
236
|
+
* Storage Account Name
|
|
237
|
+
* @type {string}
|
|
238
|
+
* @memberof AzureStorageListContainersRequest
|
|
239
|
+
*/
|
|
240
|
+
storageAccountName: string;
|
|
241
|
+
/**
|
|
242
|
+
* Location of the Storage Account Secret in the Vault
|
|
243
|
+
* @type {string}
|
|
244
|
+
* @memberof AzureStorageListContainersRequest
|
|
245
|
+
*/
|
|
246
|
+
storageAccountVaultKey: string;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
export declare function AzureStorageListContainersRequestFromJSON(json: any): AzureStorageListContainersRequest;
|
|
250
|
+
|
|
251
|
+
export declare function AzureStorageListContainersRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AzureStorageListContainersRequest;
|
|
252
|
+
|
|
253
|
+
export declare function AzureStorageListContainersRequestToJSON(json: any): AzureStorageListContainersRequest;
|
|
254
|
+
|
|
255
|
+
export declare function AzureStorageListContainersRequestToJSONTyped(value?: AzureStorageListContainersRequest | null, ignoreDiscriminator?: boolean): any;
|
|
256
|
+
|
|
195
257
|
/**
|
|
196
258
|
* sovity EDC API Wrapper
|
|
197
259
|
* sovity\'s EDC API Wrapper contains a selection of APIs for multiple consumers, e.g. our EDC UI API, our generic Use Case API, our Commercial Edition APIs, etc. We bundled these APIs, so we can have an easier time generating our API Client Libraries.
|
|
@@ -1505,6 +1567,10 @@ export declare interface CreateDataOfferRequest {
|
|
|
1505
1567
|
dataOfferCreateRequest?: DataOfferCreateRequest;
|
|
1506
1568
|
}
|
|
1507
1569
|
|
|
1570
|
+
export declare interface CreatePolicyDefinitionFromJsonLdRequest {
|
|
1571
|
+
policyDefinitionCreateFromJsonLdDto?: PolicyDefinitionCreateFromJsonLdDto;
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1508
1574
|
export declare interface CreatePolicyDefinitionRequest {
|
|
1509
1575
|
policyDefinitionCreateRequest?: PolicyDefinitionCreateRequest;
|
|
1510
1576
|
}
|
|
@@ -1768,17 +1834,29 @@ export declare interface DataOfferCreateRequest {
|
|
|
1768
1834
|
*/
|
|
1769
1835
|
asset: UiAssetCreateRequest;
|
|
1770
1836
|
/**
|
|
1771
|
-
*
|
|
1837
|
+
* The data offer publishing type
|
|
1772
1838
|
* @type {DataOfferPublishType}
|
|
1773
1839
|
* @memberof DataOfferCreateRequest
|
|
1774
1840
|
*/
|
|
1775
1841
|
publishType: DataOfferPublishType;
|
|
1776
1842
|
/**
|
|
1777
|
-
*
|
|
1843
|
+
* The policy creation type. Only required if publishType is PUBLISH_RESTRICTED.
|
|
1844
|
+
* @type {DataOfferPolicyCreateType}
|
|
1845
|
+
* @memberof DataOfferCreateRequest
|
|
1846
|
+
*/
|
|
1847
|
+
policyCreateType?: DataOfferPolicyCreateType;
|
|
1848
|
+
/**
|
|
1849
|
+
* Tree-structured policy expression. Only required if publishType is PUBLISH_RESTRICTED and policyCreateType is POLICY_EXPRESSION.
|
|
1778
1850
|
* @type {UiPolicyExpression}
|
|
1779
1851
|
* @memberof DataOfferCreateRequest
|
|
1780
1852
|
*/
|
|
1781
1853
|
policyExpression?: UiPolicyExpression;
|
|
1854
|
+
/**
|
|
1855
|
+
* ODRL policy as JSON-LD. Only required if publishType is PUBLISH_RESTRICTED and policyCreateType is POLICY_JSON_LD.
|
|
1856
|
+
* @type {string}
|
|
1857
|
+
* @memberof DataOfferCreateRequest
|
|
1858
|
+
*/
|
|
1859
|
+
policyJsonLd?: string;
|
|
1782
1860
|
}
|
|
1783
1861
|
|
|
1784
1862
|
export declare function DataOfferCreateRequestFromJSON(json: any): DataOfferCreateRequest;
|
|
@@ -1789,6 +1867,25 @@ export declare function DataOfferCreateRequestToJSON(json: any): DataOfferCreate
|
|
|
1789
1867
|
|
|
1790
1868
|
export declare function DataOfferCreateRequestToJSONTyped(value?: DataOfferCreateRequest | null, ignoreDiscriminator?: boolean): any;
|
|
1791
1869
|
|
|
1870
|
+
/**
|
|
1871
|
+
* The policy creation type
|
|
1872
|
+
* @export
|
|
1873
|
+
*/
|
|
1874
|
+
export declare const DataOfferPolicyCreateType: {
|
|
1875
|
+
readonly Expression: "POLICY_EXPRESSION";
|
|
1876
|
+
readonly JsonLd: "POLICY_JSON_LD";
|
|
1877
|
+
};
|
|
1878
|
+
|
|
1879
|
+
export declare type DataOfferPolicyCreateType = (typeof DataOfferPolicyCreateType)[keyof typeof DataOfferPolicyCreateType];
|
|
1880
|
+
|
|
1881
|
+
export declare function DataOfferPolicyCreateTypeFromJSON(json: any): DataOfferPolicyCreateType;
|
|
1882
|
+
|
|
1883
|
+
export declare function DataOfferPolicyCreateTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataOfferPolicyCreateType;
|
|
1884
|
+
|
|
1885
|
+
export declare function DataOfferPolicyCreateTypeToJSON(value?: DataOfferPolicyCreateType | null): any;
|
|
1886
|
+
|
|
1887
|
+
export declare function DataOfferPolicyCreateTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): DataOfferPolicyCreateType;
|
|
1888
|
+
|
|
1792
1889
|
/**
|
|
1793
1890
|
* Decides whether the data offer is to be published published:
|
|
1794
1891
|
* * `DONT_PUBLISH` - Data offer is not published. Only an asset is created.
|
|
@@ -1839,6 +1936,7 @@ export declare function DataSourceAvailabilityToJSONTyped(value: any, ignoreDisc
|
|
|
1839
1936
|
export declare const DataSourceType: {
|
|
1840
1937
|
readonly HttpData: "HTTP_DATA";
|
|
1841
1938
|
readonly OnRequest: "ON_REQUEST";
|
|
1939
|
+
readonly AzureStorage: "AZURE_STORAGE";
|
|
1842
1940
|
readonly Custom: "CUSTOM";
|
|
1843
1941
|
};
|
|
1844
1942
|
|
|
@@ -2226,6 +2324,16 @@ export declare function instanceOfAssetsPageResult(value: any): value is AssetsP
|
|
|
2226
2324
|
|
|
2227
2325
|
export declare function instanceOfAssetsPageSortProperty(value: any): boolean;
|
|
2228
2326
|
|
|
2327
|
+
/**
|
|
2328
|
+
* Check if a given object implements the AzureStorageListBlobsRequest interface.
|
|
2329
|
+
*/
|
|
2330
|
+
export declare function instanceOfAzureStorageListBlobsRequest(value: any): value is AzureStorageListBlobsRequest;
|
|
2331
|
+
|
|
2332
|
+
/**
|
|
2333
|
+
* Check if a given object implements the AzureStorageListContainersRequest interface.
|
|
2334
|
+
*/
|
|
2335
|
+
export declare function instanceOfAzureStorageListContainersRequest(value: any): value is AzureStorageListContainersRequest;
|
|
2336
|
+
|
|
2229
2337
|
/**
|
|
2230
2338
|
* Check if a given object implements the BuildInfo interface.
|
|
2231
2339
|
*/
|
|
@@ -2399,6 +2507,8 @@ export declare function instanceOfDashboardTransferAmounts(value: any): value is
|
|
|
2399
2507
|
*/
|
|
2400
2508
|
export declare function instanceOfDataOfferCreateRequest(value: any): value is DataOfferCreateRequest;
|
|
2401
2509
|
|
|
2510
|
+
export declare function instanceOfDataOfferPolicyCreateType(value: any): boolean;
|
|
2511
|
+
|
|
2402
2512
|
export declare function instanceOfDataOfferPublishType(value: any): boolean;
|
|
2403
2513
|
|
|
2404
2514
|
export declare function instanceOfDataSourceAvailability(value: any): boolean;
|
|
@@ -2462,6 +2572,11 @@ export declare function instanceOfPaginationResult(value: any): value is Paginat
|
|
|
2462
2572
|
*/
|
|
2463
2573
|
export declare function instanceOfPolicyDefinitionCreateDto(value: any): value is PolicyDefinitionCreateDto;
|
|
2464
2574
|
|
|
2575
|
+
/**
|
|
2576
|
+
* Check if a given object implements the PolicyDefinitionCreateFromJsonLdDto interface.
|
|
2577
|
+
*/
|
|
2578
|
+
export declare function instanceOfPolicyDefinitionCreateFromJsonLdDto(value: any): value is PolicyDefinitionCreateFromJsonLdDto;
|
|
2579
|
+
|
|
2465
2580
|
/**
|
|
2466
2581
|
* Check if a given object implements the PolicyDefinitionCreateRequest interface.
|
|
2467
2582
|
*/
|
|
@@ -2577,6 +2692,11 @@ export declare function instanceOfUiCriterionOperator(value: any): boolean;
|
|
|
2577
2692
|
*/
|
|
2578
2693
|
export declare function instanceOfUiDataOffer(value: any): value is UiDataOffer;
|
|
2579
2694
|
|
|
2695
|
+
/**
|
|
2696
|
+
* Check if a given object implements the UiDataSinkAzureStorage interface.
|
|
2697
|
+
*/
|
|
2698
|
+
export declare function instanceOfUiDataSinkAzureStorage(value: any): value is UiDataSinkAzureStorage;
|
|
2699
|
+
|
|
2580
2700
|
/**
|
|
2581
2701
|
* Check if a given object implements the UiDataSinkHttpDataPush interface.
|
|
2582
2702
|
*/
|
|
@@ -2589,6 +2709,11 @@ export declare function instanceOfUiDataSinkHttpDataPushMethod(value: any): bool
|
|
|
2589
2709
|
*/
|
|
2590
2710
|
export declare function instanceOfUiDataSource(value: any): value is UiDataSource;
|
|
2591
2711
|
|
|
2712
|
+
/**
|
|
2713
|
+
* Check if a given object implements the UiDataSourceAzureStorage interface.
|
|
2714
|
+
*/
|
|
2715
|
+
export declare function instanceOfUiDataSourceAzureStorage(value: any): value is UiDataSourceAzureStorage;
|
|
2716
|
+
|
|
2592
2717
|
/**
|
|
2593
2718
|
* Check if a given object implements the UiDataSourceHttpData interface.
|
|
2594
2719
|
*/
|
|
@@ -2770,6 +2895,14 @@ export declare function KpiResultToJSON(json: any): KpiResult;
|
|
|
2770
2895
|
|
|
2771
2896
|
export declare function KpiResultToJSONTyped(value?: KpiResult | null, ignoreDiscriminator?: boolean): any;
|
|
2772
2897
|
|
|
2898
|
+
export declare interface ListAzureStorageBlobsRequest {
|
|
2899
|
+
azureStorageListBlobsRequest?: AzureStorageListBlobsRequest;
|
|
2900
|
+
}
|
|
2901
|
+
|
|
2902
|
+
export declare interface ListAzureStorageContainersRequest {
|
|
2903
|
+
azureStorageListContainersRequest?: AzureStorageListContainersRequest;
|
|
2904
|
+
}
|
|
2905
|
+
|
|
2773
2906
|
export declare interface ListVaultSecretsPageRequest {
|
|
2774
2907
|
vaultSecretQuery?: VaultSecretQuery;
|
|
2775
2908
|
}
|
|
@@ -3020,11 +3153,11 @@ export declare interface PolicyDefinitionCreateDto {
|
|
|
3020
3153
|
*/
|
|
3021
3154
|
policyDefinitionId: string;
|
|
3022
3155
|
/**
|
|
3023
|
-
*
|
|
3156
|
+
* Tree-structured policy expression
|
|
3024
3157
|
* @type {UiPolicyExpression}
|
|
3025
3158
|
* @memberof PolicyDefinitionCreateDto
|
|
3026
3159
|
*/
|
|
3027
|
-
|
|
3160
|
+
policyExpression: UiPolicyExpression;
|
|
3028
3161
|
}
|
|
3029
3162
|
|
|
3030
3163
|
export declare function PolicyDefinitionCreateDtoFromJSON(json: any): PolicyDefinitionCreateDto;
|
|
@@ -3035,6 +3168,34 @@ export declare function PolicyDefinitionCreateDtoToJSON(json: any): PolicyDefini
|
|
|
3035
3168
|
|
|
3036
3169
|
export declare function PolicyDefinitionCreateDtoToJSONTyped(value?: PolicyDefinitionCreateDto | null, ignoreDiscriminator?: boolean): any;
|
|
3037
3170
|
|
|
3171
|
+
/**
|
|
3172
|
+
* Create a Policy Definition
|
|
3173
|
+
* @export
|
|
3174
|
+
* @interface PolicyDefinitionCreateFromJsonLdDto
|
|
3175
|
+
*/
|
|
3176
|
+
export declare interface PolicyDefinitionCreateFromJsonLdDto {
|
|
3177
|
+
/**
|
|
3178
|
+
* Policy Definition ID
|
|
3179
|
+
* @type {string}
|
|
3180
|
+
* @memberof PolicyDefinitionCreateFromJsonLdDto
|
|
3181
|
+
*/
|
|
3182
|
+
policyDefinitionId: string;
|
|
3183
|
+
/**
|
|
3184
|
+
* ODRL policy as JSON-LD
|
|
3185
|
+
* @type {string}
|
|
3186
|
+
* @memberof PolicyDefinitionCreateFromJsonLdDto
|
|
3187
|
+
*/
|
|
3188
|
+
policyJsonLd: string;
|
|
3189
|
+
}
|
|
3190
|
+
|
|
3191
|
+
export declare function PolicyDefinitionCreateFromJsonLdDtoFromJSON(json: any): PolicyDefinitionCreateFromJsonLdDto;
|
|
3192
|
+
|
|
3193
|
+
export declare function PolicyDefinitionCreateFromJsonLdDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): PolicyDefinitionCreateFromJsonLdDto;
|
|
3194
|
+
|
|
3195
|
+
export declare function PolicyDefinitionCreateFromJsonLdDtoToJSON(json: any): PolicyDefinitionCreateFromJsonLdDto;
|
|
3196
|
+
|
|
3197
|
+
export declare function PolicyDefinitionCreateFromJsonLdDtoToJSONTyped(value?: PolicyDefinitionCreateFromJsonLdDto | null, ignoreDiscriminator?: boolean): any;
|
|
3198
|
+
|
|
3038
3199
|
/**
|
|
3039
3200
|
* [Deprecated] Create a Policy Definition. Use PolicyDefinitionCreateDto
|
|
3040
3201
|
* @export
|
|
@@ -3645,6 +3806,14 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
3645
3806
|
* @deprecated
|
|
3646
3807
|
*/
|
|
3647
3808
|
createPolicyDefinition(requestParameters?: CreatePolicyDefinitionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
3809
|
+
/**
|
|
3810
|
+
* Create a new Policy Definition from Policy JSON-LD
|
|
3811
|
+
*/
|
|
3812
|
+
createPolicyDefinitionFromJsonLdRaw(requestParameters: CreatePolicyDefinitionFromJsonLdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
|
|
3813
|
+
/**
|
|
3814
|
+
* Create a new Policy Definition from Policy JSON-LD
|
|
3815
|
+
*/
|
|
3816
|
+
createPolicyDefinitionFromJsonLd(requestParameters?: CreatePolicyDefinitionFromJsonLdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
3648
3817
|
/**
|
|
3649
3818
|
* Create a new Policy Definition
|
|
3650
3819
|
*/
|
|
@@ -3849,6 +4018,22 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
3849
4018
|
* Validates if the provided policyId is already taken
|
|
3850
4019
|
*/
|
|
3851
4020
|
isPolicyIdAvailable(requestParameters: IsPolicyIdAvailableRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdAvailabilityResponse>;
|
|
4021
|
+
/**
|
|
4022
|
+
* Lists all available Azure Storage Blobs for the given Storage Account Name and Container
|
|
4023
|
+
*/
|
|
4024
|
+
listAzureStorageBlobsRaw(requestParameters: ListAzureStorageBlobsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<string>>>;
|
|
4025
|
+
/**
|
|
4026
|
+
* Lists all available Azure Storage Blobs for the given Storage Account Name and Container
|
|
4027
|
+
*/
|
|
4028
|
+
listAzureStorageBlobs(requestParameters?: ListAzureStorageBlobsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<string>>;
|
|
4029
|
+
/**
|
|
4030
|
+
* Lists all available Azure Storage Containers for the given Storage Account Name
|
|
4031
|
+
*/
|
|
4032
|
+
listAzureStorageContainersRaw(requestParameters: ListAzureStorageContainersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<string>>>;
|
|
4033
|
+
/**
|
|
4034
|
+
* Lists all available Azure Storage Containers for the given Storage Account Name
|
|
4035
|
+
*/
|
|
4036
|
+
listAzureStorageContainers(requestParameters?: ListAzureStorageContainersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<string>>;
|
|
3852
4037
|
/**
|
|
3853
4038
|
* Collect all data for the Vault Secrets List Page
|
|
3854
4039
|
*/
|
|
@@ -4874,6 +5059,46 @@ export declare function UiDataOfferToJSON(json: any): UiDataOffer;
|
|
|
4874
5059
|
|
|
4875
5060
|
export declare function UiDataOfferToJSONTyped(value?: UiDataOffer | null, ignoreDiscriminator?: boolean): any;
|
|
4876
5061
|
|
|
5062
|
+
/**
|
|
5063
|
+
* AZURE_STORAGE type Data Sink.
|
|
5064
|
+
* @export
|
|
5065
|
+
* @interface UiDataSinkAzureStorage
|
|
5066
|
+
*/
|
|
5067
|
+
export declare interface UiDataSinkAzureStorage {
|
|
5068
|
+
/**
|
|
5069
|
+
* Storage Account Name. Note, that the corresponding secret must be stored in the vault under storageAccountName + '-key1'
|
|
5070
|
+
* @type {string}
|
|
5071
|
+
* @memberof UiDataSinkAzureStorage
|
|
5072
|
+
*/
|
|
5073
|
+
storageAccountName: string;
|
|
5074
|
+
/**
|
|
5075
|
+
* Container Name of the Blob Storage
|
|
5076
|
+
* @type {string}
|
|
5077
|
+
* @memberof UiDataSinkAzureStorage
|
|
5078
|
+
*/
|
|
5079
|
+
containerName: string;
|
|
5080
|
+
/**
|
|
5081
|
+
* Folder Name of the Blob Storage
|
|
5082
|
+
* @type {string}
|
|
5083
|
+
* @memberof UiDataSinkAzureStorage
|
|
5084
|
+
*/
|
|
5085
|
+
folderName?: string;
|
|
5086
|
+
/**
|
|
5087
|
+
* Blob Name of the Blob Storage
|
|
5088
|
+
* @type {string}
|
|
5089
|
+
* @memberof UiDataSinkAzureStorage
|
|
5090
|
+
*/
|
|
5091
|
+
blobName?: string;
|
|
5092
|
+
}
|
|
5093
|
+
|
|
5094
|
+
export declare function UiDataSinkAzureStorageFromJSON(json: any): UiDataSinkAzureStorage;
|
|
5095
|
+
|
|
5096
|
+
export declare function UiDataSinkAzureStorageFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiDataSinkAzureStorage;
|
|
5097
|
+
|
|
5098
|
+
export declare function UiDataSinkAzureStorageToJSON(json: any): UiDataSinkAzureStorage;
|
|
5099
|
+
|
|
5100
|
+
export declare function UiDataSinkAzureStorageToJSONTyped(value?: UiDataSinkAzureStorage | null, ignoreDiscriminator?: boolean): any;
|
|
5101
|
+
|
|
4877
5102
|
/**
|
|
4878
5103
|
* HTTP_DATA type Data Source. This is an HttpData-PUSH data sink. Note that consumption of parameterized data sources is not supported via HttpData-PUSH
|
|
4879
5104
|
* @export
|
|
@@ -4968,6 +5193,12 @@ export declare interface UiDataSource {
|
|
|
4968
5193
|
* @memberof UiDataSource
|
|
4969
5194
|
*/
|
|
4970
5195
|
onRequest?: UiDataSourceOnRequest;
|
|
5196
|
+
/**
|
|
5197
|
+
* Only for type AZURE_STORAGE
|
|
5198
|
+
* @type {UiDataSourceAzureStorage}
|
|
5199
|
+
* @memberof UiDataSource
|
|
5200
|
+
*/
|
|
5201
|
+
azureStorage?: UiDataSourceAzureStorage;
|
|
4971
5202
|
/**
|
|
4972
5203
|
* For all types. Custom Data Address Properties.
|
|
4973
5204
|
* @type {{ [key: string]: string; }}
|
|
@@ -4978,6 +5209,46 @@ export declare interface UiDataSource {
|
|
|
4978
5209
|
};
|
|
4979
5210
|
}
|
|
4980
5211
|
|
|
5212
|
+
/**
|
|
5213
|
+
* AZURE_STORAGE type Data Source.
|
|
5214
|
+
* @export
|
|
5215
|
+
* @interface UiDataSourceAzureStorage
|
|
5216
|
+
*/
|
|
5217
|
+
export declare interface UiDataSourceAzureStorage {
|
|
5218
|
+
/**
|
|
5219
|
+
* Storage Account Name
|
|
5220
|
+
* @type {string}
|
|
5221
|
+
* @memberof UiDataSourceAzureStorage
|
|
5222
|
+
*/
|
|
5223
|
+
storageAccountName: string;
|
|
5224
|
+
/**
|
|
5225
|
+
* Vault Key for the Storage Account Secret
|
|
5226
|
+
* @type {string}
|
|
5227
|
+
* @memberof UiDataSourceAzureStorage
|
|
5228
|
+
*/
|
|
5229
|
+
accountKey: string;
|
|
5230
|
+
/**
|
|
5231
|
+
* Container Name of the Blob Storage
|
|
5232
|
+
* @type {string}
|
|
5233
|
+
* @memberof UiDataSourceAzureStorage
|
|
5234
|
+
*/
|
|
5235
|
+
containerName: string;
|
|
5236
|
+
/**
|
|
5237
|
+
* Blob Name
|
|
5238
|
+
* @type {string}
|
|
5239
|
+
* @memberof UiDataSourceAzureStorage
|
|
5240
|
+
*/
|
|
5241
|
+
blobName: string;
|
|
5242
|
+
}
|
|
5243
|
+
|
|
5244
|
+
export declare function UiDataSourceAzureStorageFromJSON(json: any): UiDataSourceAzureStorage;
|
|
5245
|
+
|
|
5246
|
+
export declare function UiDataSourceAzureStorageFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiDataSourceAzureStorage;
|
|
5247
|
+
|
|
5248
|
+
export declare function UiDataSourceAzureStorageToJSON(json: any): UiDataSourceAzureStorage;
|
|
5249
|
+
|
|
5250
|
+
export declare function UiDataSourceAzureStorageToJSONTyped(value?: UiDataSourceAzureStorage | null, ignoreDiscriminator?: boolean): any;
|
|
5251
|
+
|
|
4981
5252
|
export declare function UiDataSourceFromJSON(json: any): UiDataSource;
|
|
4982
5253
|
|
|
4983
5254
|
export declare function UiDataSourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiDataSource;
|
|
@@ -5423,6 +5694,12 @@ export declare interface UiInitiateTransferRequest {
|
|
|
5423
5694
|
* @memberof UiInitiateTransferRequest
|
|
5424
5695
|
*/
|
|
5425
5696
|
httpDataPush?: UiDataSinkHttpDataPush;
|
|
5697
|
+
/**
|
|
5698
|
+
* Only for type AZURE_STORAGE
|
|
5699
|
+
* @type {UiDataSinkAzureStorage}
|
|
5700
|
+
* @memberof UiInitiateTransferRequest
|
|
5701
|
+
*/
|
|
5702
|
+
azureStorage?: UiDataSinkAzureStorage;
|
|
5426
5703
|
/**
|
|
5427
5704
|
* List of endpoints to call upon given transfer events
|
|
5428
5705
|
* @type {Array<CallbackAddressDto>}
|
|
@@ -5476,6 +5753,7 @@ export declare const UiInitiateTransferType: {
|
|
|
5476
5753
|
readonly HttpDataPush: "HTTP_DATA_PUSH";
|
|
5477
5754
|
readonly HttpDataProxy: "HTTP_DATA_PROXY";
|
|
5478
5755
|
readonly Custom: "CUSTOM";
|
|
5756
|
+
readonly AzureStorage: "AZURE_STORAGE";
|
|
5479
5757
|
};
|
|
5480
5758
|
|
|
5481
5759
|
export declare type UiInitiateTransferType = (typeof UiInitiateTransferType)[keyof typeof UiInitiateTransferType];
|