Class Patch
A WebLogic patch.
Inherited Members
Namespace: Oci.WlmsService.Models
Assembly: OCI.DotNetSDK.Wlms.dll
Syntax
public class Patch
Properties
Description
Declaration
[Required(ErrorMessage = "Description is required.")]
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type | Description |
---|---|
string | The description of the WebLogic patch. |
Remarks
Required
DisplayName
Declaration
[Required(ErrorMessage = "DisplayName is required.")]
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
string | The name of the WebLogic patch. |
Remarks
Required
Id
Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type | Description |
---|---|
string | The ID of the WebLogic patch. |
Remarks
Required
MiddlewareType
Declaration
[Required(ErrorMessage = "MiddlewareType is required.")]
[JsonProperty(PropertyName = "middlewareType", ItemConverterType = typeof(ResponseEnumConverter))]
public List<Patch.MiddlewareTypeEnum> MiddlewareType { get; set; }
Property Value
Type | Description |
---|---|
List<Patch.MiddlewareTypeEnum> | The type of middleware for which this patch is applicable. A patch can be applicable to more than one type of middleware. |
Remarks
Required
OsArch
Declaration
[Required(ErrorMessage = "OsArch is required.")]
[JsonProperty(PropertyName = "osArch")]
public string OsArch { get; set; }
Property Value
Type | Description |
---|---|
string | The operating system architecture for which the patch can be applied. |
Remarks
Required
WeblogicVersion
Declaration
[Required(ErrorMessage = "WeblogicVersion is required.")]
[JsonProperty(PropertyName = "weblogicVersion")]
public string WeblogicVersion { get; set; }
Property Value
Type | Description |
---|---|
string | The WebLogic version for this patch. The patch can be installed to domains with this version. |
Remarks
Required