(item BundleCatalogRecord)
| 516 | } |
| 517 | |
| 518 | func bundleProfileNames(item BundleCatalogRecord) []string { |
| 519 | names := make([]string, 0, len(item.Profiles)) |
| 520 | for _, profile := range item.Profiles { |
| 521 | names = append(names, strings.TrimSpace(profile.Name)) |
| 522 | } |
| 523 | return names |
| 524 | } |
| 525 | |
| 526 | func bundleCatalogCounts(item BundleCatalogRecord) (int, int, int, int) { |
| 527 | var agents int |
no test coverage detected