/** * Apicurio Registry API [v2] * Apicurio Registry is a datastore for standard event schemas and API designs. Apicurio Registry enables developers to manage and share the structure of their data using a REST interface. For example, client applications can dynamically push or pull the latest updates to or from the registry without needing to redeploy. Apicurio Registry also enables developers to create rules that govern how registry content can evolve over time. For example, this includes rules for content validation and version compatibility. The Apicurio Registry REST API enables client applications to manage the artifacts in the registry. This API provides create, read, update, and delete operations for schema and API artifacts, rules, versions, and metadata. The supported artifact types include: - Apache Avro schema - AsyncAPI specification - Google protocol buffers - GraphQL schema - JSON Schema - Kafka Connect schema - OpenAPI specification - Web Services Description Language - XML Schema Definition **Important**: The Apicurio Registry REST API is available from `https://MY-REGISTRY-URL/apis/registry/v2` by default. Therefore you must prefix all API operation paths with `../apis/registry/v2` in this case. For example: `../apis/registry/v2/ids/globalIds/{globalId}`. * * The version of the OpenAPI document: 2.4.x * Contact: apicurio@lists.jboss.org * * 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 { Limits } from '../model'; import { SystemInfo } from '../model'; /** * SystemApi - axios parameter creator * @export */ export declare const SystemApiAxiosParamCreator: (configuration?: Configuration) => { /** * This operation retrieves the list of limitations on used resources, that are applied on the current instance of Registry. * @summary Get resource limits information * @param {*} [options] Override http request option. * @throws {RequiredError} */ getResourceLimits: (options?: AxiosRequestConfig) => Promise; /** * This operation retrieves information about the running registry system, such as the version of the software and when it was built. * @summary Get system information * @param {*} [options] Override http request option. * @throws {RequiredError} */ getSystemInfo: (options?: AxiosRequestConfig) => Promise; }; /** * SystemApi - functional programming interface * @export */ export declare const SystemApiFp: (configuration?: Configuration) => { /** * This operation retrieves the list of limitations on used resources, that are applied on the current instance of Registry. * @summary Get resource limits information * @param {*} [options] Override http request option. * @throws {RequiredError} */ getResourceLimits(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * This operation retrieves information about the running registry system, such as the version of the software and when it was built. * @summary Get system information * @param {*} [options] Override http request option. * @throws {RequiredError} */ getSystemInfo(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * SystemApi - factory interface * @export */ export declare const SystemApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * This operation retrieves the list of limitations on used resources, that are applied on the current instance of Registry. * @summary Get resource limits information * @param {*} [options] Override http request option. * @throws {RequiredError} */ getResourceLimits(options?: any): AxiosPromise; /** * This operation retrieves information about the running registry system, such as the version of the software and when it was built. * @summary Get system information * @param {*} [options] Override http request option. * @throws {RequiredError} */ getSystemInfo(options?: any): AxiosPromise; }; /** * SystemApi - interface * @export * @interface SystemApi */ export interface SystemApiInterface { /** * This operation retrieves the list of limitations on used resources, that are applied on the current instance of Registry. * @summary Get resource limits information * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof SystemApiInterface */ getResourceLimits(options?: AxiosRequestConfig): AxiosPromise; /** * This operation retrieves information about the running registry system, such as the version of the software and when it was built. * @summary Get system information * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof SystemApiInterface */ getSystemInfo(options?: AxiosRequestConfig): AxiosPromise; } /** * SystemApi - object-oriented interface * @export * @class SystemApi * @extends {BaseAPI} */ export declare class SystemApi extends BaseAPI implements SystemApiInterface { /** * This operation retrieves the list of limitations on used resources, that are applied on the current instance of Registry. * @summary Get resource limits information * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof SystemApi */ getResourceLimits(options?: AxiosRequestConfig): Promise>; /** * This operation retrieves information about the running registry system, such as the version of the software and when it was built. * @summary Get system information * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof SystemApi */ getSystemInfo(options?: AxiosRequestConfig): Promise>; }