UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

70 lines 1.66 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SyntheticsAPITestStep = void 0; /** * The Test step used in a Synthetic multi-step API test. */ class SyntheticsAPITestStep { constructor() { } /** * @ignore */ static getAttributeTypeMap() { return SyntheticsAPITestStep.attributeTypeMap; } } exports.SyntheticsAPITestStep = SyntheticsAPITestStep; /** * @ignore */ SyntheticsAPITestStep.attributeTypeMap = { allowFailure: { baseName: "allowFailure", type: "boolean", }, assertions: { baseName: "assertions", type: "Array<SyntheticsAssertion>", required: true, }, exitIfSucceed: { baseName: "exitIfSucceed", type: "boolean", }, extractedValues: { baseName: "extractedValues", type: "Array<SyntheticsParsingOptions>", }, extractedValuesFromScript: { baseName: "extractedValuesFromScript", type: "string", }, isCritical: { baseName: "isCritical", type: "boolean", }, name: { baseName: "name", type: "string", required: true, }, request: { baseName: "request", type: "SyntheticsTestRequest", required: true, }, retry: { baseName: "retry", type: "SyntheticsTestOptionsRetry", }, subtype: { baseName: "subtype", type: "SyntheticsAPITestStepSubtype", required: true, }, additionalProperties: { baseName: "additionalProperties", type: "any", }, }; //# sourceMappingURL=SyntheticsAPITestStep.js.map