mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
bd63aa3c6b
sed -i '1i/*\nCopyright (c) Edgeless Systems GmbH\n\nSPDX-License-Identifier: AGPL-3.0-only\n*/\n' `grep -rL --include='*.go' 'DO NOT EDIT'` gofumpt -w .
33 lines
681 B
Go
33 lines
681 B
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
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
|
|
}
|