ListClusterStackNames gets all stack names matching regex
(ctx context.Context)
| 512 | |
| 513 | // ListClusterStackNames gets all stack names matching regex |
| 514 | func (c *StackCollection) ListClusterStackNames(ctx context.Context) ([]string, error) { |
| 515 | return c.ListStackNames(ctx, clusterStackRegex) |
| 516 | } |
| 517 | |
| 518 | // ListAddonIAMStackNames lists the stack names for all access entries in the specified cluster. |
| 519 | func (c *StackCollection) ListAddonIAMStackNames(ctx context.Context, clusterName, addonName string) ([]string, error) { |
no test coverage detected