uploader

package
v0.2.21 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 19, 2024 License: MIT Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type UploadResult

type UploadResult struct {
	CertId   string         `json:"certId"`
	CertName string         `json:"certName"`
	CertData map[string]any `json:"certData,omitempty"`
}

表示证书上传结果的数据结构,包含上传后的证书 ID、名称和其他数据。

type Uploader

type Uploader interface {
	// 上传证书。
	//
	// 入参:
	//   - ctx:上下文。
	//   - certPem:证书 PEM 内容。
	//   - privkeyPem:私钥 PEM 内容。
	//
	// 出参:
	//   - res:上传结果。
	//   - err: 错误。
	Upload(ctx context.Context, certPem string, privkeyPem string) (res *UploadResult, err error)
}

表示定义证书上传器的抽象类型接口。 云服务商通常会提供 SSL 证书管理服务,可供用户集中管理证书。 注意与 `Deployer` 区分,“上传”通常为“部署”的前置操作。

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL