github.com/huaweicloud/golangsdk@v0.0.0-20210831081626-d823fe11ceba/openstack/utils/utils.go (about)

     1  package utils
     2  
     3  func DeleteNotPassParams(params *map[string]interface{}, not_pass_params []string) {
     4  	for _, i := range not_pass_params {
     5  		delete(*params, i)
     6  	}
     7  }