Show / Hide Table of Contents

Class DeployedApplicationWorkItemDetails

The work item details for deployed application related information.

Inheritance
object
WorkItemDetails
DeployedApplicationWorkItemDetails
Inherited Members
WorkItemDetails.WorkItemType
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.JmsService.Models
Assembly: OCI.DotNetSDK.Jms.dll
Syntax
public class DeployedApplicationWorkItemDetails : WorkItemDetails

Properties

DeployedApplicationInstallationKey

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

The unique key of the deployed application installation.

DeployedApplicationInstallationPath

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

The full path on which deployed application installation was detected.

DeployedApplicationKey

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

The unique key of the deployed application.

Remarks

Required

DeployedApplicationName

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

The deployed application name.

Remarks

Required

In this article
Back to top