Skip to content

Commit faace02

Browse files
committed
no message
2 parents 1d7875c + 36e39ae commit faace02

22 files changed

+1075
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ Class | Method | HTTP request | Description
131131
- [DelveClientSdk.Appl](docs/Appl.md)
132132
- [DelveClientSdk.Area](docs/Area.md)
133133
- [DelveClientSdk.ArityMismatchError](docs/ArityMismatchError.md)
134+
- [DelveClientSdk.AzureIntegration](docs/AzureIntegration.md)
134135
- [DelveClientSdk.CSVFileSchema](docs/CSVFileSchema.md)
135136
- [DelveClientSdk.CSVFileSyntax](docs/CSVFileSyntax.md)
136137
- [DelveClientSdk.CardinalityAction](docs/CardinalityAction.md)
@@ -140,6 +141,7 @@ Class | Method | HTTP request | Description
140141
- [DelveClientSdk.CollectProblemsActionResult](docs/CollectProblemsActionResult.md)
141142
- [DelveClientSdk.ComparisonChainError](docs/ComparisonChainError.md)
142143
- [DelveClientSdk.Cons](docs/Cons.md)
144+
- [DelveClientSdk.DefaultIntegration](docs/DefaultIntegration.md)
143145
- [DelveClientSdk.ExceptionProblem](docs/ExceptionProblem.md)
144146
- [DelveClientSdk.FileSchema](docs/FileSchema.md)
145147
- [DelveClientSdk.FileSyntax](docs/FileSyntax.md)
@@ -150,6 +152,7 @@ Class | Method | HTTP request | Description
150152
- [DelveClientSdk.InfraError](docs/InfraError.md)
151153
- [DelveClientSdk.InstallAction](docs/InstallAction.md)
152154
- [DelveClientSdk.InstallActionResult](docs/InstallActionResult.md)
155+
- [DelveClientSdk.Integration](docs/Integration.md)
153156
- [DelveClientSdk.IntegrityConstraintProblem](docs/IntegrityConstraintProblem.md)
154157
- [DelveClientSdk.IntegrityConstraintViolation](docs/IntegrityConstraintViolation.md)
155158
- [DelveClientSdk.JSONFileSchema](docs/JSONFileSchema.md)
@@ -165,11 +168,13 @@ Class | Method | HTTP request | Description
165168
- [DelveClientSdk.LoadData](docs/LoadData.md)
166169
- [DelveClientSdk.LoadDataAction](docs/LoadDataAction.md)
167170
- [DelveClientSdk.LoadDataActionResult](docs/LoadDataActionResult.md)
171+
- [DelveClientSdk.LoadDataProblem](docs/LoadDataProblem.md)
168172
- [DelveClientSdk.ModifyWorkspaceAction](docs/ModifyWorkspaceAction.md)
169173
- [DelveClientSdk.ModifyWorkspaceActionResult](docs/ModifyWorkspaceActionResult.md)
170174
- [DelveClientSdk.Nil](docs/Nil.md)
171175
- [DelveClientSdk.OutputProblem](docs/OutputProblem.md)
172176
- [DelveClientSdk.PairAnyValueAnyValue](docs/PairAnyValueAnyValue.md)
177+
- [DelveClientSdk.PairSymbolString](docs/PairSymbolString.md)
173178
- [DelveClientSdk.ParseAction](docs/ParseAction.md)
174179
- [DelveClientSdk.ParseActionResult](docs/ParseActionResult.md)
175180
- [DelveClientSdk.PersistProblem](docs/PersistProblem.md)
@@ -179,6 +184,7 @@ Class | Method | HTTP request | Description
179184
- [DelveClientSdk.Range](docs/Range.md)
180185
- [DelveClientSdk.RelKey](docs/RelKey.md)
181186
- [DelveClientSdk.Relation](docs/Relation.md)
187+
- [DelveClientSdk.S3Integration](docs/S3Integration.md)
182188
- [DelveClientSdk.SetOptionsAction](docs/SetOptionsAction.md)
183189
- [DelveClientSdk.SetOptionsActionResult](docs/SetOptionsActionResult.md)
184190
- [DelveClientSdk.Source](docs/Source.md)

client/docs/LoadData.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
88
**data** | **String** | | [optional]
99
**fileSchema** | [**FileSchema**](FileSchema.md) | | [optional]
1010
**fileSyntax** | [**FileSyntax**](FileSyntax.md) | | [optional]
11+
**integration** | [**Integration**](Integration.md) | | [optional]
1112
**key** | [**AnyType**](.md) | |
1213
**path** | **String** | | [optional]
1314
**type** | **String** | | [default to 'LoadData']

client/src/index.js

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import ActionResult from './model/ActionResult';
2020
import Appl from './model/Appl';
2121
import Area from './model/Area';
2222
import ArityMismatchError from './model/ArityMismatchError';
23+
import AzureIntegration from './model/AzureIntegration';
2324
import CSVFileSchema from './model/CSVFileSchema';
2425
import CSVFileSyntax from './model/CSVFileSyntax';
2526
import CardinalityAction from './model/CardinalityAction';
@@ -29,6 +30,7 @@ import CollectProblemsAction from './model/CollectProblemsAction';
2930
import CollectProblemsActionResult from './model/CollectProblemsActionResult';
3031
import ComparisonChainError from './model/ComparisonChainError';
3132
import Cons from './model/Cons';
33+
import DefaultIntegration from './model/DefaultIntegration';
3234
import ExceptionProblem from './model/ExceptionProblem';
3335
import FileSchema from './model/FileSchema';
3436
import FileSyntax from './model/FileSyntax';
@@ -39,6 +41,7 @@ import ImportActionResult from './model/ImportActionResult';
3941
import InfraError from './model/InfraError';
4042
import InstallAction from './model/InstallAction';
4143
import InstallActionResult from './model/InstallActionResult';
44+
import Integration from './model/Integration';
4245
import IntegrityConstraintProblem from './model/IntegrityConstraintProblem';
4346
import IntegrityConstraintViolation from './model/IntegrityConstraintViolation';
4447
import JSONFileSchema from './model/JSONFileSchema';
@@ -54,11 +57,13 @@ import Literal from './model/Literal';
5457
import LoadData from './model/LoadData';
5558
import LoadDataAction from './model/LoadDataAction';
5659
import LoadDataActionResult from './model/LoadDataActionResult';
60+
import LoadDataProblem from './model/LoadDataProblem';
5761
import ModifyWorkspaceAction from './model/ModifyWorkspaceAction';
5862
import ModifyWorkspaceActionResult from './model/ModifyWorkspaceActionResult';
5963
import Nil from './model/Nil';
6064
import OutputProblem from './model/OutputProblem';
6165
import PairAnyValueAnyValue from './model/PairAnyValueAnyValue';
66+
import PairSymbolString from './model/PairSymbolString';
6267
import ParseAction from './model/ParseAction';
6368
import ParseActionResult from './model/ParseActionResult';
6469
import PersistProblem from './model/PersistProblem';
@@ -68,6 +73,7 @@ import QueryActionResult from './model/QueryActionResult';
6873
import Range from './model/Range';
6974
import RelKey from './model/RelKey';
7075
import Relation from './model/Relation';
76+
import S3Integration from './model/S3Integration';
7177
import SetOptionsAction from './model/SetOptionsAction';
7278
import SetOptionsActionResult from './model/SetOptionsActionResult';
7379
import Source from './model/Source';
@@ -159,6 +165,12 @@ export {
159165
*/
160166
ArityMismatchError,
161167

168+
/**
169+
* The AzureIntegration model constructor.
170+
* @property {module:model/AzureIntegration}
171+
*/
172+
AzureIntegration,
173+
162174
/**
163175
* The CSVFileSchema model constructor.
164176
* @property {module:model/CSVFileSchema}
@@ -213,6 +225,12 @@ export {
213225
*/
214226
Cons,
215227

228+
/**
229+
* The DefaultIntegration model constructor.
230+
* @property {module:model/DefaultIntegration}
231+
*/
232+
DefaultIntegration,
233+
216234
/**
217235
* The ExceptionProblem model constructor.
218236
* @property {module:model/ExceptionProblem}
@@ -273,6 +291,12 @@ export {
273291
*/
274292
InstallActionResult,
275293

294+
/**
295+
* The Integration model constructor.
296+
* @property {module:model/Integration}
297+
*/
298+
Integration,
299+
276300
/**
277301
* The IntegrityConstraintProblem model constructor.
278302
* @property {module:model/IntegrityConstraintProblem}
@@ -363,6 +387,12 @@ export {
363387
*/
364388
LoadDataActionResult,
365389

390+
/**
391+
* The LoadDataProblem model constructor.
392+
* @property {module:model/LoadDataProblem}
393+
*/
394+
LoadDataProblem,
395+
366396
/**
367397
* The ModifyWorkspaceAction model constructor.
368398
* @property {module:model/ModifyWorkspaceAction}
@@ -393,6 +423,12 @@ export {
393423
*/
394424
PairAnyValueAnyValue,
395425

426+
/**
427+
* The PairSymbolString model constructor.
428+
* @property {module:model/PairSymbolString}
429+
*/
430+
PairSymbolString,
431+
396432
/**
397433
* The ParseAction model constructor.
398434
* @property {module:model/ParseAction}
@@ -447,6 +483,12 @@ export {
447483
*/
448484
Relation,
449485

486+
/**
487+
* The S3Integration model constructor.
488+
* @property {module:model/S3Integration}
489+
*/
490+
S3Integration,
491+
450492
/**
451493
* The SetOptionsAction model constructor.
452494
* @property {module:model/SetOptionsAction}

client/src/model/LoadData.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import ApiClient from '../ApiClient';
1515
import AnyType from './AnyType';
1616
import FileSchema from './FileSchema';
1717
import FileSyntax from './FileSyntax';
18+
import Integration from './Integration';
1819

1920
/**
2021
* The LoadData model module.
@@ -68,6 +69,9 @@ class LoadData {
6869
if (data.hasOwnProperty('file_syntax')) {
6970
obj['file_syntax'] = FileSyntax.constructFromObject(data['file_syntax']);
7071
}
72+
if (data.hasOwnProperty('integration')) {
73+
obj['integration'] = Integration.constructFromObject(data['integration']);
74+
}
7175
if (data.hasOwnProperty('key')) {
7276
obj['key'] = ApiClient.convertToType(data['key'], AnyType);
7377
}
@@ -105,6 +109,11 @@ LoadData.prototype['file_schema'] = undefined;
105109
*/
106110
LoadData.prototype['file_syntax'] = undefined;
107111

112+
/**
113+
* @member {module:model/Integration} integration
114+
*/
115+
LoadData.prototype['integration'] = undefined;
116+
108117
/**
109118
* @member {module:model/AnyType} key
110119
*/

docs/AzureIntegration.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# DelveClientSdk.AzureIntegration
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**credentials** | [**[PairSymbolString]**](PairSymbolString.md) | | [optional]
8+
**name** | **String** | | [optional]
9+
**storageAllowedLocations** | **[String]** | | [optional]
10+
**storageBlockedLocations** | **[String]** | | [optional]
11+
**tenantId** | **String** | | [optional]
12+
13+

docs/DefaultIntegration.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# DelveClientSdk.DefaultIntegration
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
8+

docs/Integration.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# DelveClientSdk.Integration
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**type** | **String** | | [default to '']
8+
9+

docs/LoadDataProblem.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# DelveClientSdk.LoadDataProblem
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**exception** | **String** | | [default to '']
8+
9+

docs/PairSymbolString.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# DelveClientSdk.PairSymbolString
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**first** | **String** | | [default to '']
8+
**second** | **String** | | [default to '']
9+
**type** | **String** | | [default to 'Pair_Symbol_String_']
10+
11+
12+
13+
## Enum: TypeEnum
14+
15+
16+
* `Pair_Symbol_String_` (value: `"Pair_Symbol_String_"`)
17+
18+
19+
20+

docs/S3Integration.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# DelveClientSdk.S3Integration
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
8+

0 commit comments

Comments
 (0)