@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230722.1 → 1.20230729.1
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.
|
@@ -38,20 +38,16 @@ export const SecurityAreaOverridesApiAxiosParamCreator = function (configuration
|
|
|
38
38
|
* Creates a new SecurityAreaOverride
|
|
39
39
|
* @summary Create SecurityAreaOverride
|
|
40
40
|
* @param {string} vbasoftwareDatabase Target database
|
|
41
|
-
* @param {string} securityArea Security Area
|
|
42
41
|
* @param {SecurityAreaOverride} securityAreaOverride
|
|
43
42
|
* @param {*} [options] Override http request option.
|
|
44
43
|
* @throws {RequiredError}
|
|
45
44
|
*/
|
|
46
|
-
createSecurityAreaOverride: async (vbasoftwareDatabase: string,
|
|
45
|
+
createSecurityAreaOverride: async (vbasoftwareDatabase: string, securityAreaOverride: SecurityAreaOverride, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
47
46
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
48
47
|
assertParamExists('createSecurityAreaOverride', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
49
|
-
// verify required parameter 'securityArea' is not null or undefined
|
|
50
|
-
assertParamExists('createSecurityAreaOverride', 'securityArea', securityArea)
|
|
51
48
|
// verify required parameter 'securityAreaOverride' is not null or undefined
|
|
52
49
|
assertParamExists('createSecurityAreaOverride', 'securityAreaOverride', securityAreaOverride)
|
|
53
|
-
const localVarPath = `/security-
|
|
54
|
-
.replace(`{${"securityArea"}}`, encodeURIComponent(String(securityArea)));
|
|
50
|
+
const localVarPath = `/security-area-overrides`;
|
|
55
51
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
56
52
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
57
53
|
let baseOptions;
|
|
@@ -92,20 +88,16 @@ export const SecurityAreaOverridesApiAxiosParamCreator = function (configuration
|
|
|
92
88
|
* Deletes an SecurityAreaOverride
|
|
93
89
|
* @summary Delete SecurityAreaOverride
|
|
94
90
|
* @param {string} vbasoftwareDatabase Target database
|
|
95
|
-
* @param {string} securityArea Security Area
|
|
96
91
|
* @param {number} securityAreaOverrideKey SecurityAreaOverride Key
|
|
97
92
|
* @param {*} [options] Override http request option.
|
|
98
93
|
* @throws {RequiredError}
|
|
99
94
|
*/
|
|
100
|
-
deleteSecurityAreaOverride: async (vbasoftwareDatabase: string,
|
|
95
|
+
deleteSecurityAreaOverride: async (vbasoftwareDatabase: string, securityAreaOverrideKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
101
96
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
102
97
|
assertParamExists('deleteSecurityAreaOverride', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
103
|
-
// verify required parameter 'securityArea' is not null or undefined
|
|
104
|
-
assertParamExists('deleteSecurityAreaOverride', 'securityArea', securityArea)
|
|
105
98
|
// verify required parameter 'securityAreaOverrideKey' is not null or undefined
|
|
106
99
|
assertParamExists('deleteSecurityAreaOverride', 'securityAreaOverrideKey', securityAreaOverrideKey)
|
|
107
|
-
const localVarPath = `/security-
|
|
108
|
-
.replace(`{${"securityArea"}}`, encodeURIComponent(String(securityArea)))
|
|
100
|
+
const localVarPath = `/security-area-overrides/{securityAreaOverrideKey}`
|
|
109
101
|
.replace(`{${"securityAreaOverrideKey"}}`, encodeURIComponent(String(securityAreaOverrideKey)));
|
|
110
102
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
111
103
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -144,20 +136,16 @@ export const SecurityAreaOverridesApiAxiosParamCreator = function (configuration
|
|
|
144
136
|
* Gets SecurityAreaOverride
|
|
145
137
|
* @summary Get SecurityAreaOverride
|
|
146
138
|
* @param {string} vbasoftwareDatabase Target database
|
|
147
|
-
* @param {string} securityArea Security Area
|
|
148
139
|
* @param {number} securityAreaOverrideKey SecurityAreaOverride Key
|
|
149
140
|
* @param {*} [options] Override http request option.
|
|
150
141
|
* @throws {RequiredError}
|
|
151
142
|
*/
|
|
152
|
-
getSecurityAreaOverride: async (vbasoftwareDatabase: string,
|
|
143
|
+
getSecurityAreaOverride: async (vbasoftwareDatabase: string, securityAreaOverrideKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
153
144
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
154
145
|
assertParamExists('getSecurityAreaOverride', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
155
|
-
// verify required parameter 'securityArea' is not null or undefined
|
|
156
|
-
assertParamExists('getSecurityAreaOverride', 'securityArea', securityArea)
|
|
157
146
|
// verify required parameter 'securityAreaOverrideKey' is not null or undefined
|
|
158
147
|
assertParamExists('getSecurityAreaOverride', 'securityAreaOverrideKey', securityAreaOverrideKey)
|
|
159
|
-
const localVarPath = `/security-
|
|
160
|
-
.replace(`{${"securityArea"}}`, encodeURIComponent(String(securityArea)))
|
|
148
|
+
const localVarPath = `/security-area-overrides/{securityAreaOverrideKey}`
|
|
161
149
|
.replace(`{${"securityAreaOverrideKey"}}`, encodeURIComponent(String(securityAreaOverrideKey)));
|
|
162
150
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
163
151
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -193,19 +181,17 @@ export const SecurityAreaOverridesApiAxiosParamCreator = function (configuration
|
|
|
193
181
|
};
|
|
194
182
|
},
|
|
195
183
|
/**
|
|
196
|
-
* Lists all SecurityAreaOverride securityArea
|
|
184
|
+
* Lists all SecurityAreaOverride with optional securityArea filter
|
|
197
185
|
* @summary List SecurityAreaOverride
|
|
198
186
|
* @param {string} vbasoftwareDatabase Target database
|
|
199
|
-
* @param {string} securityArea Security Area
|
|
187
|
+
* @param {string} [securityArea] Security Area
|
|
200
188
|
* @param {*} [options] Override http request option.
|
|
201
189
|
* @throws {RequiredError}
|
|
202
190
|
*/
|
|
203
|
-
listSecurityAreaOverride: async (vbasoftwareDatabase: string, securityArea
|
|
191
|
+
listSecurityAreaOverride: async (vbasoftwareDatabase: string, securityArea?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
204
192
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
205
193
|
assertParamExists('listSecurityAreaOverride', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
206
|
-
|
|
207
|
-
assertParamExists('listSecurityAreaOverride', 'securityArea', securityArea)
|
|
208
|
-
const localVarPath = `/security-areas/{securityArea}/overrides`
|
|
194
|
+
const localVarPath = `/security-area-overrides`
|
|
209
195
|
.replace(`{${"securityArea"}}`, encodeURIComponent(String(securityArea)));
|
|
210
196
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
211
197
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -244,20 +230,16 @@ export const SecurityAreaOverridesApiAxiosParamCreator = function (configuration
|
|
|
244
230
|
* Create or Update multiple SecurityAreaOverride at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
245
231
|
* @summary Create or Update Batch SecurityAreaOverride
|
|
246
232
|
* @param {string} vbasoftwareDatabase Target database
|
|
247
|
-
* @param {string} securityArea Security Area
|
|
248
233
|
* @param {Array<SecurityAreaOverride>} securityAreaOverride
|
|
249
234
|
* @param {*} [options] Override http request option.
|
|
250
235
|
* @throws {RequiredError}
|
|
251
236
|
*/
|
|
252
|
-
updateBatchSecurityAreaOverride: async (vbasoftwareDatabase: string,
|
|
237
|
+
updateBatchSecurityAreaOverride: async (vbasoftwareDatabase: string, securityAreaOverride: Array<SecurityAreaOverride>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
253
238
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
254
239
|
assertParamExists('updateBatchSecurityAreaOverride', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
255
|
-
// verify required parameter 'securityArea' is not null or undefined
|
|
256
|
-
assertParamExists('updateBatchSecurityAreaOverride', 'securityArea', securityArea)
|
|
257
240
|
// verify required parameter 'securityAreaOverride' is not null or undefined
|
|
258
241
|
assertParamExists('updateBatchSecurityAreaOverride', 'securityAreaOverride', securityAreaOverride)
|
|
259
|
-
const localVarPath = `/security-
|
|
260
|
-
.replace(`{${"securityArea"}}`, encodeURIComponent(String(securityArea)));
|
|
242
|
+
const localVarPath = `/security-area-overrides`;
|
|
261
243
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
262
244
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
263
245
|
let baseOptions;
|
|
@@ -298,23 +280,19 @@ export const SecurityAreaOverridesApiAxiosParamCreator = function (configuration
|
|
|
298
280
|
* Updates a specific SecurityAreaOverride.
|
|
299
281
|
* @summary Update SecurityAreaOverride
|
|
300
282
|
* @param {string} vbasoftwareDatabase Target database
|
|
301
|
-
* @param {string} securityArea Security Area
|
|
302
283
|
* @param {number} securityAreaOverrideKey SecurityAreaOverride Key
|
|
303
284
|
* @param {SecurityAreaOverride} securityAreaOverride
|
|
304
285
|
* @param {*} [options] Override http request option.
|
|
305
286
|
* @throws {RequiredError}
|
|
306
287
|
*/
|
|
307
|
-
updateSecurityAreaOverride: async (vbasoftwareDatabase: string,
|
|
288
|
+
updateSecurityAreaOverride: async (vbasoftwareDatabase: string, securityAreaOverrideKey: number, securityAreaOverride: SecurityAreaOverride, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
308
289
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
309
290
|
assertParamExists('updateSecurityAreaOverride', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
310
|
-
// verify required parameter 'securityArea' is not null or undefined
|
|
311
|
-
assertParamExists('updateSecurityAreaOverride', 'securityArea', securityArea)
|
|
312
291
|
// verify required parameter 'securityAreaOverrideKey' is not null or undefined
|
|
313
292
|
assertParamExists('updateSecurityAreaOverride', 'securityAreaOverrideKey', securityAreaOverrideKey)
|
|
314
293
|
// verify required parameter 'securityAreaOverride' is not null or undefined
|
|
315
294
|
assertParamExists('updateSecurityAreaOverride', 'securityAreaOverride', securityAreaOverride)
|
|
316
|
-
const localVarPath = `/security-
|
|
317
|
-
.replace(`{${"securityArea"}}`, encodeURIComponent(String(securityArea)))
|
|
295
|
+
const localVarPath = `/security-area-overrides/{securityAreaOverrideKey}`
|
|
318
296
|
.replace(`{${"securityAreaOverrideKey"}}`, encodeURIComponent(String(securityAreaOverrideKey)));
|
|
319
297
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
320
298
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -366,50 +344,47 @@ export const SecurityAreaOverridesApiFp = function(configuration?: Configuration
|
|
|
366
344
|
* Creates a new SecurityAreaOverride
|
|
367
345
|
* @summary Create SecurityAreaOverride
|
|
368
346
|
* @param {string} vbasoftwareDatabase Target database
|
|
369
|
-
* @param {string} securityArea Security Area
|
|
370
347
|
* @param {SecurityAreaOverride} securityAreaOverride
|
|
371
348
|
* @param {*} [options] Override http request option.
|
|
372
349
|
* @throws {RequiredError}
|
|
373
350
|
*/
|
|
374
|
-
async createSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
375
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createSecurityAreaOverride(vbasoftwareDatabase,
|
|
351
|
+
async createSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverride: SecurityAreaOverride, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecurityAreaOverrideVBAResponse>> {
|
|
352
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createSecurityAreaOverride(vbasoftwareDatabase, securityAreaOverride, options);
|
|
376
353
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
377
354
|
},
|
|
378
355
|
/**
|
|
379
356
|
* Deletes an SecurityAreaOverride
|
|
380
357
|
* @summary Delete SecurityAreaOverride
|
|
381
358
|
* @param {string} vbasoftwareDatabase Target database
|
|
382
|
-
* @param {string} securityArea Security Area
|
|
383
359
|
* @param {number} securityAreaOverrideKey SecurityAreaOverride Key
|
|
384
360
|
* @param {*} [options] Override http request option.
|
|
385
361
|
* @throws {RequiredError}
|
|
386
362
|
*/
|
|
387
|
-
async deleteSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
388
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSecurityAreaOverride(vbasoftwareDatabase,
|
|
363
|
+
async deleteSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverrideKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
364
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSecurityAreaOverride(vbasoftwareDatabase, securityAreaOverrideKey, options);
|
|
389
365
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
390
366
|
},
|
|
391
367
|
/**
|
|
392
368
|
* Gets SecurityAreaOverride
|
|
393
369
|
* @summary Get SecurityAreaOverride
|
|
394
370
|
* @param {string} vbasoftwareDatabase Target database
|
|
395
|
-
* @param {string} securityArea Security Area
|
|
396
371
|
* @param {number} securityAreaOverrideKey SecurityAreaOverride Key
|
|
397
372
|
* @param {*} [options] Override http request option.
|
|
398
373
|
* @throws {RequiredError}
|
|
399
374
|
*/
|
|
400
|
-
async getSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
401
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getSecurityAreaOverride(vbasoftwareDatabase,
|
|
375
|
+
async getSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverrideKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecurityAreaOverrideVBAResponse>> {
|
|
376
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getSecurityAreaOverride(vbasoftwareDatabase, securityAreaOverrideKey, options);
|
|
402
377
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
403
378
|
},
|
|
404
379
|
/**
|
|
405
|
-
* Lists all SecurityAreaOverride securityArea
|
|
380
|
+
* Lists all SecurityAreaOverride with optional securityArea filter
|
|
406
381
|
* @summary List SecurityAreaOverride
|
|
407
382
|
* @param {string} vbasoftwareDatabase Target database
|
|
408
|
-
* @param {string} securityArea Security Area
|
|
383
|
+
* @param {string} [securityArea] Security Area
|
|
409
384
|
* @param {*} [options] Override http request option.
|
|
410
385
|
* @throws {RequiredError}
|
|
411
386
|
*/
|
|
412
|
-
async listSecurityAreaOverride(vbasoftwareDatabase: string, securityArea
|
|
387
|
+
async listSecurityAreaOverride(vbasoftwareDatabase: string, securityArea?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecurityAreaOverrideListVBAResponse>> {
|
|
413
388
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listSecurityAreaOverride(vbasoftwareDatabase, securityArea, options);
|
|
414
389
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
415
390
|
},
|
|
@@ -417,27 +392,25 @@ export const SecurityAreaOverridesApiFp = function(configuration?: Configuration
|
|
|
417
392
|
* Create or Update multiple SecurityAreaOverride at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
418
393
|
* @summary Create or Update Batch SecurityAreaOverride
|
|
419
394
|
* @param {string} vbasoftwareDatabase Target database
|
|
420
|
-
* @param {string} securityArea Security Area
|
|
421
395
|
* @param {Array<SecurityAreaOverride>} securityAreaOverride
|
|
422
396
|
* @param {*} [options] Override http request option.
|
|
423
397
|
* @throws {RequiredError}
|
|
424
398
|
*/
|
|
425
|
-
async updateBatchSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
426
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchSecurityAreaOverride(vbasoftwareDatabase,
|
|
399
|
+
async updateBatchSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverride: Array<SecurityAreaOverride>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MultiCodeResponseListVBAResponse>> {
|
|
400
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchSecurityAreaOverride(vbasoftwareDatabase, securityAreaOverride, options);
|
|
427
401
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
428
402
|
},
|
|
429
403
|
/**
|
|
430
404
|
* Updates a specific SecurityAreaOverride.
|
|
431
405
|
* @summary Update SecurityAreaOverride
|
|
432
406
|
* @param {string} vbasoftwareDatabase Target database
|
|
433
|
-
* @param {string} securityArea Security Area
|
|
434
407
|
* @param {number} securityAreaOverrideKey SecurityAreaOverride Key
|
|
435
408
|
* @param {SecurityAreaOverride} securityAreaOverride
|
|
436
409
|
* @param {*} [options] Override http request option.
|
|
437
410
|
* @throws {RequiredError}
|
|
438
411
|
*/
|
|
439
|
-
async updateSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
440
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateSecurityAreaOverride(vbasoftwareDatabase,
|
|
412
|
+
async updateSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverrideKey: number, securityAreaOverride: SecurityAreaOverride, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecurityAreaOverrideVBAResponse>> {
|
|
413
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateSecurityAreaOverride(vbasoftwareDatabase, securityAreaOverrideKey, securityAreaOverride, options);
|
|
441
414
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
442
415
|
},
|
|
443
416
|
}
|
|
@@ -454,73 +427,68 @@ export const SecurityAreaOverridesApiFactory = function (configuration?: Configu
|
|
|
454
427
|
* Creates a new SecurityAreaOverride
|
|
455
428
|
* @summary Create SecurityAreaOverride
|
|
456
429
|
* @param {string} vbasoftwareDatabase Target database
|
|
457
|
-
* @param {string} securityArea Security Area
|
|
458
430
|
* @param {SecurityAreaOverride} securityAreaOverride
|
|
459
431
|
* @param {*} [options] Override http request option.
|
|
460
432
|
* @throws {RequiredError}
|
|
461
433
|
*/
|
|
462
|
-
createSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
463
|
-
return localVarFp.createSecurityAreaOverride(vbasoftwareDatabase,
|
|
434
|
+
createSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverride: SecurityAreaOverride, options?: any): AxiosPromise<SecurityAreaOverrideVBAResponse> {
|
|
435
|
+
return localVarFp.createSecurityAreaOverride(vbasoftwareDatabase, securityAreaOverride, options).then((request) => request(axios, basePath));
|
|
464
436
|
},
|
|
465
437
|
/**
|
|
466
438
|
* Deletes an SecurityAreaOverride
|
|
467
439
|
* @summary Delete SecurityAreaOverride
|
|
468
440
|
* @param {string} vbasoftwareDatabase Target database
|
|
469
|
-
* @param {string} securityArea Security Area
|
|
470
441
|
* @param {number} securityAreaOverrideKey SecurityAreaOverride Key
|
|
471
442
|
* @param {*} [options] Override http request option.
|
|
472
443
|
* @throws {RequiredError}
|
|
473
444
|
*/
|
|
474
|
-
deleteSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
475
|
-
return localVarFp.deleteSecurityAreaOverride(vbasoftwareDatabase,
|
|
445
|
+
deleteSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverrideKey: number, options?: any): AxiosPromise<void> {
|
|
446
|
+
return localVarFp.deleteSecurityAreaOverride(vbasoftwareDatabase, securityAreaOverrideKey, options).then((request) => request(axios, basePath));
|
|
476
447
|
},
|
|
477
448
|
/**
|
|
478
449
|
* Gets SecurityAreaOverride
|
|
479
450
|
* @summary Get SecurityAreaOverride
|
|
480
451
|
* @param {string} vbasoftwareDatabase Target database
|
|
481
|
-
* @param {string} securityArea Security Area
|
|
482
452
|
* @param {number} securityAreaOverrideKey SecurityAreaOverride Key
|
|
483
453
|
* @param {*} [options] Override http request option.
|
|
484
454
|
* @throws {RequiredError}
|
|
485
455
|
*/
|
|
486
|
-
getSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
487
|
-
return localVarFp.getSecurityAreaOverride(vbasoftwareDatabase,
|
|
456
|
+
getSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverrideKey: number, options?: any): AxiosPromise<SecurityAreaOverrideVBAResponse> {
|
|
457
|
+
return localVarFp.getSecurityAreaOverride(vbasoftwareDatabase, securityAreaOverrideKey, options).then((request) => request(axios, basePath));
|
|
488
458
|
},
|
|
489
459
|
/**
|
|
490
|
-
* Lists all SecurityAreaOverride securityArea
|
|
460
|
+
* Lists all SecurityAreaOverride with optional securityArea filter
|
|
491
461
|
* @summary List SecurityAreaOverride
|
|
492
462
|
* @param {string} vbasoftwareDatabase Target database
|
|
493
|
-
* @param {string} securityArea Security Area
|
|
463
|
+
* @param {string} [securityArea] Security Area
|
|
494
464
|
* @param {*} [options] Override http request option.
|
|
495
465
|
* @throws {RequiredError}
|
|
496
466
|
*/
|
|
497
|
-
listSecurityAreaOverride(vbasoftwareDatabase: string, securityArea
|
|
467
|
+
listSecurityAreaOverride(vbasoftwareDatabase: string, securityArea?: string, options?: any): AxiosPromise<SecurityAreaOverrideListVBAResponse> {
|
|
498
468
|
return localVarFp.listSecurityAreaOverride(vbasoftwareDatabase, securityArea, options).then((request) => request(axios, basePath));
|
|
499
469
|
},
|
|
500
470
|
/**
|
|
501
471
|
* Create or Update multiple SecurityAreaOverride at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
502
472
|
* @summary Create or Update Batch SecurityAreaOverride
|
|
503
473
|
* @param {string} vbasoftwareDatabase Target database
|
|
504
|
-
* @param {string} securityArea Security Area
|
|
505
474
|
* @param {Array<SecurityAreaOverride>} securityAreaOverride
|
|
506
475
|
* @param {*} [options] Override http request option.
|
|
507
476
|
* @throws {RequiredError}
|
|
508
477
|
*/
|
|
509
|
-
updateBatchSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
510
|
-
return localVarFp.updateBatchSecurityAreaOverride(vbasoftwareDatabase,
|
|
478
|
+
updateBatchSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverride: Array<SecurityAreaOverride>, options?: any): AxiosPromise<MultiCodeResponseListVBAResponse> {
|
|
479
|
+
return localVarFp.updateBatchSecurityAreaOverride(vbasoftwareDatabase, securityAreaOverride, options).then((request) => request(axios, basePath));
|
|
511
480
|
},
|
|
512
481
|
/**
|
|
513
482
|
* Updates a specific SecurityAreaOverride.
|
|
514
483
|
* @summary Update SecurityAreaOverride
|
|
515
484
|
* @param {string} vbasoftwareDatabase Target database
|
|
516
|
-
* @param {string} securityArea Security Area
|
|
517
485
|
* @param {number} securityAreaOverrideKey SecurityAreaOverride Key
|
|
518
486
|
* @param {SecurityAreaOverride} securityAreaOverride
|
|
519
487
|
* @param {*} [options] Override http request option.
|
|
520
488
|
* @throws {RequiredError}
|
|
521
489
|
*/
|
|
522
|
-
updateSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
523
|
-
return localVarFp.updateSecurityAreaOverride(vbasoftwareDatabase,
|
|
490
|
+
updateSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverrideKey: number, securityAreaOverride: SecurityAreaOverride, options?: any): AxiosPromise<SecurityAreaOverrideVBAResponse> {
|
|
491
|
+
return localVarFp.updateSecurityAreaOverride(vbasoftwareDatabase, securityAreaOverrideKey, securityAreaOverride, options).then((request) => request(axios, basePath));
|
|
524
492
|
},
|
|
525
493
|
};
|
|
526
494
|
};
|
|
@@ -535,73 +503,68 @@ export interface SecurityAreaOverridesApiInterface {
|
|
|
535
503
|
* Creates a new SecurityAreaOverride
|
|
536
504
|
* @summary Create SecurityAreaOverride
|
|
537
505
|
* @param {string} vbasoftwareDatabase Target database
|
|
538
|
-
* @param {string} securityArea Security Area
|
|
539
506
|
* @param {SecurityAreaOverride} securityAreaOverride
|
|
540
507
|
* @param {*} [options] Override http request option.
|
|
541
508
|
* @throws {RequiredError}
|
|
542
509
|
* @memberof SecurityAreaOverridesApiInterface
|
|
543
510
|
*/
|
|
544
|
-
createSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
511
|
+
createSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverride: SecurityAreaOverride, options?: AxiosRequestConfig): AxiosPromise<SecurityAreaOverrideVBAResponse>;
|
|
545
512
|
|
|
546
513
|
/**
|
|
547
514
|
* Deletes an SecurityAreaOverride
|
|
548
515
|
* @summary Delete SecurityAreaOverride
|
|
549
516
|
* @param {string} vbasoftwareDatabase Target database
|
|
550
|
-
* @param {string} securityArea Security Area
|
|
551
517
|
* @param {number} securityAreaOverrideKey SecurityAreaOverride Key
|
|
552
518
|
* @param {*} [options] Override http request option.
|
|
553
519
|
* @throws {RequiredError}
|
|
554
520
|
* @memberof SecurityAreaOverridesApiInterface
|
|
555
521
|
*/
|
|
556
|
-
deleteSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
522
|
+
deleteSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverrideKey: number, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
557
523
|
|
|
558
524
|
/**
|
|
559
525
|
* Gets SecurityAreaOverride
|
|
560
526
|
* @summary Get SecurityAreaOverride
|
|
561
527
|
* @param {string} vbasoftwareDatabase Target database
|
|
562
|
-
* @param {string} securityArea Security Area
|
|
563
528
|
* @param {number} securityAreaOverrideKey SecurityAreaOverride Key
|
|
564
529
|
* @param {*} [options] Override http request option.
|
|
565
530
|
* @throws {RequiredError}
|
|
566
531
|
* @memberof SecurityAreaOverridesApiInterface
|
|
567
532
|
*/
|
|
568
|
-
getSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
533
|
+
getSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverrideKey: number, options?: AxiosRequestConfig): AxiosPromise<SecurityAreaOverrideVBAResponse>;
|
|
569
534
|
|
|
570
535
|
/**
|
|
571
|
-
* Lists all SecurityAreaOverride securityArea
|
|
536
|
+
* Lists all SecurityAreaOverride with optional securityArea filter
|
|
572
537
|
* @summary List SecurityAreaOverride
|
|
573
538
|
* @param {string} vbasoftwareDatabase Target database
|
|
574
|
-
* @param {string} securityArea Security Area
|
|
539
|
+
* @param {string} [securityArea] Security Area
|
|
575
540
|
* @param {*} [options] Override http request option.
|
|
576
541
|
* @throws {RequiredError}
|
|
577
542
|
* @memberof SecurityAreaOverridesApiInterface
|
|
578
543
|
*/
|
|
579
|
-
listSecurityAreaOverride(vbasoftwareDatabase: string, securityArea
|
|
544
|
+
listSecurityAreaOverride(vbasoftwareDatabase: string, securityArea?: string, options?: AxiosRequestConfig): AxiosPromise<SecurityAreaOverrideListVBAResponse>;
|
|
580
545
|
|
|
581
546
|
/**
|
|
582
547
|
* Create or Update multiple SecurityAreaOverride at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
583
548
|
* @summary Create or Update Batch SecurityAreaOverride
|
|
584
549
|
* @param {string} vbasoftwareDatabase Target database
|
|
585
|
-
* @param {string} securityArea Security Area
|
|
586
550
|
* @param {Array<SecurityAreaOverride>} securityAreaOverride
|
|
587
551
|
* @param {*} [options] Override http request option.
|
|
588
552
|
* @throws {RequiredError}
|
|
589
553
|
* @memberof SecurityAreaOverridesApiInterface
|
|
590
554
|
*/
|
|
591
|
-
updateBatchSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
555
|
+
updateBatchSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverride: Array<SecurityAreaOverride>, options?: AxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse>;
|
|
592
556
|
|
|
593
557
|
/**
|
|
594
558
|
* Updates a specific SecurityAreaOverride.
|
|
595
559
|
* @summary Update SecurityAreaOverride
|
|
596
560
|
* @param {string} vbasoftwareDatabase Target database
|
|
597
|
-
* @param {string} securityArea Security Area
|
|
598
561
|
* @param {number} securityAreaOverrideKey SecurityAreaOverride Key
|
|
599
562
|
* @param {SecurityAreaOverride} securityAreaOverride
|
|
600
563
|
* @param {*} [options] Override http request option.
|
|
601
564
|
* @throws {RequiredError}
|
|
602
565
|
* @memberof SecurityAreaOverridesApiInterface
|
|
603
566
|
*/
|
|
604
|
-
updateSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
567
|
+
updateSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverrideKey: number, securityAreaOverride: SecurityAreaOverride, options?: AxiosRequestConfig): AxiosPromise<SecurityAreaOverrideVBAResponse>;
|
|
605
568
|
|
|
606
569
|
}
|
|
607
570
|
|
|
@@ -616,54 +579,51 @@ export class SecurityAreaOverridesApi extends BaseAPI implements SecurityAreaOve
|
|
|
616
579
|
* Creates a new SecurityAreaOverride
|
|
617
580
|
* @summary Create SecurityAreaOverride
|
|
618
581
|
* @param {string} vbasoftwareDatabase Target database
|
|
619
|
-
* @param {string} securityArea Security Area
|
|
620
582
|
* @param {SecurityAreaOverride} securityAreaOverride
|
|
621
583
|
* @param {*} [options] Override http request option.
|
|
622
584
|
* @throws {RequiredError}
|
|
623
585
|
* @memberof SecurityAreaOverridesApi
|
|
624
586
|
*/
|
|
625
|
-
public createSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
626
|
-
return SecurityAreaOverridesApiFp(this.configuration).createSecurityAreaOverride(vbasoftwareDatabase,
|
|
587
|
+
public createSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverride: SecurityAreaOverride, options?: AxiosRequestConfig) {
|
|
588
|
+
return SecurityAreaOverridesApiFp(this.configuration).createSecurityAreaOverride(vbasoftwareDatabase, securityAreaOverride, options).then((request) => request(this.axios, this.basePath));
|
|
627
589
|
}
|
|
628
590
|
|
|
629
591
|
/**
|
|
630
592
|
* Deletes an SecurityAreaOverride
|
|
631
593
|
* @summary Delete SecurityAreaOverride
|
|
632
594
|
* @param {string} vbasoftwareDatabase Target database
|
|
633
|
-
* @param {string} securityArea Security Area
|
|
634
595
|
* @param {number} securityAreaOverrideKey SecurityAreaOverride Key
|
|
635
596
|
* @param {*} [options] Override http request option.
|
|
636
597
|
* @throws {RequiredError}
|
|
637
598
|
* @memberof SecurityAreaOverridesApi
|
|
638
599
|
*/
|
|
639
|
-
public deleteSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
640
|
-
return SecurityAreaOverridesApiFp(this.configuration).deleteSecurityAreaOverride(vbasoftwareDatabase,
|
|
600
|
+
public deleteSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverrideKey: number, options?: AxiosRequestConfig) {
|
|
601
|
+
return SecurityAreaOverridesApiFp(this.configuration).deleteSecurityAreaOverride(vbasoftwareDatabase, securityAreaOverrideKey, options).then((request) => request(this.axios, this.basePath));
|
|
641
602
|
}
|
|
642
603
|
|
|
643
604
|
/**
|
|
644
605
|
* Gets SecurityAreaOverride
|
|
645
606
|
* @summary Get SecurityAreaOverride
|
|
646
607
|
* @param {string} vbasoftwareDatabase Target database
|
|
647
|
-
* @param {string} securityArea Security Area
|
|
648
608
|
* @param {number} securityAreaOverrideKey SecurityAreaOverride Key
|
|
649
609
|
* @param {*} [options] Override http request option.
|
|
650
610
|
* @throws {RequiredError}
|
|
651
611
|
* @memberof SecurityAreaOverridesApi
|
|
652
612
|
*/
|
|
653
|
-
public getSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
654
|
-
return SecurityAreaOverridesApiFp(this.configuration).getSecurityAreaOverride(vbasoftwareDatabase,
|
|
613
|
+
public getSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverrideKey: number, options?: AxiosRequestConfig) {
|
|
614
|
+
return SecurityAreaOverridesApiFp(this.configuration).getSecurityAreaOverride(vbasoftwareDatabase, securityAreaOverrideKey, options).then((request) => request(this.axios, this.basePath));
|
|
655
615
|
}
|
|
656
616
|
|
|
657
617
|
/**
|
|
658
|
-
* Lists all SecurityAreaOverride securityArea
|
|
618
|
+
* Lists all SecurityAreaOverride with optional securityArea filter
|
|
659
619
|
* @summary List SecurityAreaOverride
|
|
660
620
|
* @param {string} vbasoftwareDatabase Target database
|
|
661
|
-
* @param {string} securityArea Security Area
|
|
621
|
+
* @param {string} [securityArea] Security Area
|
|
662
622
|
* @param {*} [options] Override http request option.
|
|
663
623
|
* @throws {RequiredError}
|
|
664
624
|
* @memberof SecurityAreaOverridesApi
|
|
665
625
|
*/
|
|
666
|
-
public listSecurityAreaOverride(vbasoftwareDatabase: string, securityArea
|
|
626
|
+
public listSecurityAreaOverride(vbasoftwareDatabase: string, securityArea?: string, options?: AxiosRequestConfig) {
|
|
667
627
|
return SecurityAreaOverridesApiFp(this.configuration).listSecurityAreaOverride(vbasoftwareDatabase, securityArea, options).then((request) => request(this.axios, this.basePath));
|
|
668
628
|
}
|
|
669
629
|
|
|
@@ -671,28 +631,26 @@ export class SecurityAreaOverridesApi extends BaseAPI implements SecurityAreaOve
|
|
|
671
631
|
* Create or Update multiple SecurityAreaOverride at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
672
632
|
* @summary Create or Update Batch SecurityAreaOverride
|
|
673
633
|
* @param {string} vbasoftwareDatabase Target database
|
|
674
|
-
* @param {string} securityArea Security Area
|
|
675
634
|
* @param {Array<SecurityAreaOverride>} securityAreaOverride
|
|
676
635
|
* @param {*} [options] Override http request option.
|
|
677
636
|
* @throws {RequiredError}
|
|
678
637
|
* @memberof SecurityAreaOverridesApi
|
|
679
638
|
*/
|
|
680
|
-
public updateBatchSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
681
|
-
return SecurityAreaOverridesApiFp(this.configuration).updateBatchSecurityAreaOverride(vbasoftwareDatabase,
|
|
639
|
+
public updateBatchSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverride: Array<SecurityAreaOverride>, options?: AxiosRequestConfig) {
|
|
640
|
+
return SecurityAreaOverridesApiFp(this.configuration).updateBatchSecurityAreaOverride(vbasoftwareDatabase, securityAreaOverride, options).then((request) => request(this.axios, this.basePath));
|
|
682
641
|
}
|
|
683
642
|
|
|
684
643
|
/**
|
|
685
644
|
* Updates a specific SecurityAreaOverride.
|
|
686
645
|
* @summary Update SecurityAreaOverride
|
|
687
646
|
* @param {string} vbasoftwareDatabase Target database
|
|
688
|
-
* @param {string} securityArea Security Area
|
|
689
647
|
* @param {number} securityAreaOverrideKey SecurityAreaOverride Key
|
|
690
648
|
* @param {SecurityAreaOverride} securityAreaOverride
|
|
691
649
|
* @param {*} [options] Override http request option.
|
|
692
650
|
* @throws {RequiredError}
|
|
693
651
|
* @memberof SecurityAreaOverridesApi
|
|
694
652
|
*/
|
|
695
|
-
public updateSecurityAreaOverride(vbasoftwareDatabase: string,
|
|
696
|
-
return SecurityAreaOverridesApiFp(this.configuration).updateSecurityAreaOverride(vbasoftwareDatabase,
|
|
653
|
+
public updateSecurityAreaOverride(vbasoftwareDatabase: string, securityAreaOverrideKey: number, securityAreaOverride: SecurityAreaOverride, options?: AxiosRequestConfig) {
|
|
654
|
+
return SecurityAreaOverridesApiFp(this.configuration).updateSecurityAreaOverride(vbasoftwareDatabase, securityAreaOverrideKey, securityAreaOverride, options).then((request) => request(this.axios, this.basePath));
|
|
697
655
|
}
|
|
698
656
|
}
|