Show / Hide Table of Contents

Class ImagePolicyConfig

Define the image signature verification policy for an application.

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

Properties

IsPolicyEnabled

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

Define if image signature verification policy is enabled for the application.

Remarks

Required

KeyDetails

Declaration
[JsonProperty(PropertyName = "keyDetails")]
public List<KeyDetails> KeyDetails { get; set; }
Property Value
Type Description
List<KeyDetails>

A list of KMS key details.

In this article
Back to top