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.
 
 
 

942 lines
37 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/monitoring/v3/group_service.proto
  3. package monitoring // import "google.golang.org/genproto/googleapis/monitoring/v3"
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import empty "github.com/golang/protobuf/ptypes/empty"
  8. import _ "google.golang.org/genproto/googleapis/api/annotations"
  9. import monitoredres "google.golang.org/genproto/googleapis/api/monitoredres"
  10. import (
  11. context "golang.org/x/net/context"
  12. grpc "google.golang.org/grpc"
  13. )
  14. // Reference imports to suppress errors if they are not otherwise used.
  15. var _ = proto.Marshal
  16. var _ = fmt.Errorf
  17. var _ = math.Inf
  18. // This is a compile-time assertion to ensure that this generated file
  19. // is compatible with the proto package it is being compiled against.
  20. // A compilation error at this line likely means your copy of the
  21. // proto package needs to be updated.
  22. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  23. // The `ListGroup` request.
  24. type ListGroupsRequest struct {
  25. // The project whose groups are to be listed. The format is
  26. // `"projects/{project_id_or_number}"`.
  27. Name string `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
  28. // An optional filter consisting of a single group name. The filters limit
  29. // the groups returned based on their parent-child relationship with the
  30. // specified group. If no filter is specified, all groups are returned.
  31. //
  32. // Types that are valid to be assigned to Filter:
  33. // *ListGroupsRequest_ChildrenOfGroup
  34. // *ListGroupsRequest_AncestorsOfGroup
  35. // *ListGroupsRequest_DescendantsOfGroup
  36. Filter isListGroupsRequest_Filter `protobuf_oneof:"filter"`
  37. // A positive number that is the maximum number of results to return.
  38. PageSize int32 `protobuf:"varint,5,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  39. // If this field is not empty then it must contain the `nextPageToken` value
  40. // returned by a previous call to this method. Using this field causes the
  41. // method to return additional results from the previous method call.
  42. PageToken string `protobuf:"bytes,6,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
  43. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  44. XXX_unrecognized []byte `json:"-"`
  45. XXX_sizecache int32 `json:"-"`
  46. }
  47. func (m *ListGroupsRequest) Reset() { *m = ListGroupsRequest{} }
  48. func (m *ListGroupsRequest) String() string { return proto.CompactTextString(m) }
  49. func (*ListGroupsRequest) ProtoMessage() {}
  50. func (*ListGroupsRequest) Descriptor() ([]byte, []int) {
  51. return fileDescriptor_group_service_82592e08754ba7ee, []int{0}
  52. }
  53. func (m *ListGroupsRequest) XXX_Unmarshal(b []byte) error {
  54. return xxx_messageInfo_ListGroupsRequest.Unmarshal(m, b)
  55. }
  56. func (m *ListGroupsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  57. return xxx_messageInfo_ListGroupsRequest.Marshal(b, m, deterministic)
  58. }
  59. func (dst *ListGroupsRequest) XXX_Merge(src proto.Message) {
  60. xxx_messageInfo_ListGroupsRequest.Merge(dst, src)
  61. }
  62. func (m *ListGroupsRequest) XXX_Size() int {
  63. return xxx_messageInfo_ListGroupsRequest.Size(m)
  64. }
  65. func (m *ListGroupsRequest) XXX_DiscardUnknown() {
  66. xxx_messageInfo_ListGroupsRequest.DiscardUnknown(m)
  67. }
  68. var xxx_messageInfo_ListGroupsRequest proto.InternalMessageInfo
  69. func (m *ListGroupsRequest) GetName() string {
  70. if m != nil {
  71. return m.Name
  72. }
  73. return ""
  74. }
  75. type isListGroupsRequest_Filter interface {
  76. isListGroupsRequest_Filter()
  77. }
  78. type ListGroupsRequest_ChildrenOfGroup struct {
  79. ChildrenOfGroup string `protobuf:"bytes,2,opt,name=children_of_group,json=childrenOfGroup,proto3,oneof"`
  80. }
  81. type ListGroupsRequest_AncestorsOfGroup struct {
  82. AncestorsOfGroup string `protobuf:"bytes,3,opt,name=ancestors_of_group,json=ancestorsOfGroup,proto3,oneof"`
  83. }
  84. type ListGroupsRequest_DescendantsOfGroup struct {
  85. DescendantsOfGroup string `protobuf:"bytes,4,opt,name=descendants_of_group,json=descendantsOfGroup,proto3,oneof"`
  86. }
  87. func (*ListGroupsRequest_ChildrenOfGroup) isListGroupsRequest_Filter() {}
  88. func (*ListGroupsRequest_AncestorsOfGroup) isListGroupsRequest_Filter() {}
  89. func (*ListGroupsRequest_DescendantsOfGroup) isListGroupsRequest_Filter() {}
  90. func (m *ListGroupsRequest) GetFilter() isListGroupsRequest_Filter {
  91. if m != nil {
  92. return m.Filter
  93. }
  94. return nil
  95. }
  96. func (m *ListGroupsRequest) GetChildrenOfGroup() string {
  97. if x, ok := m.GetFilter().(*ListGroupsRequest_ChildrenOfGroup); ok {
  98. return x.ChildrenOfGroup
  99. }
  100. return ""
  101. }
  102. func (m *ListGroupsRequest) GetAncestorsOfGroup() string {
  103. if x, ok := m.GetFilter().(*ListGroupsRequest_AncestorsOfGroup); ok {
  104. return x.AncestorsOfGroup
  105. }
  106. return ""
  107. }
  108. func (m *ListGroupsRequest) GetDescendantsOfGroup() string {
  109. if x, ok := m.GetFilter().(*ListGroupsRequest_DescendantsOfGroup); ok {
  110. return x.DescendantsOfGroup
  111. }
  112. return ""
  113. }
  114. func (m *ListGroupsRequest) GetPageSize() int32 {
  115. if m != nil {
  116. return m.PageSize
  117. }
  118. return 0
  119. }
  120. func (m *ListGroupsRequest) GetPageToken() string {
  121. if m != nil {
  122. return m.PageToken
  123. }
  124. return ""
  125. }
  126. // XXX_OneofFuncs is for the internal use of the proto package.
  127. func (*ListGroupsRequest) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
  128. return _ListGroupsRequest_OneofMarshaler, _ListGroupsRequest_OneofUnmarshaler, _ListGroupsRequest_OneofSizer, []interface{}{
  129. (*ListGroupsRequest_ChildrenOfGroup)(nil),
  130. (*ListGroupsRequest_AncestorsOfGroup)(nil),
  131. (*ListGroupsRequest_DescendantsOfGroup)(nil),
  132. }
  133. }
  134. func _ListGroupsRequest_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
  135. m := msg.(*ListGroupsRequest)
  136. // filter
  137. switch x := m.Filter.(type) {
  138. case *ListGroupsRequest_ChildrenOfGroup:
  139. b.EncodeVarint(2<<3 | proto.WireBytes)
  140. b.EncodeStringBytes(x.ChildrenOfGroup)
  141. case *ListGroupsRequest_AncestorsOfGroup:
  142. b.EncodeVarint(3<<3 | proto.WireBytes)
  143. b.EncodeStringBytes(x.AncestorsOfGroup)
  144. case *ListGroupsRequest_DescendantsOfGroup:
  145. b.EncodeVarint(4<<3 | proto.WireBytes)
  146. b.EncodeStringBytes(x.DescendantsOfGroup)
  147. case nil:
  148. default:
  149. return fmt.Errorf("ListGroupsRequest.Filter has unexpected type %T", x)
  150. }
  151. return nil
  152. }
  153. func _ListGroupsRequest_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
  154. m := msg.(*ListGroupsRequest)
  155. switch tag {
  156. case 2: // filter.children_of_group
  157. if wire != proto.WireBytes {
  158. return true, proto.ErrInternalBadWireType
  159. }
  160. x, err := b.DecodeStringBytes()
  161. m.Filter = &ListGroupsRequest_ChildrenOfGroup{x}
  162. return true, err
  163. case 3: // filter.ancestors_of_group
  164. if wire != proto.WireBytes {
  165. return true, proto.ErrInternalBadWireType
  166. }
  167. x, err := b.DecodeStringBytes()
  168. m.Filter = &ListGroupsRequest_AncestorsOfGroup{x}
  169. return true, err
  170. case 4: // filter.descendants_of_group
  171. if wire != proto.WireBytes {
  172. return true, proto.ErrInternalBadWireType
  173. }
  174. x, err := b.DecodeStringBytes()
  175. m.Filter = &ListGroupsRequest_DescendantsOfGroup{x}
  176. return true, err
  177. default:
  178. return false, nil
  179. }
  180. }
  181. func _ListGroupsRequest_OneofSizer(msg proto.Message) (n int) {
  182. m := msg.(*ListGroupsRequest)
  183. // filter
  184. switch x := m.Filter.(type) {
  185. case *ListGroupsRequest_ChildrenOfGroup:
  186. n += 1 // tag and wire
  187. n += proto.SizeVarint(uint64(len(x.ChildrenOfGroup)))
  188. n += len(x.ChildrenOfGroup)
  189. case *ListGroupsRequest_AncestorsOfGroup:
  190. n += 1 // tag and wire
  191. n += proto.SizeVarint(uint64(len(x.AncestorsOfGroup)))
  192. n += len(x.AncestorsOfGroup)
  193. case *ListGroupsRequest_DescendantsOfGroup:
  194. n += 1 // tag and wire
  195. n += proto.SizeVarint(uint64(len(x.DescendantsOfGroup)))
  196. n += len(x.DescendantsOfGroup)
  197. case nil:
  198. default:
  199. panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
  200. }
  201. return n
  202. }
  203. // The `ListGroups` response.
  204. type ListGroupsResponse struct {
  205. // The groups that match the specified filters.
  206. Group []*Group `protobuf:"bytes,1,rep,name=group,proto3" json:"group,omitempty"`
  207. // If there are more results than have been returned, then this field is set
  208. // to a non-empty value. To see the additional results,
  209. // use that value as `pageToken` in the next call to this method.
  210. NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
  211. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  212. XXX_unrecognized []byte `json:"-"`
  213. XXX_sizecache int32 `json:"-"`
  214. }
  215. func (m *ListGroupsResponse) Reset() { *m = ListGroupsResponse{} }
  216. func (m *ListGroupsResponse) String() string { return proto.CompactTextString(m) }
  217. func (*ListGroupsResponse) ProtoMessage() {}
  218. func (*ListGroupsResponse) Descriptor() ([]byte, []int) {
  219. return fileDescriptor_group_service_82592e08754ba7ee, []int{1}
  220. }
  221. func (m *ListGroupsResponse) XXX_Unmarshal(b []byte) error {
  222. return xxx_messageInfo_ListGroupsResponse.Unmarshal(m, b)
  223. }
  224. func (m *ListGroupsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  225. return xxx_messageInfo_ListGroupsResponse.Marshal(b, m, deterministic)
  226. }
  227. func (dst *ListGroupsResponse) XXX_Merge(src proto.Message) {
  228. xxx_messageInfo_ListGroupsResponse.Merge(dst, src)
  229. }
  230. func (m *ListGroupsResponse) XXX_Size() int {
  231. return xxx_messageInfo_ListGroupsResponse.Size(m)
  232. }
  233. func (m *ListGroupsResponse) XXX_DiscardUnknown() {
  234. xxx_messageInfo_ListGroupsResponse.DiscardUnknown(m)
  235. }
  236. var xxx_messageInfo_ListGroupsResponse proto.InternalMessageInfo
  237. func (m *ListGroupsResponse) GetGroup() []*Group {
  238. if m != nil {
  239. return m.Group
  240. }
  241. return nil
  242. }
  243. func (m *ListGroupsResponse) GetNextPageToken() string {
  244. if m != nil {
  245. return m.NextPageToken
  246. }
  247. return ""
  248. }
  249. // The `GetGroup` request.
  250. type GetGroupRequest struct {
  251. // The group to retrieve. The format is
  252. // `"projects/{project_id_or_number}/groups/{group_id}"`.
  253. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
  254. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  255. XXX_unrecognized []byte `json:"-"`
  256. XXX_sizecache int32 `json:"-"`
  257. }
  258. func (m *GetGroupRequest) Reset() { *m = GetGroupRequest{} }
  259. func (m *GetGroupRequest) String() string { return proto.CompactTextString(m) }
  260. func (*GetGroupRequest) ProtoMessage() {}
  261. func (*GetGroupRequest) Descriptor() ([]byte, []int) {
  262. return fileDescriptor_group_service_82592e08754ba7ee, []int{2}
  263. }
  264. func (m *GetGroupRequest) XXX_Unmarshal(b []byte) error {
  265. return xxx_messageInfo_GetGroupRequest.Unmarshal(m, b)
  266. }
  267. func (m *GetGroupRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  268. return xxx_messageInfo_GetGroupRequest.Marshal(b, m, deterministic)
  269. }
  270. func (dst *GetGroupRequest) XXX_Merge(src proto.Message) {
  271. xxx_messageInfo_GetGroupRequest.Merge(dst, src)
  272. }
  273. func (m *GetGroupRequest) XXX_Size() int {
  274. return xxx_messageInfo_GetGroupRequest.Size(m)
  275. }
  276. func (m *GetGroupRequest) XXX_DiscardUnknown() {
  277. xxx_messageInfo_GetGroupRequest.DiscardUnknown(m)
  278. }
  279. var xxx_messageInfo_GetGroupRequest proto.InternalMessageInfo
  280. func (m *GetGroupRequest) GetName() string {
  281. if m != nil {
  282. return m.Name
  283. }
  284. return ""
  285. }
  286. // The `CreateGroup` request.
  287. type CreateGroupRequest struct {
  288. // The project in which to create the group. The format is
  289. // `"projects/{project_id_or_number}"`.
  290. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
  291. // A group definition. It is an error to define the `name` field because
  292. // the system assigns the name.
  293. Group *Group `protobuf:"bytes,2,opt,name=group,proto3" json:"group,omitempty"`
  294. // If true, validate this request but do not create the group.
  295. ValidateOnly bool `protobuf:"varint,3,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
  296. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  297. XXX_unrecognized []byte `json:"-"`
  298. XXX_sizecache int32 `json:"-"`
  299. }
  300. func (m *CreateGroupRequest) Reset() { *m = CreateGroupRequest{} }
  301. func (m *CreateGroupRequest) String() string { return proto.CompactTextString(m) }
  302. func (*CreateGroupRequest) ProtoMessage() {}
  303. func (*CreateGroupRequest) Descriptor() ([]byte, []int) {
  304. return fileDescriptor_group_service_82592e08754ba7ee, []int{3}
  305. }
  306. func (m *CreateGroupRequest) XXX_Unmarshal(b []byte) error {
  307. return xxx_messageInfo_CreateGroupRequest.Unmarshal(m, b)
  308. }
  309. func (m *CreateGroupRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  310. return xxx_messageInfo_CreateGroupRequest.Marshal(b, m, deterministic)
  311. }
  312. func (dst *CreateGroupRequest) XXX_Merge(src proto.Message) {
  313. xxx_messageInfo_CreateGroupRequest.Merge(dst, src)
  314. }
  315. func (m *CreateGroupRequest) XXX_Size() int {
  316. return xxx_messageInfo_CreateGroupRequest.Size(m)
  317. }
  318. func (m *CreateGroupRequest) XXX_DiscardUnknown() {
  319. xxx_messageInfo_CreateGroupRequest.DiscardUnknown(m)
  320. }
  321. var xxx_messageInfo_CreateGroupRequest proto.InternalMessageInfo
  322. func (m *CreateGroupRequest) GetName() string {
  323. if m != nil {
  324. return m.Name
  325. }
  326. return ""
  327. }
  328. func (m *CreateGroupRequest) GetGroup() *Group {
  329. if m != nil {
  330. return m.Group
  331. }
  332. return nil
  333. }
  334. func (m *CreateGroupRequest) GetValidateOnly() bool {
  335. if m != nil {
  336. return m.ValidateOnly
  337. }
  338. return false
  339. }
  340. // The `UpdateGroup` request.
  341. type UpdateGroupRequest struct {
  342. // The new definition of the group. All fields of the existing group,
  343. // excepting `name`, are replaced with the corresponding fields of this group.
  344. Group *Group `protobuf:"bytes,2,opt,name=group,proto3" json:"group,omitempty"`
  345. // If true, validate this request but do not update the existing group.
  346. ValidateOnly bool `protobuf:"varint,3,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
  347. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  348. XXX_unrecognized []byte `json:"-"`
  349. XXX_sizecache int32 `json:"-"`
  350. }
  351. func (m *UpdateGroupRequest) Reset() { *m = UpdateGroupRequest{} }
  352. func (m *UpdateGroupRequest) String() string { return proto.CompactTextString(m) }
  353. func (*UpdateGroupRequest) ProtoMessage() {}
  354. func (*UpdateGroupRequest) Descriptor() ([]byte, []int) {
  355. return fileDescriptor_group_service_82592e08754ba7ee, []int{4}
  356. }
  357. func (m *UpdateGroupRequest) XXX_Unmarshal(b []byte) error {
  358. return xxx_messageInfo_UpdateGroupRequest.Unmarshal(m, b)
  359. }
  360. func (m *UpdateGroupRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  361. return xxx_messageInfo_UpdateGroupRequest.Marshal(b, m, deterministic)
  362. }
  363. func (dst *UpdateGroupRequest) XXX_Merge(src proto.Message) {
  364. xxx_messageInfo_UpdateGroupRequest.Merge(dst, src)
  365. }
  366. func (m *UpdateGroupRequest) XXX_Size() int {
  367. return xxx_messageInfo_UpdateGroupRequest.Size(m)
  368. }
  369. func (m *UpdateGroupRequest) XXX_DiscardUnknown() {
  370. xxx_messageInfo_UpdateGroupRequest.DiscardUnknown(m)
  371. }
  372. var xxx_messageInfo_UpdateGroupRequest proto.InternalMessageInfo
  373. func (m *UpdateGroupRequest) GetGroup() *Group {
  374. if m != nil {
  375. return m.Group
  376. }
  377. return nil
  378. }
  379. func (m *UpdateGroupRequest) GetValidateOnly() bool {
  380. if m != nil {
  381. return m.ValidateOnly
  382. }
  383. return false
  384. }
  385. // The `DeleteGroup` request. You can only delete a group if it has no children.
  386. type DeleteGroupRequest struct {
  387. // The group to delete. The format is
  388. // `"projects/{project_id_or_number}/groups/{group_id}"`.
  389. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
  390. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  391. XXX_unrecognized []byte `json:"-"`
  392. XXX_sizecache int32 `json:"-"`
  393. }
  394. func (m *DeleteGroupRequest) Reset() { *m = DeleteGroupRequest{} }
  395. func (m *DeleteGroupRequest) String() string { return proto.CompactTextString(m) }
  396. func (*DeleteGroupRequest) ProtoMessage() {}
  397. func (*DeleteGroupRequest) Descriptor() ([]byte, []int) {
  398. return fileDescriptor_group_service_82592e08754ba7ee, []int{5}
  399. }
  400. func (m *DeleteGroupRequest) XXX_Unmarshal(b []byte) error {
  401. return xxx_messageInfo_DeleteGroupRequest.Unmarshal(m, b)
  402. }
  403. func (m *DeleteGroupRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  404. return xxx_messageInfo_DeleteGroupRequest.Marshal(b, m, deterministic)
  405. }
  406. func (dst *DeleteGroupRequest) XXX_Merge(src proto.Message) {
  407. xxx_messageInfo_DeleteGroupRequest.Merge(dst, src)
  408. }
  409. func (m *DeleteGroupRequest) XXX_Size() int {
  410. return xxx_messageInfo_DeleteGroupRequest.Size(m)
  411. }
  412. func (m *DeleteGroupRequest) XXX_DiscardUnknown() {
  413. xxx_messageInfo_DeleteGroupRequest.DiscardUnknown(m)
  414. }
  415. var xxx_messageInfo_DeleteGroupRequest proto.InternalMessageInfo
  416. func (m *DeleteGroupRequest) GetName() string {
  417. if m != nil {
  418. return m.Name
  419. }
  420. return ""
  421. }
  422. // The `ListGroupMembers` request.
  423. type ListGroupMembersRequest struct {
  424. // The group whose members are listed. The format is
  425. // `"projects/{project_id_or_number}/groups/{group_id}"`.
  426. Name string `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
  427. // A positive number that is the maximum number of results to return.
  428. PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  429. // If this field is not empty then it must contain the `nextPageToken` value
  430. // returned by a previous call to this method. Using this field causes the
  431. // method to return additional results from the previous method call.
  432. PageToken string `protobuf:"bytes,4,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
  433. // An optional [list filter](/monitoring/api/learn_more#filtering) describing
  434. // the members to be returned. The filter may reference the type, labels, and
  435. // metadata of monitored resources that comprise the group.
  436. // For example, to return only resources representing Compute Engine VM
  437. // instances, use this filter:
  438. //
  439. // resource.type = "gce_instance"
  440. Filter string `protobuf:"bytes,5,opt,name=filter,proto3" json:"filter,omitempty"`
  441. // An optional time interval for which results should be returned. Only
  442. // members that were part of the group during the specified interval are
  443. // included in the response. If no interval is provided then the group
  444. // membership over the last minute is returned.
  445. Interval *TimeInterval `protobuf:"bytes,6,opt,name=interval,proto3" json:"interval,omitempty"`
  446. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  447. XXX_unrecognized []byte `json:"-"`
  448. XXX_sizecache int32 `json:"-"`
  449. }
  450. func (m *ListGroupMembersRequest) Reset() { *m = ListGroupMembersRequest{} }
  451. func (m *ListGroupMembersRequest) String() string { return proto.CompactTextString(m) }
  452. func (*ListGroupMembersRequest) ProtoMessage() {}
  453. func (*ListGroupMembersRequest) Descriptor() ([]byte, []int) {
  454. return fileDescriptor_group_service_82592e08754ba7ee, []int{6}
  455. }
  456. func (m *ListGroupMembersRequest) XXX_Unmarshal(b []byte) error {
  457. return xxx_messageInfo_ListGroupMembersRequest.Unmarshal(m, b)
  458. }
  459. func (m *ListGroupMembersRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  460. return xxx_messageInfo_ListGroupMembersRequest.Marshal(b, m, deterministic)
  461. }
  462. func (dst *ListGroupMembersRequest) XXX_Merge(src proto.Message) {
  463. xxx_messageInfo_ListGroupMembersRequest.Merge(dst, src)
  464. }
  465. func (m *ListGroupMembersRequest) XXX_Size() int {
  466. return xxx_messageInfo_ListGroupMembersRequest.Size(m)
  467. }
  468. func (m *ListGroupMembersRequest) XXX_DiscardUnknown() {
  469. xxx_messageInfo_ListGroupMembersRequest.DiscardUnknown(m)
  470. }
  471. var xxx_messageInfo_ListGroupMembersRequest proto.InternalMessageInfo
  472. func (m *ListGroupMembersRequest) GetName() string {
  473. if m != nil {
  474. return m.Name
  475. }
  476. return ""
  477. }
  478. func (m *ListGroupMembersRequest) GetPageSize() int32 {
  479. if m != nil {
  480. return m.PageSize
  481. }
  482. return 0
  483. }
  484. func (m *ListGroupMembersRequest) GetPageToken() string {
  485. if m != nil {
  486. return m.PageToken
  487. }
  488. return ""
  489. }
  490. func (m *ListGroupMembersRequest) GetFilter() string {
  491. if m != nil {
  492. return m.Filter
  493. }
  494. return ""
  495. }
  496. func (m *ListGroupMembersRequest) GetInterval() *TimeInterval {
  497. if m != nil {
  498. return m.Interval
  499. }
  500. return nil
  501. }
  502. // The `ListGroupMembers` response.
  503. type ListGroupMembersResponse struct {
  504. // A set of monitored resources in the group.
  505. Members []*monitoredres.MonitoredResource `protobuf:"bytes,1,rep,name=members,proto3" json:"members,omitempty"`
  506. // If there are more results than have been returned, then this field is
  507. // set to a non-empty value. To see the additional results, use that value as
  508. // `pageToken` in the next call to this method.
  509. NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
  510. // The total number of elements matching this request.
  511. TotalSize int32 `protobuf:"varint,3,opt,name=total_size,json=totalSize,proto3" json:"total_size,omitempty"`
  512. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  513. XXX_unrecognized []byte `json:"-"`
  514. XXX_sizecache int32 `json:"-"`
  515. }
  516. func (m *ListGroupMembersResponse) Reset() { *m = ListGroupMembersResponse{} }
  517. func (m *ListGroupMembersResponse) String() string { return proto.CompactTextString(m) }
  518. func (*ListGroupMembersResponse) ProtoMessage() {}
  519. func (*ListGroupMembersResponse) Descriptor() ([]byte, []int) {
  520. return fileDescriptor_group_service_82592e08754ba7ee, []int{7}
  521. }
  522. func (m *ListGroupMembersResponse) XXX_Unmarshal(b []byte) error {
  523. return xxx_messageInfo_ListGroupMembersResponse.Unmarshal(m, b)
  524. }
  525. func (m *ListGroupMembersResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  526. return xxx_messageInfo_ListGroupMembersResponse.Marshal(b, m, deterministic)
  527. }
  528. func (dst *ListGroupMembersResponse) XXX_Merge(src proto.Message) {
  529. xxx_messageInfo_ListGroupMembersResponse.Merge(dst, src)
  530. }
  531. func (m *ListGroupMembersResponse) XXX_Size() int {
  532. return xxx_messageInfo_ListGroupMembersResponse.Size(m)
  533. }
  534. func (m *ListGroupMembersResponse) XXX_DiscardUnknown() {
  535. xxx_messageInfo_ListGroupMembersResponse.DiscardUnknown(m)
  536. }
  537. var xxx_messageInfo_ListGroupMembersResponse proto.InternalMessageInfo
  538. func (m *ListGroupMembersResponse) GetMembers() []*monitoredres.MonitoredResource {
  539. if m != nil {
  540. return m.Members
  541. }
  542. return nil
  543. }
  544. func (m *ListGroupMembersResponse) GetNextPageToken() string {
  545. if m != nil {
  546. return m.NextPageToken
  547. }
  548. return ""
  549. }
  550. func (m *ListGroupMembersResponse) GetTotalSize() int32 {
  551. if m != nil {
  552. return m.TotalSize
  553. }
  554. return 0
  555. }
  556. func init() {
  557. proto.RegisterType((*ListGroupsRequest)(nil), "google.monitoring.v3.ListGroupsRequest")
  558. proto.RegisterType((*ListGroupsResponse)(nil), "google.monitoring.v3.ListGroupsResponse")
  559. proto.RegisterType((*GetGroupRequest)(nil), "google.monitoring.v3.GetGroupRequest")
  560. proto.RegisterType((*CreateGroupRequest)(nil), "google.monitoring.v3.CreateGroupRequest")
  561. proto.RegisterType((*UpdateGroupRequest)(nil), "google.monitoring.v3.UpdateGroupRequest")
  562. proto.RegisterType((*DeleteGroupRequest)(nil), "google.monitoring.v3.DeleteGroupRequest")
  563. proto.RegisterType((*ListGroupMembersRequest)(nil), "google.monitoring.v3.ListGroupMembersRequest")
  564. proto.RegisterType((*ListGroupMembersResponse)(nil), "google.monitoring.v3.ListGroupMembersResponse")
  565. }
  566. // Reference imports to suppress errors if they are not otherwise used.
  567. var _ context.Context
  568. var _ grpc.ClientConn
  569. // This is a compile-time assertion to ensure that this generated file
  570. // is compatible with the grpc package it is being compiled against.
  571. const _ = grpc.SupportPackageIsVersion4
  572. // GroupServiceClient is the client API for GroupService service.
  573. //
  574. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  575. type GroupServiceClient interface {
  576. // Lists the existing groups.
  577. ListGroups(ctx context.Context, in *ListGroupsRequest, opts ...grpc.CallOption) (*ListGroupsResponse, error)
  578. // Gets a single group.
  579. GetGroup(ctx context.Context, in *GetGroupRequest, opts ...grpc.CallOption) (*Group, error)
  580. // Creates a new group.
  581. CreateGroup(ctx context.Context, in *CreateGroupRequest, opts ...grpc.CallOption) (*Group, error)
  582. // Updates an existing group.
  583. // You can change any group attributes except `name`.
  584. UpdateGroup(ctx context.Context, in *UpdateGroupRequest, opts ...grpc.CallOption) (*Group, error)
  585. // Deletes an existing group.
  586. DeleteGroup(ctx context.Context, in *DeleteGroupRequest, opts ...grpc.CallOption) (*empty.Empty, error)
  587. // Lists the monitored resources that are members of a group.
  588. ListGroupMembers(ctx context.Context, in *ListGroupMembersRequest, opts ...grpc.CallOption) (*ListGroupMembersResponse, error)
  589. }
  590. type groupServiceClient struct {
  591. cc *grpc.ClientConn
  592. }
  593. func NewGroupServiceClient(cc *grpc.ClientConn) GroupServiceClient {
  594. return &groupServiceClient{cc}
  595. }
  596. func (c *groupServiceClient) ListGroups(ctx context.Context, in *ListGroupsRequest, opts ...grpc.CallOption) (*ListGroupsResponse, error) {
  597. out := new(ListGroupsResponse)
  598. err := c.cc.Invoke(ctx, "/google.monitoring.v3.GroupService/ListGroups", in, out, opts...)
  599. if err != nil {
  600. return nil, err
  601. }
  602. return out, nil
  603. }
  604. func (c *groupServiceClient) GetGroup(ctx context.Context, in *GetGroupRequest, opts ...grpc.CallOption) (*Group, error) {
  605. out := new(Group)
  606. err := c.cc.Invoke(ctx, "/google.monitoring.v3.GroupService/GetGroup", in, out, opts...)
  607. if err != nil {
  608. return nil, err
  609. }
  610. return out, nil
  611. }
  612. func (c *groupServiceClient) CreateGroup(ctx context.Context, in *CreateGroupRequest, opts ...grpc.CallOption) (*Group, error) {
  613. out := new(Group)
  614. err := c.cc.Invoke(ctx, "/google.monitoring.v3.GroupService/CreateGroup", in, out, opts...)
  615. if err != nil {
  616. return nil, err
  617. }
  618. return out, nil
  619. }
  620. func (c *groupServiceClient) UpdateGroup(ctx context.Context, in *UpdateGroupRequest, opts ...grpc.CallOption) (*Group, error) {
  621. out := new(Group)
  622. err := c.cc.Invoke(ctx, "/google.monitoring.v3.GroupService/UpdateGroup", in, out, opts...)
  623. if err != nil {
  624. return nil, err
  625. }
  626. return out, nil
  627. }
  628. func (c *groupServiceClient) DeleteGroup(ctx context.Context, in *DeleteGroupRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
  629. out := new(empty.Empty)
  630. err := c.cc.Invoke(ctx, "/google.monitoring.v3.GroupService/DeleteGroup", in, out, opts...)
  631. if err != nil {
  632. return nil, err
  633. }
  634. return out, nil
  635. }
  636. func (c *groupServiceClient) ListGroupMembers(ctx context.Context, in *ListGroupMembersRequest, opts ...grpc.CallOption) (*ListGroupMembersResponse, error) {
  637. out := new(ListGroupMembersResponse)
  638. err := c.cc.Invoke(ctx, "/google.monitoring.v3.GroupService/ListGroupMembers", in, out, opts...)
  639. if err != nil {
  640. return nil, err
  641. }
  642. return out, nil
  643. }
  644. // GroupServiceServer is the server API for GroupService service.
  645. type GroupServiceServer interface {
  646. // Lists the existing groups.
  647. ListGroups(context.Context, *ListGroupsRequest) (*ListGroupsResponse, error)
  648. // Gets a single group.
  649. GetGroup(context.Context, *GetGroupRequest) (*Group, error)
  650. // Creates a new group.
  651. CreateGroup(context.Context, *CreateGroupRequest) (*Group, error)
  652. // Updates an existing group.
  653. // You can change any group attributes except `name`.
  654. UpdateGroup(context.Context, *UpdateGroupRequest) (*Group, error)
  655. // Deletes an existing group.
  656. DeleteGroup(context.Context, *DeleteGroupRequest) (*empty.Empty, error)
  657. // Lists the monitored resources that are members of a group.
  658. ListGroupMembers(context.Context, *ListGroupMembersRequest) (*ListGroupMembersResponse, error)
  659. }
  660. func RegisterGroupServiceServer(s *grpc.Server, srv GroupServiceServer) {
  661. s.RegisterService(&_GroupService_serviceDesc, srv)
  662. }
  663. func _GroupService_ListGroups_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  664. in := new(ListGroupsRequest)
  665. if err := dec(in); err != nil {
  666. return nil, err
  667. }
  668. if interceptor == nil {
  669. return srv.(GroupServiceServer).ListGroups(ctx, in)
  670. }
  671. info := &grpc.UnaryServerInfo{
  672. Server: srv,
  673. FullMethod: "/google.monitoring.v3.GroupService/ListGroups",
  674. }
  675. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  676. return srv.(GroupServiceServer).ListGroups(ctx, req.(*ListGroupsRequest))
  677. }
  678. return interceptor(ctx, in, info, handler)
  679. }
  680. func _GroupService_GetGroup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  681. in := new(GetGroupRequest)
  682. if err := dec(in); err != nil {
  683. return nil, err
  684. }
  685. if interceptor == nil {
  686. return srv.(GroupServiceServer).GetGroup(ctx, in)
  687. }
  688. info := &grpc.UnaryServerInfo{
  689. Server: srv,
  690. FullMethod: "/google.monitoring.v3.GroupService/GetGroup",
  691. }
  692. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  693. return srv.(GroupServiceServer).GetGroup(ctx, req.(*GetGroupRequest))
  694. }
  695. return interceptor(ctx, in, info, handler)
  696. }
  697. func _GroupService_CreateGroup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  698. in := new(CreateGroupRequest)
  699. if err := dec(in); err != nil {
  700. return nil, err
  701. }
  702. if interceptor == nil {
  703. return srv.(GroupServiceServer).CreateGroup(ctx, in)
  704. }
  705. info := &grpc.UnaryServerInfo{
  706. Server: srv,
  707. FullMethod: "/google.monitoring.v3.GroupService/CreateGroup",
  708. }
  709. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  710. return srv.(GroupServiceServer).CreateGroup(ctx, req.(*CreateGroupRequest))
  711. }
  712. return interceptor(ctx, in, info, handler)
  713. }
  714. func _GroupService_UpdateGroup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  715. in := new(UpdateGroupRequest)
  716. if err := dec(in); err != nil {
  717. return nil, err
  718. }
  719. if interceptor == nil {
  720. return srv.(GroupServiceServer).UpdateGroup(ctx, in)
  721. }
  722. info := &grpc.UnaryServerInfo{
  723. Server: srv,
  724. FullMethod: "/google.monitoring.v3.GroupService/UpdateGroup",
  725. }
  726. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  727. return srv.(GroupServiceServer).UpdateGroup(ctx, req.(*UpdateGroupRequest))
  728. }
  729. return interceptor(ctx, in, info, handler)
  730. }
  731. func _GroupService_DeleteGroup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  732. in := new(DeleteGroupRequest)
  733. if err := dec(in); err != nil {
  734. return nil, err
  735. }
  736. if interceptor == nil {
  737. return srv.(GroupServiceServer).DeleteGroup(ctx, in)
  738. }
  739. info := &grpc.UnaryServerInfo{
  740. Server: srv,
  741. FullMethod: "/google.monitoring.v3.GroupService/DeleteGroup",
  742. }
  743. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  744. return srv.(GroupServiceServer).DeleteGroup(ctx, req.(*DeleteGroupRequest))
  745. }
  746. return interceptor(ctx, in, info, handler)
  747. }
  748. func _GroupService_ListGroupMembers_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  749. in := new(ListGroupMembersRequest)
  750. if err := dec(in); err != nil {
  751. return nil, err
  752. }
  753. if interceptor == nil {
  754. return srv.(GroupServiceServer).ListGroupMembers(ctx, in)
  755. }
  756. info := &grpc.UnaryServerInfo{
  757. Server: srv,
  758. FullMethod: "/google.monitoring.v3.GroupService/ListGroupMembers",
  759. }
  760. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  761. return srv.(GroupServiceServer).ListGroupMembers(ctx, req.(*ListGroupMembersRequest))
  762. }
  763. return interceptor(ctx, in, info, handler)
  764. }
  765. var _GroupService_serviceDesc = grpc.ServiceDesc{
  766. ServiceName: "google.monitoring.v3.GroupService",
  767. HandlerType: (*GroupServiceServer)(nil),
  768. Methods: []grpc.MethodDesc{
  769. {
  770. MethodName: "ListGroups",
  771. Handler: _GroupService_ListGroups_Handler,
  772. },
  773. {
  774. MethodName: "GetGroup",
  775. Handler: _GroupService_GetGroup_Handler,
  776. },
  777. {
  778. MethodName: "CreateGroup",
  779. Handler: _GroupService_CreateGroup_Handler,
  780. },
  781. {
  782. MethodName: "UpdateGroup",
  783. Handler: _GroupService_UpdateGroup_Handler,
  784. },
  785. {
  786. MethodName: "DeleteGroup",
  787. Handler: _GroupService_DeleteGroup_Handler,
  788. },
  789. {
  790. MethodName: "ListGroupMembers",
  791. Handler: _GroupService_ListGroupMembers_Handler,
  792. },
  793. },
  794. Streams: []grpc.StreamDesc{},
  795. Metadata: "google/monitoring/v3/group_service.proto",
  796. }
  797. func init() {
  798. proto.RegisterFile("google/monitoring/v3/group_service.proto", fileDescriptor_group_service_82592e08754ba7ee)
  799. }
  800. var fileDescriptor_group_service_82592e08754ba7ee = []byte{
  801. // 826 bytes of a gzipped FileDescriptorProto
  802. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0x4d, 0x6f, 0xd3, 0x4c,
  803. 0x10, 0x7e, 0xdd, 0xa4, 0x69, 0xb2, 0x69, 0xd5, 0x76, 0x55, 0xf5, 0x8d, 0xdc, 0x0f, 0x05, 0xf7,
  804. 0x83, 0xa8, 0x50, 0x5b, 0x24, 0x07, 0x24, 0x10, 0x3d, 0xb4, 0xa0, 0x82, 0x44, 0xd5, 0xca, 0x2d,
  805. 0x3d, 0xa0, 0x4a, 0x91, 0x9b, 0x4c, 0x8c, 0xc1, 0xde, 0x35, 0xf6, 0x26, 0xd0, 0xa2, 0x4a, 0x80,
  806. 0xc4, 0x81, 0x33, 0x37, 0x6e, 0x1c, 0xe1, 0x2f, 0x70, 0xe2, 0xca, 0x95, 0xbf, 0xc0, 0xff, 0x00,
  807. 0x79, 0xbd, 0x9b, 0x38, 0x9f, 0xed, 0x85, 0x5b, 0xb2, 0xf3, 0x8c, 0x9f, 0x67, 0x66, 0x9f, 0x99,
  808. 0x45, 0x25, 0x9b, 0x52, 0xdb, 0x05, 0xc3, 0xa3, 0xc4, 0x61, 0x34, 0x70, 0x88, 0x6d, 0xb4, 0x2a,
  809. 0x86, 0x1d, 0xd0, 0xa6, 0x5f, 0x0d, 0x21, 0x68, 0x39, 0x35, 0xd0, 0xfd, 0x80, 0x32, 0x8a, 0xe7,
  810. 0x62, 0xa4, 0xde, 0x41, 0xea, 0xad, 0x8a, 0xba, 0x28, 0xf2, 0x2d, 0xdf, 0x31, 0x2c, 0x42, 0x28,
  811. 0xb3, 0x98, 0x43, 0x49, 0x18, 0xe7, 0xa8, 0x2b, 0x89, 0xa8, 0xc8, 0x83, 0x7a, 0x35, 0x80, 0x90,
  812. 0x36, 0x03, 0xf9, 0x61, 0xf5, 0xda, 0x40, 0x09, 0x35, 0xea, 0x79, 0x94, 0x08, 0x48, 0x71, 0xb8,
  813. 0x4a, 0x81, 0x58, 0x10, 0x08, 0xfe, 0xef, 0xb4, 0xd9, 0x30, 0xc0, 0xf3, 0xd9, 0x59, 0x1c, 0xd4,
  814. 0xfe, 0x28, 0x68, 0xf6, 0xb1, 0x13, 0xb2, 0xdd, 0x28, 0x21, 0x34, 0xe1, 0x65, 0x13, 0x42, 0x86,
  815. 0x31, 0x4a, 0x13, 0xcb, 0x83, 0xc2, 0x44, 0x51, 0x29, 0xe5, 0x4c, 0xfe, 0x1b, 0xdf, 0x44, 0xb3,
  816. 0xb5, 0x67, 0x8e, 0x5b, 0x0f, 0x80, 0x54, 0x69, 0xa3, 0xca, 0x19, 0x0a, 0x63, 0x11, 0xe0, 0xe1,
  817. 0x7f, 0xe6, 0xb4, 0x0c, 0xed, 0x37, 0xf8, 0x97, 0xb0, 0x8e, 0xb0, 0x45, 0x6a, 0x10, 0x32, 0x1a,
  818. 0x84, 0x1d, 0x78, 0x4a, 0xc0, 0x67, 0xda, 0x31, 0x89, 0x2f, 0xa3, 0xb9, 0x3a, 0x84, 0x35, 0x20,
  819. 0x75, 0x8b, 0xb0, 0x44, 0x46, 0x5a, 0x64, 0xe0, 0x44, 0x54, 0xe6, 0x2c, 0xa0, 0x9c, 0x6f, 0xd9,
  820. 0x50, 0x0d, 0x9d, 0x73, 0x28, 0x8c, 0x17, 0x95, 0xd2, 0xb8, 0x99, 0x8d, 0x0e, 0x0e, 0x9d, 0x73,
  821. 0xc0, 0x4b, 0x08, 0xf1, 0x20, 0xa3, 0x2f, 0x80, 0x14, 0x32, 0xbc, 0x10, 0x0e, 0x3f, 0x8a, 0x0e,
  822. 0xb6, 0xb3, 0x28, 0xd3, 0x70, 0x5c, 0x06, 0x81, 0x46, 0x11, 0x4e, 0x36, 0x20, 0xf4, 0x29, 0x09,
  823. 0x01, 0xdf, 0x42, 0xe3, 0xb1, 0x00, 0xa5, 0x98, 0x2a, 0xe5, 0xcb, 0x0b, 0xfa, 0xa0, 0x2b, 0xd6,
  824. 0x79, 0x92, 0x19, 0x23, 0xf1, 0x3a, 0x9a, 0x26, 0xf0, 0x9a, 0x55, 0x13, 0xb4, 0xbc, 0x3d, 0xe6,
  825. 0x54, 0x74, 0x7c, 0x20, 0xa9, 0xb5, 0x35, 0x34, 0xbd, 0x0b, 0x31, 0x5f, 0x6f, 0xbf, 0x53, 0x9d,
  826. 0x7e, 0x6b, 0x6f, 0x15, 0x84, 0x77, 0x02, 0xb0, 0x18, 0x0c, 0x84, 0xa6, 0x13, 0x57, 0xd3, 0x16,
  827. 0x1b, 0xf1, 0x5d, 0x4d, 0xec, 0x0a, 0x9a, 0x6a, 0x59, 0xae, 0x53, 0xb7, 0x18, 0x54, 0x29, 0x71,
  828. 0xcf, 0x38, 0x75, 0xd6, 0x9c, 0x94, 0x87, 0xfb, 0xc4, 0x3d, 0xd3, 0x5c, 0x84, 0x9f, 0xf8, 0xf5,
  829. 0x5e, 0x05, 0xff, 0x8a, 0xad, 0x84, 0xf0, 0x7d, 0x70, 0x61, 0x48, 0xbd, 0xc9, 0xd6, 0xfc, 0x50,
  830. 0xd0, 0xff, 0xed, 0x3b, 0xdb, 0x03, 0xef, 0x14, 0x82, 0x91, 0xd6, 0xed, 0x32, 0x4a, 0x6a, 0xa4,
  831. 0x51, 0xd2, 0x3d, 0x46, 0xc1, 0xf3, 0xd2, 0x28, 0xdc, 0x61, 0x39, 0x53, 0xfc, 0xc3, 0x5b, 0x28,
  832. 0xeb, 0x10, 0x06, 0x41, 0xcb, 0x72, 0xb9, 0xbb, 0xf2, 0x65, 0x6d, 0x70, 0x23, 0x8e, 0x1c, 0x0f,
  833. 0x1e, 0x09, 0xa4, 0xd9, 0xce, 0xd1, 0x3e, 0x2b, 0xa8, 0xd0, 0x5f, 0x83, 0x70, 0xdf, 0x6d, 0x34,
  834. 0xe1, 0xc5, 0x47, 0xc2, 0x7f, 0x4b, 0xf2, 0xdb, 0x96, 0xef, 0xe8, 0x7b, 0x72, 0x5d, 0x98, 0x62,
  835. 0x5b, 0x98, 0x12, 0x7d, 0x55, 0x0f, 0x46, 0x45, 0x33, 0xca, 0x2c, 0x37, 0xd9, 0x92, 0x1c, 0x3f,
  836. 0x89, 0x7a, 0x52, 0xfe, 0x9e, 0x41, 0x93, 0x5c, 0xd8, 0x61, 0xbc, 0xe7, 0xf0, 0x07, 0x05, 0xa1,
  837. 0xce, 0x94, 0xe0, 0xeb, 0x83, 0x4b, 0xed, 0x5b, 0x24, 0x6a, 0xe9, 0x72, 0x60, 0x5c, 0xb2, 0xb6,
  838. 0xfa, 0xfe, 0xd7, 0xef, 0x4f, 0x63, 0xcb, 0x78, 0x31, 0x5a, 0x5f, 0x6f, 0xa2, 0x6b, 0xbb, 0xe7,
  839. 0x07, 0xf4, 0x39, 0xd4, 0x58, 0x68, 0x6c, 0x5c, 0xc4, 0x0b, 0x2d, 0xc4, 0x2d, 0x94, 0x95, 0xb3,
  840. 0x83, 0xd7, 0x86, 0x18, 0xaf, 0x7b, 0xb6, 0xd4, 0x51, 0xfe, 0xd4, 0xd6, 0x39, 0x6b, 0x11, 0x2f,
  841. 0x0f, 0x62, 0x15, 0xa4, 0xc6, 0xc6, 0x05, 0x7e, 0xa7, 0xa0, 0x7c, 0x62, 0x18, 0xf1, 0x90, 0xba,
  842. 0xfa, 0xe7, 0x75, 0x34, 0xfd, 0x0d, 0x4e, 0xbf, 0xa6, 0x8d, 0x2c, 0xfa, 0x8e, 0x18, 0xa2, 0x8f,
  843. 0x0a, 0xca, 0x27, 0xc6, 0x71, 0x98, 0x86, 0xfe, 0x89, 0x1d, 0xad, 0xa1, 0xc2, 0x35, 0x6c, 0xaa,
  844. 0xab, 0x5c, 0x43, 0xfc, 0x70, 0x0c, 0x6d, 0x84, 0xd4, 0xf2, 0x0a, 0xe5, 0x13, 0xb3, 0x3a, 0x4c,
  845. 0x4a, 0xff, 0x38, 0xab, 0xf3, 0x12, 0x29, 0x5f, 0x23, 0xfd, 0x41, 0xf4, 0x1a, 0xc9, 0x8b, 0xd8,
  846. 0xb8, 0xec, 0x22, 0xbe, 0x28, 0x68, 0xa6, 0x77, 0x6c, 0xf0, 0xe6, 0x25, 0x2e, 0xeb, 0x5e, 0x11,
  847. 0xaa, 0x7e, 0x55, 0xb8, 0xb0, 0xa6, 0xce, 0xb5, 0x95, 0xf0, 0xfa, 0x68, 0x6d, 0x86, 0x18, 0xc2,
  848. 0xed, 0xaf, 0x0a, 0x2a, 0xd4, 0xa8, 0x37, 0x90, 0x65, 0x7b, 0x36, 0x39, 0x57, 0x07, 0x51, 0x13,
  849. 0x0e, 0x94, 0xa7, 0x5b, 0x02, 0x6a, 0x53, 0xd7, 0x22, 0xb6, 0x4e, 0x03, 0xdb, 0xb0, 0x81, 0xf0,
  850. 0x16, 0x19, 0x71, 0xc8, 0xf2, 0x9d, 0xb0, 0xfb, 0x8d, 0xbf, 0xdb, 0xf9, 0xf7, 0x6d, 0x4c, 0xdd,
  851. 0x8d, 0x3f, 0xb0, 0xe3, 0xd2, 0x66, 0x5d, 0x2e, 0x88, 0x88, 0xf1, 0xb8, 0xf2, 0x53, 0x06, 0x4f,
  852. 0x78, 0xf0, 0xa4, 0x13, 0x3c, 0x39, 0xae, 0x9c, 0x66, 0x38, 0x49, 0xe5, 0x6f, 0x00, 0x00, 0x00,
  853. 0xff, 0xff, 0x86, 0x94, 0xf2, 0xde, 0xed, 0x08, 0x00, 0x00,
  854. }