Implement disk management, phase 1

This commit is contained in:
Sergey Shubin svs1370
2021-03-15 18:28:54 +03:00
parent 32947819f6
commit 30742c30e9
7 changed files with 376 additions and 53 deletions

View File

@@ -122,7 +122,7 @@ func utilityGetAccountIdBySchema(d *schema.ResourceData, m interface{}) (int, er
accName, argSet := d.GetOk("account_name")
if !argSet {
return 0, fmt.Errorf("Either non-empty account name or positive account ID must be specified")
return 0, fmt.Errorf("Either non-empty account name or valid account ID must be specified")
}
controller := m.(*ControllerCfg)