@@ -6,33 +6,34 @@ namespace Aws
6
6
namespace Greengrass
7
7
{
8
8
GreengrassCoreIpcClient::GreengrassCoreIpcClient (
9
- Crt::Io::ClientBootstrap &clientBootstrap,
10
- Crt::Allocator *allocator) noexcept
9
+ Aws:: Crt::Io::ClientBootstrap &clientBootstrap,
10
+ Aws:: Crt::Allocator *allocator) noexcept
11
11
: m_connection(allocator), m_clientBootstrap(clientBootstrap), m_allocator(allocator)
12
12
{
13
13
m_greengrassCoreIpcServiceModel.AssignModelNameToErrorResponse (
14
- Crt::String (" aws.greengrass#InvalidTokenError" ), InvalidTokenError::s_allocateFromPayload);
14
+ Aws:: Crt::String (" aws.greengrass#InvalidTokenError" ), InvalidTokenError::s_allocateFromPayload);
15
15
m_greengrassCoreIpcServiceModel.AssignModelNameToErrorResponse (
16
- Crt::String (" aws.greengrass#FailedUpdateConditionCheckError" ),
16
+ Aws:: Crt::String (" aws.greengrass#FailedUpdateConditionCheckError" ),
17
17
FailedUpdateConditionCheckError::s_allocateFromPayload);
18
18
m_greengrassCoreIpcServiceModel.AssignModelNameToErrorResponse (
19
- Crt::String (" aws.greengrass#ConflictError" ), ConflictError::s_allocateFromPayload);
19
+ Aws:: Crt::String (" aws.greengrass#ConflictError" ), ConflictError::s_allocateFromPayload);
20
20
m_greengrassCoreIpcServiceModel.AssignModelNameToErrorResponse (
21
- Crt::String (" aws.greengrass#ComponentNotFoundError" ), ComponentNotFoundError::s_allocateFromPayload);
21
+ Aws::Crt::String (" aws.greengrass#ComponentNotFoundError" ),
22
+ ComponentNotFoundError::s_allocateFromPayload);
22
23
m_greengrassCoreIpcServiceModel.AssignModelNameToErrorResponse (
23
- Crt::String (" aws.greengrass#ResourceNotFoundError" ), ResourceNotFoundError::s_allocateFromPayload);
24
+ Aws:: Crt::String (" aws.greengrass#ResourceNotFoundError" ), ResourceNotFoundError::s_allocateFromPayload);
24
25
m_greengrassCoreIpcServiceModel.AssignModelNameToErrorResponse (
25
- Crt::String (" aws.greengrass#InvalidArgumentsError" ), InvalidArgumentsError::s_allocateFromPayload);
26
+ Aws:: Crt::String (" aws.greengrass#InvalidArgumentsError" ), InvalidArgumentsError::s_allocateFromPayload);
26
27
m_greengrassCoreIpcServiceModel.AssignModelNameToErrorResponse (
27
- Crt::String (" aws.greengrass#InvalidArtifactsDirectoryPathError" ),
28
+ Aws:: Crt::String (" aws.greengrass#InvalidArtifactsDirectoryPathError" ),
28
29
InvalidArtifactsDirectoryPathError::s_allocateFromPayload);
29
30
m_greengrassCoreIpcServiceModel.AssignModelNameToErrorResponse (
30
- Crt::String (" aws.greengrass#InvalidRecipeDirectoryPathError" ),
31
+ Aws:: Crt::String (" aws.greengrass#InvalidRecipeDirectoryPathError" ),
31
32
InvalidRecipeDirectoryPathError::s_allocateFromPayload);
32
33
m_greengrassCoreIpcServiceModel.AssignModelNameToErrorResponse (
33
- Crt::String (" aws.greengrass#ServiceError" ), ServiceError::s_allocateFromPayload);
34
+ Aws:: Crt::String (" aws.greengrass#ServiceError" ), ServiceError::s_allocateFromPayload);
34
35
m_greengrassCoreIpcServiceModel.AssignModelNameToErrorResponse (
35
- Crt::String (" aws.greengrass#UnauthorizedError" ), UnauthorizedError::s_allocateFromPayload);
36
+ Aws:: Crt::String (" aws.greengrass#UnauthorizedError" ), UnauthorizedError::s_allocateFromPayload);
36
37
}
37
38
38
39
std::future<RpcError> GreengrassCoreIpcClient::Connect (
0 commit comments