/** * EMIL Tenant Service * The EMIL TenantService API description * * The version of the OpenAPI document: 1.0 * Contact: kontakt@emil.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios'; import { Configuration } from '../configuration'; import { RequestArgs, BaseAPI } from '../base'; import { CreateDashboardGroupRequestDto } from '../models'; import { CreateDashboardGroupResponseClass } from '../models'; import { DeleteResponseClass } from '../models'; import { GetDashboardGroupResponseClass } from '../models'; import { ListDashboardGroupsResponseClass } from '../models'; import { UpdateDashboardGroupRequestDto } from '../models'; import { UpdateDashboardGroupResponseClass } from '../models'; /** * DashboardGroupApi - axios parameter creator * @export */ export declare const DashboardGroupApiAxiosParamCreator: (configuration?: Configuration) => { /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.create\" * @param {CreateDashboardGroupRequestDto} createDashboardGroupRequestDto * @param {string} [authorization] Bearer Token * @param {*} [options] Override http request option. * @throws {RequiredError} */ createDashboardGroup: (createDashboardGroupRequestDto: CreateDashboardGroupRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise; /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.delete\" * @param {string} code * @param {string} [authorization] Bearer Token * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteDashboardGroup: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise; /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.view\" * @param {string} code * @param {string} [authorization] Bearer Token * @param {*} [options] Override http request option. * @throws {RequiredError} */ getDashboardGroup: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise; /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.view\" * @param {string} [authorization] Bearer Token * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10. * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list. * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time. * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result. * @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC. * @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size. * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listDashboardGroups: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise; /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.update\" * @param {string} code * @param {UpdateDashboardGroupRequestDto} updateDashboardGroupRequestDto * @param {string} [authorization] Bearer Token * @param {*} [options] Override http request option. * @throws {RequiredError} */ updateDashboardGroup: (code: string, updateDashboardGroupRequestDto: UpdateDashboardGroupRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise; }; /** * DashboardGroupApi - functional programming interface * @export */ export declare const DashboardGroupApiFp: (configuration?: Configuration) => { /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.create\" * @param {CreateDashboardGroupRequestDto} createDashboardGroupRequestDto * @param {string} [authorization] Bearer Token * @param {*} [options] Override http request option. * @throws {RequiredError} */ createDashboardGroup(createDashboardGroupRequestDto: CreateDashboardGroupRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.delete\" * @param {string} code * @param {string} [authorization] Bearer Token * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteDashboardGroup(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.view\" * @param {string} code * @param {string} [authorization] Bearer Token * @param {*} [options] Override http request option. * @throws {RequiredError} */ getDashboardGroup(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.view\" * @param {string} [authorization] Bearer Token * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10. * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list. * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time. * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result. * @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC. * @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size. * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listDashboardGroups(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.update\" * @param {string} code * @param {UpdateDashboardGroupRequestDto} updateDashboardGroupRequestDto * @param {string} [authorization] Bearer Token * @param {*} [options] Override http request option. * @throws {RequiredError} */ updateDashboardGroup(code: string, updateDashboardGroupRequestDto: UpdateDashboardGroupRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * DashboardGroupApi - factory interface * @export */ export declare const DashboardGroupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.create\" * @param {CreateDashboardGroupRequestDto} createDashboardGroupRequestDto * @param {string} [authorization] Bearer Token * @param {*} [options] Override http request option. * @throws {RequiredError} */ createDashboardGroup(createDashboardGroupRequestDto: CreateDashboardGroupRequestDto, authorization?: string, options?: any): AxiosPromise; /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.delete\" * @param {string} code * @param {string} [authorization] Bearer Token * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteDashboardGroup(code: string, authorization?: string, options?: any): AxiosPromise; /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.view\" * @param {string} code * @param {string} [authorization] Bearer Token * @param {*} [options] Override http request option. * @throws {RequiredError} */ getDashboardGroup(code: string, authorization?: string, options?: any): AxiosPromise; /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.view\" * @param {string} [authorization] Bearer Token * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10. * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list. * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time. * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result. * @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC. * @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size. * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listDashboardGroups(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise; /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.update\" * @param {string} code * @param {UpdateDashboardGroupRequestDto} updateDashboardGroupRequestDto * @param {string} [authorization] Bearer Token * @param {*} [options] Override http request option. * @throws {RequiredError} */ updateDashboardGroup(code: string, updateDashboardGroupRequestDto: UpdateDashboardGroupRequestDto, authorization?: string, options?: any): AxiosPromise; }; /** * Request parameters for createDashboardGroup operation in DashboardGroupApi. * @export * @interface DashboardGroupApiCreateDashboardGroupRequest */ export interface DashboardGroupApiCreateDashboardGroupRequest { /** * * @type {CreateDashboardGroupRequestDto} * @memberof DashboardGroupApiCreateDashboardGroup */ readonly createDashboardGroupRequestDto: CreateDashboardGroupRequestDto; /** * Bearer Token * @type {string} * @memberof DashboardGroupApiCreateDashboardGroup */ readonly authorization?: string; } /** * Request parameters for deleteDashboardGroup operation in DashboardGroupApi. * @export * @interface DashboardGroupApiDeleteDashboardGroupRequest */ export interface DashboardGroupApiDeleteDashboardGroupRequest { /** * * @type {string} * @memberof DashboardGroupApiDeleteDashboardGroup */ readonly code: string; /** * Bearer Token * @type {string} * @memberof DashboardGroupApiDeleteDashboardGroup */ readonly authorization?: string; } /** * Request parameters for getDashboardGroup operation in DashboardGroupApi. * @export * @interface DashboardGroupApiGetDashboardGroupRequest */ export interface DashboardGroupApiGetDashboardGroupRequest { /** * * @type {string} * @memberof DashboardGroupApiGetDashboardGroup */ readonly code: string; /** * Bearer Token * @type {string} * @memberof DashboardGroupApiGetDashboardGroup */ readonly authorization?: string; } /** * Request parameters for listDashboardGroups operation in DashboardGroupApi. * @export * @interface DashboardGroupApiListDashboardGroupsRequest */ export interface DashboardGroupApiListDashboardGroupsRequest { /** * Bearer Token * @type {string} * @memberof DashboardGroupApiListDashboardGroups */ readonly authorization?: string; /** * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10. * @type {number} * @memberof DashboardGroupApiListDashboardGroups */ readonly pageSize?: number; /** * A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list. * @type {string} * @memberof DashboardGroupApiListDashboardGroups */ readonly pageToken?: string; /** * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time. * @type {string} * @memberof DashboardGroupApiListDashboardGroups */ readonly filter?: string; /** * To search the list by any field, pass search=xxx to fetch the result. * @type {string} * @memberof DashboardGroupApiListDashboardGroups */ readonly search?: string; /** * The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC. * @type {string} * @memberof DashboardGroupApiListDashboardGroups */ readonly order?: string; /** * Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size. * @type {string} * @memberof DashboardGroupApiListDashboardGroups */ readonly expand?: string; /** * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time. * @type {string} * @memberof DashboardGroupApiListDashboardGroups */ readonly filters?: string; } /** * Request parameters for updateDashboardGroup operation in DashboardGroupApi. * @export * @interface DashboardGroupApiUpdateDashboardGroupRequest */ export interface DashboardGroupApiUpdateDashboardGroupRequest { /** * * @type {string} * @memberof DashboardGroupApiUpdateDashboardGroup */ readonly code: string; /** * * @type {UpdateDashboardGroupRequestDto} * @memberof DashboardGroupApiUpdateDashboardGroup */ readonly updateDashboardGroupRequestDto: UpdateDashboardGroupRequestDto; /** * Bearer Token * @type {string} * @memberof DashboardGroupApiUpdateDashboardGroup */ readonly authorization?: string; } /** * DashboardGroupApi - object-oriented interface * @export * @class DashboardGroupApi * @extends {BaseAPI} */ export declare class DashboardGroupApi extends BaseAPI { /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.create\" * @param {DashboardGroupApiCreateDashboardGroupRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof DashboardGroupApi */ createDashboardGroup(requestParameters: DashboardGroupApiCreateDashboardGroupRequest, options?: AxiosRequestConfig): Promise>; /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.delete\" * @param {DashboardGroupApiDeleteDashboardGroupRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof DashboardGroupApi */ deleteDashboardGroup(requestParameters: DashboardGroupApiDeleteDashboardGroupRequest, options?: AxiosRequestConfig): Promise>; /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.view\" * @param {DashboardGroupApiGetDashboardGroupRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof DashboardGroupApi */ getDashboardGroup(requestParameters: DashboardGroupApiGetDashboardGroupRequest, options?: AxiosRequestConfig): Promise>; /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.view\" * @param {DashboardGroupApiListDashboardGroupsRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof DashboardGroupApi */ listDashboardGroups(requestParameters?: DashboardGroupApiListDashboardGroupsRequest, options?: AxiosRequestConfig): Promise>; /** * undefined **Required Permissions** \"pbm-management.dashboard-groups.update\" * @param {DashboardGroupApiUpdateDashboardGroupRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof DashboardGroupApi */ updateDashboardGroup(requestParameters: DashboardGroupApiUpdateDashboardGroupRequest, options?: AxiosRequestConfig): Promise>; }