Documentation
¶
Index ¶
Constants ¶
View Source
const ( AUTH_METHOD_PASSWORD = "password" AUTH_METHOD_TOKEN = "token" )
View Source
const ( // 部署目标:替换指定主机的证书。 DEPLOY_TARGET_HOST = "host" // 部署目标:替换指定证书。 DEPLOY_TARGET_CERTIFICATE = "certificate" )
View Source
const ( // 匹配模式:指定 ID。 HOST_MATCH_PATTERN_SPECIFIED = "specified" // 匹配模式:证书 SAN 匹配。 HOST_MATCH_PATTERN_CERTSAN = "certsan" )
View Source
const ( HOST_TYPE_PROXY = "proxy" HOST_TYPE_REDIRECTION = "redirection" HOST_TYPE_STREAM = "stream" HOST_TYPE_DEAD = "dead" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Deployer ¶
type Deployer struct {
// contains filtered or unexported fields
}
func NewDeployer ¶
func NewDeployer(config *DeployerConfig) (*Deployer, error)
type DeployerConfig ¶
type DeployerConfig struct {
// NPM 服务地址。
ServerUrl string `json:"serverUrl"`
// NPM API 认证方式。
// 可取值 "password"、"token"。
// 零值时默认值 [AUTH_METHOD_PASSWORD]。
AuthMethod string `json:"authMethod,omitempty"`
// NPM 用户名。
Username string `json:"username,omitempty"`
// NPM 密码。
Password string `json:"password,omitempty"`
// NPM API Token。
ApiToken string `json:"apiToken,omitempty"`
// 是否允许不安全的连接。
AllowInsecureConnections bool `json:"allowInsecureConnections,omitempty"`
// 部署目标。
DeployTarget string `json:"deployTarget"`
// 域名匹配模式。
// 零值时默认值 [HOST_MATCH_PATTERN_SPECIFIED]。
HostMatchPattern string `json:"hostMatchPattern,omitempty"`
// 主机类型。
// 部署目标为 [DEPLOY_TARGET_HOST] 时必填。
HostType string `json:"hostType,omitempty"`
// 主机 ID。
// 部署目标为 [DEPLOY_TARGET_HOST]、且匹配模式非 [HOST_MATCH_PATTERN_CERTSAN] 时必填。
HostId int64 `json:"hostId,omitempty"`
// 证书 ID。
// 部署目标为 [DEPLOY_TARGET_CERTIFICATE] 时必填。
CertificateId int64 `json:"certificateId,omitempty"`
}
Click to show internal directories.
Click to hide internal directories.