#[non_exhaustive]pub struct UpdateModelOutputBuilder { /* private fields */ }
Expand description
A builder for UpdateModelOutput
.
Implementations§
source§impl UpdateModelOutputBuilder
impl UpdateModelOutputBuilder
sourcepub fn content_type(self, input: impl Into<String>) -> Self
pub fn content_type(self, input: impl Into<String>) -> Self
The content-type for the model, for example, "application/json".
sourcepub fn set_content_type(self, input: Option<String>) -> Self
pub fn set_content_type(self, input: Option<String>) -> Self
The content-type for the model, for example, "application/json".
sourcepub fn get_content_type(&self) -> &Option<String>
pub fn get_content_type(&self) -> &Option<String>
The content-type for the model, for example, "application/json".
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the model.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the model.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description of the model.
sourcepub fn set_model_id(self, input: Option<String>) -> Self
pub fn set_model_id(self, input: Option<String>) -> Self
The model identifier.
sourcepub fn get_model_id(&self) -> &Option<String>
pub fn get_model_id(&self) -> &Option<String>
The model identifier.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the model. Must be alphanumeric.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the model. Must be alphanumeric.
sourcepub fn schema(self, input: impl Into<String>) -> Self
pub fn schema(self, input: impl Into<String>) -> Self
The schema for the model. For application/json models, this should be JSON schema draft 4 model.
sourcepub fn set_schema(self, input: Option<String>) -> Self
pub fn set_schema(self, input: Option<String>) -> Self
The schema for the model. For application/json models, this should be JSON schema draft 4 model.
sourcepub fn get_schema(&self) -> &Option<String>
pub fn get_schema(&self) -> &Option<String>
The schema for the model. For application/json models, this should be JSON schema draft 4 model.
sourcepub fn build(self) -> UpdateModelOutput
pub fn build(self) -> UpdateModelOutput
Consumes the builder and constructs a UpdateModelOutput
.
Trait Implementations§
source§impl Clone for UpdateModelOutputBuilder
impl Clone for UpdateModelOutputBuilder
source§fn clone(&self) -> UpdateModelOutputBuilder
fn clone(&self) -> UpdateModelOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateModelOutputBuilder
impl Debug for UpdateModelOutputBuilder
source§impl Default for UpdateModelOutputBuilder
impl Default for UpdateModelOutputBuilder
source§fn default() -> UpdateModelOutputBuilder
fn default() -> UpdateModelOutputBuilder
source§impl PartialEq for UpdateModelOutputBuilder
impl PartialEq for UpdateModelOutputBuilder
source§fn eq(&self, other: &UpdateModelOutputBuilder) -> bool
fn eq(&self, other: &UpdateModelOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.