mirror of
https://github.com/woodchen-ink/certimate.git
synced 2025-07-18 17:31:55 +08:00
11 lines
269 B
Go
11 lines
269 B
Go
package volcenginealb
|
|
|
|
type ResourceType string
|
|
|
|
const (
|
|
// 资源类型:部署到指定负载均衡器。
|
|
RESOURCE_TYPE_LOADBALANCER = ResourceType("loadbalancer")
|
|
// 资源类型:部署到指定监听器。
|
|
RESOURCE_TYPE_LISTENER = ResourceType("listener")
|
|
)
|