#[non_exhaustive]pub struct ImportApiKeysInputBuilder { /* private fields */ }
Expand description
A builder for ImportApiKeysInput
.
Implementations§
source§impl ImportApiKeysInputBuilder
impl ImportApiKeysInputBuilder
sourcepub fn body(self, input: Blob) -> Self
pub fn body(self, input: Blob) -> Self
The payload of the POST request to import API keys. For the payload format, see API Key File Format.
This field is required.sourcepub fn set_body(self, input: Option<Blob>) -> Self
pub fn set_body(self, input: Option<Blob>) -> Self
The payload of the POST request to import API keys. For the payload format, see API Key File Format.
sourcepub fn get_body(&self) -> &Option<Blob>
pub fn get_body(&self) -> &Option<Blob>
The payload of the POST request to import API keys. For the payload format, see API Key File Format.
sourcepub fn format(self, input: ApiKeysFormat) -> Self
pub fn format(self, input: ApiKeysFormat) -> Self
A query parameter to specify the input format to imported API keys. Currently, only the csv
format is supported.
sourcepub fn set_format(self, input: Option<ApiKeysFormat>) -> Self
pub fn set_format(self, input: Option<ApiKeysFormat>) -> Self
A query parameter to specify the input format to imported API keys. Currently, only the csv
format is supported.
sourcepub fn get_format(&self) -> &Option<ApiKeysFormat>
pub fn get_format(&self) -> &Option<ApiKeysFormat>
A query parameter to specify the input format to imported API keys. Currently, only the csv
format is supported.
sourcepub fn fail_on_warnings(self, input: bool) -> Self
pub fn fail_on_warnings(self, input: bool) -> Self
A query parameter to indicate whether to rollback ApiKey importation (true
) or not (false
) when error is encountered.
sourcepub fn set_fail_on_warnings(self, input: Option<bool>) -> Self
pub fn set_fail_on_warnings(self, input: Option<bool>) -> Self
A query parameter to indicate whether to rollback ApiKey importation (true
) or not (false
) when error is encountered.
sourcepub fn get_fail_on_warnings(&self) -> &Option<bool>
pub fn get_fail_on_warnings(&self) -> &Option<bool>
A query parameter to indicate whether to rollback ApiKey importation (true
) or not (false
) when error is encountered.
sourcepub fn build(self) -> Result<ImportApiKeysInput, BuildError>
pub fn build(self) -> Result<ImportApiKeysInput, BuildError>
Consumes the builder and constructs a ImportApiKeysInput
.
source§impl ImportApiKeysInputBuilder
impl ImportApiKeysInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ImportApiKeysOutput, SdkError<ImportApiKeysError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ImportApiKeysOutput, SdkError<ImportApiKeysError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ImportApiKeysInputBuilder
impl Clone for ImportApiKeysInputBuilder
source§fn clone(&self) -> ImportApiKeysInputBuilder
fn clone(&self) -> ImportApiKeysInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ImportApiKeysInputBuilder
impl Debug for ImportApiKeysInputBuilder
source§impl Default for ImportApiKeysInputBuilder
impl Default for ImportApiKeysInputBuilder
source§fn default() -> ImportApiKeysInputBuilder
fn default() -> ImportApiKeysInputBuilder
source§impl PartialEq for ImportApiKeysInputBuilder
impl PartialEq for ImportApiKeysInputBuilder
source§fn eq(&self, other: &ImportApiKeysInputBuilder) -> bool
fn eq(&self, other: &ImportApiKeysInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.