yellowgrid-api-ts 3.2.138 → 3.2.139
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/README.md +1 -0
- package/api.ts +68 -0
- package/dist/api.d.ts +32 -0
- package/dist/api.js +82 -0
- package/docs/Class3CXInstallationsApi.md +55 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -135,6 +135,7 @@ Class | Method | HTTP request | Description
|
|
|
135
135
|
*Class3CXInstallationWizardApi* | [**postUploadBackup**](docs/Class3CXInstallationWizardApi.md#postuploadbackup) | **POST** /tcx/wizards/backup |
|
|
136
136
|
*Class3CXInstallationsApi* | [**getGetDetails**](docs/Class3CXInstallationsApi.md#getgetdetails) | **GET** /tcx/installations/{wizard_id}/details | Get 3CX Installation Details
|
|
137
137
|
*Class3CXInstallationsApi* | [**getGetInstallations**](docs/Class3CXInstallationsApi.md#getgetinstallations) | **GET** /tcx/installations | Get 3CX Installations
|
|
138
|
+
*Class3CXInstallationsApi* | [**getGetRecordingBackupStorage**](docs/Class3CXInstallationsApi.md#getgetrecordingbackupstorage) | **GET** /tcx/installations/{instance_id}/recordings/backup | Get Recording Backup Storage
|
|
138
139
|
*Class3CXInstallationsApi* | [**patchChangeInstanceOwner**](docs/Class3CXInstallationsApi.md#patchchangeinstanceowner) | **PATCH** /tcx/installations/{instance_id}/owner | Change instance owner
|
|
139
140
|
*Class3CXInstallationsApi* | [**patchUpdateAutoFailover**](docs/Class3CXInstallationsApi.md#patchupdateautofailover) | **PATCH** /tcx/installations/{instance_id}/failover/auto | Update 3CX Instance Auto Failover
|
|
140
141
|
*Class3CXInstallationsApi* | [**postAddDisk**](docs/Class3CXInstallationsApi.md#postadddisk) | **POST** /tcx/installations/{instance_id}/disk | Add additional disk on 3CX Instance
|
package/api.ts
CHANGED
|
@@ -14455,6 +14455,40 @@ export const Class3CXInstallationsApiAxiosParamCreator = function (configuration
|
|
|
14455
14455
|
options: localVarRequestOptions,
|
|
14456
14456
|
};
|
|
14457
14457
|
},
|
|
14458
|
+
/**
|
|
14459
|
+
* Get Recording Backup Storage
|
|
14460
|
+
* @summary Get Recording Backup Storage
|
|
14461
|
+
* @param {string} instanceId Instance ID
|
|
14462
|
+
* @param {*} [options] Override http request option.
|
|
14463
|
+
* @throws {RequiredError}
|
|
14464
|
+
*/
|
|
14465
|
+
getGetRecordingBackupStorage: async (instanceId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
14466
|
+
// verify required parameter 'instanceId' is not null or undefined
|
|
14467
|
+
assertParamExists('getGetRecordingBackupStorage', 'instanceId', instanceId)
|
|
14468
|
+
const localVarPath = `/tcx/installations/{instance_id}/recordings/backup`
|
|
14469
|
+
.replace('{instance_id}', encodeURIComponent(String(instanceId)));
|
|
14470
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
14471
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
14472
|
+
let baseOptions;
|
|
14473
|
+
if (configuration) {
|
|
14474
|
+
baseOptions = configuration.baseOptions;
|
|
14475
|
+
}
|
|
14476
|
+
|
|
14477
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
14478
|
+
const localVarHeaderParameter = {} as any;
|
|
14479
|
+
const localVarQueryParameter = {} as any;
|
|
14480
|
+
|
|
14481
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
14482
|
+
|
|
14483
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
14484
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
14485
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
14486
|
+
|
|
14487
|
+
return {
|
|
14488
|
+
url: toPathString(localVarUrlObj),
|
|
14489
|
+
options: localVarRequestOptions,
|
|
14490
|
+
};
|
|
14491
|
+
},
|
|
14458
14492
|
/**
|
|
14459
14493
|
* Change instance owner
|
|
14460
14494
|
* @summary Change instance owner
|
|
@@ -15151,6 +15185,19 @@ export const Class3CXInstallationsApiFp = function(configuration?: Configuration
|
|
|
15151
15185
|
const localVarOperationServerBasePath = operationServerMap['Class3CXInstallationsApi.getGetInstallations']?.[localVarOperationServerIndex]?.url;
|
|
15152
15186
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
15153
15187
|
},
|
|
15188
|
+
/**
|
|
15189
|
+
* Get Recording Backup Storage
|
|
15190
|
+
* @summary Get Recording Backup Storage
|
|
15191
|
+
* @param {string} instanceId Instance ID
|
|
15192
|
+
* @param {*} [options] Override http request option.
|
|
15193
|
+
* @throws {RequiredError}
|
|
15194
|
+
*/
|
|
15195
|
+
async getGetRecordingBackupStorage(instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RecordingBackupAzureModel>> {
|
|
15196
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getGetRecordingBackupStorage(instanceId, options);
|
|
15197
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
15198
|
+
const localVarOperationServerBasePath = operationServerMap['Class3CXInstallationsApi.getGetRecordingBackupStorage']?.[localVarOperationServerIndex]?.url;
|
|
15199
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
15200
|
+
},
|
|
15154
15201
|
/**
|
|
15155
15202
|
* Change instance owner
|
|
15156
15203
|
* @summary Change instance owner
|
|
@@ -15422,6 +15469,16 @@ export const Class3CXInstallationsApiFactory = function (configuration?: Configu
|
|
|
15422
15469
|
getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig): AxiosPromise<TcxInstallationsModel> {
|
|
15423
15470
|
return localVarFp.getGetInstallations(pageSize, page, customerId, search, status, hosting, installType, options).then((request) => request(axios, basePath));
|
|
15424
15471
|
},
|
|
15472
|
+
/**
|
|
15473
|
+
* Get Recording Backup Storage
|
|
15474
|
+
* @summary Get Recording Backup Storage
|
|
15475
|
+
* @param {string} instanceId Instance ID
|
|
15476
|
+
* @param {*} [options] Override http request option.
|
|
15477
|
+
* @throws {RequiredError}
|
|
15478
|
+
*/
|
|
15479
|
+
getGetRecordingBackupStorage(instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<RecordingBackupAzureModel> {
|
|
15480
|
+
return localVarFp.getGetRecordingBackupStorage(instanceId, options).then((request) => request(axios, basePath));
|
|
15481
|
+
},
|
|
15425
15482
|
/**
|
|
15426
15483
|
* Change instance owner
|
|
15427
15484
|
* @summary Change instance owner
|
|
@@ -15642,6 +15699,17 @@ export class Class3CXInstallationsApi extends BaseAPI {
|
|
|
15642
15699
|
return Class3CXInstallationsApiFp(this.configuration).getGetInstallations(pageSize, page, customerId, search, status, hosting, installType, options).then((request) => request(this.axios, this.basePath));
|
|
15643
15700
|
}
|
|
15644
15701
|
|
|
15702
|
+
/**
|
|
15703
|
+
* Get Recording Backup Storage
|
|
15704
|
+
* @summary Get Recording Backup Storage
|
|
15705
|
+
* @param {string} instanceId Instance ID
|
|
15706
|
+
* @param {*} [options] Override http request option.
|
|
15707
|
+
* @throws {RequiredError}
|
|
15708
|
+
*/
|
|
15709
|
+
public getGetRecordingBackupStorage(instanceId: string, options?: RawAxiosRequestConfig) {
|
|
15710
|
+
return Class3CXInstallationsApiFp(this.configuration).getGetRecordingBackupStorage(instanceId, options).then((request) => request(this.axios, this.basePath));
|
|
15711
|
+
}
|
|
15712
|
+
|
|
15645
15713
|
/**
|
|
15646
15714
|
* Change instance owner
|
|
15647
15715
|
* @summary Change instance owner
|
package/dist/api.d.ts
CHANGED
|
@@ -11191,6 +11191,14 @@ export declare const Class3CXInstallationsApiAxiosParamCreator: (configuration?:
|
|
|
11191
11191
|
* @throws {RequiredError}
|
|
11192
11192
|
*/
|
|
11193
11193
|
getGetInstallations: (pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11194
|
+
/**
|
|
11195
|
+
* Get Recording Backup Storage
|
|
11196
|
+
* @summary Get Recording Backup Storage
|
|
11197
|
+
* @param {string} instanceId Instance ID
|
|
11198
|
+
* @param {*} [options] Override http request option.
|
|
11199
|
+
* @throws {RequiredError}
|
|
11200
|
+
*/
|
|
11201
|
+
getGetRecordingBackupStorage: (instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11194
11202
|
/**
|
|
11195
11203
|
* Change instance owner
|
|
11196
11204
|
* @summary Change instance owner
|
|
@@ -11369,6 +11377,14 @@ export declare const Class3CXInstallationsApiFp: (configuration?: Configuration)
|
|
|
11369
11377
|
* @throws {RequiredError}
|
|
11370
11378
|
*/
|
|
11371
11379
|
getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxInstallationsModel>>;
|
|
11380
|
+
/**
|
|
11381
|
+
* Get Recording Backup Storage
|
|
11382
|
+
* @summary Get Recording Backup Storage
|
|
11383
|
+
* @param {string} instanceId Instance ID
|
|
11384
|
+
* @param {*} [options] Override http request option.
|
|
11385
|
+
* @throws {RequiredError}
|
|
11386
|
+
*/
|
|
11387
|
+
getGetRecordingBackupStorage(instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RecordingBackupAzureModel>>;
|
|
11372
11388
|
/**
|
|
11373
11389
|
* Change instance owner
|
|
11374
11390
|
* @summary Change instance owner
|
|
@@ -11547,6 +11563,14 @@ export declare const Class3CXInstallationsApiFactory: (configuration?: Configura
|
|
|
11547
11563
|
* @throws {RequiredError}
|
|
11548
11564
|
*/
|
|
11549
11565
|
getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig): AxiosPromise<TcxInstallationsModel>;
|
|
11566
|
+
/**
|
|
11567
|
+
* Get Recording Backup Storage
|
|
11568
|
+
* @summary Get Recording Backup Storage
|
|
11569
|
+
* @param {string} instanceId Instance ID
|
|
11570
|
+
* @param {*} [options] Override http request option.
|
|
11571
|
+
* @throws {RequiredError}
|
|
11572
|
+
*/
|
|
11573
|
+
getGetRecordingBackupStorage(instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<RecordingBackupAzureModel>;
|
|
11550
11574
|
/**
|
|
11551
11575
|
* Change instance owner
|
|
11552
11576
|
* @summary Change instance owner
|
|
@@ -11725,6 +11749,14 @@ export declare class Class3CXInstallationsApi extends BaseAPI {
|
|
|
11725
11749
|
* @throws {RequiredError}
|
|
11726
11750
|
*/
|
|
11727
11751
|
getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxInstallationsModel, any, {}>>;
|
|
11752
|
+
/**
|
|
11753
|
+
* Get Recording Backup Storage
|
|
11754
|
+
* @summary Get Recording Backup Storage
|
|
11755
|
+
* @param {string} instanceId Instance ID
|
|
11756
|
+
* @param {*} [options] Override http request option.
|
|
11757
|
+
* @throws {RequiredError}
|
|
11758
|
+
*/
|
|
11759
|
+
getGetRecordingBackupStorage(instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RecordingBackupAzureModel, any, {}>>;
|
|
11728
11760
|
/**
|
|
11729
11761
|
* Change instance owner
|
|
11730
11762
|
* @summary Change instance owner
|
package/dist/api.js
CHANGED
|
@@ -7520,6 +7520,44 @@ var Class3CXInstallationsApiAxiosParamCreator = function (configuration) {
|
|
|
7520
7520
|
});
|
|
7521
7521
|
});
|
|
7522
7522
|
},
|
|
7523
|
+
/**
|
|
7524
|
+
* Get Recording Backup Storage
|
|
7525
|
+
* @summary Get Recording Backup Storage
|
|
7526
|
+
* @param {string} instanceId Instance ID
|
|
7527
|
+
* @param {*} [options] Override http request option.
|
|
7528
|
+
* @throws {RequiredError}
|
|
7529
|
+
*/
|
|
7530
|
+
getGetRecordingBackupStorage: function (instanceId_1) {
|
|
7531
|
+
var args_1 = [];
|
|
7532
|
+
for (var _i = 1; _i < arguments.length; _i++) {
|
|
7533
|
+
args_1[_i - 1] = arguments[_i];
|
|
7534
|
+
}
|
|
7535
|
+
return __awaiter(_this, __spreadArray([instanceId_1], args_1, true), void 0, function (instanceId, options) {
|
|
7536
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
7537
|
+
if (options === void 0) { options = {}; }
|
|
7538
|
+
return __generator(this, function (_a) {
|
|
7539
|
+
// verify required parameter 'instanceId' is not null or undefined
|
|
7540
|
+
(0, common_1.assertParamExists)('getGetRecordingBackupStorage', 'instanceId', instanceId);
|
|
7541
|
+
localVarPath = "/tcx/installations/{instance_id}/recordings/backup"
|
|
7542
|
+
.replace('{instance_id}', encodeURIComponent(String(instanceId)));
|
|
7543
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
7544
|
+
if (configuration) {
|
|
7545
|
+
baseOptions = configuration.baseOptions;
|
|
7546
|
+
}
|
|
7547
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
7548
|
+
localVarHeaderParameter = {};
|
|
7549
|
+
localVarQueryParameter = {};
|
|
7550
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
7551
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
7552
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7553
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
7554
|
+
return [2 /*return*/, {
|
|
7555
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
7556
|
+
options: localVarRequestOptions,
|
|
7557
|
+
}];
|
|
7558
|
+
});
|
|
7559
|
+
});
|
|
7560
|
+
},
|
|
7523
7561
|
/**
|
|
7524
7562
|
* Change instance owner
|
|
7525
7563
|
* @summary Change instance owner
|
|
@@ -8290,6 +8328,29 @@ var Class3CXInstallationsApiFp = function (configuration) {
|
|
|
8290
8328
|
});
|
|
8291
8329
|
});
|
|
8292
8330
|
},
|
|
8331
|
+
/**
|
|
8332
|
+
* Get Recording Backup Storage
|
|
8333
|
+
* @summary Get Recording Backup Storage
|
|
8334
|
+
* @param {string} instanceId Instance ID
|
|
8335
|
+
* @param {*} [options] Override http request option.
|
|
8336
|
+
* @throws {RequiredError}
|
|
8337
|
+
*/
|
|
8338
|
+
getGetRecordingBackupStorage: function (instanceId, options) {
|
|
8339
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
8340
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
8341
|
+
var _a, _b, _c;
|
|
8342
|
+
return __generator(this, function (_d) {
|
|
8343
|
+
switch (_d.label) {
|
|
8344
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getGetRecordingBackupStorage(instanceId, options)];
|
|
8345
|
+
case 1:
|
|
8346
|
+
localVarAxiosArgs = _d.sent();
|
|
8347
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
8348
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['Class3CXInstallationsApi.getGetRecordingBackupStorage']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
8349
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
8350
|
+
}
|
|
8351
|
+
});
|
|
8352
|
+
});
|
|
8353
|
+
},
|
|
8293
8354
|
/**
|
|
8294
8355
|
* Change instance owner
|
|
8295
8356
|
* @summary Change instance owner
|
|
@@ -8731,6 +8792,16 @@ var Class3CXInstallationsApiFactory = function (configuration, basePath, axios)
|
|
|
8731
8792
|
getGetInstallations: function (pageSize, page, customerId, search, status, hosting, installType, options) {
|
|
8732
8793
|
return localVarFp.getGetInstallations(pageSize, page, customerId, search, status, hosting, installType, options).then(function (request) { return request(axios, basePath); });
|
|
8733
8794
|
},
|
|
8795
|
+
/**
|
|
8796
|
+
* Get Recording Backup Storage
|
|
8797
|
+
* @summary Get Recording Backup Storage
|
|
8798
|
+
* @param {string} instanceId Instance ID
|
|
8799
|
+
* @param {*} [options] Override http request option.
|
|
8800
|
+
* @throws {RequiredError}
|
|
8801
|
+
*/
|
|
8802
|
+
getGetRecordingBackupStorage: function (instanceId, options) {
|
|
8803
|
+
return localVarFp.getGetRecordingBackupStorage(instanceId, options).then(function (request) { return request(axios, basePath); });
|
|
8804
|
+
},
|
|
8734
8805
|
/**
|
|
8735
8806
|
* Change instance owner
|
|
8736
8807
|
* @summary Change instance owner
|
|
@@ -8955,6 +9026,17 @@ var Class3CXInstallationsApi = /** @class */ (function (_super) {
|
|
|
8955
9026
|
var _this = this;
|
|
8956
9027
|
return (0, exports.Class3CXInstallationsApiFp)(this.configuration).getGetInstallations(pageSize, page, customerId, search, status, hosting, installType, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
8957
9028
|
};
|
|
9029
|
+
/**
|
|
9030
|
+
* Get Recording Backup Storage
|
|
9031
|
+
* @summary Get Recording Backup Storage
|
|
9032
|
+
* @param {string} instanceId Instance ID
|
|
9033
|
+
* @param {*} [options] Override http request option.
|
|
9034
|
+
* @throws {RequiredError}
|
|
9035
|
+
*/
|
|
9036
|
+
Class3CXInstallationsApi.prototype.getGetRecordingBackupStorage = function (instanceId, options) {
|
|
9037
|
+
var _this = this;
|
|
9038
|
+
return (0, exports.Class3CXInstallationsApiFp)(this.configuration).getGetRecordingBackupStorage(instanceId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
9039
|
+
};
|
|
8958
9040
|
/**
|
|
8959
9041
|
* Change instance owner
|
|
8960
9042
|
* @summary Change instance owner
|
|
@@ -6,6 +6,7 @@ All URIs are relative to *https://bitbucket.org*
|
|
|
6
6
|
|------------- | ------------- | -------------|
|
|
7
7
|
|[**getGetDetails**](#getgetdetails) | **GET** /tcx/installations/{wizard_id}/details | Get 3CX Installation Details|
|
|
8
8
|
|[**getGetInstallations**](#getgetinstallations) | **GET** /tcx/installations | Get 3CX Installations|
|
|
9
|
+
|[**getGetRecordingBackupStorage**](#getgetrecordingbackupstorage) | **GET** /tcx/installations/{instance_id}/recordings/backup | Get Recording Backup Storage|
|
|
9
10
|
|[**patchChangeInstanceOwner**](#patchchangeinstanceowner) | **PATCH** /tcx/installations/{instance_id}/owner | Change instance owner|
|
|
10
11
|
|[**patchUpdateAutoFailover**](#patchupdateautofailover) | **PATCH** /tcx/installations/{instance_id}/failover/auto | Update 3CX Instance Auto Failover|
|
|
11
12
|
|[**postAddDisk**](#postadddisk) | **POST** /tcx/installations/{instance_id}/disk | Add additional disk on 3CX Instance|
|
|
@@ -150,6 +151,60 @@ No authorization required
|
|
|
150
151
|
|
|
151
152
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
152
153
|
|
|
154
|
+
# **getGetRecordingBackupStorage**
|
|
155
|
+
> RecordingBackupAzureModel getGetRecordingBackupStorage()
|
|
156
|
+
|
|
157
|
+
Get Recording Backup Storage
|
|
158
|
+
|
|
159
|
+
### Example
|
|
160
|
+
|
|
161
|
+
```typescript
|
|
162
|
+
import {
|
|
163
|
+
Class3CXInstallationsApi,
|
|
164
|
+
Configuration
|
|
165
|
+
} from 'yellowgrid-api-ts';
|
|
166
|
+
|
|
167
|
+
const configuration = new Configuration();
|
|
168
|
+
const apiInstance = new Class3CXInstallationsApi(configuration);
|
|
169
|
+
|
|
170
|
+
let instanceId: string; //Instance ID (default to undefined)
|
|
171
|
+
|
|
172
|
+
const { status, data } = await apiInstance.getGetRecordingBackupStorage(
|
|
173
|
+
instanceId
|
|
174
|
+
);
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
### Parameters
|
|
178
|
+
|
|
179
|
+
|Name | Type | Description | Notes|
|
|
180
|
+
|------------- | ------------- | ------------- | -------------|
|
|
181
|
+
| **instanceId** | [**string**] | Instance ID | defaults to undefined|
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
### Return type
|
|
185
|
+
|
|
186
|
+
**RecordingBackupAzureModel**
|
|
187
|
+
|
|
188
|
+
### Authorization
|
|
189
|
+
|
|
190
|
+
No authorization required
|
|
191
|
+
|
|
192
|
+
### HTTP request headers
|
|
193
|
+
|
|
194
|
+
- **Content-Type**: Not defined
|
|
195
|
+
- **Accept**: application/json
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
### HTTP response details
|
|
199
|
+
| Status code | Description | Response headers |
|
|
200
|
+
|-------------|-------------|------------------|
|
|
201
|
+
|**200** | Recordings Backup Storage | - |
|
|
202
|
+
|**400** | Bad Request | - |
|
|
203
|
+
|**401** | Unauthorised | - |
|
|
204
|
+
|**403** | Access Denied | - |
|
|
205
|
+
|
|
206
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
207
|
+
|
|
153
208
|
# **patchChangeInstanceOwner**
|
|
154
209
|
> patchChangeInstanceOwner()
|
|
155
210
|
|