Overrides
Overview
Available Operations
list - List Overrides
list
List Overrides
Example Usage
import { SquadcastSDK } from "@solarwinds/squadcast-sdk-typescript";
const squadcastSDK = new SquadcastSDK({
refreshTokenAuth: "<YOUR_REFRESH_TOKEN_AUTH_HERE>",
});
async function run() {
const result = await squadcastSDK.overrides.list({
scheduleID: "<id>",
startTime: "<value>",
endTime: "<value>",
});
console.log(result);
}
run();Standalone function
The standalone function version of this method:
Parameters
Parameter
Type
Required
Description
options
RequestOptions
➖
Used to set various options for making HTTP requests.
options.fetchOptions
➖
Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body, are allowed.
Response
Errors
Error Type
Status Code
Content Type
errors.CommonV4Error
400, 401, 402, 403, 404, 409, 422
application/json
errors.CommonV4Error
500, 502, 503, 504
application/json
errors.SDKDefaultError
4XX, 5XX
*/*
Last updated