pub struct VariableBuilder<'a> { /* private fields */ }Expand description
Builder for managing project CI/CD variables.
Provides operations to create, update, list, and delete CI/CD variables for a GitLab project.
§Examples
use lmrc_gitlab::{GitLabClient, models::VariableOptions};
let client = GitLabClient::new("https://gitlab.com", "token")?;
// Create a new variable
let opts = VariableOptions::new()
.protected(true)
.masked(true);
client.variables("myorg/myproject")
.create("API_KEY", "secret-value", opts)
.await?;Implementations§
Source§impl<'a> VariableBuilder<'a>
impl<'a> VariableBuilder<'a>
Sourcepub async fn create(
&self,
key: impl AsRef<str>,
value: impl AsRef<str>,
opts: VariableOptions,
) -> Result<Variable>
pub async fn create( &self, key: impl AsRef<str>, value: impl AsRef<str>, opts: VariableOptions, ) -> Result<Variable>
Sourcepub async fn update(
&self,
key: impl AsRef<str>,
value: impl AsRef<str>,
opts: VariableOptions,
) -> Result<Variable>
pub async fn update( &self, key: impl AsRef<str>, value: impl AsRef<str>, opts: VariableOptions, ) -> Result<Variable>
Sourcepub async fn set(
&self,
key: impl AsRef<str>,
value: impl AsRef<str>,
opts: VariableOptions,
) -> Result<Variable>
pub async fn set( &self, key: impl AsRef<str>, value: impl AsRef<str>, opts: VariableOptions, ) -> Result<Variable>
Create or update a CI/CD variable (upsert).
If the variable exists, it will be updated. Otherwise, it will be created.
§Examples
let opts = VariableOptions::new()
.protected(true)
.masked(true);
// Will create if doesn't exist, update if it does
client.variables("myproject")
.set("API_KEY", "secret-value", opts)
.await?;Auto Trait Implementations§
impl<'a> Freeze for VariableBuilder<'a>
impl<'a> !RefUnwindSafe for VariableBuilder<'a>
impl<'a> Send for VariableBuilder<'a>
impl<'a> Sync for VariableBuilder<'a>
impl<'a> Unpin for VariableBuilder<'a>
impl<'a> !UnwindSafe for VariableBuilder<'a>
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more