[][src]Struct google_containeranalysis1_beta1::Note

pub struct Note {
    pub update_time: Option<String>,
    pub related_note_names: Option<Vec<String>>,
    pub long_description: Option<String>,
    pub deployable: Option<Deployable>,
    pub short_description: Option<String>,
    pub create_time: Option<String>,
    pub kind: Option<String>,
    pub name: Option<String>,
    pub package: Option<Package>,
    pub vulnerability: Option<Vulnerability>,
    pub related_url: Option<Vec<RelatedUrl>>,
    pub attestation_authority: Option<Authority>,
    pub intoto: Option<InToto>,
    pub build: Option<Build>,
    pub base_image: Option<Basis>,
    pub expiration_time: Option<String>,
    pub discovery: Option<Discovery>,
}

A type of analysis that can be done for a resource.

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

update_time: Option<String>

Output only. The time this note was last updated. This field can be used as a filter in list requests.

related_note_names: Option<Vec<String>>

Other notes related to this note.

long_description: Option<String>

A detailed description of this note.

deployable: Option<Deployable>

A note describing something that can be deployed.

short_description: Option<String>

A one sentence description of this note.

create_time: Option<String>

Output only. The time this note was created. This field can be used as a filter in list requests.

kind: Option<String>

Output only. The type of analysis. This field can be used as a filter in list requests.

name: Option<String>

Output only. The name of the note in the form of projects/[PROVIDER_ID]/notes/[NOTE_ID].

package: Option<Package>

A note describing a package hosted by various package managers.

vulnerability: Option<Vulnerability>

A note describing a package vulnerability.

related_url: Option<Vec<RelatedUrl>>

URLs associated with this note.

attestation_authority: Option<Authority>

A note describing an attestation role.

intoto: Option<InToto>

A note describing an in-toto link.

build: Option<Build>

A note describing build provenance for a verifiable build.

base_image: Option<Basis>

A note describing a base image.

expiration_time: Option<String>

Time of expiration for this note. Empty if note does not expire.

discovery: Option<Discovery>

A note describing the initial analysis of a resource.

Trait Implementations

impl Clone for Note[src]

impl Debug for Note[src]

impl Default for Note[src]

impl<'de> Deserialize<'de> for Note[src]

impl RequestValue for Note[src]

impl ResponseResult for Note[src]

impl Serialize for Note[src]

Auto Trait Implementations

impl RefUnwindSafe for Note

impl Send for Note

impl Sync for Note

impl Unpin for Note

impl UnwindSafe for Note

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any