Files
devstar/services/devstar_cloud_provider/errors/ErrCloudNATProviderDisabled.go
戴明辰 c1ea93e233 !10 [Feature][Fix][Doc] Tencent NAT Auto-Portforwarding
* [Fix] Relocate User Permanent SSH Public Key queries to DevcontainerService Layer
* [Fix] Add Unix Timestamps in DB table `devstar_devcontainer`
* [Feature] Tencent NAT port forwarding
* [Doc] k8s Operator RBAC: ServiceAccount, ClusterRole, ClusterRoleBinding, etc.
* [fix] k8s Operator Reconciler error while converting YAML to JSON
* [Doc] Added DevStar API Doc
* [fix] detailed errors while listing user devcontainers
* [fix] Invalid metadata.labels: value must be no more than 63 characters
2024-10-23 03:05:44 +00:00

9 lines
200 B
Go

package errors
type ErrCloudNATProviderDisabled struct {
}
func (err ErrCloudNATProviderDisabled) Error() string {
return "Failed to create NAT Rule since the DevStar Cloud Provider is Disabled"
}