import { BaseClient, RequestOptions } from './base-client'; import { SslCertificateListResponse, SslCertificateResponse, SslCertificateCreateRequest, SslCertificateUpdateRequest, SslCertificateValidationResponse, SslCertificateProvisionResponse } from './model'; /** * Welcome to the Key Telematics Fleet API specification. This document outlines the REST routes and data structures returned by the API and offers examples of usage. The API publishes a [swagger](https://swagger.io/) specification that can be used to [generate a client library](https://github.com/swagger-api/swagger-codegen) for your language of choice. The latest swagger file is available for download from the following link: [https://api.eu1.kt1.io/fleet/v2/swagger.json](https://api.eu1.kt1.io/fleet/v2/swagger.json) * @class SslCertificatesClient * @param {(string)} [url] - The URL of the API endpoint. */ export declare class SslCertificatesClient extends BaseClient { /** * Retrieve a list of ssl certificates. * @method * @name SslCertificatesClient#listSslCertificates * @param {string} owner - The owner id you are requesting data for * @param {number} offset - An offset into the result set, useful for pagination * @param {number} limit - Limit the number of results to this value. * @param {string} sort - Sorting column or attribute name with an optional direction, e.g. `sort=name:desc` * @param {string} filter - A filter to apply to the data in RQL format. */ listSslCertificates(owner: string, offset?: number, limit?: number, sort?: string, filter?: string, $options?: RequestOptions): Promise; /** * Creates a new ssl certificate entity * @method * @name SslCertificatesClient#createSslCertificate * @param {object} request - Welcome to the Key Telematics Fleet API specification. This document outlines the REST routes and data structures returned by the API and offers examples of usage. The API publishes a [swagger](https://swagger.io/) specification that can be used to [generate a client library](https://github.com/swagger-api/swagger-codegen) for your language of choice. The latest swagger file is available for download from the following link: [https://api.eu1.kt1.io/fleet/v2/swagger.json](https://api.eu1.kt1.io/fleet/v2/swagger.json) */ createSslCertificate(request: SslCertificateCreateRequest, $options?: RequestOptions): Promise; /** * Returns ssl certificate details for the specified id * @method * @name SslCertificatesClient#getSslCertificate * @param {string} id - The UUID of the ssl certificate */ getSslCertificate(id: string, $options?: RequestOptions): Promise; /** * Updates an existing ssl certificate entity * @method * @name SslCertificatesClient#updateSslCertificate * @param {string} id - The UUID of the ssl certificate * @param {object} request - Welcome to the Key Telematics Fleet API specification. This document outlines the REST routes and data structures returned by the API and offers examples of usage. The API publishes a [swagger](https://swagger.io/) specification that can be used to [generate a client library](https://github.com/swagger-api/swagger-codegen) for your language of choice. The latest swagger file is available for download from the following link: [https://api.eu1.kt1.io/fleet/v2/swagger.json](https://api.eu1.kt1.io/fleet/v2/swagger.json) */ updateSslCertificate(id: string, request: SslCertificateUpdateRequest, $options?: RequestOptions): Promise; /** * Validates the ssl certificate and all prerequisites * @method * @name SslCertificatesClient#validateSslCertificate * @param {string} id - The UUID of the ssl certificate */ validateSslCertificate(id: string, $options?: RequestOptions): Promise; /** * Attempts to provision the ssl certificate * @method * @name SslCertificatesClient#provisionSslCertificate * @param {string} id - The UUID of the ssl certificate */ provisionSslCertificate(id: string, $options?: RequestOptions): Promise; }