Show / Hide Table of Contents

Class UpdateImagePolicyConfigDetails

The properties that define a image verification policy.

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

Properties

IsPolicyEnabled

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

Whether the image verification policy is enabled. Defaults to false. If set to true, the images will be verified against the policy at runtime.

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