/** * Database Migration API * Use the Oracle Cloud Infrastructure Database Migration APIs to perform database migration operations. * OpenAPI spec version: 20230518 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ import * as model from "../model"; /** * Assessor resource */ export interface Assessor { /** * The OCID of the resource being referenced. */ "assessmentId": string; /** * The Assessor Name. */ "name": string; /** * A user-friendly name. Does not have to be unique, and it's changeable. * Avoid entering confidential information. * */ "displayName": string; /** * A user-friendly description. Does not have to be unique, and it's changeable. * Avoid entering confidential information. * */ "description": string; /** * The Help URL. */ "helpLinkUrl": string; /** * The Help link text. */ "helpLinkText": string; /** * The current state of the Assessor. */ "lifecycleState": model.AssessorLifecycleStates; "assessorGroup"?: model.AssessorGroup; /** * Assessor actions. */ "actions": Array; /** * The Assessor Result text. */ "assessorResult"?: string; /** * The Summary of all Checks. */ "checksSummary"?: string; /** * True if script is available either from 'script' property of through download, false otherwise. */ "hasScript"?: boolean; /** * The generated SQL script. Can be empty if the script exceeds maxLength. * In this case the property 'hasScript' indicates that the script is available for download. * */ "script"?: string; /** * True if DB restart required after running the script, false otherwise. */ "doesScriptRequireRestart"?: boolean; } export declare namespace Assessor { function getJsonObj(obj: Assessor): object; function getDeserializedJsonObj(obj: Assessor): object; }