本站源代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

787 lines
31KB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google.golang.org/appengine/internal/modules/modules_service.proto
  3. package modules
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. // Reference imports to suppress errors if they are not otherwise used.
  8. var _ = proto.Marshal
  9. var _ = fmt.Errorf
  10. var _ = math.Inf
  11. // This is a compile-time assertion to ensure that this generated file
  12. // is compatible with the proto package it is being compiled against.
  13. // A compilation error at this line likely means your copy of the
  14. // proto package needs to be updated.
  15. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  16. type ModulesServiceError_ErrorCode int32
  17. const (
  18. ModulesServiceError_OK ModulesServiceError_ErrorCode = 0
  19. ModulesServiceError_INVALID_MODULE ModulesServiceError_ErrorCode = 1
  20. ModulesServiceError_INVALID_VERSION ModulesServiceError_ErrorCode = 2
  21. ModulesServiceError_INVALID_INSTANCES ModulesServiceError_ErrorCode = 3
  22. ModulesServiceError_TRANSIENT_ERROR ModulesServiceError_ErrorCode = 4
  23. ModulesServiceError_UNEXPECTED_STATE ModulesServiceError_ErrorCode = 5
  24. )
  25. var ModulesServiceError_ErrorCode_name = map[int32]string{
  26. 0: "OK",
  27. 1: "INVALID_MODULE",
  28. 2: "INVALID_VERSION",
  29. 3: "INVALID_INSTANCES",
  30. 4: "TRANSIENT_ERROR",
  31. 5: "UNEXPECTED_STATE",
  32. }
  33. var ModulesServiceError_ErrorCode_value = map[string]int32{
  34. "OK": 0,
  35. "INVALID_MODULE": 1,
  36. "INVALID_VERSION": 2,
  37. "INVALID_INSTANCES": 3,
  38. "TRANSIENT_ERROR": 4,
  39. "UNEXPECTED_STATE": 5,
  40. }
  41. func (x ModulesServiceError_ErrorCode) Enum() *ModulesServiceError_ErrorCode {
  42. p := new(ModulesServiceError_ErrorCode)
  43. *p = x
  44. return p
  45. }
  46. func (x ModulesServiceError_ErrorCode) String() string {
  47. return proto.EnumName(ModulesServiceError_ErrorCode_name, int32(x))
  48. }
  49. func (x *ModulesServiceError_ErrorCode) UnmarshalJSON(data []byte) error {
  50. value, err := proto.UnmarshalJSONEnum(ModulesServiceError_ErrorCode_value, data, "ModulesServiceError_ErrorCode")
  51. if err != nil {
  52. return err
  53. }
  54. *x = ModulesServiceError_ErrorCode(value)
  55. return nil
  56. }
  57. func (ModulesServiceError_ErrorCode) EnumDescriptor() ([]byte, []int) {
  58. return fileDescriptor_modules_service_9cd3bffe4e91c59a, []int{0, 0}
  59. }
  60. type ModulesServiceError struct {
  61. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  62. XXX_unrecognized []byte `json:"-"`
  63. XXX_sizecache int32 `json:"-"`
  64. }
  65. func (m *ModulesServiceError) Reset() { *m = ModulesServiceError{} }
  66. func (m *ModulesServiceError) String() string { return proto.CompactTextString(m) }
  67. func (*ModulesServiceError) ProtoMessage() {}
  68. func (*ModulesServiceError) Descriptor() ([]byte, []int) {
  69. return fileDescriptor_modules_service_9cd3bffe4e91c59a, []int{0}
  70. }
  71. func (m *ModulesServiceError) XXX_Unmarshal(b []byte) error {
  72. return xxx_messageInfo_ModulesServiceError.Unmarshal(m, b)
  73. }
  74. func (m *ModulesServiceError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  75. return xxx_messageInfo_ModulesServiceError.Marshal(b, m, deterministic)
  76. }
  77. func (dst *ModulesServiceError) XXX_Merge(src proto.Message) {
  78. xxx_messageInfo_ModulesServiceError.Merge(dst, src)
  79. }
  80. func (m *ModulesServiceError) XXX_Size() int {
  81. return xxx_messageInfo_ModulesServiceError.Size(m)
  82. }
  83. func (m *ModulesServiceError) XXX_DiscardUnknown() {
  84. xxx_messageInfo_ModulesServiceError.DiscardUnknown(m)
  85. }
  86. var xxx_messageInfo_ModulesServiceError proto.InternalMessageInfo
  87. type GetModulesRequest struct {
  88. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  89. XXX_unrecognized []byte `json:"-"`
  90. XXX_sizecache int32 `json:"-"`
  91. }
  92. func (m *GetModulesRequest) Reset() { *m = GetModulesRequest{} }
  93. func (m *GetModulesRequest) String() string { return proto.CompactTextString(m) }
  94. func (*GetModulesRequest) ProtoMessage() {}
  95. func (*GetModulesRequest) Descriptor() ([]byte, []int) {
  96. return fileDescriptor_modules_service_9cd3bffe4e91c59a, []int{1}
  97. }
  98. func (m *GetModulesRequest) XXX_Unmarshal(b []byte) error {
  99. return xxx_messageInfo_GetModulesRequest.Unmarshal(m, b)
  100. }
  101. func (m *GetModulesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  102. return xxx_messageInfo_GetModulesRequest.Marshal(b, m, deterministic)
  103. }
  104. func (dst *GetModulesRequest) XXX_Merge(src proto.Message) {
  105. xxx_messageInfo_GetModulesRequest.Merge(dst, src)
  106. }
  107. func (m *GetModulesRequest) XXX_Size() int {
  108. return xxx_messageInfo_GetModulesRequest.Size(m)
  109. }
  110. func (m *GetModulesRequest) XXX_DiscardUnknown() {
  111. xxx_messageInfo_GetModulesRequest.DiscardUnknown(m)
  112. }
  113. var xxx_messageInfo_GetModulesRequest proto.InternalMessageInfo
  114. type GetModulesResponse struct {
  115. Module []string `protobuf:"bytes,1,rep,name=module" json:"module,omitempty"`
  116. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  117. XXX_unrecognized []byte `json:"-"`
  118. XXX_sizecache int32 `json:"-"`
  119. }
  120. func (m *GetModulesResponse) Reset() { *m = GetModulesResponse{} }
  121. func (m *GetModulesResponse) String() string { return proto.CompactTextString(m) }
  122. func (*GetModulesResponse) ProtoMessage() {}
  123. func (*GetModulesResponse) Descriptor() ([]byte, []int) {
  124. return fileDescriptor_modules_service_9cd3bffe4e91c59a, []int{2}
  125. }
  126. func (m *GetModulesResponse) XXX_Unmarshal(b []byte) error {
  127. return xxx_messageInfo_GetModulesResponse.Unmarshal(m, b)
  128. }
  129. func (m *GetModulesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  130. return xxx_messageInfo_GetModulesResponse.Marshal(b, m, deterministic)
  131. }
  132. func (dst *GetModulesResponse) XXX_Merge(src proto.Message) {
  133. xxx_messageInfo_GetModulesResponse.Merge(dst, src)
  134. }
  135. func (m *GetModulesResponse) XXX_Size() int {
  136. return xxx_messageInfo_GetModulesResponse.Size(m)
  137. }
  138. func (m *GetModulesResponse) XXX_DiscardUnknown() {
  139. xxx_messageInfo_GetModulesResponse.DiscardUnknown(m)
  140. }
  141. var xxx_messageInfo_GetModulesResponse proto.InternalMessageInfo
  142. func (m *GetModulesResponse) GetModule() []string {
  143. if m != nil {
  144. return m.Module
  145. }
  146. return nil
  147. }
  148. type GetVersionsRequest struct {
  149. Module *string `protobuf:"bytes,1,opt,name=module" json:"module,omitempty"`
  150. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  151. XXX_unrecognized []byte `json:"-"`
  152. XXX_sizecache int32 `json:"-"`
  153. }
  154. func (m *GetVersionsRequest) Reset() { *m = GetVersionsRequest{} }
  155. func (m *GetVersionsRequest) String() string { return proto.CompactTextString(m) }
  156. func (*GetVersionsRequest) ProtoMessage() {}
  157. func (*GetVersionsRequest) Descriptor() ([]byte, []int) {
  158. return fileDescriptor_modules_service_9cd3bffe4e91c59a, []int{3}
  159. }
  160. func (m *GetVersionsRequest) XXX_Unmarshal(b []byte) error {
  161. return xxx_messageInfo_GetVersionsRequest.Unmarshal(m, b)
  162. }
  163. func (m *GetVersionsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  164. return xxx_messageInfo_GetVersionsRequest.Marshal(b, m, deterministic)
  165. }
  166. func (dst *GetVersionsRequest) XXX_Merge(src proto.Message) {
  167. xxx_messageInfo_GetVersionsRequest.Merge(dst, src)
  168. }
  169. func (m *GetVersionsRequest) XXX_Size() int {
  170. return xxx_messageInfo_GetVersionsRequest.Size(m)
  171. }
  172. func (m *GetVersionsRequest) XXX_DiscardUnknown() {
  173. xxx_messageInfo_GetVersionsRequest.DiscardUnknown(m)
  174. }
  175. var xxx_messageInfo_GetVersionsRequest proto.InternalMessageInfo
  176. func (m *GetVersionsRequest) GetModule() string {
  177. if m != nil && m.Module != nil {
  178. return *m.Module
  179. }
  180. return ""
  181. }
  182. type GetVersionsResponse struct {
  183. Version []string `protobuf:"bytes,1,rep,name=version" json:"version,omitempty"`
  184. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  185. XXX_unrecognized []byte `json:"-"`
  186. XXX_sizecache int32 `json:"-"`
  187. }
  188. func (m *GetVersionsResponse) Reset() { *m = GetVersionsResponse{} }
  189. func (m *GetVersionsResponse) String() string { return proto.CompactTextString(m) }
  190. func (*GetVersionsResponse) ProtoMessage() {}
  191. func (*GetVersionsResponse) Descriptor() ([]byte, []int) {
  192. return fileDescriptor_modules_service_9cd3bffe4e91c59a, []int{4}
  193. }
  194. func (m *GetVersionsResponse) XXX_Unmarshal(b []byte) error {
  195. return xxx_messageInfo_GetVersionsResponse.Unmarshal(m, b)
  196. }
  197. func (m *GetVersionsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  198. return xxx_messageInfo_GetVersionsResponse.Marshal(b, m, deterministic)
  199. }
  200. func (dst *GetVersionsResponse) XXX_Merge(src proto.Message) {
  201. xxx_messageInfo_GetVersionsResponse.Merge(dst, src)
  202. }
  203. func (m *GetVersionsResponse) XXX_Size() int {
  204. return xxx_messageInfo_GetVersionsResponse.Size(m)
  205. }
  206. func (m *GetVersionsResponse) XXX_DiscardUnknown() {
  207. xxx_messageInfo_GetVersionsResponse.DiscardUnknown(m)
  208. }
  209. var xxx_messageInfo_GetVersionsResponse proto.InternalMessageInfo
  210. func (m *GetVersionsResponse) GetVersion() []string {
  211. if m != nil {
  212. return m.Version
  213. }
  214. return nil
  215. }
  216. type GetDefaultVersionRequest struct {
  217. Module *string `protobuf:"bytes,1,opt,name=module" json:"module,omitempty"`
  218. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  219. XXX_unrecognized []byte `json:"-"`
  220. XXX_sizecache int32 `json:"-"`
  221. }
  222. func (m *GetDefaultVersionRequest) Reset() { *m = GetDefaultVersionRequest{} }
  223. func (m *GetDefaultVersionRequest) String() string { return proto.CompactTextString(m) }
  224. func (*GetDefaultVersionRequest) ProtoMessage() {}
  225. func (*GetDefaultVersionRequest) Descriptor() ([]byte, []int) {
  226. return fileDescriptor_modules_service_9cd3bffe4e91c59a, []int{5}
  227. }
  228. func (m *GetDefaultVersionRequest) XXX_Unmarshal(b []byte) error {
  229. return xxx_messageInfo_GetDefaultVersionRequest.Unmarshal(m, b)
  230. }
  231. func (m *GetDefaultVersionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  232. return xxx_messageInfo_GetDefaultVersionRequest.Marshal(b, m, deterministic)
  233. }
  234. func (dst *GetDefaultVersionRequest) XXX_Merge(src proto.Message) {
  235. xxx_messageInfo_GetDefaultVersionRequest.Merge(dst, src)
  236. }
  237. func (m *GetDefaultVersionRequest) XXX_Size() int {
  238. return xxx_messageInfo_GetDefaultVersionRequest.Size(m)
  239. }
  240. func (m *GetDefaultVersionRequest) XXX_DiscardUnknown() {
  241. xxx_messageInfo_GetDefaultVersionRequest.DiscardUnknown(m)
  242. }
  243. var xxx_messageInfo_GetDefaultVersionRequest proto.InternalMessageInfo
  244. func (m *GetDefaultVersionRequest) GetModule() string {
  245. if m != nil && m.Module != nil {
  246. return *m.Module
  247. }
  248. return ""
  249. }
  250. type GetDefaultVersionResponse struct {
  251. Version *string `protobuf:"bytes,1,req,name=version" json:"version,omitempty"`
  252. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  253. XXX_unrecognized []byte `json:"-"`
  254. XXX_sizecache int32 `json:"-"`
  255. }
  256. func (m *GetDefaultVersionResponse) Reset() { *m = GetDefaultVersionResponse{} }
  257. func (m *GetDefaultVersionResponse) String() string { return proto.CompactTextString(m) }
  258. func (*GetDefaultVersionResponse) ProtoMessage() {}
  259. func (*GetDefaultVersionResponse) Descriptor() ([]byte, []int) {
  260. return fileDescriptor_modules_service_9cd3bffe4e91c59a, []int{6}
  261. }
  262. func (m *GetDefaultVersionResponse) XXX_Unmarshal(b []byte) error {
  263. return xxx_messageInfo_GetDefaultVersionResponse.Unmarshal(m, b)
  264. }
  265. func (m *GetDefaultVersionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  266. return xxx_messageInfo_GetDefaultVersionResponse.Marshal(b, m, deterministic)
  267. }
  268. func (dst *GetDefaultVersionResponse) XXX_Merge(src proto.Message) {
  269. xxx_messageInfo_GetDefaultVersionResponse.Merge(dst, src)
  270. }
  271. func (m *GetDefaultVersionResponse) XXX_Size() int {
  272. return xxx_messageInfo_GetDefaultVersionResponse.Size(m)
  273. }
  274. func (m *GetDefaultVersionResponse) XXX_DiscardUnknown() {
  275. xxx_messageInfo_GetDefaultVersionResponse.DiscardUnknown(m)
  276. }
  277. var xxx_messageInfo_GetDefaultVersionResponse proto.InternalMessageInfo
  278. func (m *GetDefaultVersionResponse) GetVersion() string {
  279. if m != nil && m.Version != nil {
  280. return *m.Version
  281. }
  282. return ""
  283. }
  284. type GetNumInstancesRequest struct {
  285. Module *string `protobuf:"bytes,1,opt,name=module" json:"module,omitempty"`
  286. Version *string `protobuf:"bytes,2,opt,name=version" json:"version,omitempty"`
  287. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  288. XXX_unrecognized []byte `json:"-"`
  289. XXX_sizecache int32 `json:"-"`
  290. }
  291. func (m *GetNumInstancesRequest) Reset() { *m = GetNumInstancesRequest{} }
  292. func (m *GetNumInstancesRequest) String() string { return proto.CompactTextString(m) }
  293. func (*GetNumInstancesRequest) ProtoMessage() {}
  294. func (*GetNumInstancesRequest) Descriptor() ([]byte, []int) {
  295. return fileDescriptor_modules_service_9cd3bffe4e91c59a, []int{7}
  296. }
  297. func (m *GetNumInstancesRequest) XXX_Unmarshal(b []byte) error {
  298. return xxx_messageInfo_GetNumInstancesRequest.Unmarshal(m, b)
  299. }
  300. func (m *GetNumInstancesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  301. return xxx_messageInfo_GetNumInstancesRequest.Marshal(b, m, deterministic)
  302. }
  303. func (dst *GetNumInstancesRequest) XXX_Merge(src proto.Message) {
  304. xxx_messageInfo_GetNumInstancesRequest.Merge(dst, src)
  305. }
  306. func (m *GetNumInstancesRequest) XXX_Size() int {
  307. return xxx_messageInfo_GetNumInstancesRequest.Size(m)
  308. }
  309. func (m *GetNumInstancesRequest) XXX_DiscardUnknown() {
  310. xxx_messageInfo_GetNumInstancesRequest.DiscardUnknown(m)
  311. }
  312. var xxx_messageInfo_GetNumInstancesRequest proto.InternalMessageInfo
  313. func (m *GetNumInstancesRequest) GetModule() string {
  314. if m != nil && m.Module != nil {
  315. return *m.Module
  316. }
  317. return ""
  318. }
  319. func (m *GetNumInstancesRequest) GetVersion() string {
  320. if m != nil && m.Version != nil {
  321. return *m.Version
  322. }
  323. return ""
  324. }
  325. type GetNumInstancesResponse struct {
  326. Instances *int64 `protobuf:"varint,1,req,name=instances" json:"instances,omitempty"`
  327. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  328. XXX_unrecognized []byte `json:"-"`
  329. XXX_sizecache int32 `json:"-"`
  330. }
  331. func (m *GetNumInstancesResponse) Reset() { *m = GetNumInstancesResponse{} }
  332. func (m *GetNumInstancesResponse) String() string { return proto.CompactTextString(m) }
  333. func (*GetNumInstancesResponse) ProtoMessage() {}
  334. func (*GetNumInstancesResponse) Descriptor() ([]byte, []int) {
  335. return fileDescriptor_modules_service_9cd3bffe4e91c59a, []int{8}
  336. }
  337. func (m *GetNumInstancesResponse) XXX_Unmarshal(b []byte) error {
  338. return xxx_messageInfo_GetNumInstancesResponse.Unmarshal(m, b)
  339. }
  340. func (m *GetNumInstancesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  341. return xxx_messageInfo_GetNumInstancesResponse.Marshal(b, m, deterministic)
  342. }
  343. func (dst *GetNumInstancesResponse) XXX_Merge(src proto.Message) {
  344. xxx_messageInfo_GetNumInstancesResponse.Merge(dst, src)
  345. }
  346. func (m *GetNumInstancesResponse) XXX_Size() int {
  347. return xxx_messageInfo_GetNumInstancesResponse.Size(m)
  348. }
  349. func (m *GetNumInstancesResponse) XXX_DiscardUnknown() {
  350. xxx_messageInfo_GetNumInstancesResponse.DiscardUnknown(m)
  351. }
  352. var xxx_messageInfo_GetNumInstancesResponse proto.InternalMessageInfo
  353. func (m *GetNumInstancesResponse) GetInstances() int64 {
  354. if m != nil && m.Instances != nil {
  355. return *m.Instances
  356. }
  357. return 0
  358. }
  359. type SetNumInstancesRequest struct {
  360. Module *string `protobuf:"bytes,1,opt,name=module" json:"module,omitempty"`
  361. Version *string `protobuf:"bytes,2,opt,name=version" json:"version,omitempty"`
  362. Instances *int64 `protobuf:"varint,3,req,name=instances" json:"instances,omitempty"`
  363. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  364. XXX_unrecognized []byte `json:"-"`
  365. XXX_sizecache int32 `json:"-"`
  366. }
  367. func (m *SetNumInstancesRequest) Reset() { *m = SetNumInstancesRequest{} }
  368. func (m *SetNumInstancesRequest) String() string { return proto.CompactTextString(m) }
  369. func (*SetNumInstancesRequest) ProtoMessage() {}
  370. func (*SetNumInstancesRequest) Descriptor() ([]byte, []int) {
  371. return fileDescriptor_modules_service_9cd3bffe4e91c59a, []int{9}
  372. }
  373. func (m *SetNumInstancesRequest) XXX_Unmarshal(b []byte) error {
  374. return xxx_messageInfo_SetNumInstancesRequest.Unmarshal(m, b)
  375. }
  376. func (m *SetNumInstancesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  377. return xxx_messageInfo_SetNumInstancesRequest.Marshal(b, m, deterministic)
  378. }
  379. func (dst *SetNumInstancesRequest) XXX_Merge(src proto.Message) {
  380. xxx_messageInfo_SetNumInstancesRequest.Merge(dst, src)
  381. }
  382. func (m *SetNumInstancesRequest) XXX_Size() int {
  383. return xxx_messageInfo_SetNumInstancesRequest.Size(m)
  384. }
  385. func (m *SetNumInstancesRequest) XXX_DiscardUnknown() {
  386. xxx_messageInfo_SetNumInstancesRequest.DiscardUnknown(m)
  387. }
  388. var xxx_messageInfo_SetNumInstancesRequest proto.InternalMessageInfo
  389. func (m *SetNumInstancesRequest) GetModule() string {
  390. if m != nil && m.Module != nil {
  391. return *m.Module
  392. }
  393. return ""
  394. }
  395. func (m *SetNumInstancesRequest) GetVersion() string {
  396. if m != nil && m.Version != nil {
  397. return *m.Version
  398. }
  399. return ""
  400. }
  401. func (m *SetNumInstancesRequest) GetInstances() int64 {
  402. if m != nil && m.Instances != nil {
  403. return *m.Instances
  404. }
  405. return 0
  406. }
  407. type SetNumInstancesResponse struct {
  408. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  409. XXX_unrecognized []byte `json:"-"`
  410. XXX_sizecache int32 `json:"-"`
  411. }
  412. func (m *SetNumInstancesResponse) Reset() { *m = SetNumInstancesResponse{} }
  413. func (m *SetNumInstancesResponse) String() string { return proto.CompactTextString(m) }
  414. func (*SetNumInstancesResponse) ProtoMessage() {}
  415. func (*SetNumInstancesResponse) Descriptor() ([]byte, []int) {
  416. return fileDescriptor_modules_service_9cd3bffe4e91c59a, []int{10}
  417. }
  418. func (m *SetNumInstancesResponse) XXX_Unmarshal(b []byte) error {
  419. return xxx_messageInfo_SetNumInstancesResponse.Unmarshal(m, b)
  420. }
  421. func (m *SetNumInstancesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  422. return xxx_messageInfo_SetNumInstancesResponse.Marshal(b, m, deterministic)
  423. }
  424. func (dst *SetNumInstancesResponse) XXX_Merge(src proto.Message) {
  425. xxx_messageInfo_SetNumInstancesResponse.Merge(dst, src)
  426. }
  427. func (m *SetNumInstancesResponse) XXX_Size() int {
  428. return xxx_messageInfo_SetNumInstancesResponse.Size(m)
  429. }
  430. func (m *SetNumInstancesResponse) XXX_DiscardUnknown() {
  431. xxx_messageInfo_SetNumInstancesResponse.DiscardUnknown(m)
  432. }
  433. var xxx_messageInfo_SetNumInstancesResponse proto.InternalMessageInfo
  434. type StartModuleRequest struct {
  435. Module *string `protobuf:"bytes,1,req,name=module" json:"module,omitempty"`
  436. Version *string `protobuf:"bytes,2,req,name=version" json:"version,omitempty"`
  437. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  438. XXX_unrecognized []byte `json:"-"`
  439. XXX_sizecache int32 `json:"-"`
  440. }
  441. func (m *StartModuleRequest) Reset() { *m = StartModuleRequest{} }
  442. func (m *StartModuleRequest) String() string { return proto.CompactTextString(m) }
  443. func (*StartModuleRequest) ProtoMessage() {}
  444. func (*StartModuleRequest) Descriptor() ([]byte, []int) {
  445. return fileDescriptor_modules_service_9cd3bffe4e91c59a, []int{11}
  446. }
  447. func (m *StartModuleRequest) XXX_Unmarshal(b []byte) error {
  448. return xxx_messageInfo_StartModuleRequest.Unmarshal(m, b)
  449. }
  450. func (m *StartModuleRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  451. return xxx_messageInfo_StartModuleRequest.Marshal(b, m, deterministic)
  452. }
  453. func (dst *StartModuleRequest) XXX_Merge(src proto.Message) {
  454. xxx_messageInfo_StartModuleRequest.Merge(dst, src)
  455. }
  456. func (m *StartModuleRequest) XXX_Size() int {
  457. return xxx_messageInfo_StartModuleRequest.Size(m)
  458. }
  459. func (m *StartModuleRequest) XXX_DiscardUnknown() {
  460. xxx_messageInfo_StartModuleRequest.DiscardUnknown(m)
  461. }
  462. var xxx_messageInfo_StartModuleRequest proto.InternalMessageInfo
  463. func (m *StartModuleRequest) GetModule() string {
  464. if m != nil && m.Module != nil {
  465. return *m.Module
  466. }
  467. return ""
  468. }
  469. func (m *StartModuleRequest) GetVersion() string {
  470. if m != nil && m.Version != nil {
  471. return *m.Version
  472. }
  473. return ""
  474. }
  475. type StartModuleResponse struct {
  476. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  477. XXX_unrecognized []byte `json:"-"`
  478. XXX_sizecache int32 `json:"-"`
  479. }
  480. func (m *StartModuleResponse) Reset() { *m = StartModuleResponse{} }
  481. func (m *StartModuleResponse) String() string { return proto.CompactTextString(m) }
  482. func (*StartModuleResponse) ProtoMessage() {}
  483. func (*StartModuleResponse) Descriptor() ([]byte, []int) {
  484. return fileDescriptor_modules_service_9cd3bffe4e91c59a, []int{12}
  485. }
  486. func (m *StartModuleResponse) XXX_Unmarshal(b []byte) error {
  487. return xxx_messageInfo_StartModuleResponse.Unmarshal(m, b)
  488. }
  489. func (m *StartModuleResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  490. return xxx_messageInfo_StartModuleResponse.Marshal(b, m, deterministic)
  491. }
  492. func (dst *StartModuleResponse) XXX_Merge(src proto.Message) {
  493. xxx_messageInfo_StartModuleResponse.Merge(dst, src)
  494. }
  495. func (m *StartModuleResponse) XXX_Size() int {
  496. return xxx_messageInfo_StartModuleResponse.Size(m)
  497. }
  498. func (m *StartModuleResponse) XXX_DiscardUnknown() {
  499. xxx_messageInfo_StartModuleResponse.DiscardUnknown(m)
  500. }
  501. var xxx_messageInfo_StartModuleResponse proto.InternalMessageInfo
  502. type StopModuleRequest struct {
  503. Module *string `protobuf:"bytes,1,opt,name=module" json:"module,omitempty"`
  504. Version *string `protobuf:"bytes,2,opt,name=version" json:"version,omitempty"`
  505. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  506. XXX_unrecognized []byte `json:"-"`
  507. XXX_sizecache int32 `json:"-"`
  508. }
  509. func (m *StopModuleRequest) Reset() { *m = StopModuleRequest{} }
  510. func (m *StopModuleRequest) String() string { return proto.CompactTextString(m) }
  511. func (*StopModuleRequest) ProtoMessage() {}
  512. func (*StopModuleRequest) Descriptor() ([]byte, []int) {
  513. return fileDescriptor_modules_service_9cd3bffe4e91c59a, []int{13}
  514. }
  515. func (m *StopModuleRequest) XXX_Unmarshal(b []byte) error {
  516. return xxx_messageInfo_StopModuleRequest.Unmarshal(m, b)
  517. }
  518. func (m *StopModuleRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  519. return xxx_messageInfo_StopModuleRequest.Marshal(b, m, deterministic)
  520. }
  521. func (dst *StopModuleRequest) XXX_Merge(src proto.Message) {
  522. xxx_messageInfo_StopModuleRequest.Merge(dst, src)
  523. }
  524. func (m *StopModuleRequest) XXX_Size() int {
  525. return xxx_messageInfo_StopModuleRequest.Size(m)
  526. }
  527. func (m *StopModuleRequest) XXX_DiscardUnknown() {
  528. xxx_messageInfo_StopModuleRequest.DiscardUnknown(m)
  529. }
  530. var xxx_messageInfo_StopModuleRequest proto.InternalMessageInfo
  531. func (m *StopModuleRequest) GetModule() string {
  532. if m != nil && m.Module != nil {
  533. return *m.Module
  534. }
  535. return ""
  536. }
  537. func (m *StopModuleRequest) GetVersion() string {
  538. if m != nil && m.Version != nil {
  539. return *m.Version
  540. }
  541. return ""
  542. }
  543. type StopModuleResponse struct {
  544. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  545. XXX_unrecognized []byte `json:"-"`
  546. XXX_sizecache int32 `json:"-"`
  547. }
  548. func (m *StopModuleResponse) Reset() { *m = StopModuleResponse{} }
  549. func (m *StopModuleResponse) String() string { return proto.CompactTextString(m) }
  550. func (*StopModuleResponse) ProtoMessage() {}
  551. func (*StopModuleResponse) Descriptor() ([]byte, []int) {
  552. return fileDescriptor_modules_service_9cd3bffe4e91c59a, []int{14}
  553. }
  554. func (m *StopModuleResponse) XXX_Unmarshal(b []byte) error {
  555. return xxx_messageInfo_StopModuleResponse.Unmarshal(m, b)
  556. }
  557. func (m *StopModuleResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  558. return xxx_messageInfo_StopModuleResponse.Marshal(b, m, deterministic)
  559. }
  560. func (dst *StopModuleResponse) XXX_Merge(src proto.Message) {
  561. xxx_messageInfo_StopModuleResponse.Merge(dst, src)
  562. }
  563. func (m *StopModuleResponse) XXX_Size() int {
  564. return xxx_messageInfo_StopModuleResponse.Size(m)
  565. }
  566. func (m *StopModuleResponse) XXX_DiscardUnknown() {
  567. xxx_messageInfo_StopModuleResponse.DiscardUnknown(m)
  568. }
  569. var xxx_messageInfo_StopModuleResponse proto.InternalMessageInfo
  570. type GetHostnameRequest struct {
  571. Module *string `protobuf:"bytes,1,opt,name=module" json:"module,omitempty"`
  572. Version *string `protobuf:"bytes,2,opt,name=version" json:"version,omitempty"`
  573. Instance *string `protobuf:"bytes,3,opt,name=instance" json:"instance,omitempty"`
  574. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  575. XXX_unrecognized []byte `json:"-"`
  576. XXX_sizecache int32 `json:"-"`
  577. }
  578. func (m *GetHostnameRequest) Reset() { *m = GetHostnameRequest{} }
  579. func (m *GetHostnameRequest) String() string { return proto.CompactTextString(m) }
  580. func (*GetHostnameRequest) ProtoMessage() {}
  581. func (*GetHostnameRequest) Descriptor() ([]byte, []int) {
  582. return fileDescriptor_modules_service_9cd3bffe4e91c59a, []int{15}
  583. }
  584. func (m *GetHostnameRequest) XXX_Unmarshal(b []byte) error {
  585. return xxx_messageInfo_GetHostnameRequest.Unmarshal(m, b)
  586. }
  587. func (m *GetHostnameRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  588. return xxx_messageInfo_GetHostnameRequest.Marshal(b, m, deterministic)
  589. }
  590. func (dst *GetHostnameRequest) XXX_Merge(src proto.Message) {
  591. xxx_messageInfo_GetHostnameRequest.Merge(dst, src)
  592. }
  593. func (m *GetHostnameRequest) XXX_Size() int {
  594. return xxx_messageInfo_GetHostnameRequest.Size(m)
  595. }
  596. func (m *GetHostnameRequest) XXX_DiscardUnknown() {
  597. xxx_messageInfo_GetHostnameRequest.DiscardUnknown(m)
  598. }
  599. var xxx_messageInfo_GetHostnameRequest proto.InternalMessageInfo
  600. func (m *GetHostnameRequest) GetModule() string {
  601. if m != nil && m.Module != nil {
  602. return *m.Module
  603. }
  604. return ""
  605. }
  606. func (m *GetHostnameRequest) GetVersion() string {
  607. if m != nil && m.Version != nil {
  608. return *m.Version
  609. }
  610. return ""
  611. }
  612. func (m *GetHostnameRequest) GetInstance() string {
  613. if m != nil && m.Instance != nil {
  614. return *m.Instance
  615. }
  616. return ""
  617. }
  618. type GetHostnameResponse struct {
  619. Hostname *string `protobuf:"bytes,1,req,name=hostname" json:"hostname,omitempty"`
  620. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  621. XXX_unrecognized []byte `json:"-"`
  622. XXX_sizecache int32 `json:"-"`
  623. }
  624. func (m *GetHostnameResponse) Reset() { *m = GetHostnameResponse{} }
  625. func (m *GetHostnameResponse) String() string { return proto.CompactTextString(m) }
  626. func (*GetHostnameResponse) ProtoMessage() {}
  627. func (*GetHostnameResponse) Descriptor() ([]byte, []int) {
  628. return fileDescriptor_modules_service_9cd3bffe4e91c59a, []int{16}
  629. }
  630. func (m *GetHostnameResponse) XXX_Unmarshal(b []byte) error {
  631. return xxx_messageInfo_GetHostnameResponse.Unmarshal(m, b)
  632. }
  633. func (m *GetHostnameResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  634. return xxx_messageInfo_GetHostnameResponse.Marshal(b, m, deterministic)
  635. }
  636. func (dst *GetHostnameResponse) XXX_Merge(src proto.Message) {
  637. xxx_messageInfo_GetHostnameResponse.Merge(dst, src)
  638. }
  639. func (m *GetHostnameResponse) XXX_Size() int {
  640. return xxx_messageInfo_GetHostnameResponse.Size(m)
  641. }
  642. func (m *GetHostnameResponse) XXX_DiscardUnknown() {
  643. xxx_messageInfo_GetHostnameResponse.DiscardUnknown(m)
  644. }
  645. var xxx_messageInfo_GetHostnameResponse proto.InternalMessageInfo
  646. func (m *GetHostnameResponse) GetHostname() string {
  647. if m != nil && m.Hostname != nil {
  648. return *m.Hostname
  649. }
  650. return ""
  651. }
  652. func init() {
  653. proto.RegisterType((*ModulesServiceError)(nil), "appengine.ModulesServiceError")
  654. proto.RegisterType((*GetModulesRequest)(nil), "appengine.GetModulesRequest")
  655. proto.RegisterType((*GetModulesResponse)(nil), "appengine.GetModulesResponse")
  656. proto.RegisterType((*GetVersionsRequest)(nil), "appengine.GetVersionsRequest")
  657. proto.RegisterType((*GetVersionsResponse)(nil), "appengine.GetVersionsResponse")
  658. proto.RegisterType((*GetDefaultVersionRequest)(nil), "appengine.GetDefaultVersionRequest")
  659. proto.RegisterType((*GetDefaultVersionResponse)(nil), "appengine.GetDefaultVersionResponse")
  660. proto.RegisterType((*GetNumInstancesRequest)(nil), "appengine.GetNumInstancesRequest")
  661. proto.RegisterType((*GetNumInstancesResponse)(nil), "appengine.GetNumInstancesResponse")
  662. proto.RegisterType((*SetNumInstancesRequest)(nil), "appengine.SetNumInstancesRequest")
  663. proto.RegisterType((*SetNumInstancesResponse)(nil), "appengine.SetNumInstancesResponse")
  664. proto.RegisterType((*StartModuleRequest)(nil), "appengine.StartModuleRequest")
  665. proto.RegisterType((*StartModuleResponse)(nil), "appengine.StartModuleResponse")
  666. proto.RegisterType((*StopModuleRequest)(nil), "appengine.StopModuleRequest")
  667. proto.RegisterType((*StopModuleResponse)(nil), "appengine.StopModuleResponse")
  668. proto.RegisterType((*GetHostnameRequest)(nil), "appengine.GetHostnameRequest")
  669. proto.RegisterType((*GetHostnameResponse)(nil), "appengine.GetHostnameResponse")
  670. }
  671. func init() {
  672. proto.RegisterFile("google.golang.org/appengine/internal/modules/modules_service.proto", fileDescriptor_modules_service_9cd3bffe4e91c59a)
  673. }
  674. var fileDescriptor_modules_service_9cd3bffe4e91c59a = []byte{
  675. // 457 bytes of a gzipped FileDescriptorProto
  676. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x94, 0xc1, 0x6f, 0xd3, 0x30,
  677. 0x14, 0xc6, 0x69, 0x02, 0xdb, 0xf2, 0x0e, 0x90, 0x3a, 0x5b, 0xd7, 0x4d, 0x1c, 0x50, 0x4e, 0x1c,
  678. 0x50, 0x2b, 0x90, 0x10, 0xe7, 0xae, 0x35, 0x25, 0xb0, 0xa5, 0x28, 0xce, 0x2a, 0xc4, 0xa5, 0x0a,
  679. 0xdb, 0x23, 0x8b, 0x94, 0xda, 0xc1, 0x76, 0x77, 0xe4, 0xbf, 0xe0, 0xff, 0x45, 0x4b, 0xed, 0xb6,
  680. 0x81, 0x4e, 0x45, 0x68, 0xa7, 0xe4, 0x7d, 0xfe, 0xfc, 0x7b, 0x9f, 0x5f, 0xac, 0xc0, 0x59, 0x2e,
  681. 0x44, 0x5e, 0x62, 0x2f, 0x17, 0x65, 0xc6, 0xf3, 0x9e, 0x90, 0x79, 0x3f, 0xab, 0x2a, 0xe4, 0x79,
  682. 0xc1, 0xb1, 0x5f, 0x70, 0x8d, 0x92, 0x67, 0x65, 0x7f, 0x2e, 0xae, 0x17, 0x25, 0x2a, 0xfb, 0x9c,
  683. 0x29, 0x94, 0xb7, 0xc5, 0x15, 0xf6, 0x2a, 0x29, 0xb4, 0x20, 0xde, 0x6a, 0x47, 0xf8, 0xab, 0x05,
  684. 0xc1, 0xc5, 0xd2, 0xc4, 0x96, 0x1e, 0x2a, 0xa5, 0x90, 0xe1, 0x4f, 0xf0, 0xea, 0x97, 0xa1, 0xb8,
  685. 0x46, 0xb2, 0x07, 0xce, 0xe4, 0x93, 0xff, 0x88, 0x10, 0x78, 0x1a, 0xc5, 0xd3, 0xc1, 0x79, 0x34,
  686. 0x9a, 0x5d, 0x4c, 0x46, 0x97, 0xe7, 0xd4, 0x6f, 0x91, 0x00, 0x9e, 0x59, 0x6d, 0x4a, 0x13, 0x16,
  687. 0x4d, 0x62, 0xdf, 0x21, 0x47, 0xd0, 0xb6, 0x62, 0x14, 0xb3, 0x74, 0x10, 0x0f, 0x29, 0xf3, 0xdd,
  688. 0x3b, 0x6f, 0x9a, 0x0c, 0x62, 0x16, 0xd1, 0x38, 0x9d, 0xd1, 0x24, 0x99, 0x24, 0xfe, 0x63, 0x72,
  689. 0x08, 0xfe, 0x65, 0x4c, 0xbf, 0x7c, 0xa6, 0xc3, 0x94, 0x8e, 0x66, 0x2c, 0x1d, 0xa4, 0xd4, 0x7f,
  690. 0x12, 0x06, 0xd0, 0x1e, 0xa3, 0x36, 0xc9, 0x12, 0xfc, 0xb1, 0x40, 0xa5, 0xc3, 0x57, 0x40, 0x36,
  691. 0x45, 0x55, 0x09, 0xae, 0x90, 0x74, 0x60, 0x6f, 0x79, 0xcc, 0x6e, 0xeb, 0x85, 0xfb, 0xd2, 0x4b,
  692. 0x4c, 0x65, 0xdc, 0x53, 0x94, 0xaa, 0x10, 0xdc, 0x32, 0x1a, 0xee, 0xd6, 0x86, 0xbb, 0x0f, 0x41,
  693. 0xc3, 0x6d, 0xe0, 0x5d, 0xd8, 0xbf, 0x5d, 0x6a, 0x86, 0x6e, 0xcb, 0xf0, 0x0d, 0x74, 0xc7, 0xa8,
  694. 0x47, 0xf8, 0x3d, 0x5b, 0x94, 0x76, 0xdf, 0xae, 0x26, 0x6f, 0xe1, 0x64, 0xcb, 0x9e, 0x6d, 0xad,
  695. 0x9c, 0xcd, 0x56, 0x1f, 0xa1, 0x33, 0x46, 0x1d, 0x2f, 0xe6, 0x11, 0x57, 0x3a, 0xe3, 0x57, 0xb8,
  696. 0xeb, 0x34, 0x9b, 0x2c, 0xa7, 0x5e, 0x58, 0xb1, 0xde, 0xc1, 0xf1, 0x5f, 0x2c, 0x13, 0xe0, 0x39,
  697. 0x78, 0x85, 0x15, 0xeb, 0x08, 0x6e, 0xb2, 0x16, 0xc2, 0x1b, 0xe8, 0xb0, 0x07, 0x0a, 0xd1, 0xec,
  698. 0xe4, 0xfe, 0xd9, 0xe9, 0x04, 0x8e, 0xd9, 0xf6, 0x88, 0xe1, 0x7b, 0x20, 0x4c, 0x67, 0xd2, 0xdc,
  699. 0x81, 0x6d, 0x01, 0x9c, 0xfb, 0x02, 0x34, 0x26, 0x7a, 0x04, 0x41, 0x83, 0x63, 0xf0, 0x14, 0xda,
  700. 0x4c, 0x8b, 0xea, 0x7e, 0xfa, 0xbf, 0xcd, 0xf8, 0xf0, 0x2e, 0xe5, 0x1a, 0x63, 0xe0, 0xdf, 0xea,
  701. 0xfb, 0xf8, 0x41, 0x28, 0xcd, 0xb3, 0xf9, 0xff, 0xd3, 0xc9, 0x29, 0x1c, 0xd8, 0x59, 0x75, 0xdd,
  702. 0x7a, 0x69, 0x55, 0x87, 0xaf, 0xeb, 0x5b, 0xbc, 0xee, 0x61, 0xbe, 0xec, 0x29, 0x1c, 0xdc, 0x18,
  703. 0xcd, 0x8c, 0x68, 0x55, 0x9f, 0x79, 0x5f, 0xf7, 0xcd, 0x5f, 0xe2, 0x77, 0x00, 0x00, 0x00, 0xff,
  704. 0xff, 0x6e, 0xbc, 0xe0, 0x61, 0x5c, 0x04, 0x00, 0x00,
  705. }
上海开阖软件有限公司 沪ICP备12045867号-1