Struct google_binaryauthorization1_beta1::Policy[][src]

pub struct Policy {
    pub update_time: Option<String>,
    pub name: Option<String>,
    pub description: Option<String>,
    pub default_admission_rule: Option<AdmissionRule>,
    pub admission_whitelist_patterns: Option<Vec<AdmissionWhitelistPattern>>,
    pub cluster_admission_rules: Option<HashMap<String, AdmissionRule>>,
}

A policy for container image binary authorization.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

Output only. Time when the policy was last updated.

Output only. The resource name, in the format projects/*/policy. There is at most one policy per project.

Optional. A descriptive comment.

Required. Default admission rule for a cluster without a per-cluster admission rule.

Optional. Admission policy whitelisting. A matching admission request will always be permitted. This feature is typically used to exclude Google or third-party infrastructure images from Binary Authorization policies.

Optional. Per-cluster admission rules. Cluster spec format: location.clusterId. There can be at most one admission rule per cluster spec. A location is either a compute zone (e.g. us-central1-a) or a region (e.g. us-central1). For clusterId syntax restrictions see https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters.

Trait Implementations

impl Default for Policy
[src]

Returns the "default value" for a type. Read more

impl Clone for Policy
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Policy
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Policy
[src]

impl ResponseResult for Policy
[src]

Auto Trait Implementations

impl Send for Policy

impl Sync for Policy