import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export interface ServerCertificateProperties { CertificateBody?: Value; Path?: Value; PrivateKey?: Value; CertificateChain?: Value; ServerCertificateName?: Value; Tags?: List; } export default class ServerCertificate extends ResourceBase { constructor(properties?: ServerCertificateProperties); }