umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
84 lines (83 loc) • 2.48 kB
TypeScript
/**
* Umbraco Management API
* This shows all APIs available in this version of Umbraco - including all the legacy apis that are available for backward compatibility
*
* The version of the OpenAPI document: Latest
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import type { ReferenceByIdModel } from './ReferenceByIdModel';
/**
*
* @export
* @interface HealthCheckActionRequestModel
*/
export interface HealthCheckActionRequestModel {
/**
*
* @type {ReferenceByIdModel}
* @memberof HealthCheckActionRequestModel
*/
healthCheck: ReferenceByIdModel;
/**
*
* @type {string}
* @memberof HealthCheckActionRequestModel
*/
alias?: string | null;
/**
*
* @type {string}
* @memberof HealthCheckActionRequestModel
*/
name?: string | null;
/**
*
* @type {string}
* @memberof HealthCheckActionRequestModel
*/
description?: string | null;
/**
*
* @type {boolean}
* @memberof HealthCheckActionRequestModel
*/
valueRequired: boolean;
/**
*
* @type {string}
* @memberof HealthCheckActionRequestModel
*/
providedValue?: string | null;
/**
*
* @type {string}
* @memberof HealthCheckActionRequestModel
*/
providedValueValidation?: string | null;
/**
*
* @type {string}
* @memberof HealthCheckActionRequestModel
*/
providedValueValidationRegex?: string | null;
/**
*
* @type {{ [key: string]: any; }}
* @memberof HealthCheckActionRequestModel
*/
actionParameters?: {
[key: string]: any;
} | null;
}
/**
* Check if a given object implements the HealthCheckActionRequestModel interface.
*/
export declare function instanceOfHealthCheckActionRequestModel(value: object): value is HealthCheckActionRequestModel;
export declare function HealthCheckActionRequestModelFromJSON(json: any): HealthCheckActionRequestModel;
export declare function HealthCheckActionRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthCheckActionRequestModel;
export declare function HealthCheckActionRequestModelToJSON(json: any): HealthCheckActionRequestModel;
export declare function HealthCheckActionRequestModelToJSONTyped(value?: HealthCheckActionRequestModel | null, ignoreDiscriminator?: boolean): any;