mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
51cf638361
Signed-off-by: Malte Poll <mp@edgeless.systems>
27 lines
598 B
Go
27 lines
598 B
Go
package client
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
)
|
|
|
|
// getScaleSets retrieves the IDs of all scale sets of a resource group.
|
|
func (c *Client) getScaleSets(ctx context.Context) ([]string, error) {
|
|
pager := c.scaleSetsAPI.NewListPager(c.config.ResourceGroup, nil)
|
|
var scaleSets []string
|
|
|
|
for pager.More() {
|
|
page, err := pager.NextPage(ctx)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("paging scale sets: %w", err)
|
|
}
|
|
for _, scaleSet := range page.Value {
|
|
if scaleSet == nil || scaleSet.ID == nil {
|
|
continue
|
|
}
|
|
scaleSets = append(scaleSets, *scaleSet.ID)
|
|
}
|
|
}
|
|
return scaleSets, nil
|
|
}
|