FormatPlanCheckRun formats a plan check run singleton resource name. Format: projects/{project}/plans/{plan}/planCheckRun
(projectID string, planUID int64)
| 653 | // FormatPlanCheckRun formats a plan check run singleton resource name. |
| 654 | // Format: projects/{project}/plans/{plan}/planCheckRun |
| 655 | func FormatPlanCheckRun(projectID string, planUID int64) string { |
| 656 | return fmt.Sprintf("%s/planCheckRun", FormatPlan(projectID, planUID)) |
| 657 | } |
| 658 | |
| 659 | func FormatSpec(projectID string, planUID int64, specID string) string { |
| 660 | return fmt.Sprintf("%s/%s%s", FormatPlan(projectID, planUID), SpecPrefix, specID) |
no test coverage detected