[][src]Struct gcp_client::google::cloud::osconfig::agentendpoint::v1beta::ZypperRepository

pub struct ZypperRepository {
    pub id: String,
    pub display_name: String,
    pub base_url: String,
    pub gpg_keys: Vec<String>,
}

Represents a single Zypper package repository. This repository is added to a repo file that is stored at /etc/zypp/repos.d/google_osconfig.repo.

Fields

id: String

A one word, unique name for this repository. This is the repo id in the zypper config file and also the display_name if display_name is omitted. This id is also used as the unique identifier when checking for guest policy conflicts.

display_name: String

The display name of the repository.

base_url: String

The location of the repository directory.

gpg_keys: Vec<String>

URIs of GPG keys.

Trait Implementations

impl Clone for ZypperRepository[src]

impl Debug for ZypperRepository[src]

impl Default for ZypperRepository[src]

impl Message for ZypperRepository[src]

impl PartialEq<ZypperRepository> for ZypperRepository[src]

impl StructuralPartialEq for ZypperRepository[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]