// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DescribePackageStateRequest extends $dara.Model { /** * @remarks * The specifications of the certificate resource plan. Valid values: * * - **digicert-free-1-free** (default): DigiCert single-domain domain validated (DV) certificate in a three-month free trial, available only on the China site (aliyun.com). * * - **symantec-free-1-free**: DigiCert single-domain DV certificate in a one-year free trial, available only on the China site (aliyun.com). * * - **symantec-dv-1-starter**: DigiCert wildcard DV certificate. * * - **symantec-ov-1-personal**: DigiCert single-domain organization validated (OV) certificate. * * - **symantec-ov-w-personal**: DigiCert wildcard OV certificate. * * - **geotrust-dv-1-starter**: GeoTrust single-domain DV certificate. * * - **geotrust-dv-w-starter**: GeoTrust wildcard DV certificate. * * - **geotrust-ov-1-personal**: GeoTrust single-domain OV certificate. * * - **geotrust-ov-w-personal**: GeoTrust wildcard OV certificate. * * - **globalsign-dv-1-personal**: GlobalSign single-domain DV certificate. * * - **globalsign-dv-w-advanced**: GlobalSign wildcard DV certificate. * * - **globalsign-ov-1-personal**: GlobalSign single-domain OV certificate. * * - **globalsign-ov-w-advanced**: GlobalSign wildcard OV certificate. * * - **cfca-ov-1-personal**: China Financial Certification Authority (CFCA) single-domain OV certificate, available only on the China site (aliyun.com). * * - **cfca-ev-w-advanced**: CFCA wildcard OV certificate, available only on the China site (aliyun.com). * * @example * digicert-free-1-free */ productCode?: string; static names(): { [key: string]: string } { return { productCode: 'ProductCode', }; } static types(): { [key: string]: any } { return { productCode: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }