Show / Hide Table of Contents

Class AssessorAction

Assessor Action

Inheritance
object
AssessorAction
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemigrationService.Models
Assembly: OCI.DotNetSDK.Databasemigration.dll
Syntax
public class AssessorAction

Properties

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.

DisplayName

Declaration
[Required(ErrorMessage = "DisplayName is required.")]
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

Remarks

Required

IsDisabled

Declaration
[Required(ErrorMessage = "IsDisabled is required.")]
[JsonProperty(PropertyName = "isDisabled")]
public bool? IsDisabled { get; set; }
Property Value
Type Description
bool?

Defines if the action is enabled or disabled.

Remarks

Required

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AssessorActionNames? Name { get; set; }
Property Value
Type Description
AssessorActionNames?

The Assessor Action Name.

Remarks

Required

ResourceId

Declaration
[JsonProperty(PropertyName = "resourceId")]
public string ResourceId { get; set; }
Property Value
Type Description
string

The OCID of the resource being referenced.

Title

Declaration
[Required(ErrorMessage = "Title is required.")]
[JsonProperty(PropertyName = "title")]
public string Title { get; set; }
Property Value
Type Description
string

The Assessor Action Title.

Remarks

Required

UserDefinedProperties

Declaration
[JsonProperty(PropertyName = "userDefinedProperties")]
public UserDefinedProperties UserDefinedProperties { get; set; }
Property Value
Type Description
UserDefinedProperties
In this article
Back to top