public sealed class AdmissionWhitelistPattern : IMessage<AdmissionWhitelistPattern>, IEquatable<AdmissionWhitelistPattern>, IDeepCloneable<AdmissionWhitelistPattern>, IBufferMessage, IMessage
An [admission allowlist pattern][google.cloud.binaryauthorization.v1beta1.AdmissionWhitelistPattern] exempts images
from checks by [admission rules][google.cloud.binaryauthorization.v1beta1.AdmissionRule].
An image name pattern to allowlist, in the form registry/path/to/image.
This supports a trailing * as a wildcard, but this is allowed only in
text after the registry/ part. * wildcard does not match /, i.e.,
gcr.io/nginx* matches gcr.io/nginx@latest, but it does not match
gcr.io/nginx/image. This also supports a trailing ** wildcard which
matches subdirectories, i.e., gcr.io/nginx** matches
gcr.io/nginx/image.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["This webpage provides documentation for the `AdmissionWhitelistPattern` class within the `Google.Cloud.BinaryAuthorization.V1Beta1` namespace, specifically for version 1.0.0-beta05 and up to date versions."],["The `AdmissionWhitelistPattern` class is designed to exempt specific images from the checks performed by admission rules, allowing for a defined allowlist of images."],["This class implements several interfaces including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, and inherits from the base `Object` class."],["The class includes a `NamePattern` property, which is a string used to define the image name pattern that is being allowed, with support for `*` and `**` wildcards to match images and subdirectories, respectively."],["There are two constructors that can be used, the default constructor, and a second that accepts an existing `AdmissionWhitelistPattern` as a parameter to use for the construction."]]],[]]