[][src]Struct gcp_client::google::cloud::osconfig::agentendpoint::v1beta::software_recipe::Artifact

pub struct Artifact {
    pub id: String,
    pub allow_insecure: bool,
    pub artifact: Option<Artifact>,
}

Specifies a resource to be used in the recipe.

Fields

id: String

Id of the artifact, which the installation and update steps of this recipe can reference. Artifacts in a recipe cannot have the same id.

allow_insecure: bool

Defaults to false. When false, recipes are subject to validations based on the artifact type:

Remote: A checksum must be specified, and only protocols with transport-layer security are permitted. GCS: An object generation number must be specified.

artifact: Option<Artifact>

A specific type of artifact.

Trait Implementations

impl Clone for Artifact[src]

impl Debug for Artifact[src]

impl Default for Artifact[src]

impl Message for Artifact[src]

impl PartialEq<Artifact> for Artifact[src]

impl StructuralPartialEq for Artifact[src]

Auto Trait Implementations

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> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]