sailpoint-api-client 1.7.30 → 1.8.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.
- package/beta/README.md +2 -2
- package/beta/common.ts +8 -3
- package/beta/package.json +1 -1
- package/configuration.ts +40 -4
- package/dist/beta/common.js +6 -1
- package/dist/beta/common.js.map +1 -1
- package/dist/configuration.d.ts +25 -0
- package/dist/configuration.js +11 -3
- package/dist/configuration.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.js +9 -3
- package/dist/index.js.map +1 -1
- package/dist/nerm/api.d.ts +19169 -0
- package/dist/nerm/api.js +22633 -0
- package/dist/nerm/api.js.map +1 -0
- package/dist/nerm/base.d.ts +66 -0
- package/dist/nerm/base.js +89 -0
- package/dist/nerm/base.js.map +1 -0
- package/dist/nerm/common.d.ts +65 -0
- package/dist/nerm/common.js +271 -0
- package/dist/nerm/common.js.map +1 -0
- package/dist/nerm/configuration.d.ts +91 -0
- package/dist/nerm/configuration.js +46 -0
- package/dist/nerm/configuration.js.map +1 -0
- package/dist/nerm/index.d.ts +13 -0
- package/dist/nerm/index.js +32 -0
- package/dist/nerm/index.js.map +1 -0
- package/dist/nermv2025/api.d.ts +653 -0
- package/dist/nermv2025/api.js +556 -0
- package/dist/nermv2025/api.js.map +1 -0
- package/dist/nermv2025/base.d.ts +66 -0
- package/dist/nermv2025/base.js +89 -0
- package/dist/nermv2025/base.js.map +1 -0
- package/dist/nermv2025/common.d.ts +65 -0
- package/dist/nermv2025/common.js +271 -0
- package/dist/nermv2025/common.js.map +1 -0
- package/dist/nermv2025/configuration.d.ts +91 -0
- package/dist/nermv2025/configuration.js +46 -0
- package/dist/nermv2025/configuration.js.map +1 -0
- package/dist/nermv2025/index.d.ts +13 -0
- package/dist/nermv2025/index.js +32 -0
- package/dist/nermv2025/index.js.map +1 -0
- package/dist/v2024/common.js +6 -1
- package/dist/v2024/common.js.map +1 -1
- package/dist/v2025/common.js +6 -1
- package/dist/v2025/common.js.map +1 -1
- package/dist/v2026/common.js +6 -1
- package/dist/v2026/common.js.map +1 -1
- package/dist/v3/api.d.ts +4 -4
- package/dist/v3/api.js +4 -4
- package/dist/v3/common.js +6 -1
- package/dist/v3/common.js.map +1 -1
- package/index.ts +8 -1
- package/nerm/.openapi-generator/FILES +12 -0
- package/nerm/.openapi-generator/VERSION +1 -0
- package/nerm/.openapi-generator-ignore +23 -0
- package/nerm/README.md +46 -0
- package/nerm/api.ts +29579 -0
- package/nerm/base.ts +86 -0
- package/nerm/common.ts +171 -0
- package/nerm/configuration.ts +110 -0
- package/nerm/git_push.sh +57 -0
- package/nerm/index.ts +18 -0
- package/nerm/package.json +34 -0
- package/nerm/tsconfig.json +21 -0
- package/nermv2025/.openapi-generator/FILES +12 -0
- package/nermv2025/.openapi-generator/VERSION +1 -0
- package/nermv2025/.openapi-generator-ignore +23 -0
- package/nermv2025/README.md +46 -0
- package/nermv2025/api.ts +896 -0
- package/nermv2025/base.ts +86 -0
- package/nermv2025/common.ts +171 -0
- package/nermv2025/configuration.ts +110 -0
- package/nermv2025/git_push.sh +57 -0
- package/nermv2025/index.ts +18 -0
- package/nermv2025/package.json +34 -0
- package/nermv2025/tsconfig.json +21 -0
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/common.ts +8 -3
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/common.ts +8 -3
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/common.ts +8 -3
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +4 -4
- package/v3/common.ts +8 -3
- package/v3/package.json +1 -1
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* NERM API
|
|
6
|
+
* The NERM API accesss and modifies resources in your environment.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
18
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
19
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
20
|
+
}
|
|
21
|
+
Object.defineProperty(o, k2, desc);
|
|
22
|
+
}) : (function(o, m, k, k2) {
|
|
23
|
+
if (k2 === undefined) k2 = k;
|
|
24
|
+
o[k2] = m[k];
|
|
25
|
+
}));
|
|
26
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
27
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
28
|
+
};
|
|
29
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30
|
+
__exportStar(require("./api"), exports);
|
|
31
|
+
__exportStar(require("../configuration"), exports);
|
|
32
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../nerm/index.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;;;;;;;;;;;;;;AAGH,wCAAsB;AACtB,mDAAiC"}
|
|
@@ -0,0 +1,653 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NERM API v2025
|
|
3
|
+
* The NERM API v2025 accesss and modifies resources in your environment.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { Configuration } from '../configuration';
|
|
13
|
+
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
|
+
import type { RequestArgs } from './base';
|
|
15
|
+
import { BaseAPI } from './base';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface DelegateUserNERMV2025
|
|
20
|
+
*/
|
|
21
|
+
export interface DelegateUserNERMV2025 {
|
|
22
|
+
/**
|
|
23
|
+
* The id of the delegate user
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof DelegateUserNERMV2025
|
|
26
|
+
*/
|
|
27
|
+
'id'?: string;
|
|
28
|
+
/**
|
|
29
|
+
* The uid of the delegate user
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof DelegateUserNERMV2025
|
|
32
|
+
*/
|
|
33
|
+
'uid'?: string;
|
|
34
|
+
/**
|
|
35
|
+
* The type of the delegate user
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof DelegateUserNERMV2025
|
|
38
|
+
*/
|
|
39
|
+
'type'?: string;
|
|
40
|
+
/**
|
|
41
|
+
* The name of the delegate user
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof DelegateUserNERMV2025
|
|
44
|
+
*/
|
|
45
|
+
'name'?: string;
|
|
46
|
+
/**
|
|
47
|
+
* The email of the delegate user
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof DelegateUserNERMV2025
|
|
50
|
+
*/
|
|
51
|
+
'email'?: string;
|
|
52
|
+
/**
|
|
53
|
+
* The status of the delegate user
|
|
54
|
+
* @type {string}
|
|
55
|
+
* @memberof DelegateUserNERMV2025
|
|
56
|
+
*/
|
|
57
|
+
'status'?: string;
|
|
58
|
+
/**
|
|
59
|
+
* The login of the delegate user
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof DelegateUserNERMV2025
|
|
62
|
+
*/
|
|
63
|
+
'login'?: string;
|
|
64
|
+
/**
|
|
65
|
+
* The last login timestamp of the delegate user
|
|
66
|
+
* @type {string}
|
|
67
|
+
* @memberof DelegateUserNERMV2025
|
|
68
|
+
*/
|
|
69
|
+
'last_login'?: string;
|
|
70
|
+
/**
|
|
71
|
+
* The date-time the record created.
|
|
72
|
+
* @type {string}
|
|
73
|
+
* @memberof DelegateUserNERMV2025
|
|
74
|
+
*/
|
|
75
|
+
'created_at'?: string;
|
|
76
|
+
/**
|
|
77
|
+
* The date-time the record was last updated.
|
|
78
|
+
* @type {string}
|
|
79
|
+
* @memberof DelegateUserNERMV2025
|
|
80
|
+
*/
|
|
81
|
+
'updated_at'?: string;
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @export
|
|
86
|
+
* @interface Delegation1NERMV2025
|
|
87
|
+
*/
|
|
88
|
+
export interface Delegation1NERMV2025 {
|
|
89
|
+
/**
|
|
90
|
+
* The id of the delegation
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof Delegation1NERMV2025
|
|
93
|
+
*/
|
|
94
|
+
'id'?: string;
|
|
95
|
+
/**
|
|
96
|
+
* The id of the delegator user
|
|
97
|
+
* @type {object}
|
|
98
|
+
* @memberof Delegation1NERMV2025
|
|
99
|
+
*/
|
|
100
|
+
'delegator_id'?: object;
|
|
101
|
+
/**
|
|
102
|
+
* The id of the delegate user
|
|
103
|
+
* @type {object}
|
|
104
|
+
* @memberof Delegation1NERMV2025
|
|
105
|
+
*/
|
|
106
|
+
'delegate_id'?: object;
|
|
107
|
+
/**
|
|
108
|
+
* The expiration date of the delegation
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof Delegation1NERMV2025
|
|
111
|
+
*/
|
|
112
|
+
'expiration'?: string;
|
|
113
|
+
/**
|
|
114
|
+
* Indicates if the delegation is expired
|
|
115
|
+
* @type {boolean}
|
|
116
|
+
* @memberof Delegation1NERMV2025
|
|
117
|
+
*/
|
|
118
|
+
'expired'?: boolean;
|
|
119
|
+
/**
|
|
120
|
+
* The date-time the record created.
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof Delegation1NERMV2025
|
|
123
|
+
*/
|
|
124
|
+
'created_at'?: string;
|
|
125
|
+
/**
|
|
126
|
+
* The date-time the record was last updated.
|
|
127
|
+
* @type {string}
|
|
128
|
+
* @memberof Delegation1NERMV2025
|
|
129
|
+
*/
|
|
130
|
+
'updated_at'?: string;
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
*
|
|
134
|
+
* @export
|
|
135
|
+
* @interface Delegation2NERMV2025
|
|
136
|
+
*/
|
|
137
|
+
export interface Delegation2NERMV2025 {
|
|
138
|
+
/**
|
|
139
|
+
* The id of the delegator
|
|
140
|
+
* @type {string}
|
|
141
|
+
* @memberof Delegation2NERMV2025
|
|
142
|
+
*/
|
|
143
|
+
'delegator_id'?: string;
|
|
144
|
+
/**
|
|
145
|
+
* The id of the delegate
|
|
146
|
+
* @type {string}
|
|
147
|
+
* @memberof Delegation2NERMV2025
|
|
148
|
+
*/
|
|
149
|
+
'delegate_id'?: string;
|
|
150
|
+
/**
|
|
151
|
+
* The expiration date of the delegation
|
|
152
|
+
* @type {string}
|
|
153
|
+
* @memberof Delegation2NERMV2025
|
|
154
|
+
*/
|
|
155
|
+
'expiration'?: string;
|
|
156
|
+
}
|
|
157
|
+
/**
|
|
158
|
+
*
|
|
159
|
+
* @export
|
|
160
|
+
* @interface DelegationNERMV2025
|
|
161
|
+
*/
|
|
162
|
+
export interface DelegationNERMV2025 {
|
|
163
|
+
/**
|
|
164
|
+
* The id of the delegation
|
|
165
|
+
* @type {string}
|
|
166
|
+
* @memberof DelegationNERMV2025
|
|
167
|
+
*/
|
|
168
|
+
'id'?: string;
|
|
169
|
+
/**
|
|
170
|
+
* The id of the delegator user
|
|
171
|
+
* @type {object}
|
|
172
|
+
* @memberof DelegationNERMV2025
|
|
173
|
+
*/
|
|
174
|
+
'delegator_id'?: object;
|
|
175
|
+
/**
|
|
176
|
+
* The id of the delegate user
|
|
177
|
+
* @type {object}
|
|
178
|
+
* @memberof DelegationNERMV2025
|
|
179
|
+
*/
|
|
180
|
+
'delegate_id'?: object;
|
|
181
|
+
/**
|
|
182
|
+
*
|
|
183
|
+
* @type {DelegatorUserNERMV2025}
|
|
184
|
+
* @memberof DelegationNERMV2025
|
|
185
|
+
*/
|
|
186
|
+
'delegator'?: DelegatorUserNERMV2025;
|
|
187
|
+
/**
|
|
188
|
+
*
|
|
189
|
+
* @type {DelegateUserNERMV2025}
|
|
190
|
+
* @memberof DelegationNERMV2025
|
|
191
|
+
*/
|
|
192
|
+
'delegate'?: DelegateUserNERMV2025;
|
|
193
|
+
/**
|
|
194
|
+
* The expiration date of the delegation
|
|
195
|
+
* @type {string}
|
|
196
|
+
* @memberof DelegationNERMV2025
|
|
197
|
+
*/
|
|
198
|
+
'expiration'?: string;
|
|
199
|
+
/**
|
|
200
|
+
* Indicates if the delegation is expired
|
|
201
|
+
* @type {boolean}
|
|
202
|
+
* @memberof DelegationNERMV2025
|
|
203
|
+
*/
|
|
204
|
+
'expired'?: boolean;
|
|
205
|
+
/**
|
|
206
|
+
* The date-time the record created.
|
|
207
|
+
* @type {string}
|
|
208
|
+
* @memberof DelegationNERMV2025
|
|
209
|
+
*/
|
|
210
|
+
'created_at'?: string;
|
|
211
|
+
/**
|
|
212
|
+
* The date-time the record was last updated.
|
|
213
|
+
* @type {string}
|
|
214
|
+
* @memberof DelegationNERMV2025
|
|
215
|
+
*/
|
|
216
|
+
'updated_at'?: string;
|
|
217
|
+
}
|
|
218
|
+
/**
|
|
219
|
+
*
|
|
220
|
+
* @export
|
|
221
|
+
* @interface DelegationsGet200ResponseNERMV2025
|
|
222
|
+
*/
|
|
223
|
+
export interface DelegationsGet200ResponseNERMV2025 {
|
|
224
|
+
/**
|
|
225
|
+
*
|
|
226
|
+
* @type {Array<DelegationNERMV2025>}
|
|
227
|
+
* @memberof DelegationsGet200ResponseNERMV2025
|
|
228
|
+
*/
|
|
229
|
+
'delegations'?: Array<DelegationNERMV2025>;
|
|
230
|
+
}
|
|
231
|
+
/**
|
|
232
|
+
*
|
|
233
|
+
* @export
|
|
234
|
+
* @interface DelegationsGet500ResponseNERMV2025
|
|
235
|
+
*/
|
|
236
|
+
export interface DelegationsGet500ResponseNERMV2025 {
|
|
237
|
+
/**
|
|
238
|
+
* A message describing the error
|
|
239
|
+
* @type {object}
|
|
240
|
+
* @memberof DelegationsGet500ResponseNERMV2025
|
|
241
|
+
*/
|
|
242
|
+
'error'?: object;
|
|
243
|
+
}
|
|
244
|
+
/**
|
|
245
|
+
*
|
|
246
|
+
* @export
|
|
247
|
+
* @interface DelegationsPost201ResponseNERMV2025
|
|
248
|
+
*/
|
|
249
|
+
export interface DelegationsPost201ResponseNERMV2025 {
|
|
250
|
+
/**
|
|
251
|
+
*
|
|
252
|
+
* @type {Delegation1NERMV2025}
|
|
253
|
+
* @memberof DelegationsPost201ResponseNERMV2025
|
|
254
|
+
*/
|
|
255
|
+
'delegation'?: Delegation1NERMV2025;
|
|
256
|
+
}
|
|
257
|
+
/**
|
|
258
|
+
*
|
|
259
|
+
* @export
|
|
260
|
+
* @interface DelegationsPost404ResponseNERMV2025
|
|
261
|
+
*/
|
|
262
|
+
export interface DelegationsPost404ResponseNERMV2025 {
|
|
263
|
+
/**
|
|
264
|
+
* The requested record, either ID or UID, was not found
|
|
265
|
+
* @type {object}
|
|
266
|
+
* @memberof DelegationsPost404ResponseNERMV2025
|
|
267
|
+
*/
|
|
268
|
+
'error'?: object;
|
|
269
|
+
}
|
|
270
|
+
/**
|
|
271
|
+
*
|
|
272
|
+
* @export
|
|
273
|
+
* @interface DelegationsPostRequestNERMV2025
|
|
274
|
+
*/
|
|
275
|
+
export interface DelegationsPostRequestNERMV2025 {
|
|
276
|
+
/**
|
|
277
|
+
*
|
|
278
|
+
* @type {Delegation2NERMV2025}
|
|
279
|
+
* @memberof DelegationsPostRequestNERMV2025
|
|
280
|
+
*/
|
|
281
|
+
'delegation'?: Delegation2NERMV2025;
|
|
282
|
+
}
|
|
283
|
+
/**
|
|
284
|
+
*
|
|
285
|
+
* @export
|
|
286
|
+
* @interface DelegatorUserNERMV2025
|
|
287
|
+
*/
|
|
288
|
+
export interface DelegatorUserNERMV2025 {
|
|
289
|
+
/**
|
|
290
|
+
* The id of the delegator user
|
|
291
|
+
* @type {string}
|
|
292
|
+
* @memberof DelegatorUserNERMV2025
|
|
293
|
+
*/
|
|
294
|
+
'id'?: string;
|
|
295
|
+
/**
|
|
296
|
+
* The uid of the delegator user
|
|
297
|
+
* @type {string}
|
|
298
|
+
* @memberof DelegatorUserNERMV2025
|
|
299
|
+
*/
|
|
300
|
+
'uid'?: string;
|
|
301
|
+
/**
|
|
302
|
+
* The type of the delegator user
|
|
303
|
+
* @type {string}
|
|
304
|
+
* @memberof DelegatorUserNERMV2025
|
|
305
|
+
*/
|
|
306
|
+
'type'?: string;
|
|
307
|
+
/**
|
|
308
|
+
* The name of the delegator user
|
|
309
|
+
* @type {string}
|
|
310
|
+
* @memberof DelegatorUserNERMV2025
|
|
311
|
+
*/
|
|
312
|
+
'name'?: string;
|
|
313
|
+
/**
|
|
314
|
+
* The email of the delegator user
|
|
315
|
+
* @type {string}
|
|
316
|
+
* @memberof DelegatorUserNERMV2025
|
|
317
|
+
*/
|
|
318
|
+
'email'?: string;
|
|
319
|
+
/**
|
|
320
|
+
* The status of the delegator user
|
|
321
|
+
* @type {string}
|
|
322
|
+
* @memberof DelegatorUserNERMV2025
|
|
323
|
+
*/
|
|
324
|
+
'status'?: string;
|
|
325
|
+
/**
|
|
326
|
+
* The login of the delegator user
|
|
327
|
+
* @type {string}
|
|
328
|
+
* @memberof DelegatorUserNERMV2025
|
|
329
|
+
*/
|
|
330
|
+
'login'?: string;
|
|
331
|
+
/**
|
|
332
|
+
* The last login timestamp of the delegator user
|
|
333
|
+
* @type {string}
|
|
334
|
+
* @memberof DelegatorUserNERMV2025
|
|
335
|
+
*/
|
|
336
|
+
'last_login'?: string;
|
|
337
|
+
/**
|
|
338
|
+
* The date-time the record created.
|
|
339
|
+
* @type {string}
|
|
340
|
+
* @memberof DelegatorUserNERMV2025
|
|
341
|
+
*/
|
|
342
|
+
'created_at'?: string;
|
|
343
|
+
/**
|
|
344
|
+
* The date-time the record was last updated.
|
|
345
|
+
* @type {string}
|
|
346
|
+
* @memberof DelegatorUserNERMV2025
|
|
347
|
+
*/
|
|
348
|
+
'updated_at'?: string;
|
|
349
|
+
}
|
|
350
|
+
/**
|
|
351
|
+
* DelegationsNERMV2025Api - axios parameter creator
|
|
352
|
+
* @export
|
|
353
|
+
*/
|
|
354
|
+
export declare const DelegationsNERMV2025ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
355
|
+
/**
|
|
356
|
+
* Returns a list of delegation records, optionally filtered by delegate, delegator, or expiration status.
|
|
357
|
+
* @summary List delegations
|
|
358
|
+
* @param {string} [delegateId] Filter by delegate ID
|
|
359
|
+
* @param {string} [delegatorId] Filter by delegator ID
|
|
360
|
+
* @param {boolean} [expired] Filter by expiration status (true for expired, false for not expired)
|
|
361
|
+
* @param {number} [limit] The maximum number of items to return.
|
|
362
|
+
* @param {number} [offset] The number of items to skip before starting to collect the result set.
|
|
363
|
+
* @param {string} [include] Include related resources body. For example, \'include=delegator,delegate\'.
|
|
364
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
365
|
+
* @throws {RequiredError}
|
|
366
|
+
*/
|
|
367
|
+
delegationsGet: (delegateId?: string, delegatorId?: string, expired?: boolean, limit?: number, offset?: number, include?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
368
|
+
/**
|
|
369
|
+
* Delete an existing delegation record.
|
|
370
|
+
* @summary Delete a delegation
|
|
371
|
+
* @param {string} id ID of the object to retrieve, update, or delete
|
|
372
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
373
|
+
* @throws {RequiredError}
|
|
374
|
+
*/
|
|
375
|
+
delegationsIdDelete: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
376
|
+
/**
|
|
377
|
+
* Returns a single delegation record by its ID.
|
|
378
|
+
* @summary Get a single delegation
|
|
379
|
+
* @param {string} id ID of the object to retrieve, update, or delete
|
|
380
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
381
|
+
* @throws {RequiredError}
|
|
382
|
+
*/
|
|
383
|
+
delegationsIdGet: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
384
|
+
/**
|
|
385
|
+
* Update an existing delegation record.
|
|
386
|
+
* @summary Update a delegation
|
|
387
|
+
* @param {string} id ID of the object to retrieve, update, or delete
|
|
388
|
+
* @param {DelegationsPostRequestNERMV2025} delegationsPostRequestNERMV2025
|
|
389
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
390
|
+
* @throws {RequiredError}
|
|
391
|
+
*/
|
|
392
|
+
delegationsIdPatch: (id: string, delegationsPostRequestNERMV2025: DelegationsPostRequestNERMV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
393
|
+
/**
|
|
394
|
+
* Create a new delegation record.
|
|
395
|
+
* @summary Create a delegation
|
|
396
|
+
* @param {DelegationsPostRequestNERMV2025} delegationsPostRequestNERMV2025
|
|
397
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
398
|
+
* @throws {RequiredError}
|
|
399
|
+
*/
|
|
400
|
+
delegationsPost: (delegationsPostRequestNERMV2025: DelegationsPostRequestNERMV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
401
|
+
};
|
|
402
|
+
/**
|
|
403
|
+
* DelegationsNERMV2025Api - functional programming interface
|
|
404
|
+
* @export
|
|
405
|
+
*/
|
|
406
|
+
export declare const DelegationsNERMV2025ApiFp: (configuration?: Configuration) => {
|
|
407
|
+
/**
|
|
408
|
+
* Returns a list of delegation records, optionally filtered by delegate, delegator, or expiration status.
|
|
409
|
+
* @summary List delegations
|
|
410
|
+
* @param {string} [delegateId] Filter by delegate ID
|
|
411
|
+
* @param {string} [delegatorId] Filter by delegator ID
|
|
412
|
+
* @param {boolean} [expired] Filter by expiration status (true for expired, false for not expired)
|
|
413
|
+
* @param {number} [limit] The maximum number of items to return.
|
|
414
|
+
* @param {number} [offset] The number of items to skip before starting to collect the result set.
|
|
415
|
+
* @param {string} [include] Include related resources body. For example, \'include=delegator,delegate\'.
|
|
416
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
417
|
+
* @throws {RequiredError}
|
|
418
|
+
*/
|
|
419
|
+
delegationsGet(delegateId?: string, delegatorId?: string, expired?: boolean, limit?: number, offset?: number, include?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DelegationsGet200ResponseNERMV2025>>;
|
|
420
|
+
/**
|
|
421
|
+
* Delete an existing delegation record.
|
|
422
|
+
* @summary Delete a delegation
|
|
423
|
+
* @param {string} id ID of the object to retrieve, update, or delete
|
|
424
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
425
|
+
* @throws {RequiredError}
|
|
426
|
+
*/
|
|
427
|
+
delegationsIdDelete(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
428
|
+
/**
|
|
429
|
+
* Returns a single delegation record by its ID.
|
|
430
|
+
* @summary Get a single delegation
|
|
431
|
+
* @param {string} id ID of the object to retrieve, update, or delete
|
|
432
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
433
|
+
* @throws {RequiredError}
|
|
434
|
+
*/
|
|
435
|
+
delegationsIdGet(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DelegationsPost201ResponseNERMV2025>>;
|
|
436
|
+
/**
|
|
437
|
+
* Update an existing delegation record.
|
|
438
|
+
* @summary Update a delegation
|
|
439
|
+
* @param {string} id ID of the object to retrieve, update, or delete
|
|
440
|
+
* @param {DelegationsPostRequestNERMV2025} delegationsPostRequestNERMV2025
|
|
441
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
442
|
+
* @throws {RequiredError}
|
|
443
|
+
*/
|
|
444
|
+
delegationsIdPatch(id: string, delegationsPostRequestNERMV2025: DelegationsPostRequestNERMV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DelegationsPost201ResponseNERMV2025>>;
|
|
445
|
+
/**
|
|
446
|
+
* Create a new delegation record.
|
|
447
|
+
* @summary Create a delegation
|
|
448
|
+
* @param {DelegationsPostRequestNERMV2025} delegationsPostRequestNERMV2025
|
|
449
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
450
|
+
* @throws {RequiredError}
|
|
451
|
+
*/
|
|
452
|
+
delegationsPost(delegationsPostRequestNERMV2025: DelegationsPostRequestNERMV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DelegationsPost201ResponseNERMV2025>>;
|
|
453
|
+
};
|
|
454
|
+
/**
|
|
455
|
+
* DelegationsNERMV2025Api - factory interface
|
|
456
|
+
* @export
|
|
457
|
+
*/
|
|
458
|
+
export declare const DelegationsNERMV2025ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
459
|
+
/**
|
|
460
|
+
* Returns a list of delegation records, optionally filtered by delegate, delegator, or expiration status.
|
|
461
|
+
* @summary List delegations
|
|
462
|
+
* @param {DelegationsNERMV2025ApiDelegationsGetRequest} requestParameters Request parameters.
|
|
463
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
464
|
+
* @throws {RequiredError}
|
|
465
|
+
*/
|
|
466
|
+
delegationsGet(requestParameters?: DelegationsNERMV2025ApiDelegationsGetRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DelegationsGet200ResponseNERMV2025>;
|
|
467
|
+
/**
|
|
468
|
+
* Delete an existing delegation record.
|
|
469
|
+
* @summary Delete a delegation
|
|
470
|
+
* @param {DelegationsNERMV2025ApiDelegationsIdDeleteRequest} requestParameters Request parameters.
|
|
471
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
472
|
+
* @throws {RequiredError}
|
|
473
|
+
*/
|
|
474
|
+
delegationsIdDelete(requestParameters: DelegationsNERMV2025ApiDelegationsIdDeleteRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
475
|
+
/**
|
|
476
|
+
* Returns a single delegation record by its ID.
|
|
477
|
+
* @summary Get a single delegation
|
|
478
|
+
* @param {DelegationsNERMV2025ApiDelegationsIdGetRequest} requestParameters Request parameters.
|
|
479
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
480
|
+
* @throws {RequiredError}
|
|
481
|
+
*/
|
|
482
|
+
delegationsIdGet(requestParameters: DelegationsNERMV2025ApiDelegationsIdGetRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DelegationsPost201ResponseNERMV2025>;
|
|
483
|
+
/**
|
|
484
|
+
* Update an existing delegation record.
|
|
485
|
+
* @summary Update a delegation
|
|
486
|
+
* @param {DelegationsNERMV2025ApiDelegationsIdPatchRequest} requestParameters Request parameters.
|
|
487
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
488
|
+
* @throws {RequiredError}
|
|
489
|
+
*/
|
|
490
|
+
delegationsIdPatch(requestParameters: DelegationsNERMV2025ApiDelegationsIdPatchRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DelegationsPost201ResponseNERMV2025>;
|
|
491
|
+
/**
|
|
492
|
+
* Create a new delegation record.
|
|
493
|
+
* @summary Create a delegation
|
|
494
|
+
* @param {DelegationsNERMV2025ApiDelegationsPostRequest} requestParameters Request parameters.
|
|
495
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
496
|
+
* @throws {RequiredError}
|
|
497
|
+
*/
|
|
498
|
+
delegationsPost(requestParameters: DelegationsNERMV2025ApiDelegationsPostRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DelegationsPost201ResponseNERMV2025>;
|
|
499
|
+
};
|
|
500
|
+
/**
|
|
501
|
+
* Request parameters for delegationsGet operation in DelegationsNERMV2025Api.
|
|
502
|
+
* @export
|
|
503
|
+
* @interface DelegationsNERMV2025ApiDelegationsGetRequest
|
|
504
|
+
*/
|
|
505
|
+
export interface DelegationsNERMV2025ApiDelegationsGetRequest {
|
|
506
|
+
/**
|
|
507
|
+
* Filter by delegate ID
|
|
508
|
+
* @type {string}
|
|
509
|
+
* @memberof DelegationsNERMV2025ApiDelegationsGet
|
|
510
|
+
*/
|
|
511
|
+
readonly delegateId?: string;
|
|
512
|
+
/**
|
|
513
|
+
* Filter by delegator ID
|
|
514
|
+
* @type {string}
|
|
515
|
+
* @memberof DelegationsNERMV2025ApiDelegationsGet
|
|
516
|
+
*/
|
|
517
|
+
readonly delegatorId?: string;
|
|
518
|
+
/**
|
|
519
|
+
* Filter by expiration status (true for expired, false for not expired)
|
|
520
|
+
* @type {boolean}
|
|
521
|
+
* @memberof DelegationsNERMV2025ApiDelegationsGet
|
|
522
|
+
*/
|
|
523
|
+
readonly expired?: boolean;
|
|
524
|
+
/**
|
|
525
|
+
* The maximum number of items to return.
|
|
526
|
+
* @type {number}
|
|
527
|
+
* @memberof DelegationsNERMV2025ApiDelegationsGet
|
|
528
|
+
*/
|
|
529
|
+
readonly limit?: number;
|
|
530
|
+
/**
|
|
531
|
+
* The number of items to skip before starting to collect the result set.
|
|
532
|
+
* @type {number}
|
|
533
|
+
* @memberof DelegationsNERMV2025ApiDelegationsGet
|
|
534
|
+
*/
|
|
535
|
+
readonly offset?: number;
|
|
536
|
+
/**
|
|
537
|
+
* Include related resources body. For example, \'include=delegator,delegate\'.
|
|
538
|
+
* @type {string}
|
|
539
|
+
* @memberof DelegationsNERMV2025ApiDelegationsGet
|
|
540
|
+
*/
|
|
541
|
+
readonly include?: string;
|
|
542
|
+
}
|
|
543
|
+
/**
|
|
544
|
+
* Request parameters for delegationsIdDelete operation in DelegationsNERMV2025Api.
|
|
545
|
+
* @export
|
|
546
|
+
* @interface DelegationsNERMV2025ApiDelegationsIdDeleteRequest
|
|
547
|
+
*/
|
|
548
|
+
export interface DelegationsNERMV2025ApiDelegationsIdDeleteRequest {
|
|
549
|
+
/**
|
|
550
|
+
* ID of the object to retrieve, update, or delete
|
|
551
|
+
* @type {string}
|
|
552
|
+
* @memberof DelegationsNERMV2025ApiDelegationsIdDelete
|
|
553
|
+
*/
|
|
554
|
+
readonly id: string;
|
|
555
|
+
}
|
|
556
|
+
/**
|
|
557
|
+
* Request parameters for delegationsIdGet operation in DelegationsNERMV2025Api.
|
|
558
|
+
* @export
|
|
559
|
+
* @interface DelegationsNERMV2025ApiDelegationsIdGetRequest
|
|
560
|
+
*/
|
|
561
|
+
export interface DelegationsNERMV2025ApiDelegationsIdGetRequest {
|
|
562
|
+
/**
|
|
563
|
+
* ID of the object to retrieve, update, or delete
|
|
564
|
+
* @type {string}
|
|
565
|
+
* @memberof DelegationsNERMV2025ApiDelegationsIdGet
|
|
566
|
+
*/
|
|
567
|
+
readonly id: string;
|
|
568
|
+
}
|
|
569
|
+
/**
|
|
570
|
+
* Request parameters for delegationsIdPatch operation in DelegationsNERMV2025Api.
|
|
571
|
+
* @export
|
|
572
|
+
* @interface DelegationsNERMV2025ApiDelegationsIdPatchRequest
|
|
573
|
+
*/
|
|
574
|
+
export interface DelegationsNERMV2025ApiDelegationsIdPatchRequest {
|
|
575
|
+
/**
|
|
576
|
+
* ID of the object to retrieve, update, or delete
|
|
577
|
+
* @type {string}
|
|
578
|
+
* @memberof DelegationsNERMV2025ApiDelegationsIdPatch
|
|
579
|
+
*/
|
|
580
|
+
readonly id: string;
|
|
581
|
+
/**
|
|
582
|
+
*
|
|
583
|
+
* @type {DelegationsPostRequestNERMV2025}
|
|
584
|
+
* @memberof DelegationsNERMV2025ApiDelegationsIdPatch
|
|
585
|
+
*/
|
|
586
|
+
readonly delegationsPostRequestNERMV2025: DelegationsPostRequestNERMV2025;
|
|
587
|
+
}
|
|
588
|
+
/**
|
|
589
|
+
* Request parameters for delegationsPost operation in DelegationsNERMV2025Api.
|
|
590
|
+
* @export
|
|
591
|
+
* @interface DelegationsNERMV2025ApiDelegationsPostRequest
|
|
592
|
+
*/
|
|
593
|
+
export interface DelegationsNERMV2025ApiDelegationsPostRequest {
|
|
594
|
+
/**
|
|
595
|
+
*
|
|
596
|
+
* @type {DelegationsPostRequestNERMV2025}
|
|
597
|
+
* @memberof DelegationsNERMV2025ApiDelegationsPost
|
|
598
|
+
*/
|
|
599
|
+
readonly delegationsPostRequestNERMV2025: DelegationsPostRequestNERMV2025;
|
|
600
|
+
}
|
|
601
|
+
/**
|
|
602
|
+
* DelegationsNERMV2025Api - object-oriented interface
|
|
603
|
+
* @export
|
|
604
|
+
* @class DelegationsNERMV2025Api
|
|
605
|
+
* @extends {BaseAPI}
|
|
606
|
+
*/
|
|
607
|
+
export declare class DelegationsNERMV2025Api extends BaseAPI {
|
|
608
|
+
/**
|
|
609
|
+
* Returns a list of delegation records, optionally filtered by delegate, delegator, or expiration status.
|
|
610
|
+
* @summary List delegations
|
|
611
|
+
* @param {DelegationsNERMV2025ApiDelegationsGetRequest} requestParameters Request parameters.
|
|
612
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
613
|
+
* @throws {RequiredError}
|
|
614
|
+
* @memberof DelegationsNERMV2025Api
|
|
615
|
+
*/
|
|
616
|
+
delegationsGet(requestParameters?: DelegationsNERMV2025ApiDelegationsGetRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DelegationsGet200ResponseNERMV2025, any>>;
|
|
617
|
+
/**
|
|
618
|
+
* Delete an existing delegation record.
|
|
619
|
+
* @summary Delete a delegation
|
|
620
|
+
* @param {DelegationsNERMV2025ApiDelegationsIdDeleteRequest} requestParameters Request parameters.
|
|
621
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
622
|
+
* @throws {RequiredError}
|
|
623
|
+
* @memberof DelegationsNERMV2025Api
|
|
624
|
+
*/
|
|
625
|
+
delegationsIdDelete(requestParameters: DelegationsNERMV2025ApiDelegationsIdDeleteRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
626
|
+
/**
|
|
627
|
+
* Returns a single delegation record by its ID.
|
|
628
|
+
* @summary Get a single delegation
|
|
629
|
+
* @param {DelegationsNERMV2025ApiDelegationsIdGetRequest} requestParameters Request parameters.
|
|
630
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
631
|
+
* @throws {RequiredError}
|
|
632
|
+
* @memberof DelegationsNERMV2025Api
|
|
633
|
+
*/
|
|
634
|
+
delegationsIdGet(requestParameters: DelegationsNERMV2025ApiDelegationsIdGetRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DelegationsPost201ResponseNERMV2025, any>>;
|
|
635
|
+
/**
|
|
636
|
+
* Update an existing delegation record.
|
|
637
|
+
* @summary Update a delegation
|
|
638
|
+
* @param {DelegationsNERMV2025ApiDelegationsIdPatchRequest} requestParameters Request parameters.
|
|
639
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
640
|
+
* @throws {RequiredError}
|
|
641
|
+
* @memberof DelegationsNERMV2025Api
|
|
642
|
+
*/
|
|
643
|
+
delegationsIdPatch(requestParameters: DelegationsNERMV2025ApiDelegationsIdPatchRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DelegationsPost201ResponseNERMV2025, any>>;
|
|
644
|
+
/**
|
|
645
|
+
* Create a new delegation record.
|
|
646
|
+
* @summary Create a delegation
|
|
647
|
+
* @param {DelegationsNERMV2025ApiDelegationsPostRequest} requestParameters Request parameters.
|
|
648
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
649
|
+
* @throws {RequiredError}
|
|
650
|
+
* @memberof DelegationsNERMV2025Api
|
|
651
|
+
*/
|
|
652
|
+
delegationsPost(requestParameters: DelegationsNERMV2025ApiDelegationsPostRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DelegationsPost201ResponseNERMV2025, any>>;
|
|
653
|
+
}
|