(projectID string, planUID int64, specID string)
| 657 | } |
| 658 | |
| 659 | func FormatSpec(projectID string, planUID int64, specID string) string { |
| 660 | return fmt.Sprintf("%s/%s%s", FormatPlan(projectID, planUID), SpecPrefix, specID) |
| 661 | } |
| 662 | |
| 663 | func GetPolicyResourceTypeAndResource(requestName string) (storepb.Policy_Resource, *string, error) { |
| 664 | if requestName == "" { |
nothing calls this directly
no test coverage detected