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
36 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/monitoring/v3/uptime_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 field_mask "google.golang.org/genproto/protobuf/field_mask"
  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 protocol for the `ListUptimeCheckConfigs` request.
  24. type ListUptimeCheckConfigsRequest struct {
  25. // The project whose uptime check configurations are listed. The format
  26. // is `projects/[PROJECT_ID]`.
  27. Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
  28. // The maximum number of results to return in a single response. The server
  29. // may further constrain the maximum number of results returned in a single
  30. // page. If the page_size is <=0, the server will decide the number of results
  31. // to be returned.
  32. PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  33. // If this field is not empty then it must contain the `nextPageToken` value
  34. // returned by a previous call to this method. Using this field causes the
  35. // method to return more results from the previous method call.
  36. PageToken string `protobuf:"bytes,4,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
  37. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  38. XXX_unrecognized []byte `json:"-"`
  39. XXX_sizecache int32 `json:"-"`
  40. }
  41. func (m *ListUptimeCheckConfigsRequest) Reset() { *m = ListUptimeCheckConfigsRequest{} }
  42. func (m *ListUptimeCheckConfigsRequest) String() string { return proto.CompactTextString(m) }
  43. func (*ListUptimeCheckConfigsRequest) ProtoMessage() {}
  44. func (*ListUptimeCheckConfigsRequest) Descriptor() ([]byte, []int) {
  45. return fileDescriptor_uptime_service_54cfcb7f292c1e2c, []int{0}
  46. }
  47. func (m *ListUptimeCheckConfigsRequest) XXX_Unmarshal(b []byte) error {
  48. return xxx_messageInfo_ListUptimeCheckConfigsRequest.Unmarshal(m, b)
  49. }
  50. func (m *ListUptimeCheckConfigsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  51. return xxx_messageInfo_ListUptimeCheckConfigsRequest.Marshal(b, m, deterministic)
  52. }
  53. func (dst *ListUptimeCheckConfigsRequest) XXX_Merge(src proto.Message) {
  54. xxx_messageInfo_ListUptimeCheckConfigsRequest.Merge(dst, src)
  55. }
  56. func (m *ListUptimeCheckConfigsRequest) XXX_Size() int {
  57. return xxx_messageInfo_ListUptimeCheckConfigsRequest.Size(m)
  58. }
  59. func (m *ListUptimeCheckConfigsRequest) XXX_DiscardUnknown() {
  60. xxx_messageInfo_ListUptimeCheckConfigsRequest.DiscardUnknown(m)
  61. }
  62. var xxx_messageInfo_ListUptimeCheckConfigsRequest proto.InternalMessageInfo
  63. func (m *ListUptimeCheckConfigsRequest) GetParent() string {
  64. if m != nil {
  65. return m.Parent
  66. }
  67. return ""
  68. }
  69. func (m *ListUptimeCheckConfigsRequest) GetPageSize() int32 {
  70. if m != nil {
  71. return m.PageSize
  72. }
  73. return 0
  74. }
  75. func (m *ListUptimeCheckConfigsRequest) GetPageToken() string {
  76. if m != nil {
  77. return m.PageToken
  78. }
  79. return ""
  80. }
  81. // The protocol for the `ListUptimeCheckConfigs` response.
  82. type ListUptimeCheckConfigsResponse struct {
  83. // The returned uptime check configurations.
  84. UptimeCheckConfigs []*UptimeCheckConfig `protobuf:"bytes,1,rep,name=uptime_check_configs,json=uptimeCheckConfigs,proto3" json:"uptime_check_configs,omitempty"`
  85. // This field represents the pagination token to retrieve the next page of
  86. // results. If the value is empty, it means no further results for the
  87. // request. To retrieve the next page of results, the value of the
  88. // next_page_token is passed to the subsequent List method call (in the
  89. // request message's page_token field).
  90. NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
  91. // The total number of uptime check configurations for the project,
  92. // irrespective of any pagination.
  93. TotalSize int32 `protobuf:"varint,3,opt,name=total_size,json=totalSize,proto3" json:"total_size,omitempty"`
  94. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  95. XXX_unrecognized []byte `json:"-"`
  96. XXX_sizecache int32 `json:"-"`
  97. }
  98. func (m *ListUptimeCheckConfigsResponse) Reset() { *m = ListUptimeCheckConfigsResponse{} }
  99. func (m *ListUptimeCheckConfigsResponse) String() string { return proto.CompactTextString(m) }
  100. func (*ListUptimeCheckConfigsResponse) ProtoMessage() {}
  101. func (*ListUptimeCheckConfigsResponse) Descriptor() ([]byte, []int) {
  102. return fileDescriptor_uptime_service_54cfcb7f292c1e2c, []int{1}
  103. }
  104. func (m *ListUptimeCheckConfigsResponse) XXX_Unmarshal(b []byte) error {
  105. return xxx_messageInfo_ListUptimeCheckConfigsResponse.Unmarshal(m, b)
  106. }
  107. func (m *ListUptimeCheckConfigsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  108. return xxx_messageInfo_ListUptimeCheckConfigsResponse.Marshal(b, m, deterministic)
  109. }
  110. func (dst *ListUptimeCheckConfigsResponse) XXX_Merge(src proto.Message) {
  111. xxx_messageInfo_ListUptimeCheckConfigsResponse.Merge(dst, src)
  112. }
  113. func (m *ListUptimeCheckConfigsResponse) XXX_Size() int {
  114. return xxx_messageInfo_ListUptimeCheckConfigsResponse.Size(m)
  115. }
  116. func (m *ListUptimeCheckConfigsResponse) XXX_DiscardUnknown() {
  117. xxx_messageInfo_ListUptimeCheckConfigsResponse.DiscardUnknown(m)
  118. }
  119. var xxx_messageInfo_ListUptimeCheckConfigsResponse proto.InternalMessageInfo
  120. func (m *ListUptimeCheckConfigsResponse) GetUptimeCheckConfigs() []*UptimeCheckConfig {
  121. if m != nil {
  122. return m.UptimeCheckConfigs
  123. }
  124. return nil
  125. }
  126. func (m *ListUptimeCheckConfigsResponse) GetNextPageToken() string {
  127. if m != nil {
  128. return m.NextPageToken
  129. }
  130. return ""
  131. }
  132. func (m *ListUptimeCheckConfigsResponse) GetTotalSize() int32 {
  133. if m != nil {
  134. return m.TotalSize
  135. }
  136. return 0
  137. }
  138. // The protocol for the `GetUptimeCheckConfig` request.
  139. type GetUptimeCheckConfigRequest struct {
  140. // The uptime check configuration to retrieve. The format
  141. // is `projects/[PROJECT_ID]/uptimeCheckConfigs/[UPTIME_CHECK_ID]`.
  142. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  143. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  144. XXX_unrecognized []byte `json:"-"`
  145. XXX_sizecache int32 `json:"-"`
  146. }
  147. func (m *GetUptimeCheckConfigRequest) Reset() { *m = GetUptimeCheckConfigRequest{} }
  148. func (m *GetUptimeCheckConfigRequest) String() string { return proto.CompactTextString(m) }
  149. func (*GetUptimeCheckConfigRequest) ProtoMessage() {}
  150. func (*GetUptimeCheckConfigRequest) Descriptor() ([]byte, []int) {
  151. return fileDescriptor_uptime_service_54cfcb7f292c1e2c, []int{2}
  152. }
  153. func (m *GetUptimeCheckConfigRequest) XXX_Unmarshal(b []byte) error {
  154. return xxx_messageInfo_GetUptimeCheckConfigRequest.Unmarshal(m, b)
  155. }
  156. func (m *GetUptimeCheckConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  157. return xxx_messageInfo_GetUptimeCheckConfigRequest.Marshal(b, m, deterministic)
  158. }
  159. func (dst *GetUptimeCheckConfigRequest) XXX_Merge(src proto.Message) {
  160. xxx_messageInfo_GetUptimeCheckConfigRequest.Merge(dst, src)
  161. }
  162. func (m *GetUptimeCheckConfigRequest) XXX_Size() int {
  163. return xxx_messageInfo_GetUptimeCheckConfigRequest.Size(m)
  164. }
  165. func (m *GetUptimeCheckConfigRequest) XXX_DiscardUnknown() {
  166. xxx_messageInfo_GetUptimeCheckConfigRequest.DiscardUnknown(m)
  167. }
  168. var xxx_messageInfo_GetUptimeCheckConfigRequest proto.InternalMessageInfo
  169. func (m *GetUptimeCheckConfigRequest) GetName() string {
  170. if m != nil {
  171. return m.Name
  172. }
  173. return ""
  174. }
  175. // The protocol for the `CreateUptimeCheckConfig` request.
  176. type CreateUptimeCheckConfigRequest struct {
  177. // The project in which to create the uptime check. The format
  178. // is `projects/[PROJECT_ID]`.
  179. Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
  180. // The new uptime check configuration.
  181. UptimeCheckConfig *UptimeCheckConfig `protobuf:"bytes,2,opt,name=uptime_check_config,json=uptimeCheckConfig,proto3" json:"uptime_check_config,omitempty"`
  182. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  183. XXX_unrecognized []byte `json:"-"`
  184. XXX_sizecache int32 `json:"-"`
  185. }
  186. func (m *CreateUptimeCheckConfigRequest) Reset() { *m = CreateUptimeCheckConfigRequest{} }
  187. func (m *CreateUptimeCheckConfigRequest) String() string { return proto.CompactTextString(m) }
  188. func (*CreateUptimeCheckConfigRequest) ProtoMessage() {}
  189. func (*CreateUptimeCheckConfigRequest) Descriptor() ([]byte, []int) {
  190. return fileDescriptor_uptime_service_54cfcb7f292c1e2c, []int{3}
  191. }
  192. func (m *CreateUptimeCheckConfigRequest) XXX_Unmarshal(b []byte) error {
  193. return xxx_messageInfo_CreateUptimeCheckConfigRequest.Unmarshal(m, b)
  194. }
  195. func (m *CreateUptimeCheckConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  196. return xxx_messageInfo_CreateUptimeCheckConfigRequest.Marshal(b, m, deterministic)
  197. }
  198. func (dst *CreateUptimeCheckConfigRequest) XXX_Merge(src proto.Message) {
  199. xxx_messageInfo_CreateUptimeCheckConfigRequest.Merge(dst, src)
  200. }
  201. func (m *CreateUptimeCheckConfigRequest) XXX_Size() int {
  202. return xxx_messageInfo_CreateUptimeCheckConfigRequest.Size(m)
  203. }
  204. func (m *CreateUptimeCheckConfigRequest) XXX_DiscardUnknown() {
  205. xxx_messageInfo_CreateUptimeCheckConfigRequest.DiscardUnknown(m)
  206. }
  207. var xxx_messageInfo_CreateUptimeCheckConfigRequest proto.InternalMessageInfo
  208. func (m *CreateUptimeCheckConfigRequest) GetParent() string {
  209. if m != nil {
  210. return m.Parent
  211. }
  212. return ""
  213. }
  214. func (m *CreateUptimeCheckConfigRequest) GetUptimeCheckConfig() *UptimeCheckConfig {
  215. if m != nil {
  216. return m.UptimeCheckConfig
  217. }
  218. return nil
  219. }
  220. // The protocol for the `UpdateUptimeCheckConfig` request.
  221. type UpdateUptimeCheckConfigRequest struct {
  222. // Optional. If present, only the listed fields in the current uptime check
  223. // configuration are updated with values from the new configuration. If this
  224. // field is empty, then the current configuration is completely replaced with
  225. // the new configuration.
  226. UpdateMask *field_mask.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
  227. // Required. If an `"updateMask"` has been specified, this field gives
  228. // the values for the set of fields mentioned in the `"updateMask"`. If an
  229. // `"updateMask"` has not been given, this uptime check configuration replaces
  230. // the current configuration. If a field is mentioned in `"updateMask"` but
  231. // the corresonding field is omitted in this partial uptime check
  232. // configuration, it has the effect of deleting/clearing the field from the
  233. // configuration on the server.
  234. //
  235. // The following fields can be updated: `display_name`,
  236. // `http_check`, `tcp_check`, `timeout`, `content_matchers`, and
  237. // `selected_regions`.
  238. UptimeCheckConfig *UptimeCheckConfig `protobuf:"bytes,3,opt,name=uptime_check_config,json=uptimeCheckConfig,proto3" json:"uptime_check_config,omitempty"`
  239. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  240. XXX_unrecognized []byte `json:"-"`
  241. XXX_sizecache int32 `json:"-"`
  242. }
  243. func (m *UpdateUptimeCheckConfigRequest) Reset() { *m = UpdateUptimeCheckConfigRequest{} }
  244. func (m *UpdateUptimeCheckConfigRequest) String() string { return proto.CompactTextString(m) }
  245. func (*UpdateUptimeCheckConfigRequest) ProtoMessage() {}
  246. func (*UpdateUptimeCheckConfigRequest) Descriptor() ([]byte, []int) {
  247. return fileDescriptor_uptime_service_54cfcb7f292c1e2c, []int{4}
  248. }
  249. func (m *UpdateUptimeCheckConfigRequest) XXX_Unmarshal(b []byte) error {
  250. return xxx_messageInfo_UpdateUptimeCheckConfigRequest.Unmarshal(m, b)
  251. }
  252. func (m *UpdateUptimeCheckConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  253. return xxx_messageInfo_UpdateUptimeCheckConfigRequest.Marshal(b, m, deterministic)
  254. }
  255. func (dst *UpdateUptimeCheckConfigRequest) XXX_Merge(src proto.Message) {
  256. xxx_messageInfo_UpdateUptimeCheckConfigRequest.Merge(dst, src)
  257. }
  258. func (m *UpdateUptimeCheckConfigRequest) XXX_Size() int {
  259. return xxx_messageInfo_UpdateUptimeCheckConfigRequest.Size(m)
  260. }
  261. func (m *UpdateUptimeCheckConfigRequest) XXX_DiscardUnknown() {
  262. xxx_messageInfo_UpdateUptimeCheckConfigRequest.DiscardUnknown(m)
  263. }
  264. var xxx_messageInfo_UpdateUptimeCheckConfigRequest proto.InternalMessageInfo
  265. func (m *UpdateUptimeCheckConfigRequest) GetUpdateMask() *field_mask.FieldMask {
  266. if m != nil {
  267. return m.UpdateMask
  268. }
  269. return nil
  270. }
  271. func (m *UpdateUptimeCheckConfigRequest) GetUptimeCheckConfig() *UptimeCheckConfig {
  272. if m != nil {
  273. return m.UptimeCheckConfig
  274. }
  275. return nil
  276. }
  277. // The protocol for the `DeleteUptimeCheckConfig` request.
  278. type DeleteUptimeCheckConfigRequest struct {
  279. // The uptime check configuration to delete. The format
  280. // is `projects/[PROJECT_ID]/uptimeCheckConfigs/[UPTIME_CHECK_ID]`.
  281. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  282. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  283. XXX_unrecognized []byte `json:"-"`
  284. XXX_sizecache int32 `json:"-"`
  285. }
  286. func (m *DeleteUptimeCheckConfigRequest) Reset() { *m = DeleteUptimeCheckConfigRequest{} }
  287. func (m *DeleteUptimeCheckConfigRequest) String() string { return proto.CompactTextString(m) }
  288. func (*DeleteUptimeCheckConfigRequest) ProtoMessage() {}
  289. func (*DeleteUptimeCheckConfigRequest) Descriptor() ([]byte, []int) {
  290. return fileDescriptor_uptime_service_54cfcb7f292c1e2c, []int{5}
  291. }
  292. func (m *DeleteUptimeCheckConfigRequest) XXX_Unmarshal(b []byte) error {
  293. return xxx_messageInfo_DeleteUptimeCheckConfigRequest.Unmarshal(m, b)
  294. }
  295. func (m *DeleteUptimeCheckConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  296. return xxx_messageInfo_DeleteUptimeCheckConfigRequest.Marshal(b, m, deterministic)
  297. }
  298. func (dst *DeleteUptimeCheckConfigRequest) XXX_Merge(src proto.Message) {
  299. xxx_messageInfo_DeleteUptimeCheckConfigRequest.Merge(dst, src)
  300. }
  301. func (m *DeleteUptimeCheckConfigRequest) XXX_Size() int {
  302. return xxx_messageInfo_DeleteUptimeCheckConfigRequest.Size(m)
  303. }
  304. func (m *DeleteUptimeCheckConfigRequest) XXX_DiscardUnknown() {
  305. xxx_messageInfo_DeleteUptimeCheckConfigRequest.DiscardUnknown(m)
  306. }
  307. var xxx_messageInfo_DeleteUptimeCheckConfigRequest proto.InternalMessageInfo
  308. func (m *DeleteUptimeCheckConfigRequest) GetName() string {
  309. if m != nil {
  310. return m.Name
  311. }
  312. return ""
  313. }
  314. // The protocol for the `ListUptimeCheckIps` request.
  315. type ListUptimeCheckIpsRequest struct {
  316. // The maximum number of results to return in a single response. The server
  317. // may further constrain the maximum number of results returned in a single
  318. // page. If the page_size is <=0, the server will decide the number of results
  319. // to be returned.
  320. // NOTE: this field is not yet implemented
  321. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  322. // If this field is not empty then it must contain the `nextPageToken` value
  323. // returned by a previous call to this method. Using this field causes the
  324. // method to return more results from the previous method call.
  325. // NOTE: this field is not yet implemented
  326. PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
  327. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  328. XXX_unrecognized []byte `json:"-"`
  329. XXX_sizecache int32 `json:"-"`
  330. }
  331. func (m *ListUptimeCheckIpsRequest) Reset() { *m = ListUptimeCheckIpsRequest{} }
  332. func (m *ListUptimeCheckIpsRequest) String() string { return proto.CompactTextString(m) }
  333. func (*ListUptimeCheckIpsRequest) ProtoMessage() {}
  334. func (*ListUptimeCheckIpsRequest) Descriptor() ([]byte, []int) {
  335. return fileDescriptor_uptime_service_54cfcb7f292c1e2c, []int{6}
  336. }
  337. func (m *ListUptimeCheckIpsRequest) XXX_Unmarshal(b []byte) error {
  338. return xxx_messageInfo_ListUptimeCheckIpsRequest.Unmarshal(m, b)
  339. }
  340. func (m *ListUptimeCheckIpsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  341. return xxx_messageInfo_ListUptimeCheckIpsRequest.Marshal(b, m, deterministic)
  342. }
  343. func (dst *ListUptimeCheckIpsRequest) XXX_Merge(src proto.Message) {
  344. xxx_messageInfo_ListUptimeCheckIpsRequest.Merge(dst, src)
  345. }
  346. func (m *ListUptimeCheckIpsRequest) XXX_Size() int {
  347. return xxx_messageInfo_ListUptimeCheckIpsRequest.Size(m)
  348. }
  349. func (m *ListUptimeCheckIpsRequest) XXX_DiscardUnknown() {
  350. xxx_messageInfo_ListUptimeCheckIpsRequest.DiscardUnknown(m)
  351. }
  352. var xxx_messageInfo_ListUptimeCheckIpsRequest proto.InternalMessageInfo
  353. func (m *ListUptimeCheckIpsRequest) GetPageSize() int32 {
  354. if m != nil {
  355. return m.PageSize
  356. }
  357. return 0
  358. }
  359. func (m *ListUptimeCheckIpsRequest) GetPageToken() string {
  360. if m != nil {
  361. return m.PageToken
  362. }
  363. return ""
  364. }
  365. // The protocol for the `ListUptimeCheckIps` response.
  366. type ListUptimeCheckIpsResponse struct {
  367. // The returned list of IP addresses (including region and location) that the
  368. // checkers run from.
  369. UptimeCheckIps []*UptimeCheckIp `protobuf:"bytes,1,rep,name=uptime_check_ips,json=uptimeCheckIps,proto3" json:"uptime_check_ips,omitempty"`
  370. // This field represents the pagination token to retrieve the next page of
  371. // results. If the value is empty, it means no further results for the
  372. // request. To retrieve the next page of results, the value of the
  373. // next_page_token is passed to the subsequent List method call (in the
  374. // request message's page_token field).
  375. // NOTE: this field is not yet implemented
  376. NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
  377. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  378. XXX_unrecognized []byte `json:"-"`
  379. XXX_sizecache int32 `json:"-"`
  380. }
  381. func (m *ListUptimeCheckIpsResponse) Reset() { *m = ListUptimeCheckIpsResponse{} }
  382. func (m *ListUptimeCheckIpsResponse) String() string { return proto.CompactTextString(m) }
  383. func (*ListUptimeCheckIpsResponse) ProtoMessage() {}
  384. func (*ListUptimeCheckIpsResponse) Descriptor() ([]byte, []int) {
  385. return fileDescriptor_uptime_service_54cfcb7f292c1e2c, []int{7}
  386. }
  387. func (m *ListUptimeCheckIpsResponse) XXX_Unmarshal(b []byte) error {
  388. return xxx_messageInfo_ListUptimeCheckIpsResponse.Unmarshal(m, b)
  389. }
  390. func (m *ListUptimeCheckIpsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  391. return xxx_messageInfo_ListUptimeCheckIpsResponse.Marshal(b, m, deterministic)
  392. }
  393. func (dst *ListUptimeCheckIpsResponse) XXX_Merge(src proto.Message) {
  394. xxx_messageInfo_ListUptimeCheckIpsResponse.Merge(dst, src)
  395. }
  396. func (m *ListUptimeCheckIpsResponse) XXX_Size() int {
  397. return xxx_messageInfo_ListUptimeCheckIpsResponse.Size(m)
  398. }
  399. func (m *ListUptimeCheckIpsResponse) XXX_DiscardUnknown() {
  400. xxx_messageInfo_ListUptimeCheckIpsResponse.DiscardUnknown(m)
  401. }
  402. var xxx_messageInfo_ListUptimeCheckIpsResponse proto.InternalMessageInfo
  403. func (m *ListUptimeCheckIpsResponse) GetUptimeCheckIps() []*UptimeCheckIp {
  404. if m != nil {
  405. return m.UptimeCheckIps
  406. }
  407. return nil
  408. }
  409. func (m *ListUptimeCheckIpsResponse) GetNextPageToken() string {
  410. if m != nil {
  411. return m.NextPageToken
  412. }
  413. return ""
  414. }
  415. func init() {
  416. proto.RegisterType((*ListUptimeCheckConfigsRequest)(nil), "google.monitoring.v3.ListUptimeCheckConfigsRequest")
  417. proto.RegisterType((*ListUptimeCheckConfigsResponse)(nil), "google.monitoring.v3.ListUptimeCheckConfigsResponse")
  418. proto.RegisterType((*GetUptimeCheckConfigRequest)(nil), "google.monitoring.v3.GetUptimeCheckConfigRequest")
  419. proto.RegisterType((*CreateUptimeCheckConfigRequest)(nil), "google.monitoring.v3.CreateUptimeCheckConfigRequest")
  420. proto.RegisterType((*UpdateUptimeCheckConfigRequest)(nil), "google.monitoring.v3.UpdateUptimeCheckConfigRequest")
  421. proto.RegisterType((*DeleteUptimeCheckConfigRequest)(nil), "google.monitoring.v3.DeleteUptimeCheckConfigRequest")
  422. proto.RegisterType((*ListUptimeCheckIpsRequest)(nil), "google.monitoring.v3.ListUptimeCheckIpsRequest")
  423. proto.RegisterType((*ListUptimeCheckIpsResponse)(nil), "google.monitoring.v3.ListUptimeCheckIpsResponse")
  424. }
  425. // Reference imports to suppress errors if they are not otherwise used.
  426. var _ context.Context
  427. var _ grpc.ClientConn
  428. // This is a compile-time assertion to ensure that this generated file
  429. // is compatible with the grpc package it is being compiled against.
  430. const _ = grpc.SupportPackageIsVersion4
  431. // UptimeCheckServiceClient is the client API for UptimeCheckService service.
  432. //
  433. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  434. type UptimeCheckServiceClient interface {
  435. // Lists the existing valid uptime check configurations for the project,
  436. // leaving out any invalid configurations.
  437. ListUptimeCheckConfigs(ctx context.Context, in *ListUptimeCheckConfigsRequest, opts ...grpc.CallOption) (*ListUptimeCheckConfigsResponse, error)
  438. // Gets a single uptime check configuration.
  439. GetUptimeCheckConfig(ctx context.Context, in *GetUptimeCheckConfigRequest, opts ...grpc.CallOption) (*UptimeCheckConfig, error)
  440. // Creates a new uptime check configuration.
  441. CreateUptimeCheckConfig(ctx context.Context, in *CreateUptimeCheckConfigRequest, opts ...grpc.CallOption) (*UptimeCheckConfig, error)
  442. // Updates an uptime check configuration. You can either replace the entire
  443. // configuration with a new one or replace only certain fields in the current
  444. // configuration by specifying the fields to be updated via `"updateMask"`.
  445. // Returns the updated configuration.
  446. UpdateUptimeCheckConfig(ctx context.Context, in *UpdateUptimeCheckConfigRequest, opts ...grpc.CallOption) (*UptimeCheckConfig, error)
  447. // Deletes an uptime check configuration. Note that this method will fail
  448. // if the uptime check configuration is referenced by an alert policy or
  449. // other dependent configs that would be rendered invalid by the deletion.
  450. DeleteUptimeCheckConfig(ctx context.Context, in *DeleteUptimeCheckConfigRequest, opts ...grpc.CallOption) (*empty.Empty, error)
  451. // Returns the list of IPs that checkers run from
  452. ListUptimeCheckIps(ctx context.Context, in *ListUptimeCheckIpsRequest, opts ...grpc.CallOption) (*ListUptimeCheckIpsResponse, error)
  453. }
  454. type uptimeCheckServiceClient struct {
  455. cc *grpc.ClientConn
  456. }
  457. func NewUptimeCheckServiceClient(cc *grpc.ClientConn) UptimeCheckServiceClient {
  458. return &uptimeCheckServiceClient{cc}
  459. }
  460. func (c *uptimeCheckServiceClient) ListUptimeCheckConfigs(ctx context.Context, in *ListUptimeCheckConfigsRequest, opts ...grpc.CallOption) (*ListUptimeCheckConfigsResponse, error) {
  461. out := new(ListUptimeCheckConfigsResponse)
  462. err := c.cc.Invoke(ctx, "/google.monitoring.v3.UptimeCheckService/ListUptimeCheckConfigs", in, out, opts...)
  463. if err != nil {
  464. return nil, err
  465. }
  466. return out, nil
  467. }
  468. func (c *uptimeCheckServiceClient) GetUptimeCheckConfig(ctx context.Context, in *GetUptimeCheckConfigRequest, opts ...grpc.CallOption) (*UptimeCheckConfig, error) {
  469. out := new(UptimeCheckConfig)
  470. err := c.cc.Invoke(ctx, "/google.monitoring.v3.UptimeCheckService/GetUptimeCheckConfig", in, out, opts...)
  471. if err != nil {
  472. return nil, err
  473. }
  474. return out, nil
  475. }
  476. func (c *uptimeCheckServiceClient) CreateUptimeCheckConfig(ctx context.Context, in *CreateUptimeCheckConfigRequest, opts ...grpc.CallOption) (*UptimeCheckConfig, error) {
  477. out := new(UptimeCheckConfig)
  478. err := c.cc.Invoke(ctx, "/google.monitoring.v3.UptimeCheckService/CreateUptimeCheckConfig", in, out, opts...)
  479. if err != nil {
  480. return nil, err
  481. }
  482. return out, nil
  483. }
  484. func (c *uptimeCheckServiceClient) UpdateUptimeCheckConfig(ctx context.Context, in *UpdateUptimeCheckConfigRequest, opts ...grpc.CallOption) (*UptimeCheckConfig, error) {
  485. out := new(UptimeCheckConfig)
  486. err := c.cc.Invoke(ctx, "/google.monitoring.v3.UptimeCheckService/UpdateUptimeCheckConfig", in, out, opts...)
  487. if err != nil {
  488. return nil, err
  489. }
  490. return out, nil
  491. }
  492. func (c *uptimeCheckServiceClient) DeleteUptimeCheckConfig(ctx context.Context, in *DeleteUptimeCheckConfigRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
  493. out := new(empty.Empty)
  494. err := c.cc.Invoke(ctx, "/google.monitoring.v3.UptimeCheckService/DeleteUptimeCheckConfig", in, out, opts...)
  495. if err != nil {
  496. return nil, err
  497. }
  498. return out, nil
  499. }
  500. func (c *uptimeCheckServiceClient) ListUptimeCheckIps(ctx context.Context, in *ListUptimeCheckIpsRequest, opts ...grpc.CallOption) (*ListUptimeCheckIpsResponse, error) {
  501. out := new(ListUptimeCheckIpsResponse)
  502. err := c.cc.Invoke(ctx, "/google.monitoring.v3.UptimeCheckService/ListUptimeCheckIps", in, out, opts...)
  503. if err != nil {
  504. return nil, err
  505. }
  506. return out, nil
  507. }
  508. // UptimeCheckServiceServer is the server API for UptimeCheckService service.
  509. type UptimeCheckServiceServer interface {
  510. // Lists the existing valid uptime check configurations for the project,
  511. // leaving out any invalid configurations.
  512. ListUptimeCheckConfigs(context.Context, *ListUptimeCheckConfigsRequest) (*ListUptimeCheckConfigsResponse, error)
  513. // Gets a single uptime check configuration.
  514. GetUptimeCheckConfig(context.Context, *GetUptimeCheckConfigRequest) (*UptimeCheckConfig, error)
  515. // Creates a new uptime check configuration.
  516. CreateUptimeCheckConfig(context.Context, *CreateUptimeCheckConfigRequest) (*UptimeCheckConfig, error)
  517. // Updates an uptime check configuration. You can either replace the entire
  518. // configuration with a new one or replace only certain fields in the current
  519. // configuration by specifying the fields to be updated via `"updateMask"`.
  520. // Returns the updated configuration.
  521. UpdateUptimeCheckConfig(context.Context, *UpdateUptimeCheckConfigRequest) (*UptimeCheckConfig, error)
  522. // Deletes an uptime check configuration. Note that this method will fail
  523. // if the uptime check configuration is referenced by an alert policy or
  524. // other dependent configs that would be rendered invalid by the deletion.
  525. DeleteUptimeCheckConfig(context.Context, *DeleteUptimeCheckConfigRequest) (*empty.Empty, error)
  526. // Returns the list of IPs that checkers run from
  527. ListUptimeCheckIps(context.Context, *ListUptimeCheckIpsRequest) (*ListUptimeCheckIpsResponse, error)
  528. }
  529. func RegisterUptimeCheckServiceServer(s *grpc.Server, srv UptimeCheckServiceServer) {
  530. s.RegisterService(&_UptimeCheckService_serviceDesc, srv)
  531. }
  532. func _UptimeCheckService_ListUptimeCheckConfigs_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  533. in := new(ListUptimeCheckConfigsRequest)
  534. if err := dec(in); err != nil {
  535. return nil, err
  536. }
  537. if interceptor == nil {
  538. return srv.(UptimeCheckServiceServer).ListUptimeCheckConfigs(ctx, in)
  539. }
  540. info := &grpc.UnaryServerInfo{
  541. Server: srv,
  542. FullMethod: "/google.monitoring.v3.UptimeCheckService/ListUptimeCheckConfigs",
  543. }
  544. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  545. return srv.(UptimeCheckServiceServer).ListUptimeCheckConfigs(ctx, req.(*ListUptimeCheckConfigsRequest))
  546. }
  547. return interceptor(ctx, in, info, handler)
  548. }
  549. func _UptimeCheckService_GetUptimeCheckConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  550. in := new(GetUptimeCheckConfigRequest)
  551. if err := dec(in); err != nil {
  552. return nil, err
  553. }
  554. if interceptor == nil {
  555. return srv.(UptimeCheckServiceServer).GetUptimeCheckConfig(ctx, in)
  556. }
  557. info := &grpc.UnaryServerInfo{
  558. Server: srv,
  559. FullMethod: "/google.monitoring.v3.UptimeCheckService/GetUptimeCheckConfig",
  560. }
  561. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  562. return srv.(UptimeCheckServiceServer).GetUptimeCheckConfig(ctx, req.(*GetUptimeCheckConfigRequest))
  563. }
  564. return interceptor(ctx, in, info, handler)
  565. }
  566. func _UptimeCheckService_CreateUptimeCheckConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  567. in := new(CreateUptimeCheckConfigRequest)
  568. if err := dec(in); err != nil {
  569. return nil, err
  570. }
  571. if interceptor == nil {
  572. return srv.(UptimeCheckServiceServer).CreateUptimeCheckConfig(ctx, in)
  573. }
  574. info := &grpc.UnaryServerInfo{
  575. Server: srv,
  576. FullMethod: "/google.monitoring.v3.UptimeCheckService/CreateUptimeCheckConfig",
  577. }
  578. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  579. return srv.(UptimeCheckServiceServer).CreateUptimeCheckConfig(ctx, req.(*CreateUptimeCheckConfigRequest))
  580. }
  581. return interceptor(ctx, in, info, handler)
  582. }
  583. func _UptimeCheckService_UpdateUptimeCheckConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  584. in := new(UpdateUptimeCheckConfigRequest)
  585. if err := dec(in); err != nil {
  586. return nil, err
  587. }
  588. if interceptor == nil {
  589. return srv.(UptimeCheckServiceServer).UpdateUptimeCheckConfig(ctx, in)
  590. }
  591. info := &grpc.UnaryServerInfo{
  592. Server: srv,
  593. FullMethod: "/google.monitoring.v3.UptimeCheckService/UpdateUptimeCheckConfig",
  594. }
  595. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  596. return srv.(UptimeCheckServiceServer).UpdateUptimeCheckConfig(ctx, req.(*UpdateUptimeCheckConfigRequest))
  597. }
  598. return interceptor(ctx, in, info, handler)
  599. }
  600. func _UptimeCheckService_DeleteUptimeCheckConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  601. in := new(DeleteUptimeCheckConfigRequest)
  602. if err := dec(in); err != nil {
  603. return nil, err
  604. }
  605. if interceptor == nil {
  606. return srv.(UptimeCheckServiceServer).DeleteUptimeCheckConfig(ctx, in)
  607. }
  608. info := &grpc.UnaryServerInfo{
  609. Server: srv,
  610. FullMethod: "/google.monitoring.v3.UptimeCheckService/DeleteUptimeCheckConfig",
  611. }
  612. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  613. return srv.(UptimeCheckServiceServer).DeleteUptimeCheckConfig(ctx, req.(*DeleteUptimeCheckConfigRequest))
  614. }
  615. return interceptor(ctx, in, info, handler)
  616. }
  617. func _UptimeCheckService_ListUptimeCheckIps_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  618. in := new(ListUptimeCheckIpsRequest)
  619. if err := dec(in); err != nil {
  620. return nil, err
  621. }
  622. if interceptor == nil {
  623. return srv.(UptimeCheckServiceServer).ListUptimeCheckIps(ctx, in)
  624. }
  625. info := &grpc.UnaryServerInfo{
  626. Server: srv,
  627. FullMethod: "/google.monitoring.v3.UptimeCheckService/ListUptimeCheckIps",
  628. }
  629. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  630. return srv.(UptimeCheckServiceServer).ListUptimeCheckIps(ctx, req.(*ListUptimeCheckIpsRequest))
  631. }
  632. return interceptor(ctx, in, info, handler)
  633. }
  634. var _UptimeCheckService_serviceDesc = grpc.ServiceDesc{
  635. ServiceName: "google.monitoring.v3.UptimeCheckService",
  636. HandlerType: (*UptimeCheckServiceServer)(nil),
  637. Methods: []grpc.MethodDesc{
  638. {
  639. MethodName: "ListUptimeCheckConfigs",
  640. Handler: _UptimeCheckService_ListUptimeCheckConfigs_Handler,
  641. },
  642. {
  643. MethodName: "GetUptimeCheckConfig",
  644. Handler: _UptimeCheckService_GetUptimeCheckConfig_Handler,
  645. },
  646. {
  647. MethodName: "CreateUptimeCheckConfig",
  648. Handler: _UptimeCheckService_CreateUptimeCheckConfig_Handler,
  649. },
  650. {
  651. MethodName: "UpdateUptimeCheckConfig",
  652. Handler: _UptimeCheckService_UpdateUptimeCheckConfig_Handler,
  653. },
  654. {
  655. MethodName: "DeleteUptimeCheckConfig",
  656. Handler: _UptimeCheckService_DeleteUptimeCheckConfig_Handler,
  657. },
  658. {
  659. MethodName: "ListUptimeCheckIps",
  660. Handler: _UptimeCheckService_ListUptimeCheckIps_Handler,
  661. },
  662. },
  663. Streams: []grpc.StreamDesc{},
  664. Metadata: "google/monitoring/v3/uptime_service.proto",
  665. }
  666. func init() {
  667. proto.RegisterFile("google/monitoring/v3/uptime_service.proto", fileDescriptor_uptime_service_54cfcb7f292c1e2c)
  668. }
  669. var fileDescriptor_uptime_service_54cfcb7f292c1e2c = []byte{
  670. // 747 bytes of a gzipped FileDescriptorProto
  671. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x56, 0xcd, 0x6e, 0xd3, 0x4a,
  672. 0x14, 0xd6, 0x24, 0xbd, 0x55, 0x7b, 0xaa, 0x7b, 0x2f, 0x0c, 0x51, 0x1b, 0x5c, 0x1a, 0x05, 0x23,
  673. 0x41, 0x89, 0x90, 0x4d, 0x93, 0xae, 0xa8, 0xa8, 0x44, 0x03, 0x54, 0x95, 0xa8, 0x54, 0xa5, 0xb4,
  674. 0x15, 0x50, 0x29, 0x72, 0xd3, 0xa9, 0x31, 0x49, 0x3c, 0xc6, 0x33, 0xae, 0xa0, 0xa8, 0x1b, 0xde,
  675. 0x00, 0x75, 0xc9, 0x9e, 0x45, 0x1f, 0x00, 0xd6, 0xb0, 0x41, 0x62, 0x8b, 0x78, 0x03, 0x1e, 0x04,
  676. 0x79, 0x3c, 0x26, 0x7f, 0x63, 0xe3, 0x88, 0x5d, 0x3c, 0xe7, 0xcc, 0x39, 0xdf, 0xf9, 0xfc, 0x9d,
  677. 0x2f, 0x86, 0x9b, 0x36, 0xa5, 0x76, 0x87, 0x98, 0x5d, 0xea, 0x3a, 0x9c, 0xfa, 0x8e, 0x6b, 0x9b,
  678. 0xc7, 0x35, 0x33, 0xf0, 0xb8, 0xd3, 0x25, 0x4d, 0x46, 0xfc, 0x63, 0xa7, 0x45, 0x0c, 0xcf, 0xa7,
  679. 0x9c, 0xe2, 0x42, 0x94, 0x6a, 0xf4, 0x52, 0x8d, 0xe3, 0x9a, 0x76, 0x45, 0x16, 0xb0, 0x3c, 0xc7,
  680. 0xb4, 0x5c, 0x97, 0x72, 0x8b, 0x3b, 0xd4, 0x65, 0xd1, 0x1d, 0xed, 0x6a, 0x4a, 0x79, 0x99, 0x32,
  681. 0x2f, 0x53, 0xc4, 0xd3, 0x41, 0x70, 0x64, 0x92, 0xae, 0xc7, 0x5f, 0xcb, 0x60, 0x79, 0x38, 0x78,
  682. 0xe4, 0x90, 0xce, 0x61, 0xb3, 0x6b, 0xb1, 0x76, 0x94, 0xa1, 0x33, 0x58, 0x78, 0xe4, 0x30, 0xbe,
  683. 0x23, 0x4a, 0xd6, 0x9f, 0x93, 0x56, 0xbb, 0x4e, 0xdd, 0x23, 0xc7, 0x66, 0x0d, 0xf2, 0x32, 0x20,
  684. 0x8c, 0xe3, 0x59, 0x98, 0xf4, 0x2c, 0x9f, 0xb8, 0xbc, 0x88, 0xca, 0x68, 0x71, 0xba, 0x21, 0x9f,
  685. 0xf0, 0x3c, 0x4c, 0x7b, 0x96, 0x4d, 0x9a, 0xcc, 0x39, 0x21, 0xc5, 0x7c, 0x19, 0x2d, 0xfe, 0xd3,
  686. 0x98, 0x0a, 0x0f, 0xb6, 0x9d, 0x13, 0x82, 0x17, 0x00, 0x44, 0x90, 0xd3, 0x36, 0x71, 0x8b, 0x13,
  687. 0xe2, 0xa2, 0x48, 0x7f, 0x1c, 0x1e, 0xe8, 0x5f, 0x10, 0x94, 0x92, 0xba, 0x32, 0x8f, 0xba, 0x8c,
  688. 0xe0, 0x27, 0x50, 0x90, 0x2c, 0xb6, 0xc2, 0x70, 0xb3, 0x15, 0xc5, 0x8b, 0xa8, 0x9c, 0x5f, 0x9c,
  689. 0xa9, 0xde, 0x30, 0x54, 0x64, 0x1a, 0x23, 0xf5, 0x1a, 0x38, 0x18, 0x69, 0x81, 0xaf, 0xc3, 0xff,
  690. 0x2e, 0x79, 0xc5, 0x9b, 0x7d, 0x08, 0x73, 0x02, 0xe1, 0xbf, 0xe1, 0xf1, 0x56, 0x8c, 0x32, 0x1c,
  691. 0x82, 0x53, 0x6e, 0x75, 0xfa, 0x47, 0x9c, 0x16, 0x27, 0xe1, 0x8c, 0xfa, 0x12, 0xcc, 0xaf, 0x93,
  692. 0xd1, 0x11, 0x62, 0xde, 0x30, 0x4c, 0xb8, 0x56, 0x97, 0x48, 0xd6, 0xc4, 0x6f, 0xfd, 0x1d, 0x82,
  693. 0x52, 0xdd, 0x27, 0x16, 0x27, 0x89, 0xd7, 0x92, 0xe8, 0xde, 0x83, 0x4b, 0x0a, 0x3e, 0x04, 0xf0,
  694. 0x31, 0xe8, 0xb8, 0x38, 0x42, 0x87, 0xfe, 0x11, 0x41, 0x69, 0xc7, 0x3b, 0x4c, 0xc3, 0xb4, 0x02,
  695. 0x33, 0x81, 0xc8, 0x10, 0xc2, 0x91, 0x3d, 0xb5, 0xb8, 0x67, 0xac, 0x2d, 0xe3, 0x61, 0xa8, 0xad,
  696. 0x4d, 0x8b, 0xb5, 0x1b, 0x10, 0xa5, 0x87, 0xbf, 0x93, 0x80, 0xe7, 0xff, 0x1a, 0xf8, 0x32, 0x94,
  697. 0xee, 0x93, 0x0e, 0x49, 0xc1, 0xad, 0x7a, 0x05, 0x7b, 0x70, 0x79, 0x48, 0x79, 0x1b, 0xde, 0x6f,
  698. 0xad, 0x0f, 0x68, 0x3a, 0x97, 0xaa, 0xe9, 0xfc, 0xb0, 0xa6, 0xcf, 0x10, 0x68, 0xaa, 0xca, 0x52,
  699. 0xcf, 0x9b, 0x70, 0x61, 0x80, 0x06, 0xc7, 0x8b, 0xb5, 0x7c, 0xed, 0x8f, 0x1c, 0x6c, 0x78, 0x8d,
  700. 0xff, 0x82, 0x81, 0xb2, 0x59, 0x35, 0x5c, 0xfd, 0x3a, 0x05, 0xb8, 0xaf, 0xd2, 0x76, 0xe4, 0x48,
  701. 0xf8, 0x13, 0x82, 0x59, 0xf5, 0x02, 0xe2, 0x9a, 0x1a, 0x4e, 0xaa, 0x49, 0x68, 0xcb, 0xe3, 0x5d,
  702. 0x8a, 0x38, 0xd1, 0xab, 0x6f, 0xbf, 0xff, 0x3c, 0xcb, 0xdd, 0xc2, 0x95, 0xd0, 0xd4, 0xde, 0x44,
  703. 0x42, 0xbf, 0xeb, 0xf9, 0xf4, 0x05, 0x69, 0x71, 0x66, 0x56, 0x4e, 0x4d, 0xc5, 0xf2, 0x7e, 0x40,
  704. 0x50, 0x50, 0xad, 0x1d, 0x5e, 0x52, 0x43, 0x48, 0x59, 0x51, 0x2d, 0xab, 0xfa, 0x86, 0x80, 0x86,
  705. 0x3a, 0xea, 0x83, 0xa9, 0x40, 0x69, 0x56, 0x4e, 0xf1, 0x67, 0x04, 0x73, 0x09, 0xbb, 0x8e, 0x13,
  706. 0xe8, 0x4a, 0xb7, 0x86, 0xec, 0x70, 0xd7, 0x05, 0xdc, 0x7b, 0xfa, 0x18, 0xbc, 0xde, 0x51, 0x2d,
  707. 0x29, 0xfe, 0x81, 0x60, 0x2e, 0xc1, 0x1b, 0x92, 0x66, 0x48, 0xb7, 0x92, 0xec, 0x33, 0x3c, 0x13,
  708. 0x33, 0xec, 0x54, 0x57, 0xc5, 0x0c, 0x0a, 0x70, 0x46, 0xa6, 0xd7, 0xa0, 0x9e, 0xeb, 0x3d, 0x82,
  709. 0xb9, 0x04, 0xef, 0x48, 0x9a, 0x2b, 0xdd, 0x6a, 0xb4, 0xd9, 0x11, 0x37, 0x7c, 0x10, 0xfe, 0x0d,
  710. 0xc7, 0xca, 0xa9, 0x8c, 0xa3, 0x9c, 0x33, 0x04, 0x78, 0xd4, 0x49, 0xb0, 0x99, 0x69, 0xc7, 0x7a,
  711. 0x6e, 0xa6, 0xdd, 0xce, 0x7e, 0x41, 0x2e, 0xa4, 0x26, 0xd0, 0x16, 0x30, 0xee, 0x7d, 0x65, 0xc4,
  712. 0x39, 0x6b, 0xe7, 0x08, 0x8a, 0x2d, 0xda, 0x55, 0xd6, 0x5c, 0x93, 0x1e, 0x23, 0xed, 0x65, 0x2b,
  713. 0xe4, 0x60, 0x0b, 0x3d, 0x5d, 0x95, 0xb9, 0x36, 0xed, 0x58, 0xae, 0x6d, 0x50, 0xdf, 0x36, 0x6d,
  714. 0xe2, 0x0a, 0x86, 0xcc, 0x28, 0x64, 0x79, 0x0e, 0x1b, 0xfc, 0xb8, 0x59, 0xe9, 0x3d, 0x9d, 0xe7,
  715. 0xb4, 0xf5, 0xa8, 0x40, 0xbd, 0x43, 0x83, 0x43, 0x63, 0xb3, 0xd7, 0x72, 0xb7, 0xf6, 0x2d, 0x0e,
  716. 0xee, 0x8b, 0xe0, 0x7e, 0x2f, 0xb8, 0xbf, 0x5b, 0x3b, 0x98, 0x14, 0x4d, 0x6a, 0xbf, 0x02, 0x00,
  717. 0x00, 0xff, 0xff, 0x27, 0xb8, 0x65, 0x92, 0x9f, 0x09, 0x00, 0x00,
  718. }