Show / Hide Table of Contents

Class InstanceAgentCommandSourceViaTextDetails

The source of the command when provided using plain text.

Inheritance
object
InstanceAgentCommandSourceDetails
InstanceAgentCommandSourceViaTextDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ComputeinstanceagentService.Models
Assembly: OCI.DotNetSDK.Computeinstanceagent.dll
Syntax
public class InstanceAgentCommandSourceViaTextDetails : InstanceAgentCommandSourceDetails

Properties

Text

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

The plain text command.

Remarks

Required

TextSha256

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

SHA-256 checksum value of the text content.

In this article
Back to top