pub struct Config {
pub default_skaffold_version: Option<String>,
pub default_tool_versions: Option<ToolVersions>,
pub name: Option<String>,
pub supported_versions: Option<Vec<SkaffoldVersion>>,
}Expand description
Service-wide configuration.
§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).
- locations get config projects (response)
Fields§
§default_skaffold_version: Option<String>Default Skaffold version that is assigned when a Release is created without specifying a Skaffold version.
default_tool_versions: Option<ToolVersions>Output only. Default tool versions. These tool versions are assigned when a Release is created without specifying tool versions.
name: Option<String>Name of the configuration.
supported_versions: Option<Vec<SkaffoldVersion>>All supported versions of Skaffold.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Config
impl<'de> Deserialize<'de> for Config
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl ResponseResult for Config
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more