/** * Account Management Service API * Manage user subscriptions and clusters * * The version of the OpenAPI document: 0.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface CertificatesRequest */ export interface CertificatesRequest { /** * * @type {string} * @memberof CertificatesRequest */ 'arch'?: CertificatesRequestArchEnum; /** * * @type {string} * @memberof CertificatesRequest */ 'type': CertificatesRequestTypeEnum; } export declare const CertificatesRequestArchEnum: { readonly X86: "x86"; readonly X8664: "x86_64"; readonly Ppc: "ppc"; readonly Ppc64: "ppc64"; readonly Ppc64le: "ppc64le"; readonly S390: "s390"; readonly S390x: "s390x"; readonly Ia64: "ia64"; readonly Aarch64: "aarch64"; }; export type CertificatesRequestArchEnum = typeof CertificatesRequestArchEnum[keyof typeof CertificatesRequestArchEnum]; export declare const CertificatesRequestTypeEnum: { readonly Sca: "sca"; }; export type CertificatesRequestTypeEnum = typeof CertificatesRequestTypeEnum[keyof typeof CertificatesRequestTypeEnum];