GlobalEventRules.Rules
Overview
Available Operations
ReorderByIndex - Reorder Ruleset By Index
ReorderByIndex
Reorder a GER Ruleset Rule by its index in the ruleset.
Example Usage
package main
import(
"context"
"os"
squadcastsdk "github.com/solarwinds/squadcast-sdk-go"
"github.com/solarwinds/squadcast-sdk-go/models/components"
"github.com/solarwinds/squadcast-sdk-go/models/operations"
"log"
)
func main() {
ctx := context.Background()
s := squadcastsdk.New(
squadcastsdk.WithSecurity(os.Getenv("SQUADCASTSDK_REFRESH_TOKEN_AUTH")),
)
res, err := s.GlobalEventRules.Rules.ReorderByIndex(ctx, operations.GlobalEventRulesReorderRulesetByIndexRequest{
GerID: 281260,
AlertSourceVersion: "<value>",
AlertSourceShortname: "<value>",
RuleID: "<id>",
V3GlobalEventRulesReorderRuleRequest: components.V3GlobalEventRulesReorderRuleRequest{},
})
if err != nil {
log.Fatal(err)
}
if res.Object != nil {
// handle response
}
}Parameters
Parameter
Type
Required
Description
request
✔️
The request object to use for the request.
Response
Errors
Error Type
Status Code
Content Type
apierrors.BadRequestError
400
application/json
apierrors.UnauthorizedError
401
application/json
apierrors.PaymentRequiredError
402
application/json
apierrors.ForbiddenError
403
application/json
apierrors.NotFoundError
404
application/json
apierrors.ConflictError
409
application/json
apierrors.UnprocessableEntityError
422
application/json
apierrors.InternalServerError
500
application/json
apierrors.BadGatewayError
502
application/json
apierrors.ServiceUnavailableError
503
application/json
apierrors.GatewayTimeoutError
504
application/json
apierrors.APIError
4XX, 5XX
*/*
Last updated