package compute import ( "context" "net/http" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v12/internal/validators" ) // AffinityGroupCheckStartRequest struct to check all computes with current affinity label can start type AffinityGroupCheckStartRequest struct { // ID of the resource group // Required: true RGID uint64 `url:"rgId" json:"rgId" validate:"required"` // Affinity group label // Required: true AffinityLabel string `url:"affinityLabel" json:"affinityLabel" validate:"required"` } // AffinityGroupCheckStart check all computes with current affinity label can start func (c Compute) AffinityGroupCheckStart(ctx context.Context, req AffinityGroupCheckStartRequest) (string, error) { err := validators.ValidateRequest(req) if err != nil { return "", validators.ValidationErrors(validators.GetErrors(err)) } url := "/cloudapi/compute/affinityGroupCheckStart" res, err := c.client.DecortApiCall(ctx, http.MethodPost, url, req) if err != nil { return "", err } return string(res), nil }