(ctx context.Context)
| 151 | |
| 152 | type ScaleSetsStore interface { |
| 153 | ListAllScaleSets(ctx context.Context) ([]params.ScaleSet, error) |
| 154 | CreateEntityScaleSet(_ context.Context, entity params.ForgeEntity, param params.CreateScaleSetParams) (scaleSet params.ScaleSet, err error) |
| 155 | ListEntityScaleSets(_ context.Context, entity params.ForgeEntity) ([]params.ScaleSet, error) |
| 156 | UpdateEntityScaleSet(_ context.Context, entity params.ForgeEntity, scaleSetID uint, param params.UpdateScaleSetParams, callback func(old, newSet params.ScaleSet) error) (updatedScaleSet params.ScaleSet, err error) |
no outgoing calls