#[non_exhaustive]pub struct UpdateProjectInputBuilder { /* private fields */ }
Expand description
A builder for UpdateProjectInput
.
Implementations§
source§impl UpdateProjectInputBuilder
impl UpdateProjectInputBuilder
sourcepub fn contents(self, input: Blob) -> Self
pub fn contents(self, input: Blob) -> Self
ZIP or YAML file which contains project configuration to be updated. This should be the contents of the file downloaded from the URL provided in an export project operation.
sourcepub fn set_contents(self, input: Option<Blob>) -> Self
pub fn set_contents(self, input: Option<Blob>) -> Self
ZIP or YAML file which contains project configuration to be updated. This should be the contents of the file downloaded from the URL provided in an export project operation.
sourcepub fn get_contents(&self) -> &Option<Blob>
pub fn get_contents(&self) -> &Option<Blob>
ZIP or YAML file which contains project configuration to be updated. This should be the contents of the file downloaded from the URL provided in an export project operation.
sourcepub fn project_id(self, input: impl Into<String>) -> Self
pub fn project_id(self, input: impl Into<String>) -> Self
Unique project identifier.
This field is required.sourcepub fn set_project_id(self, input: Option<String>) -> Self
pub fn set_project_id(self, input: Option<String>) -> Self
Unique project identifier.
sourcepub fn get_project_id(&self) -> &Option<String>
pub fn get_project_id(&self) -> &Option<String>
Unique project identifier.
sourcepub fn build(self) -> Result<UpdateProjectInput, BuildError>
pub fn build(self) -> Result<UpdateProjectInput, BuildError>
Consumes the builder and constructs a UpdateProjectInput
.
source§impl UpdateProjectInputBuilder
impl UpdateProjectInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateProjectOutput, SdkError<UpdateProjectError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateProjectOutput, SdkError<UpdateProjectError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateProjectInputBuilder
impl Clone for UpdateProjectInputBuilder
source§fn clone(&self) -> UpdateProjectInputBuilder
fn clone(&self) -> UpdateProjectInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateProjectInputBuilder
impl Debug for UpdateProjectInputBuilder
source§impl Default for UpdateProjectInputBuilder
impl Default for UpdateProjectInputBuilder
source§fn default() -> UpdateProjectInputBuilder
fn default() -> UpdateProjectInputBuilder
source§impl PartialEq for UpdateProjectInputBuilder
impl PartialEq for UpdateProjectInputBuilder
source§fn eq(&self, other: &UpdateProjectInputBuilder) -> bool
fn eq(&self, other: &UpdateProjectInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.