Show / Hide Table of Contents

Class ActionGroupDetails

Action Group details.

Inheritance
object
ActionGroupDetails
FleetBasedActionGroupDetails
Inherited Members
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
[JsonConverter(typeof(ActionGroupDetailsModelConverter))]
public class ActionGroupDetails

Properties

ActivityId

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

Unique producer Id at Action Group Level

DisplayName

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

Name of the ActionGroup.

LifecycleOperation

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

LifeCycle Operation.

Product

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

Product associated. Only applicable if actionGroup type is PRODUCT.

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public JobStatus? Status { get; set; }
Property Value
Type Description
JobStatus?

Status of the Job at Action Group Level.

TimeEnded

Declaration
[JsonProperty(PropertyName = "timeEnded")]
public DateTime? TimeEnded { get; set; }
Property Value
Type Description
DateTime?

The time the Scheduler Job ended. An RFC3339 formatted datetime string.

TimeStarted

Declaration
[JsonProperty(PropertyName = "timeStarted")]
public DateTime? TimeStarted { get; set; }
Property Value
Type Description
DateTime?

The time the Scheduler Job started. An RFC3339 formatted datetime string.

In this article
Back to top