ossConfigDto.ts 488 B

12345678910111213141516171819202122232425
  1. /**
  2. * Generated by orval v7.0.1 🍺
  3. * Do not edit manually.
  4. * Serve API
  5. * Serve应用接口文档
  6. * OpenAPI spec version: 0.0.1-SNAPSHOT
  7. */
  8. /**
  9. * OSS配置DTO,用于更新OSS存储配置信息
  10. */
  11. export interface OssConfigDto {
  12. /** Access Key */
  13. accessKey?: string;
  14. /** Bucket */
  15. bucket?: string;
  16. /** Endpoint */
  17. endpoint?: string;
  18. /** 公开访问域名 */
  19. publicDomain?: string;
  20. /** Region */
  21. region?: string;
  22. /** Secret Key */
  23. secretKey?: string;
  24. }