Show / Hide Table of Contents

Class UpdateMappedSecretDetails

The request details to be updated in the Mapped Secret for the policy.

Inheritance
object
UpdateMappedSecretDetails
UpdateVaultMappedSecretDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.NetworkfirewallService.Models
Assembly: OCI.DotNetSDK.Networkfirewall.dll
Syntax
[JsonConverter(typeof(UpdateMappedSecretDetailsModelConverter))]
public class UpdateMappedSecretDetails

Properties

Description

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

The description of the mapped secret. This field can be used to add additional info.

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(StringEnumConverter))]
public InspectionType? Type { get; set; }
Property Value
Type Description
InspectionType?

Type of the secrets mapped based on the policy.

  • SSL_INBOUND_INSPECTION: For Inbound inspection of SSL traffic.
  • SSL_FORWARD_PROXY: For forward proxy certificates for SSL inspection.
Remarks

Required

In this article
Back to top