Show / Hide Table of Contents

Class WorkRequestResource

A resource related to a Data Flow work request.

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.DataflowService.Models
Assembly: OCI.DotNetSDK.Dataflow.dll
Syntax
public class WorkRequestResource

Properties

ActionType

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

The way in which this resource is affected by the work tracked in the work request.

Remarks

Required

Id

Declaration
[JsonProperty(PropertyName = "id")]
public long? Id { get; set; }
Property Value
Type Description
long?

The id of a work request resource object.

ResourceId

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

The id of the releated resource. See resourceType to identity the specific type of resource.

Remarks

Required

ResourceType

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

The type of resource. See resourceId for the id of the specific resource.

Remarks

Required

ResourceUri

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

The URI path that the user can use to get access to the resource metadata

WorkRequestid

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

The OCID of a work request.

In this article
Back to top