Show / Hide Table of Contents

Class GetPatchManagementRequest

Inheritance
object
GetPatchManagementRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DblmService.Requests
Assembly: OCI.DotNetSDK.Dblm.dll
Syntax
public class GetPatchManagementRequest : IOciRequest
Examples

Click here to see an example of how to use GetPatchManagement request.

Properties

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[HttpConverter(TargetEnum.Query, "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The required ID of the compartment in which to list resources.

Remarks

Required

DatabaseRelease

Declaration
[HttpConverter(TargetEnum.Query, "databaseRelease")]
public string DatabaseRelease { get; set; }
Property Value
Type Description
string

A filter to return only database that match the given release version.

LifecycleState

Declaration
[HttpConverter(TargetEnum.Query, "lifecycleState")]
public DblmVulnerability.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
DblmVulnerability.LifecycleStateEnum?

A filter to return only resources their lifecycleState matches the given lifecycleState.

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

The client request ID for tracing.

TimeStartedGreaterThanOrEqualTo

Declaration
[HttpConverter(TargetEnum.Query, "timeStartedGreaterThanOrEqualTo")]
public DateTime? TimeStartedGreaterThanOrEqualTo { get; set; }
Property Value
Type Description
DateTime?

A filter to return only resources whose timeStarted is greater than or equal to the given date-time.

TimeStartedLessThan

Declaration
[HttpConverter(TargetEnum.Query, "timeStartedLessThan")]
public DateTime? TimeStartedLessThan { get; set; }
Property Value
Type Description
DateTime?

A filter to return only resources whose timeStarted is less than the given date-time.

Implements

IOciRequest
In this article
Back to top