Show / Hide Table of Contents

Class Action

Action details

Inheritance
object
Action
PatchAction
UpgradeAction
VertexAction
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FusionappsService.Models
Assembly: OCI.DotNetSDK.Fusionapps.dll
Syntax
[JsonConverter(typeof(ActionModelConverter))]
public class Action

Properties

Description

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

A string that describes the details of the action. It does not have to be unique, and you can change it. Avoid entering confidential information.

Remarks

Required

ReferenceKey

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

Unique identifier of the object that represents the action

State

Declaration
[JsonProperty(PropertyName = "state")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Action.StateEnum? State { get; set; }
Property Value
Type Description
Action.StateEnum?

A string that describes whether the change is applied hot or cold

In this article
Back to top