Show / Hide Table of Contents

Class HostScanAgentConfigurationQualys

Agent configuration options for vendor Qualys.

Inheritance
object
HostScanAgentConfiguration
HostScanAgentConfigurationQualys
Inherited Members
HostScanAgentConfiguration.VendorType
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.VulnerabilityscanningService.Models
Assembly: OCI.DotNetSDK.Vulnerabilityscanning.dll
Syntax
public class HostScanAgentConfigurationQualys : HostScanAgentConfiguration

Properties

ShouldUnInstall

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

Boolean flag letting agent know if it should un-install the Qualys agent when it is stopped.

Remarks

Required

VaultSecretId

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

Vault secret OCID which stores license information. Content inside this secret in vault would be base64 string containing information about customer's Qualys susbcription license.

Remarks

Required

In this article
Back to top