FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
e6data-python-connector/cluster.proto at dataframeForML · e6data/e6data-python-connector · GitHub
e6data
/
e6data-python-connector
Public
Notifications
You must be signed in to change notification settings
Fork
4
Star
32
Code
Issues
0
Pull requests
8
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
e6data-python-connector
/
cluster.proto
Copy path
More file actions
More file actions
Latest commit
History
History
History
41 lines (28 loc) · 637 Bytes
Breadcrumbs
e6data-python-connector
/
cluster.proto
Copy path
File metadata and controls
41 lines (28 loc) · 637 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
syntax
=
"proto3"
;
option
java_multiple_files
=
true
;
message
ResumeRequest
{
string
user
=
1
;
string
password
=
2
;
}
message
ResumeResponse
{
string
status
=
1
;
}
message
SuspendRequest
{
string
user
=
1
;
string
password
=
2
;
}
message
SuspendResponse
{
string
status
=
1
;
}
message
ClusterStatusRequest
{
string
user
=
1
;
string
password
=
2
;
}
message
ClusterStatusResponse
{
string
status
=
1
;
}
service
ClusterService
{
rpc
resume
(
ResumeRequest
)
returns
(
ResumeResponse
);
rpc
suspend
(
SuspendRequest
)
returns
(
SuspendResponse
);
rpc
status
(
ClusterStatusRequest
)
returns
(
ClusterStatusResponse
);
}
Back
|
FazBrowse Home
|
New Git URL