@@ -16,30 +16,30 @@ namespace {
16
16
using TProperties = google::protobuf::Map<TProtoStringType, TProtoStringType>;
17
17
18
18
void Convert (const TServiceAccountAuth& in, TProperties& out) {
19
- out[" service_account_id " ] = in.GetId ();
20
- out[" service_account_secret_name " ] = in.GetSecretName ();
19
+ out[" SERVICE_ACCOUNT_ID " ] = in.GetId ();
20
+ out[" SERVICE_ACCOUNT_SECRET_NAME " ] = in.GetSecretName ();
21
21
}
22
22
23
23
void Convert (const TBasic& in, TProperties& out) {
24
- out[" login " ] = in.GetLogin ();
25
- out[" password_secret_name " ] = in.GetPasswordSecretName ();
24
+ out[" LOGIN " ] = in.GetLogin ();
25
+ out[" PASSWORD_SECRET_NAME " ] = in.GetPasswordSecretName ();
26
26
}
27
27
28
28
void Convert (const TMdbBasic& in, TProperties& out) {
29
- out[" service_account_id " ] = in.GetServiceAccountId ();
30
- out[" service_account_secret_name " ] = in.GetServiceAccountSecretName ();
31
- out[" login " ] = in.GetLogin ();
32
- out[" password_secret_name " ] = in.GetPasswordSecretName ();
29
+ out[" SERVICE_ACCOUNT_ID " ] = in.GetServiceAccountId ();
30
+ out[" SERVICE_ACCOUNT_SECRET_NAME " ] = in.GetServiceAccountSecretName ();
31
+ out[" LOGIN " ] = in.GetLogin ();
32
+ out[" PASSWORD_SECRET_NAME " ] = in.GetPasswordSecretName ();
33
33
}
34
34
35
35
void Convert (const TAws& in, TProperties& out) {
36
- out[" aws_access_key_id_secret_name " ] = in.GetAwsAccessKeyIdSecretName ();
37
- out[" aws_secret_access_key_secret_name " ] = in.GetAwsSecretAccessKeySecretName ();
38
- out[" aws_region " ] = in.GetAwsRegion ();
36
+ out[" AWS_ACCESS_KEY_ID_SECRET_NAME " ] = in.GetAwsAccessKeyIdSecretName ();
37
+ out[" AWS_SECRET_ACCESS_KEY_SECRET_NAME " ] = in.GetAwsSecretAccessKeySecretName ();
38
+ out[" AWS_REGION " ] = in.GetAwsRegion ();
39
39
}
40
40
41
41
void Convert (const TToken& in, TProperties& out) {
42
- out[" token_secret_name " ] = in.GetTokenSecretName ();
42
+ out[" TOKEN_SECRET_NAME " ] = in.GetTokenSecretName ();
43
43
}
44
44
45
45
void Convert (const TAuth& in, TProperties& out) {
0 commit comments