@daytonaio/api-client 0.171.0-rc.1 → 0.172.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/package.json +1 -1
- package/src/api/organizations-api.d.ts +68 -0
- package/src/api/organizations-api.js +140 -0
- package/src/api/organizations-api.js.map +1 -1
- package/src/api/sandbox-api.d.ts +8 -4
- package/src/api/sandbox-api.js +14 -7
- package/src/api/sandbox-api.js.map +1 -1
- package/src/models/create-sandbox.d.ts +11 -4
- package/src/models/create-sandbox.js +7 -0
- package/src/models/create-sandbox.js.map +1 -1
- package/src/models/create-snapshot.d.ts +0 -5
- package/src/models/create-workspace.d.ts +11 -0
- package/src/models/create-workspace.js +7 -1
- package/src/models/create-workspace.js.map +1 -1
- package/src/models/daytona-configuration.d.ts +0 -4
- package/src/models/organization.d.ts +5 -0
- package/src/models/runner-full.d.ts +2 -2
- package/src/models/runner.d.ts +2 -2
- package/src/models/sandbox-class.d.ts +4 -4
- package/src/models/sandbox-class.js +4 -4
- package/src/models/sandbox-class.js.map +1 -1
- package/src/models/sandbox.d.ts +7 -14
- package/src/models/sandbox.js +5 -5
- package/src/models/sandbox.js.map +1 -1
- package/src/models/snapshot-dto.d.ts +0 -4
- package/src/models/workspace.d.ts +7 -14
- package/src/models/workspace.js +5 -5
- package/src/models/workspace.js.map +1 -1
package/package.json
CHANGED
|
@@ -116,6 +116,14 @@ export declare const OrganizationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
116
116
|
* @throws {RequiredError}
|
|
117
117
|
*/
|
|
118
118
|
deleteOrganizationMember: (organizationId: string, userId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @summary Delete organization OpenTelemetry configuration
|
|
122
|
+
* @param {string} organizationId Organization ID
|
|
123
|
+
* @param {*} [options] Override http request option.
|
|
124
|
+
* @throws {RequiredError}
|
|
125
|
+
*/
|
|
126
|
+
deleteOrganizationOtelConfig: (organizationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
119
127
|
/**
|
|
120
128
|
*
|
|
121
129
|
* @summary Delete organization role
|
|
@@ -320,6 +328,15 @@ export declare const OrganizationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
320
328
|
* @throws {RequiredError}
|
|
321
329
|
*/
|
|
322
330
|
updateOrganizationInvitation: (organizationId: string, invitationId: string, updateOrganizationInvitation: UpdateOrganizationInvitation, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
331
|
+
/**
|
|
332
|
+
*
|
|
333
|
+
* @summary Update organization OpenTelemetry configuration
|
|
334
|
+
* @param {string} organizationId Organization ID
|
|
335
|
+
* @param {OtelConfig} otelConfig
|
|
336
|
+
* @param {*} [options] Override http request option.
|
|
337
|
+
* @throws {RequiredError}
|
|
338
|
+
*/
|
|
339
|
+
updateOrganizationOtelConfig: (organizationId: string, otelConfig: OtelConfig, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
323
340
|
/**
|
|
324
341
|
*
|
|
325
342
|
* @summary Update organization quota
|
|
@@ -450,6 +467,14 @@ export declare const OrganizationsApiFp: (configuration?: Configuration) => {
|
|
|
450
467
|
* @throws {RequiredError}
|
|
451
468
|
*/
|
|
452
469
|
deleteOrganizationMember(organizationId: string, userId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
470
|
+
/**
|
|
471
|
+
*
|
|
472
|
+
* @summary Delete organization OpenTelemetry configuration
|
|
473
|
+
* @param {string} organizationId Organization ID
|
|
474
|
+
* @param {*} [options] Override http request option.
|
|
475
|
+
* @throws {RequiredError}
|
|
476
|
+
*/
|
|
477
|
+
deleteOrganizationOtelConfig(organizationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
453
478
|
/**
|
|
454
479
|
*
|
|
455
480
|
* @summary Delete organization role
|
|
@@ -654,6 +679,15 @@ export declare const OrganizationsApiFp: (configuration?: Configuration) => {
|
|
|
654
679
|
* @throws {RequiredError}
|
|
655
680
|
*/
|
|
656
681
|
updateOrganizationInvitation(organizationId: string, invitationId: string, updateOrganizationInvitation: UpdateOrganizationInvitation, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrganizationInvitation>>;
|
|
682
|
+
/**
|
|
683
|
+
*
|
|
684
|
+
* @summary Update organization OpenTelemetry configuration
|
|
685
|
+
* @param {string} organizationId Organization ID
|
|
686
|
+
* @param {OtelConfig} otelConfig
|
|
687
|
+
* @param {*} [options] Override http request option.
|
|
688
|
+
* @throws {RequiredError}
|
|
689
|
+
*/
|
|
690
|
+
updateOrganizationOtelConfig(organizationId: string, otelConfig: OtelConfig, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
657
691
|
/**
|
|
658
692
|
*
|
|
659
693
|
* @summary Update organization quota
|
|
@@ -784,6 +818,14 @@ export declare const OrganizationsApiFactory: (configuration?: Configuration, ba
|
|
|
784
818
|
* @throws {RequiredError}
|
|
785
819
|
*/
|
|
786
820
|
deleteOrganizationMember(organizationId: string, userId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
821
|
+
/**
|
|
822
|
+
*
|
|
823
|
+
* @summary Delete organization OpenTelemetry configuration
|
|
824
|
+
* @param {string} organizationId Organization ID
|
|
825
|
+
* @param {*} [options] Override http request option.
|
|
826
|
+
* @throws {RequiredError}
|
|
827
|
+
*/
|
|
828
|
+
deleteOrganizationOtelConfig(organizationId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
787
829
|
/**
|
|
788
830
|
*
|
|
789
831
|
* @summary Delete organization role
|
|
@@ -988,6 +1030,15 @@ export declare const OrganizationsApiFactory: (configuration?: Configuration, ba
|
|
|
988
1030
|
* @throws {RequiredError}
|
|
989
1031
|
*/
|
|
990
1032
|
updateOrganizationInvitation(organizationId: string, invitationId: string, updateOrganizationInvitation: UpdateOrganizationInvitation, options?: RawAxiosRequestConfig): AxiosPromise<OrganizationInvitation>;
|
|
1033
|
+
/**
|
|
1034
|
+
*
|
|
1035
|
+
* @summary Update organization OpenTelemetry configuration
|
|
1036
|
+
* @param {string} organizationId Organization ID
|
|
1037
|
+
* @param {OtelConfig} otelConfig
|
|
1038
|
+
* @param {*} [options] Override http request option.
|
|
1039
|
+
* @throws {RequiredError}
|
|
1040
|
+
*/
|
|
1041
|
+
updateOrganizationOtelConfig(organizationId: string, otelConfig: OtelConfig, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
991
1042
|
/**
|
|
992
1043
|
*
|
|
993
1044
|
* @summary Update organization quota
|
|
@@ -1118,6 +1169,14 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
1118
1169
|
* @throws {RequiredError}
|
|
1119
1170
|
*/
|
|
1120
1171
|
deleteOrganizationMember(organizationId: string, userId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
1172
|
+
/**
|
|
1173
|
+
*
|
|
1174
|
+
* @summary Delete organization OpenTelemetry configuration
|
|
1175
|
+
* @param {string} organizationId Organization ID
|
|
1176
|
+
* @param {*} [options] Override http request option.
|
|
1177
|
+
* @throws {RequiredError}
|
|
1178
|
+
*/
|
|
1179
|
+
deleteOrganizationOtelConfig(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
1121
1180
|
/**
|
|
1122
1181
|
*
|
|
1123
1182
|
* @summary Delete organization role
|
|
@@ -1322,6 +1381,15 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
1322
1381
|
* @throws {RequiredError}
|
|
1323
1382
|
*/
|
|
1324
1383
|
updateOrganizationInvitation(organizationId: string, invitationId: string, updateOrganizationInvitation: UpdateOrganizationInvitation, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationInvitation, any, {}>>;
|
|
1384
|
+
/**
|
|
1385
|
+
*
|
|
1386
|
+
* @summary Update organization OpenTelemetry configuration
|
|
1387
|
+
* @param {string} organizationId Organization ID
|
|
1388
|
+
* @param {OtelConfig} otelConfig
|
|
1389
|
+
* @param {*} [options] Override http request option.
|
|
1390
|
+
* @throws {RequiredError}
|
|
1391
|
+
*/
|
|
1392
|
+
updateOrganizationOtelConfig(organizationId: string, otelConfig: OtelConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
1325
1393
|
/**
|
|
1326
1394
|
*
|
|
1327
1395
|
* @summary Update organization quota
|
|
@@ -351,6 +351,39 @@ const OrganizationsApiAxiosParamCreator = function (configuration) {
|
|
|
351
351
|
options: localVarRequestOptions,
|
|
352
352
|
};
|
|
353
353
|
},
|
|
354
|
+
/**
|
|
355
|
+
*
|
|
356
|
+
* @summary Delete organization OpenTelemetry configuration
|
|
357
|
+
* @param {string} organizationId Organization ID
|
|
358
|
+
* @param {*} [options] Override http request option.
|
|
359
|
+
* @throws {RequiredError}
|
|
360
|
+
*/
|
|
361
|
+
deleteOrganizationOtelConfig: async (organizationId, options = {}) => {
|
|
362
|
+
// verify required parameter 'organizationId' is not null or undefined
|
|
363
|
+
(0, common_1.assertParamExists)('deleteOrganizationOtelConfig', 'organizationId', organizationId);
|
|
364
|
+
const localVarPath = `/organizations/{organizationId}/otel-config`
|
|
365
|
+
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)));
|
|
366
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
367
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
368
|
+
let baseOptions;
|
|
369
|
+
if (configuration) {
|
|
370
|
+
baseOptions = configuration.baseOptions;
|
|
371
|
+
}
|
|
372
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
373
|
+
const localVarHeaderParameter = {};
|
|
374
|
+
const localVarQueryParameter = {};
|
|
375
|
+
// authentication bearer required
|
|
376
|
+
// http bearer authentication required
|
|
377
|
+
await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
378
|
+
// authentication oauth2 required
|
|
379
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
380
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
381
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
382
|
+
return {
|
|
383
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
384
|
+
options: localVarRequestOptions,
|
|
385
|
+
};
|
|
386
|
+
},
|
|
354
387
|
/**
|
|
355
388
|
*
|
|
356
389
|
* @summary Delete organization role
|
|
@@ -1201,6 +1234,44 @@ const OrganizationsApiAxiosParamCreator = function (configuration) {
|
|
|
1201
1234
|
options: localVarRequestOptions,
|
|
1202
1235
|
};
|
|
1203
1236
|
},
|
|
1237
|
+
/**
|
|
1238
|
+
*
|
|
1239
|
+
* @summary Update organization OpenTelemetry configuration
|
|
1240
|
+
* @param {string} organizationId Organization ID
|
|
1241
|
+
* @param {OtelConfig} otelConfig
|
|
1242
|
+
* @param {*} [options] Override http request option.
|
|
1243
|
+
* @throws {RequiredError}
|
|
1244
|
+
*/
|
|
1245
|
+
updateOrganizationOtelConfig: async (organizationId, otelConfig, options = {}) => {
|
|
1246
|
+
// verify required parameter 'organizationId' is not null or undefined
|
|
1247
|
+
(0, common_1.assertParamExists)('updateOrganizationOtelConfig', 'organizationId', organizationId);
|
|
1248
|
+
// verify required parameter 'otelConfig' is not null or undefined
|
|
1249
|
+
(0, common_1.assertParamExists)('updateOrganizationOtelConfig', 'otelConfig', otelConfig);
|
|
1250
|
+
const localVarPath = `/organizations/{organizationId}/otel-config`
|
|
1251
|
+
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)));
|
|
1252
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1253
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1254
|
+
let baseOptions;
|
|
1255
|
+
if (configuration) {
|
|
1256
|
+
baseOptions = configuration.baseOptions;
|
|
1257
|
+
}
|
|
1258
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options };
|
|
1259
|
+
const localVarHeaderParameter = {};
|
|
1260
|
+
const localVarQueryParameter = {};
|
|
1261
|
+
// authentication bearer required
|
|
1262
|
+
// http bearer authentication required
|
|
1263
|
+
await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
1264
|
+
// authentication oauth2 required
|
|
1265
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1266
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1267
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1268
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1269
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(otelConfig, localVarRequestOptions, configuration);
|
|
1270
|
+
return {
|
|
1271
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1272
|
+
options: localVarRequestOptions,
|
|
1273
|
+
};
|
|
1274
|
+
},
|
|
1204
1275
|
/**
|
|
1205
1276
|
*
|
|
1206
1277
|
* @summary Update organization quota
|
|
@@ -1535,6 +1606,19 @@ const OrganizationsApiFp = function (configuration) {
|
|
|
1535
1606
|
const localVarOperationServerBasePath = base_1.operationServerMap['OrganizationsApi.deleteOrganizationMember']?.[localVarOperationServerIndex]?.url;
|
|
1536
1607
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1537
1608
|
},
|
|
1609
|
+
/**
|
|
1610
|
+
*
|
|
1611
|
+
* @summary Delete organization OpenTelemetry configuration
|
|
1612
|
+
* @param {string} organizationId Organization ID
|
|
1613
|
+
* @param {*} [options] Override http request option.
|
|
1614
|
+
* @throws {RequiredError}
|
|
1615
|
+
*/
|
|
1616
|
+
async deleteOrganizationOtelConfig(organizationId, options) {
|
|
1617
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteOrganizationOtelConfig(organizationId, options);
|
|
1618
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1619
|
+
const localVarOperationServerBasePath = base_1.operationServerMap['OrganizationsApi.deleteOrganizationOtelConfig']?.[localVarOperationServerIndex]?.url;
|
|
1620
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1621
|
+
},
|
|
1538
1622
|
/**
|
|
1539
1623
|
*
|
|
1540
1624
|
* @summary Delete organization role
|
|
@@ -1857,6 +1941,20 @@ const OrganizationsApiFp = function (configuration) {
|
|
|
1857
1941
|
const localVarOperationServerBasePath = base_1.operationServerMap['OrganizationsApi.updateOrganizationInvitation']?.[localVarOperationServerIndex]?.url;
|
|
1858
1942
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1859
1943
|
},
|
|
1944
|
+
/**
|
|
1945
|
+
*
|
|
1946
|
+
* @summary Update organization OpenTelemetry configuration
|
|
1947
|
+
* @param {string} organizationId Organization ID
|
|
1948
|
+
* @param {OtelConfig} otelConfig
|
|
1949
|
+
* @param {*} [options] Override http request option.
|
|
1950
|
+
* @throws {RequiredError}
|
|
1951
|
+
*/
|
|
1952
|
+
async updateOrganizationOtelConfig(organizationId, otelConfig, options) {
|
|
1953
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateOrganizationOtelConfig(organizationId, otelConfig, options);
|
|
1954
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1955
|
+
const localVarOperationServerBasePath = base_1.operationServerMap['OrganizationsApi.updateOrganizationOtelConfig']?.[localVarOperationServerIndex]?.url;
|
|
1956
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1957
|
+
},
|
|
1860
1958
|
/**
|
|
1861
1959
|
*
|
|
1862
1960
|
* @summary Update organization quota
|
|
@@ -2034,6 +2132,16 @@ const OrganizationsApiFactory = function (configuration, basePath, axios) {
|
|
|
2034
2132
|
deleteOrganizationMember(organizationId, userId, options) {
|
|
2035
2133
|
return localVarFp.deleteOrganizationMember(organizationId, userId, options).then((request) => request(axios, basePath));
|
|
2036
2134
|
},
|
|
2135
|
+
/**
|
|
2136
|
+
*
|
|
2137
|
+
* @summary Delete organization OpenTelemetry configuration
|
|
2138
|
+
* @param {string} organizationId Organization ID
|
|
2139
|
+
* @param {*} [options] Override http request option.
|
|
2140
|
+
* @throws {RequiredError}
|
|
2141
|
+
*/
|
|
2142
|
+
deleteOrganizationOtelConfig(organizationId, options) {
|
|
2143
|
+
return localVarFp.deleteOrganizationOtelConfig(organizationId, options).then((request) => request(axios, basePath));
|
|
2144
|
+
},
|
|
2037
2145
|
/**
|
|
2038
2146
|
*
|
|
2039
2147
|
* @summary Delete organization role
|
|
@@ -2284,6 +2392,17 @@ const OrganizationsApiFactory = function (configuration, basePath, axios) {
|
|
|
2284
2392
|
updateOrganizationInvitation(organizationId, invitationId, updateOrganizationInvitation, options) {
|
|
2285
2393
|
return localVarFp.updateOrganizationInvitation(organizationId, invitationId, updateOrganizationInvitation, options).then((request) => request(axios, basePath));
|
|
2286
2394
|
},
|
|
2395
|
+
/**
|
|
2396
|
+
*
|
|
2397
|
+
* @summary Update organization OpenTelemetry configuration
|
|
2398
|
+
* @param {string} organizationId Organization ID
|
|
2399
|
+
* @param {OtelConfig} otelConfig
|
|
2400
|
+
* @param {*} [options] Override http request option.
|
|
2401
|
+
* @throws {RequiredError}
|
|
2402
|
+
*/
|
|
2403
|
+
updateOrganizationOtelConfig(organizationId, otelConfig, options) {
|
|
2404
|
+
return localVarFp.updateOrganizationOtelConfig(organizationId, otelConfig, options).then((request) => request(axios, basePath));
|
|
2405
|
+
},
|
|
2287
2406
|
/**
|
|
2288
2407
|
*
|
|
2289
2408
|
* @summary Update organization quota
|
|
@@ -2444,6 +2563,16 @@ class OrganizationsApi extends base_1.BaseAPI {
|
|
|
2444
2563
|
deleteOrganizationMember(organizationId, userId, options) {
|
|
2445
2564
|
return (0, exports.OrganizationsApiFp)(this.configuration).deleteOrganizationMember(organizationId, userId, options).then((request) => request(this.axios, this.basePath));
|
|
2446
2565
|
}
|
|
2566
|
+
/**
|
|
2567
|
+
*
|
|
2568
|
+
* @summary Delete organization OpenTelemetry configuration
|
|
2569
|
+
* @param {string} organizationId Organization ID
|
|
2570
|
+
* @param {*} [options] Override http request option.
|
|
2571
|
+
* @throws {RequiredError}
|
|
2572
|
+
*/
|
|
2573
|
+
deleteOrganizationOtelConfig(organizationId, options) {
|
|
2574
|
+
return (0, exports.OrganizationsApiFp)(this.configuration).deleteOrganizationOtelConfig(organizationId, options).then((request) => request(this.axios, this.basePath));
|
|
2575
|
+
}
|
|
2447
2576
|
/**
|
|
2448
2577
|
*
|
|
2449
2578
|
* @summary Delete organization role
|
|
@@ -2694,6 +2823,17 @@ class OrganizationsApi extends base_1.BaseAPI {
|
|
|
2694
2823
|
updateOrganizationInvitation(organizationId, invitationId, updateOrganizationInvitation, options) {
|
|
2695
2824
|
return (0, exports.OrganizationsApiFp)(this.configuration).updateOrganizationInvitation(organizationId, invitationId, updateOrganizationInvitation, options).then((request) => request(this.axios, this.basePath));
|
|
2696
2825
|
}
|
|
2826
|
+
/**
|
|
2827
|
+
*
|
|
2828
|
+
* @summary Update organization OpenTelemetry configuration
|
|
2829
|
+
* @param {string} organizationId Organization ID
|
|
2830
|
+
* @param {OtelConfig} otelConfig
|
|
2831
|
+
* @param {*} [options] Override http request option.
|
|
2832
|
+
* @throws {RequiredError}
|
|
2833
|
+
*/
|
|
2834
|
+
updateOrganizationOtelConfig(organizationId, otelConfig, options) {
|
|
2835
|
+
return (0, exports.OrganizationsApiFp)(this.configuration).updateOrganizationOtelConfig(organizationId, otelConfig, options).then((request) => request(this.axios, this.basePath));
|
|
2836
|
+
}
|
|
2697
2837
|
/**
|
|
2698
2838
|
*
|
|
2699
2839
|
* @summary Update organization quota
|