Show / Hide Table of Contents

Class StepBasedUserActionDetails

Details for a user action to be performed on a step.

Inheritance
object
UserActionDetails
StepBasedUserActionDetails
Inherited Members
UserActionDetails.Action
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FleetappsmanagementService.Models
Assembly: OCI.DotNetSDK.Fleetappsmanagement.dll
Syntax
public class StepBasedUserActionDetails : UserActionDetails

Properties

ActionGroupId

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

Unique identifier for the action group.

Remarks

Required

ResourceId

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

Resource OCID

Remarks

Required

StepName

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

Name of the step on which user action needs to be performed.

Remarks

Required

TargetId

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

Target associated with the execution.

In this article
Back to top