-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved commit "New SQS Json API: 10 requests supported" from ydb repo
- Loading branch information
1 parent
1bc7a78
commit 007d763
Showing
8 changed files
with
543 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
syntax = "proto3"; | ||
option cc_enable_arenas = true; | ||
|
||
package Ydb.Ymq.V1; | ||
|
||
import "src/api/protos/draft/ymq.proto"; | ||
|
||
option java_package = "com.yandex.ydb.ymq.v1"; | ||
|
||
service YmqService { | ||
rpc GetQueueUrl(GetQueueUrlRequest) returns (GetQueueUrlResponse); | ||
rpc CreateQueue(CreateQueueRequest) returns (CreateQueueResponse); | ||
rpc SendMessage(SendMessageRequest) returns (SendMessageResponse); | ||
rpc ReceiveMessage(ReceiveMessageRequest) returns (ReceiveMessageResponse); | ||
rpc GetQueueAttributes(GetQueueAttributesRequest) returns (GetQueueAttributesResponse); | ||
rpc ListQueues(ListQueuesRequest) returns (ListQueuesResponse); | ||
rpc DeleteMessage(DeleteMessageRequest) returns (DeleteMessageResponse); | ||
rpc PurgeQueue(PurgeQueueRequest) returns (PurgeQueueResponse); | ||
rpc DeleteQueue(DeleteQueueRequest) returns (DeleteQueueResponse); | ||
rpc ChangeMessageVisibility(ChangeMessageVisibilityRequest) returns (ChangeMessageVisibilityResponse); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
syntax = "proto3"; | ||
|
||
import "google/protobuf/descriptor.proto"; | ||
|
||
package Ydb.FieldTransformation; | ||
|
||
enum EFieldTransformationType { | ||
TRANSFORM_NONE = 0; | ||
TRANSFORM_BASE64 = 1; | ||
TRANSFORM_DOUBLE_S_TO_INT_MS = 2; | ||
TRANSFORM_EMPTY_TO_NOTHING = 3; | ||
} | ||
|
||
extend google.protobuf.FieldOptions { | ||
EFieldTransformationType FieldTransformer = 58123; | ||
} |
Oops, something went wrong.