#[allow(clippy::unnecessary_wraps)]
pub fn de_get_deployment_http_error(
_response_status: u16,
_response_headers: &::http::header::HeaderMap,
_response_body: &[u8],
) -> std::result::Result<crate::operation::get_deployment::GetDeploymentOutput, crate::operation::get_deployment::GetDeploymentError> {
#[allow(unused_mut)]
let mut generic_builder = crate::protocol_serde::parse_http_error_metadata(_response_status, _response_headers, _response_body)
.map_err(crate::operation::get_deployment::GetDeploymentError::unhandled)?;
generic_builder = ::aws_http::request_id::apply_request_id(generic_builder, _response_headers);
let generic = generic_builder.build();
let error_code = match generic.code() {
Some(code) => code,
None => return Err(crate::operation::get_deployment::GetDeploymentError::unhandled(generic)),
};
let _error_message = generic.message().map(|msg| msg.to_owned());
Err(match error_code {
"AccessDeniedException" => crate::operation::get_deployment::GetDeploymentError::AccessDeniedException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output = crate::types::error::builders::AccessDeniedExceptionBuilder::default();
output = crate::protocol_serde::shape_access_denied_exception::de_access_denied_exception_json_err(_response_body, output)
.map_err(crate::operation::get_deployment::GetDeploymentError::unhandled)?;
let output = output.meta(generic);
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
"InternalServerException" => crate::operation::get_deployment::GetDeploymentError::InternalServerException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output = crate::types::error::builders::InternalServerExceptionBuilder::default();
output = crate::protocol_serde::shape_internal_server_exception::de_internal_server_exception_json_err(_response_body, output)
.map_err(crate::operation::get_deployment::GetDeploymentError::unhandled)?;
output = output.set_retry_after_seconds(
crate::protocol_serde::shape_internal_server_exception::de_retry_after_seconds_header(_response_headers).map_err(|_| {
crate::operation::get_deployment::GetDeploymentError::unhandled("Failed to parse retryAfterSeconds from header `Retry-After")
})?,
);
let output = output.meta(generic);
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
"ResourceNotFoundException" => crate::operation::get_deployment::GetDeploymentError::ResourceNotFoundException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output = crate::types::error::builders::ResourceNotFoundExceptionBuilder::default();
output = crate::protocol_serde::shape_resource_not_found_exception::de_resource_not_found_exception_json_err(_response_body, output)
.map_err(crate::operation::get_deployment::GetDeploymentError::unhandled)?;
let output = output.meta(generic);
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
"ThrottlingException" => crate::operation::get_deployment::GetDeploymentError::ThrottlingException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output = crate::types::error::builders::ThrottlingExceptionBuilder::default();
output = crate::protocol_serde::shape_throttling_exception::de_throttling_exception_json_err(_response_body, output)
.map_err(crate::operation::get_deployment::GetDeploymentError::unhandled)?;
output = output.set_retry_after_seconds(
crate::protocol_serde::shape_throttling_exception::de_retry_after_seconds_header(_response_headers).map_err(|_| {
crate::operation::get_deployment::GetDeploymentError::unhandled("Failed to parse retryAfterSeconds from header `Retry-After")
})?,
);
let output = output.meta(generic);
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
"ValidationException" => crate::operation::get_deployment::GetDeploymentError::ValidationException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output = crate::types::error::builders::ValidationExceptionBuilder::default();
output = crate::protocol_serde::shape_validation_exception::de_validation_exception_json_err(_response_body, output)
.map_err(crate::operation::get_deployment::GetDeploymentError::unhandled)?;
let output = output.meta(generic);
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
_ => crate::operation::get_deployment::GetDeploymentError::generic(generic),
})
}
#[allow(clippy::unnecessary_wraps)]
pub fn de_get_deployment_http_response(
_response_status: u16,
_response_headers: &::http::header::HeaderMap,
_response_body: &[u8],
) -> std::result::Result<crate::operation::get_deployment::GetDeploymentOutput, crate::operation::get_deployment::GetDeploymentError> {
Ok({
#[allow(unused_mut)]
let mut output = crate::operation::get_deployment::builders::GetDeploymentOutputBuilder::default();
output = crate::protocol_serde::shape_get_deployment::de_get_deployment(_response_body, output)
.map_err(crate::operation::get_deployment::GetDeploymentError::unhandled)?;
output._set_request_id(::aws_http::request_id::RequestId::request_id(_response_headers).map(str::to_string));
output.build()
})
}
pub(crate) fn de_get_deployment(
value: &[u8],
mut builder: crate::operation::get_deployment::builders::GetDeploymentOutputBuilder,
) -> Result<crate::operation::get_deployment::builders::GetDeploymentOutputBuilder, ::aws_smithy_json::deserialize::error::DeserializeError> {
let mut tokens_owned = ::aws_smithy_json::deserialize::json_token_iter(crate::protocol_serde::or_empty_doc(value)).peekable();
let tokens = &mut tokens_owned;
::aws_smithy_json::deserialize::token::expect_start_object(tokens.next())?;
loop {
match tokens.next().transpose()? {
Some(::aws_smithy_json::deserialize::Token::EndObject { .. }) => break,
Some(::aws_smithy_json::deserialize::Token::ObjectKey { key, .. }) => match key.to_unescaped()?.as_ref() {
"components" => {
builder = builder.set_components(
crate::protocol_serde::shape_component_deployment_specifications::de_component_deployment_specifications(tokens)?,
);
}
"creationTimestamp" => {
builder = builder.set_creation_timestamp(::aws_smithy_json::deserialize::token::expect_timestamp_or_null(
tokens.next(),
::aws_smithy_types::date_time::Format::EpochSeconds,
)?);
}
"deploymentId" => {
builder = builder.set_deployment_id(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"deploymentName" => {
builder = builder.set_deployment_name(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"deploymentPolicies" => {
builder = builder.set_deployment_policies(crate::protocol_serde::shape_deployment_policies::de_deployment_policies(tokens)?);
}
"deploymentStatus" => {
builder = builder.set_deployment_status(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| crate::types::DeploymentStatus::from(u.as_ref())))
.transpose()?,
);
}
"iotJobArn" => {
builder = builder.set_iot_job_arn(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"iotJobConfiguration" => {
builder = builder.set_iot_job_configuration(
crate::protocol_serde::shape_deployment_io_t_job_configuration::de_deployment_io_t_job_configuration(tokens)?,
);
}
"iotJobId" => {
builder = builder.set_iot_job_id(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"isLatestForTarget" => {
builder = builder.set_is_latest_for_target(::aws_smithy_json::deserialize::token::expect_bool_or_null(tokens.next())?);
}
"parentTargetArn" => {
builder = builder.set_parent_target_arn(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"revisionId" => {
builder = builder.set_revision_id(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"tags" => {
builder = builder.set_tags(crate::protocol_serde::shape_tag_map::de_tag_map(tokens)?);
}
"targetArn" => {
builder = builder.set_target_arn(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
_ => ::aws_smithy_json::deserialize::token::skip_value(tokens)?,
},
other => {
return Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
"expected object key or end object, found: {:?}",
other
)))
}
}
}
if tokens.next().is_some() {
return Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(
"found more JSON tokens after completing parsing",
));
}
Ok(builder)
}