-
Notifications
You must be signed in to change notification settings - Fork 159
/
impl.go
49 lines (37 loc) · 1.5 KB
/
impl.go
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
42
43
44
45
46
47
48
49
package mgmt_pb
func (request *InspectRequest) GetContentType() int32 {
return int32(ContentType_InspectRequestType)
}
func (request *InspectResponse) GetContentType() int32 {
return int32(ContentType_InspectResponseType)
}
func (request *RaftMemberListResponse) GetContentType() int32 {
return int32(ContentType_RaftListMembersResponseType)
}
func (request *ValidateTerminatorsRequest) GetContentType() int32 {
return int32(ContentType_ValidateTerminatorsRequestType)
}
func (request *ValidateTerminatorsResponse) GetContentType() int32 {
return int32(ContentType_ValidateTerminatorResponseType)
}
func (request *TerminatorDetail) GetContentType() int32 {
return int32(ContentType_ValidateTerminatorResultType)
}
func (request *ValidateRouterLinksRequest) GetContentType() int32 {
return int32(ContentType_ValidateRouterLinksRequestType)
}
func (request *ValidateRouterLinksResponse) GetContentType() int32 {
return int32(ContentType_ValidateRouterLinksResponseType)
}
func (request *RouterLinkDetails) GetContentType() int32 {
return int32(ContentType_ValidateRouterLinksResultType)
}
func (request *ValidateRouterSdkTerminatorsRequest) GetContentType() int32 {
return int32(ContentType_ValidateRouterSdkTerminatorsRequestType)
}
func (request *ValidateRouterSdkTerminatorsResponse) GetContentType() int32 {
return int32(ContentType_ValidateRouterSdkTerminatorsResponseType)
}
func (request *RouterSdkTerminatorsDetails) GetContentType() int32 {
return int32(ContentType_ValidateRouterSdkTerminatorsResultType)
}