Show / Hide Table of Contents

Class PatchSqlFirewallAllowedSqlDetails

The details used to delete multiple allowed sqls.

Inheritance
object
PatchSqlFirewallAllowedSqlDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class PatchSqlFirewallAllowedSqlDetails

Properties

Items

Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<PatchInstruction> Items { get; set; }
Property Value
Type Description
List<PatchInstruction>

An array of patch instructions.

Remarks

Required

SqlFirewallPolicyId

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

The OCID of the SQL firewall policy whose allowed SQL needs to be deleted.

Remarks

Required

In this article
Back to top