Show / Hide Table of Contents

Class WorkRequestResource

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

Properties

ActionResult

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

The way in which this resource was affected by this work request.

Remarks

Required

Identifier

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

The OCID of the resource the work request is affecting.

Remarks

Required

Metadata

Declaration
[JsonProperty(PropertyName = "metadata")]
public Dictionary<string, string> Metadata { get; set; }
Property Value
Type Description
Dictionary<string, string>

Additional metadata of the resource.

ResourceType

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

The type of the resource the work request is affecting.

Remarks

Required

ResourceUri

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

The URI of the affected resource.

Remarks

Required

In this article
Back to top