Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

970 строки
40 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/monitoring/v3/uptime.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 duration "github.com/golang/protobuf/ptypes/duration"
  8. import monitoredres "google.golang.org/genproto/googleapis/api/monitoredres"
  9. // Reference imports to suppress errors if they are not otherwise used.
  10. var _ = proto.Marshal
  11. var _ = fmt.Errorf
  12. var _ = math.Inf
  13. // This is a compile-time assertion to ensure that this generated file
  14. // is compatible with the proto package it is being compiled against.
  15. // A compilation error at this line likely means your copy of the
  16. // proto package needs to be updated.
  17. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  18. // The regions from which an uptime check can be run.
  19. type UptimeCheckRegion int32
  20. const (
  21. // Default value if no region is specified. Will result in uptime checks
  22. // running from all regions.
  23. UptimeCheckRegion_REGION_UNSPECIFIED UptimeCheckRegion = 0
  24. // Allows checks to run from locations within the United States of America.
  25. UptimeCheckRegion_USA UptimeCheckRegion = 1
  26. // Allows checks to run from locations within the continent of Europe.
  27. UptimeCheckRegion_EUROPE UptimeCheckRegion = 2
  28. // Allows checks to run from locations within the continent of South
  29. // America.
  30. UptimeCheckRegion_SOUTH_AMERICA UptimeCheckRegion = 3
  31. // Allows checks to run from locations within the Asia Pacific area (ex:
  32. // Singapore).
  33. UptimeCheckRegion_ASIA_PACIFIC UptimeCheckRegion = 4
  34. )
  35. var UptimeCheckRegion_name = map[int32]string{
  36. 0: "REGION_UNSPECIFIED",
  37. 1: "USA",
  38. 2: "EUROPE",
  39. 3: "SOUTH_AMERICA",
  40. 4: "ASIA_PACIFIC",
  41. }
  42. var UptimeCheckRegion_value = map[string]int32{
  43. "REGION_UNSPECIFIED": 0,
  44. "USA": 1,
  45. "EUROPE": 2,
  46. "SOUTH_AMERICA": 3,
  47. "ASIA_PACIFIC": 4,
  48. }
  49. func (x UptimeCheckRegion) String() string {
  50. return proto.EnumName(UptimeCheckRegion_name, int32(x))
  51. }
  52. func (UptimeCheckRegion) EnumDescriptor() ([]byte, []int) {
  53. return fileDescriptor_uptime_c9a147a1171776fb, []int{0}
  54. }
  55. // The supported resource types that can be used as values of
  56. // `group_resource.resource_type`.
  57. // `INSTANCE` includes `gce_instance` and `aws_ec2_instance` resource types.
  58. // The resource types `gae_app` and `uptime_url` are not valid here because
  59. // group checks on App Engine modules and URLs are not allowed.
  60. type GroupResourceType int32
  61. const (
  62. // Default value (not valid).
  63. GroupResourceType_RESOURCE_TYPE_UNSPECIFIED GroupResourceType = 0
  64. // A group of instances from Google Cloud Platform (GCP) or
  65. // Amazon Web Services (AWS).
  66. GroupResourceType_INSTANCE GroupResourceType = 1
  67. // A group of Amazon ELB load balancers.
  68. GroupResourceType_AWS_ELB_LOAD_BALANCER GroupResourceType = 2
  69. )
  70. var GroupResourceType_name = map[int32]string{
  71. 0: "RESOURCE_TYPE_UNSPECIFIED",
  72. 1: "INSTANCE",
  73. 2: "AWS_ELB_LOAD_BALANCER",
  74. }
  75. var GroupResourceType_value = map[string]int32{
  76. "RESOURCE_TYPE_UNSPECIFIED": 0,
  77. "INSTANCE": 1,
  78. "AWS_ELB_LOAD_BALANCER": 2,
  79. }
  80. func (x GroupResourceType) String() string {
  81. return proto.EnumName(GroupResourceType_name, int32(x))
  82. }
  83. func (GroupResourceType) EnumDescriptor() ([]byte, []int) {
  84. return fileDescriptor_uptime_c9a147a1171776fb, []int{1}
  85. }
  86. // An internal checker allows uptime checks to run on private/internal GCP
  87. // resources.
  88. type InternalChecker struct {
  89. // A unique resource name for this InternalChecker. The format is:
  90. //
  91. //
  92. // `projects/[PROJECT_ID]/internalCheckers/[INTERNAL_CHECKER_ID]`.
  93. //
  94. // PROJECT_ID is the stackdriver workspace project for the
  95. // uptime check config associated with the internal checker.
  96. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  97. // The checker's human-readable name. The display name
  98. // should be unique within a Stackdriver Workspace in order to make it easier
  99. // to identify; however, uniqueness is not enforced.
  100. DisplayName string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
  101. // The [GCP VPC network](https://cloud.google.com/vpc/docs/vpc) where the
  102. // internal resource lives (ex: "default").
  103. Network string `protobuf:"bytes,3,opt,name=network,proto3" json:"network,omitempty"`
  104. // The GCP zone the uptime check should egress from. Only respected for
  105. // internal uptime checks, where internal_network is specified.
  106. GcpZone string `protobuf:"bytes,4,opt,name=gcp_zone,json=gcpZone,proto3" json:"gcp_zone,omitempty"`
  107. // The GCP project_id where the internal checker lives. Not necessary
  108. // the same as the workspace project.
  109. PeerProjectId string `protobuf:"bytes,6,opt,name=peer_project_id,json=peerProjectId,proto3" json:"peer_project_id,omitempty"`
  110. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  111. XXX_unrecognized []byte `json:"-"`
  112. XXX_sizecache int32 `json:"-"`
  113. }
  114. func (m *InternalChecker) Reset() { *m = InternalChecker{} }
  115. func (m *InternalChecker) String() string { return proto.CompactTextString(m) }
  116. func (*InternalChecker) ProtoMessage() {}
  117. func (*InternalChecker) Descriptor() ([]byte, []int) {
  118. return fileDescriptor_uptime_c9a147a1171776fb, []int{0}
  119. }
  120. func (m *InternalChecker) XXX_Unmarshal(b []byte) error {
  121. return xxx_messageInfo_InternalChecker.Unmarshal(m, b)
  122. }
  123. func (m *InternalChecker) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  124. return xxx_messageInfo_InternalChecker.Marshal(b, m, deterministic)
  125. }
  126. func (dst *InternalChecker) XXX_Merge(src proto.Message) {
  127. xxx_messageInfo_InternalChecker.Merge(dst, src)
  128. }
  129. func (m *InternalChecker) XXX_Size() int {
  130. return xxx_messageInfo_InternalChecker.Size(m)
  131. }
  132. func (m *InternalChecker) XXX_DiscardUnknown() {
  133. xxx_messageInfo_InternalChecker.DiscardUnknown(m)
  134. }
  135. var xxx_messageInfo_InternalChecker proto.InternalMessageInfo
  136. func (m *InternalChecker) GetName() string {
  137. if m != nil {
  138. return m.Name
  139. }
  140. return ""
  141. }
  142. func (m *InternalChecker) GetDisplayName() string {
  143. if m != nil {
  144. return m.DisplayName
  145. }
  146. return ""
  147. }
  148. func (m *InternalChecker) GetNetwork() string {
  149. if m != nil {
  150. return m.Network
  151. }
  152. return ""
  153. }
  154. func (m *InternalChecker) GetGcpZone() string {
  155. if m != nil {
  156. return m.GcpZone
  157. }
  158. return ""
  159. }
  160. func (m *InternalChecker) GetPeerProjectId() string {
  161. if m != nil {
  162. return m.PeerProjectId
  163. }
  164. return ""
  165. }
  166. // This message configures which resources and services to monitor for
  167. // availability.
  168. type UptimeCheckConfig struct {
  169. // A unique resource name for this UptimeCheckConfig. The format is:
  170. //
  171. //
  172. // `projects/[PROJECT_ID]/uptimeCheckConfigs/[UPTIME_CHECK_ID]`.
  173. //
  174. // This field should be omitted when creating the uptime check configuration;
  175. // on create, the resource name is assigned by the server and included in the
  176. // response.
  177. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  178. // A human-friendly name for the uptime check configuration. The display name
  179. // should be unique within a Stackdriver Workspace in order to make it easier
  180. // to identify; however, uniqueness is not enforced. Required.
  181. DisplayName string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
  182. // The resource the check is checking. Required.
  183. //
  184. // Types that are valid to be assigned to Resource:
  185. // *UptimeCheckConfig_MonitoredResource
  186. // *UptimeCheckConfig_ResourceGroup_
  187. Resource isUptimeCheckConfig_Resource `protobuf_oneof:"resource"`
  188. // The type of uptime check request.
  189. //
  190. // Types that are valid to be assigned to CheckRequestType:
  191. // *UptimeCheckConfig_HttpCheck_
  192. // *UptimeCheckConfig_TcpCheck_
  193. CheckRequestType isUptimeCheckConfig_CheckRequestType `protobuf_oneof:"check_request_type"`
  194. // How often, in seconds, the uptime check is performed.
  195. // Currently, the only supported values are `60s` (1 minute), `300s`
  196. // (5 minutes), `600s` (10 minutes), and `900s` (15 minutes). Optional,
  197. // defaults to `300s`.
  198. Period *duration.Duration `protobuf:"bytes,7,opt,name=period,proto3" json:"period,omitempty"`
  199. // The maximum amount of time to wait for the request to complete (must be
  200. // between 1 and 60 seconds). Required.
  201. Timeout *duration.Duration `protobuf:"bytes,8,opt,name=timeout,proto3" json:"timeout,omitempty"`
  202. // The expected content on the page the check is run against.
  203. // Currently, only the first entry in the list is supported, and other entries
  204. // will be ignored. The server will look for an exact match of the string in
  205. // the page response's content. This field is optional and should only be
  206. // specified if a content match is required.
  207. ContentMatchers []*UptimeCheckConfig_ContentMatcher `protobuf:"bytes,9,rep,name=content_matchers,json=contentMatchers,proto3" json:"content_matchers,omitempty"`
  208. // The list of regions from which the check will be run.
  209. // Some regions contain one location, and others contain more than one.
  210. // If this field is specified, enough regions to include a minimum of
  211. // 3 locations must be provided, or an error message is returned.
  212. // Not specifying this field will result in uptime checks running from all
  213. // regions.
  214. SelectedRegions []UptimeCheckRegion `protobuf:"varint,10,rep,packed,name=selected_regions,json=selectedRegions,proto3,enum=google.monitoring.v3.UptimeCheckRegion" json:"selected_regions,omitempty"`
  215. // If this is true, then checks are made only from the 'internal_checkers'.
  216. // If it is false, then checks are made only from the 'selected_regions'.
  217. // It is an error to provide 'selected_regions' when is_internal is true,
  218. // or to provide 'internal_checkers' when is_internal is false.
  219. IsInternal bool `protobuf:"varint,15,opt,name=is_internal,json=isInternal,proto3" json:"is_internal,omitempty"`
  220. // The internal checkers that this check will egress from. If `is_internal` is
  221. // true and this list is empty, the check will egress from all the
  222. // InternalCheckers configured for the project that owns this CheckConfig.
  223. InternalCheckers []*InternalChecker `protobuf:"bytes,14,rep,name=internal_checkers,json=internalCheckers,proto3" json:"internal_checkers,omitempty"`
  224. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  225. XXX_unrecognized []byte `json:"-"`
  226. XXX_sizecache int32 `json:"-"`
  227. }
  228. func (m *UptimeCheckConfig) Reset() { *m = UptimeCheckConfig{} }
  229. func (m *UptimeCheckConfig) String() string { return proto.CompactTextString(m) }
  230. func (*UptimeCheckConfig) ProtoMessage() {}
  231. func (*UptimeCheckConfig) Descriptor() ([]byte, []int) {
  232. return fileDescriptor_uptime_c9a147a1171776fb, []int{1}
  233. }
  234. func (m *UptimeCheckConfig) XXX_Unmarshal(b []byte) error {
  235. return xxx_messageInfo_UptimeCheckConfig.Unmarshal(m, b)
  236. }
  237. func (m *UptimeCheckConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  238. return xxx_messageInfo_UptimeCheckConfig.Marshal(b, m, deterministic)
  239. }
  240. func (dst *UptimeCheckConfig) XXX_Merge(src proto.Message) {
  241. xxx_messageInfo_UptimeCheckConfig.Merge(dst, src)
  242. }
  243. func (m *UptimeCheckConfig) XXX_Size() int {
  244. return xxx_messageInfo_UptimeCheckConfig.Size(m)
  245. }
  246. func (m *UptimeCheckConfig) XXX_DiscardUnknown() {
  247. xxx_messageInfo_UptimeCheckConfig.DiscardUnknown(m)
  248. }
  249. var xxx_messageInfo_UptimeCheckConfig proto.InternalMessageInfo
  250. func (m *UptimeCheckConfig) GetName() string {
  251. if m != nil {
  252. return m.Name
  253. }
  254. return ""
  255. }
  256. func (m *UptimeCheckConfig) GetDisplayName() string {
  257. if m != nil {
  258. return m.DisplayName
  259. }
  260. return ""
  261. }
  262. type isUptimeCheckConfig_Resource interface {
  263. isUptimeCheckConfig_Resource()
  264. }
  265. type UptimeCheckConfig_MonitoredResource struct {
  266. MonitoredResource *monitoredres.MonitoredResource `protobuf:"bytes,3,opt,name=monitored_resource,json=monitoredResource,proto3,oneof"`
  267. }
  268. type UptimeCheckConfig_ResourceGroup_ struct {
  269. ResourceGroup *UptimeCheckConfig_ResourceGroup `protobuf:"bytes,4,opt,name=resource_group,json=resourceGroup,proto3,oneof"`
  270. }
  271. func (*UptimeCheckConfig_MonitoredResource) isUptimeCheckConfig_Resource() {}
  272. func (*UptimeCheckConfig_ResourceGroup_) isUptimeCheckConfig_Resource() {}
  273. func (m *UptimeCheckConfig) GetResource() isUptimeCheckConfig_Resource {
  274. if m != nil {
  275. return m.Resource
  276. }
  277. return nil
  278. }
  279. func (m *UptimeCheckConfig) GetMonitoredResource() *monitoredres.MonitoredResource {
  280. if x, ok := m.GetResource().(*UptimeCheckConfig_MonitoredResource); ok {
  281. return x.MonitoredResource
  282. }
  283. return nil
  284. }
  285. func (m *UptimeCheckConfig) GetResourceGroup() *UptimeCheckConfig_ResourceGroup {
  286. if x, ok := m.GetResource().(*UptimeCheckConfig_ResourceGroup_); ok {
  287. return x.ResourceGroup
  288. }
  289. return nil
  290. }
  291. type isUptimeCheckConfig_CheckRequestType interface {
  292. isUptimeCheckConfig_CheckRequestType()
  293. }
  294. type UptimeCheckConfig_HttpCheck_ struct {
  295. HttpCheck *UptimeCheckConfig_HttpCheck `protobuf:"bytes,5,opt,name=http_check,json=httpCheck,proto3,oneof"`
  296. }
  297. type UptimeCheckConfig_TcpCheck_ struct {
  298. TcpCheck *UptimeCheckConfig_TcpCheck `protobuf:"bytes,6,opt,name=tcp_check,json=tcpCheck,proto3,oneof"`
  299. }
  300. func (*UptimeCheckConfig_HttpCheck_) isUptimeCheckConfig_CheckRequestType() {}
  301. func (*UptimeCheckConfig_TcpCheck_) isUptimeCheckConfig_CheckRequestType() {}
  302. func (m *UptimeCheckConfig) GetCheckRequestType() isUptimeCheckConfig_CheckRequestType {
  303. if m != nil {
  304. return m.CheckRequestType
  305. }
  306. return nil
  307. }
  308. func (m *UptimeCheckConfig) GetHttpCheck() *UptimeCheckConfig_HttpCheck {
  309. if x, ok := m.GetCheckRequestType().(*UptimeCheckConfig_HttpCheck_); ok {
  310. return x.HttpCheck
  311. }
  312. return nil
  313. }
  314. func (m *UptimeCheckConfig) GetTcpCheck() *UptimeCheckConfig_TcpCheck {
  315. if x, ok := m.GetCheckRequestType().(*UptimeCheckConfig_TcpCheck_); ok {
  316. return x.TcpCheck
  317. }
  318. return nil
  319. }
  320. func (m *UptimeCheckConfig) GetPeriod() *duration.Duration {
  321. if m != nil {
  322. return m.Period
  323. }
  324. return nil
  325. }
  326. func (m *UptimeCheckConfig) GetTimeout() *duration.Duration {
  327. if m != nil {
  328. return m.Timeout
  329. }
  330. return nil
  331. }
  332. func (m *UptimeCheckConfig) GetContentMatchers() []*UptimeCheckConfig_ContentMatcher {
  333. if m != nil {
  334. return m.ContentMatchers
  335. }
  336. return nil
  337. }
  338. func (m *UptimeCheckConfig) GetSelectedRegions() []UptimeCheckRegion {
  339. if m != nil {
  340. return m.SelectedRegions
  341. }
  342. return nil
  343. }
  344. func (m *UptimeCheckConfig) GetIsInternal() bool {
  345. if m != nil {
  346. return m.IsInternal
  347. }
  348. return false
  349. }
  350. func (m *UptimeCheckConfig) GetInternalCheckers() []*InternalChecker {
  351. if m != nil {
  352. return m.InternalCheckers
  353. }
  354. return nil
  355. }
  356. // XXX_OneofFuncs is for the internal use of the proto package.
  357. func (*UptimeCheckConfig) 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{}) {
  358. return _UptimeCheckConfig_OneofMarshaler, _UptimeCheckConfig_OneofUnmarshaler, _UptimeCheckConfig_OneofSizer, []interface{}{
  359. (*UptimeCheckConfig_MonitoredResource)(nil),
  360. (*UptimeCheckConfig_ResourceGroup_)(nil),
  361. (*UptimeCheckConfig_HttpCheck_)(nil),
  362. (*UptimeCheckConfig_TcpCheck_)(nil),
  363. }
  364. }
  365. func _UptimeCheckConfig_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
  366. m := msg.(*UptimeCheckConfig)
  367. // resource
  368. switch x := m.Resource.(type) {
  369. case *UptimeCheckConfig_MonitoredResource:
  370. b.EncodeVarint(3<<3 | proto.WireBytes)
  371. if err := b.EncodeMessage(x.MonitoredResource); err != nil {
  372. return err
  373. }
  374. case *UptimeCheckConfig_ResourceGroup_:
  375. b.EncodeVarint(4<<3 | proto.WireBytes)
  376. if err := b.EncodeMessage(x.ResourceGroup); err != nil {
  377. return err
  378. }
  379. case nil:
  380. default:
  381. return fmt.Errorf("UptimeCheckConfig.Resource has unexpected type %T", x)
  382. }
  383. // check_request_type
  384. switch x := m.CheckRequestType.(type) {
  385. case *UptimeCheckConfig_HttpCheck_:
  386. b.EncodeVarint(5<<3 | proto.WireBytes)
  387. if err := b.EncodeMessage(x.HttpCheck); err != nil {
  388. return err
  389. }
  390. case *UptimeCheckConfig_TcpCheck_:
  391. b.EncodeVarint(6<<3 | proto.WireBytes)
  392. if err := b.EncodeMessage(x.TcpCheck); err != nil {
  393. return err
  394. }
  395. case nil:
  396. default:
  397. return fmt.Errorf("UptimeCheckConfig.CheckRequestType has unexpected type %T", x)
  398. }
  399. return nil
  400. }
  401. func _UptimeCheckConfig_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
  402. m := msg.(*UptimeCheckConfig)
  403. switch tag {
  404. case 3: // resource.monitored_resource
  405. if wire != proto.WireBytes {
  406. return true, proto.ErrInternalBadWireType
  407. }
  408. msg := new(monitoredres.MonitoredResource)
  409. err := b.DecodeMessage(msg)
  410. m.Resource = &UptimeCheckConfig_MonitoredResource{msg}
  411. return true, err
  412. case 4: // resource.resource_group
  413. if wire != proto.WireBytes {
  414. return true, proto.ErrInternalBadWireType
  415. }
  416. msg := new(UptimeCheckConfig_ResourceGroup)
  417. err := b.DecodeMessage(msg)
  418. m.Resource = &UptimeCheckConfig_ResourceGroup_{msg}
  419. return true, err
  420. case 5: // check_request_type.http_check
  421. if wire != proto.WireBytes {
  422. return true, proto.ErrInternalBadWireType
  423. }
  424. msg := new(UptimeCheckConfig_HttpCheck)
  425. err := b.DecodeMessage(msg)
  426. m.CheckRequestType = &UptimeCheckConfig_HttpCheck_{msg}
  427. return true, err
  428. case 6: // check_request_type.tcp_check
  429. if wire != proto.WireBytes {
  430. return true, proto.ErrInternalBadWireType
  431. }
  432. msg := new(UptimeCheckConfig_TcpCheck)
  433. err := b.DecodeMessage(msg)
  434. m.CheckRequestType = &UptimeCheckConfig_TcpCheck_{msg}
  435. return true, err
  436. default:
  437. return false, nil
  438. }
  439. }
  440. func _UptimeCheckConfig_OneofSizer(msg proto.Message) (n int) {
  441. m := msg.(*UptimeCheckConfig)
  442. // resource
  443. switch x := m.Resource.(type) {
  444. case *UptimeCheckConfig_MonitoredResource:
  445. s := proto.Size(x.MonitoredResource)
  446. n += 1 // tag and wire
  447. n += proto.SizeVarint(uint64(s))
  448. n += s
  449. case *UptimeCheckConfig_ResourceGroup_:
  450. s := proto.Size(x.ResourceGroup)
  451. n += 1 // tag and wire
  452. n += proto.SizeVarint(uint64(s))
  453. n += s
  454. case nil:
  455. default:
  456. panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
  457. }
  458. // check_request_type
  459. switch x := m.CheckRequestType.(type) {
  460. case *UptimeCheckConfig_HttpCheck_:
  461. s := proto.Size(x.HttpCheck)
  462. n += 1 // tag and wire
  463. n += proto.SizeVarint(uint64(s))
  464. n += s
  465. case *UptimeCheckConfig_TcpCheck_:
  466. s := proto.Size(x.TcpCheck)
  467. n += 1 // tag and wire
  468. n += proto.SizeVarint(uint64(s))
  469. n += s
  470. case nil:
  471. default:
  472. panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
  473. }
  474. return n
  475. }
  476. // The resource submessage for group checks. It can be used instead of a
  477. // monitored resource, when multiple resources are being monitored.
  478. type UptimeCheckConfig_ResourceGroup struct {
  479. // The group of resources being monitored. Should be only the
  480. // group_id, not projects/<project_id>/groups/<group_id>.
  481. GroupId string `protobuf:"bytes,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
  482. // The resource type of the group members.
  483. ResourceType GroupResourceType `protobuf:"varint,2,opt,name=resource_type,json=resourceType,proto3,enum=google.monitoring.v3.GroupResourceType" json:"resource_type,omitempty"`
  484. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  485. XXX_unrecognized []byte `json:"-"`
  486. XXX_sizecache int32 `json:"-"`
  487. }
  488. func (m *UptimeCheckConfig_ResourceGroup) Reset() { *m = UptimeCheckConfig_ResourceGroup{} }
  489. func (m *UptimeCheckConfig_ResourceGroup) String() string { return proto.CompactTextString(m) }
  490. func (*UptimeCheckConfig_ResourceGroup) ProtoMessage() {}
  491. func (*UptimeCheckConfig_ResourceGroup) Descriptor() ([]byte, []int) {
  492. return fileDescriptor_uptime_c9a147a1171776fb, []int{1, 0}
  493. }
  494. func (m *UptimeCheckConfig_ResourceGroup) XXX_Unmarshal(b []byte) error {
  495. return xxx_messageInfo_UptimeCheckConfig_ResourceGroup.Unmarshal(m, b)
  496. }
  497. func (m *UptimeCheckConfig_ResourceGroup) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  498. return xxx_messageInfo_UptimeCheckConfig_ResourceGroup.Marshal(b, m, deterministic)
  499. }
  500. func (dst *UptimeCheckConfig_ResourceGroup) XXX_Merge(src proto.Message) {
  501. xxx_messageInfo_UptimeCheckConfig_ResourceGroup.Merge(dst, src)
  502. }
  503. func (m *UptimeCheckConfig_ResourceGroup) XXX_Size() int {
  504. return xxx_messageInfo_UptimeCheckConfig_ResourceGroup.Size(m)
  505. }
  506. func (m *UptimeCheckConfig_ResourceGroup) XXX_DiscardUnknown() {
  507. xxx_messageInfo_UptimeCheckConfig_ResourceGroup.DiscardUnknown(m)
  508. }
  509. var xxx_messageInfo_UptimeCheckConfig_ResourceGroup proto.InternalMessageInfo
  510. func (m *UptimeCheckConfig_ResourceGroup) GetGroupId() string {
  511. if m != nil {
  512. return m.GroupId
  513. }
  514. return ""
  515. }
  516. func (m *UptimeCheckConfig_ResourceGroup) GetResourceType() GroupResourceType {
  517. if m != nil {
  518. return m.ResourceType
  519. }
  520. return GroupResourceType_RESOURCE_TYPE_UNSPECIFIED
  521. }
  522. // Information involved in an HTTP/HTTPS uptime check request.
  523. type UptimeCheckConfig_HttpCheck struct {
  524. // If true, use HTTPS instead of HTTP to run the check.
  525. UseSsl bool `protobuf:"varint,1,opt,name=use_ssl,json=useSsl,proto3" json:"use_ssl,omitempty"`
  526. // The path to the page to run the check against. Will be combined with the
  527. // host (specified within the MonitoredResource) and port to construct the
  528. // full URL. Optional (defaults to "/").
  529. Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
  530. // The port to the page to run the check against. Will be combined with host
  531. // (specified within the MonitoredResource) and path to construct the full
  532. // URL. Optional (defaults to 80 without SSL, or 443 with SSL).
  533. Port int32 `protobuf:"varint,3,opt,name=port,proto3" json:"port,omitempty"`
  534. // The authentication information. Optional when creating an HTTP check;
  535. // defaults to empty.
  536. AuthInfo *UptimeCheckConfig_HttpCheck_BasicAuthentication `protobuf:"bytes,4,opt,name=auth_info,json=authInfo,proto3" json:"auth_info,omitempty"`
  537. // Boolean specifiying whether to encrypt the header information.
  538. // Encryption should be specified for any headers related to authentication
  539. // that you do not wish to be seen when retrieving the configuration. The
  540. // server will be responsible for encrypting the headers.
  541. // On Get/List calls, if mask_headers is set to True then the headers
  542. // will be obscured with ******.
  543. MaskHeaders bool `protobuf:"varint,5,opt,name=mask_headers,json=maskHeaders,proto3" json:"mask_headers,omitempty"`
  544. // The list of headers to send as part of the uptime check request.
  545. // If two headers have the same key and different values, they should
  546. // be entered as a single header, with the value being a comma-separated
  547. // list of all the desired values as described at
  548. // https://www.w3.org/Protocols/rfc2616/rfc2616.txt (page 31).
  549. // Entering two separate headers with the same key in a Create call will
  550. // cause the first to be overwritten by the second.
  551. // The maximum number of headers allowed is 100.
  552. Headers map[string]string `protobuf:"bytes,6,rep,name=headers,proto3" json:"headers,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  553. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  554. XXX_unrecognized []byte `json:"-"`
  555. XXX_sizecache int32 `json:"-"`
  556. }
  557. func (m *UptimeCheckConfig_HttpCheck) Reset() { *m = UptimeCheckConfig_HttpCheck{} }
  558. func (m *UptimeCheckConfig_HttpCheck) String() string { return proto.CompactTextString(m) }
  559. func (*UptimeCheckConfig_HttpCheck) ProtoMessage() {}
  560. func (*UptimeCheckConfig_HttpCheck) Descriptor() ([]byte, []int) {
  561. return fileDescriptor_uptime_c9a147a1171776fb, []int{1, 1}
  562. }
  563. func (m *UptimeCheckConfig_HttpCheck) XXX_Unmarshal(b []byte) error {
  564. return xxx_messageInfo_UptimeCheckConfig_HttpCheck.Unmarshal(m, b)
  565. }
  566. func (m *UptimeCheckConfig_HttpCheck) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  567. return xxx_messageInfo_UptimeCheckConfig_HttpCheck.Marshal(b, m, deterministic)
  568. }
  569. func (dst *UptimeCheckConfig_HttpCheck) XXX_Merge(src proto.Message) {
  570. xxx_messageInfo_UptimeCheckConfig_HttpCheck.Merge(dst, src)
  571. }
  572. func (m *UptimeCheckConfig_HttpCheck) XXX_Size() int {
  573. return xxx_messageInfo_UptimeCheckConfig_HttpCheck.Size(m)
  574. }
  575. func (m *UptimeCheckConfig_HttpCheck) XXX_DiscardUnknown() {
  576. xxx_messageInfo_UptimeCheckConfig_HttpCheck.DiscardUnknown(m)
  577. }
  578. var xxx_messageInfo_UptimeCheckConfig_HttpCheck proto.InternalMessageInfo
  579. func (m *UptimeCheckConfig_HttpCheck) GetUseSsl() bool {
  580. if m != nil {
  581. return m.UseSsl
  582. }
  583. return false
  584. }
  585. func (m *UptimeCheckConfig_HttpCheck) GetPath() string {
  586. if m != nil {
  587. return m.Path
  588. }
  589. return ""
  590. }
  591. func (m *UptimeCheckConfig_HttpCheck) GetPort() int32 {
  592. if m != nil {
  593. return m.Port
  594. }
  595. return 0
  596. }
  597. func (m *UptimeCheckConfig_HttpCheck) GetAuthInfo() *UptimeCheckConfig_HttpCheck_BasicAuthentication {
  598. if m != nil {
  599. return m.AuthInfo
  600. }
  601. return nil
  602. }
  603. func (m *UptimeCheckConfig_HttpCheck) GetMaskHeaders() bool {
  604. if m != nil {
  605. return m.MaskHeaders
  606. }
  607. return false
  608. }
  609. func (m *UptimeCheckConfig_HttpCheck) GetHeaders() map[string]string {
  610. if m != nil {
  611. return m.Headers
  612. }
  613. return nil
  614. }
  615. // A type of authentication to perform against the specified resource or URL
  616. // that uses username and password.
  617. // Currently, only Basic authentication is supported in Uptime Monitoring.
  618. type UptimeCheckConfig_HttpCheck_BasicAuthentication struct {
  619. // The username to authenticate.
  620. Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
  621. // The password to authenticate.
  622. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
  623. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  624. XXX_unrecognized []byte `json:"-"`
  625. XXX_sizecache int32 `json:"-"`
  626. }
  627. func (m *UptimeCheckConfig_HttpCheck_BasicAuthentication) Reset() {
  628. *m = UptimeCheckConfig_HttpCheck_BasicAuthentication{}
  629. }
  630. func (m *UptimeCheckConfig_HttpCheck_BasicAuthentication) String() string {
  631. return proto.CompactTextString(m)
  632. }
  633. func (*UptimeCheckConfig_HttpCheck_BasicAuthentication) ProtoMessage() {}
  634. func (*UptimeCheckConfig_HttpCheck_BasicAuthentication) Descriptor() ([]byte, []int) {
  635. return fileDescriptor_uptime_c9a147a1171776fb, []int{1, 1, 0}
  636. }
  637. func (m *UptimeCheckConfig_HttpCheck_BasicAuthentication) XXX_Unmarshal(b []byte) error {
  638. return xxx_messageInfo_UptimeCheckConfig_HttpCheck_BasicAuthentication.Unmarshal(m, b)
  639. }
  640. func (m *UptimeCheckConfig_HttpCheck_BasicAuthentication) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  641. return xxx_messageInfo_UptimeCheckConfig_HttpCheck_BasicAuthentication.Marshal(b, m, deterministic)
  642. }
  643. func (dst *UptimeCheckConfig_HttpCheck_BasicAuthentication) XXX_Merge(src proto.Message) {
  644. xxx_messageInfo_UptimeCheckConfig_HttpCheck_BasicAuthentication.Merge(dst, src)
  645. }
  646. func (m *UptimeCheckConfig_HttpCheck_BasicAuthentication) XXX_Size() int {
  647. return xxx_messageInfo_UptimeCheckConfig_HttpCheck_BasicAuthentication.Size(m)
  648. }
  649. func (m *UptimeCheckConfig_HttpCheck_BasicAuthentication) XXX_DiscardUnknown() {
  650. xxx_messageInfo_UptimeCheckConfig_HttpCheck_BasicAuthentication.DiscardUnknown(m)
  651. }
  652. var xxx_messageInfo_UptimeCheckConfig_HttpCheck_BasicAuthentication proto.InternalMessageInfo
  653. func (m *UptimeCheckConfig_HttpCheck_BasicAuthentication) GetUsername() string {
  654. if m != nil {
  655. return m.Username
  656. }
  657. return ""
  658. }
  659. func (m *UptimeCheckConfig_HttpCheck_BasicAuthentication) GetPassword() string {
  660. if m != nil {
  661. return m.Password
  662. }
  663. return ""
  664. }
  665. // Information required for a TCP uptime check request.
  666. type UptimeCheckConfig_TcpCheck struct {
  667. // The port to the page to run the check against. Will be combined with host
  668. // (specified within the MonitoredResource) to construct the full URL.
  669. // Required.
  670. Port int32 `protobuf:"varint,1,opt,name=port,proto3" json:"port,omitempty"`
  671. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  672. XXX_unrecognized []byte `json:"-"`
  673. XXX_sizecache int32 `json:"-"`
  674. }
  675. func (m *UptimeCheckConfig_TcpCheck) Reset() { *m = UptimeCheckConfig_TcpCheck{} }
  676. func (m *UptimeCheckConfig_TcpCheck) String() string { return proto.CompactTextString(m) }
  677. func (*UptimeCheckConfig_TcpCheck) ProtoMessage() {}
  678. func (*UptimeCheckConfig_TcpCheck) Descriptor() ([]byte, []int) {
  679. return fileDescriptor_uptime_c9a147a1171776fb, []int{1, 2}
  680. }
  681. func (m *UptimeCheckConfig_TcpCheck) XXX_Unmarshal(b []byte) error {
  682. return xxx_messageInfo_UptimeCheckConfig_TcpCheck.Unmarshal(m, b)
  683. }
  684. func (m *UptimeCheckConfig_TcpCheck) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  685. return xxx_messageInfo_UptimeCheckConfig_TcpCheck.Marshal(b, m, deterministic)
  686. }
  687. func (dst *UptimeCheckConfig_TcpCheck) XXX_Merge(src proto.Message) {
  688. xxx_messageInfo_UptimeCheckConfig_TcpCheck.Merge(dst, src)
  689. }
  690. func (m *UptimeCheckConfig_TcpCheck) XXX_Size() int {
  691. return xxx_messageInfo_UptimeCheckConfig_TcpCheck.Size(m)
  692. }
  693. func (m *UptimeCheckConfig_TcpCheck) XXX_DiscardUnknown() {
  694. xxx_messageInfo_UptimeCheckConfig_TcpCheck.DiscardUnknown(m)
  695. }
  696. var xxx_messageInfo_UptimeCheckConfig_TcpCheck proto.InternalMessageInfo
  697. func (m *UptimeCheckConfig_TcpCheck) GetPort() int32 {
  698. if m != nil {
  699. return m.Port
  700. }
  701. return 0
  702. }
  703. // Used to perform string matching. It allows substring and regular
  704. // expressions, together with their negations.
  705. type UptimeCheckConfig_ContentMatcher struct {
  706. // String or regex content to match (max 1024 bytes)
  707. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
  708. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  709. XXX_unrecognized []byte `json:"-"`
  710. XXX_sizecache int32 `json:"-"`
  711. }
  712. func (m *UptimeCheckConfig_ContentMatcher) Reset() { *m = UptimeCheckConfig_ContentMatcher{} }
  713. func (m *UptimeCheckConfig_ContentMatcher) String() string { return proto.CompactTextString(m) }
  714. func (*UptimeCheckConfig_ContentMatcher) ProtoMessage() {}
  715. func (*UptimeCheckConfig_ContentMatcher) Descriptor() ([]byte, []int) {
  716. return fileDescriptor_uptime_c9a147a1171776fb, []int{1, 3}
  717. }
  718. func (m *UptimeCheckConfig_ContentMatcher) XXX_Unmarshal(b []byte) error {
  719. return xxx_messageInfo_UptimeCheckConfig_ContentMatcher.Unmarshal(m, b)
  720. }
  721. func (m *UptimeCheckConfig_ContentMatcher) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  722. return xxx_messageInfo_UptimeCheckConfig_ContentMatcher.Marshal(b, m, deterministic)
  723. }
  724. func (dst *UptimeCheckConfig_ContentMatcher) XXX_Merge(src proto.Message) {
  725. xxx_messageInfo_UptimeCheckConfig_ContentMatcher.Merge(dst, src)
  726. }
  727. func (m *UptimeCheckConfig_ContentMatcher) XXX_Size() int {
  728. return xxx_messageInfo_UptimeCheckConfig_ContentMatcher.Size(m)
  729. }
  730. func (m *UptimeCheckConfig_ContentMatcher) XXX_DiscardUnknown() {
  731. xxx_messageInfo_UptimeCheckConfig_ContentMatcher.DiscardUnknown(m)
  732. }
  733. var xxx_messageInfo_UptimeCheckConfig_ContentMatcher proto.InternalMessageInfo
  734. func (m *UptimeCheckConfig_ContentMatcher) GetContent() string {
  735. if m != nil {
  736. return m.Content
  737. }
  738. return ""
  739. }
  740. // Contains the region, location, and list of IP
  741. // addresses where checkers in the location run from.
  742. type UptimeCheckIp struct {
  743. // A broad region category in which the IP address is located.
  744. Region UptimeCheckRegion `protobuf:"varint,1,opt,name=region,proto3,enum=google.monitoring.v3.UptimeCheckRegion" json:"region,omitempty"`
  745. // A more specific location within the region that typically encodes
  746. // a particular city/town/metro (and its containing state/province or country)
  747. // within the broader umbrella region category.
  748. Location string `protobuf:"bytes,2,opt,name=location,proto3" json:"location,omitempty"`
  749. // The IP address from which the uptime check originates. This is a full
  750. // IP address (not an IP address range). Most IP addresses, as of this
  751. // publication, are in IPv4 format; however, one should not rely on the
  752. // IP addresses being in IPv4 format indefinitely and should support
  753. // interpreting this field in either IPv4 or IPv6 format.
  754. IpAddress string `protobuf:"bytes,3,opt,name=ip_address,json=ipAddress,proto3" json:"ip_address,omitempty"`
  755. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  756. XXX_unrecognized []byte `json:"-"`
  757. XXX_sizecache int32 `json:"-"`
  758. }
  759. func (m *UptimeCheckIp) Reset() { *m = UptimeCheckIp{} }
  760. func (m *UptimeCheckIp) String() string { return proto.CompactTextString(m) }
  761. func (*UptimeCheckIp) ProtoMessage() {}
  762. func (*UptimeCheckIp) Descriptor() ([]byte, []int) {
  763. return fileDescriptor_uptime_c9a147a1171776fb, []int{2}
  764. }
  765. func (m *UptimeCheckIp) XXX_Unmarshal(b []byte) error {
  766. return xxx_messageInfo_UptimeCheckIp.Unmarshal(m, b)
  767. }
  768. func (m *UptimeCheckIp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  769. return xxx_messageInfo_UptimeCheckIp.Marshal(b, m, deterministic)
  770. }
  771. func (dst *UptimeCheckIp) XXX_Merge(src proto.Message) {
  772. xxx_messageInfo_UptimeCheckIp.Merge(dst, src)
  773. }
  774. func (m *UptimeCheckIp) XXX_Size() int {
  775. return xxx_messageInfo_UptimeCheckIp.Size(m)
  776. }
  777. func (m *UptimeCheckIp) XXX_DiscardUnknown() {
  778. xxx_messageInfo_UptimeCheckIp.DiscardUnknown(m)
  779. }
  780. var xxx_messageInfo_UptimeCheckIp proto.InternalMessageInfo
  781. func (m *UptimeCheckIp) GetRegion() UptimeCheckRegion {
  782. if m != nil {
  783. return m.Region
  784. }
  785. return UptimeCheckRegion_REGION_UNSPECIFIED
  786. }
  787. func (m *UptimeCheckIp) GetLocation() string {
  788. if m != nil {
  789. return m.Location
  790. }
  791. return ""
  792. }
  793. func (m *UptimeCheckIp) GetIpAddress() string {
  794. if m != nil {
  795. return m.IpAddress
  796. }
  797. return ""
  798. }
  799. func init() {
  800. proto.RegisterType((*InternalChecker)(nil), "google.monitoring.v3.InternalChecker")
  801. proto.RegisterType((*UptimeCheckConfig)(nil), "google.monitoring.v3.UptimeCheckConfig")
  802. proto.RegisterType((*UptimeCheckConfig_ResourceGroup)(nil), "google.monitoring.v3.UptimeCheckConfig.ResourceGroup")
  803. proto.RegisterType((*UptimeCheckConfig_HttpCheck)(nil), "google.monitoring.v3.UptimeCheckConfig.HttpCheck")
  804. proto.RegisterMapType((map[string]string)(nil), "google.monitoring.v3.UptimeCheckConfig.HttpCheck.HeadersEntry")
  805. proto.RegisterType((*UptimeCheckConfig_HttpCheck_BasicAuthentication)(nil), "google.monitoring.v3.UptimeCheckConfig.HttpCheck.BasicAuthentication")
  806. proto.RegisterType((*UptimeCheckConfig_TcpCheck)(nil), "google.monitoring.v3.UptimeCheckConfig.TcpCheck")
  807. proto.RegisterType((*UptimeCheckConfig_ContentMatcher)(nil), "google.monitoring.v3.UptimeCheckConfig.ContentMatcher")
  808. proto.RegisterType((*UptimeCheckIp)(nil), "google.monitoring.v3.UptimeCheckIp")
  809. proto.RegisterEnum("google.monitoring.v3.UptimeCheckRegion", UptimeCheckRegion_name, UptimeCheckRegion_value)
  810. proto.RegisterEnum("google.monitoring.v3.GroupResourceType", GroupResourceType_name, GroupResourceType_value)
  811. }
  812. func init() {
  813. proto.RegisterFile("google/monitoring/v3/uptime.proto", fileDescriptor_uptime_c9a147a1171776fb)
  814. }
  815. var fileDescriptor_uptime_c9a147a1171776fb = []byte{
  816. // 1036 bytes of a gzipped FileDescriptorProto
  817. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x56, 0xed, 0x6e, 0xe3, 0x44,
  818. 0x17, 0xae, 0x9b, 0x36, 0x1f, 0x27, 0xfd, 0x70, 0xe7, 0xed, 0x0b, 0x6e, 0xa4, 0x2e, 0xdd, 0x22,
  819. 0xa0, 0xea, 0x8f, 0x84, 0x6d, 0x04, 0x42, 0x8b, 0xb4, 0xc8, 0x49, 0x4d, 0x13, 0xa9, 0x4d, 0xa2,
  820. 0x49, 0xb3, 0xc0, 0x52, 0x31, 0x72, 0xed, 0xa9, 0x63, 0x9a, 0x78, 0x8c, 0x67, 0xdc, 0xa5, 0xdc,
  821. 0x02, 0x97, 0x81, 0xf8, 0xc3, 0x15, 0x70, 0x0d, 0x5c, 0x00, 0xd7, 0x83, 0x66, 0xec, 0x49, 0x9b,
  822. 0xb6, 0x68, 0x5b, 0xfe, 0xcd, 0x73, 0x3e, 0x9e, 0x39, 0x73, 0xe6, 0x3c, 0x63, 0xc3, 0xf3, 0x80,
  823. 0xb1, 0x60, 0x42, 0x1b, 0x53, 0x16, 0x85, 0x82, 0x25, 0x61, 0x14, 0x34, 0xae, 0x9a, 0x8d, 0x34,
  824. 0x16, 0xe1, 0x94, 0xd6, 0xe3, 0x84, 0x09, 0x86, 0x36, 0xb3, 0x90, 0xfa, 0x4d, 0x48, 0xfd, 0xaa,
  825. 0x59, 0xfb, 0x30, 0x4f, 0x74, 0xe3, 0x50, 0x27, 0x53, 0x9f, 0x24, 0x94, 0xb3, 0x34, 0xf1, 0xf2,
  826. 0xd4, 0xda, 0xb3, 0x3c, 0x48, 0xa1, 0xf3, 0xf4, 0xa2, 0xe1, 0xa7, 0x89, 0x2b, 0x42, 0x16, 0x65,
  827. 0xfe, 0xdd, 0xdf, 0x0d, 0x58, 0xef, 0x46, 0x82, 0x26, 0x91, 0x3b, 0x69, 0x8f, 0xa9, 0x77, 0x49,
  828. 0x13, 0x84, 0x60, 0x29, 0x72, 0xa7, 0xd4, 0x32, 0x76, 0x8c, 0xbd, 0x0a, 0x56, 0x6b, 0xf4, 0x1c,
  829. 0x56, 0xfc, 0x90, 0xc7, 0x13, 0xf7, 0x9a, 0x28, 0xdf, 0xa2, 0xf2, 0x55, 0x73, 0x5b, 0x4f, 0x86,
  830. 0x58, 0x50, 0x8a, 0xa8, 0x78, 0xcb, 0x92, 0x4b, 0xab, 0xa0, 0xbc, 0x1a, 0xa2, 0x2d, 0x28, 0x07,
  831. 0x5e, 0x4c, 0x7e, 0x61, 0x11, 0xb5, 0x96, 0x32, 0x57, 0xe0, 0xc5, 0x6f, 0x58, 0x44, 0xd1, 0xc7,
  832. 0xb0, 0x1e, 0x53, 0x9a, 0x90, 0x38, 0x61, 0x3f, 0x52, 0x4f, 0x90, 0xd0, 0xb7, 0x8a, 0x2a, 0x62,
  833. 0x55, 0x9a, 0x07, 0x99, 0xb5, 0xeb, 0xef, 0xfe, 0x5d, 0x85, 0x8d, 0x91, 0xea, 0x89, 0xaa, 0xb2,
  834. 0xcd, 0xa2, 0x8b, 0x30, 0xf8, 0xaf, 0x95, 0xf6, 0x00, 0xdd, 0x6f, 0x98, 0x2a, 0xba, 0x7a, 0xb0,
  835. 0x5d, 0xcf, 0x9b, 0xed, 0xc6, 0x61, 0xfd, 0x44, 0x47, 0xe1, 0x3c, 0xa8, 0xb3, 0x80, 0x37, 0xa6,
  836. 0x77, 0x8d, 0xe8, 0x07, 0x58, 0xd3, 0x2c, 0x24, 0x48, 0x58, 0x1a, 0xab, 0x53, 0x56, 0x0f, 0x3e,
  837. 0xab, 0x3f, 0x74, 0x71, 0xf5, 0x7b, 0xe7, 0xa8, 0x6b, 0xa6, 0x23, 0x99, 0xdc, 0x59, 0xc0, 0xab,
  838. 0xc9, 0x6d, 0x03, 0xc2, 0x00, 0x63, 0x21, 0x62, 0xe2, 0xc9, 0x14, 0x6b, 0x59, 0x71, 0xbf, 0x78,
  839. 0x2c, 0x77, 0x47, 0x88, 0x58, 0xe1, 0x8e, 0x81, 0x2b, 0x63, 0x0d, 0x50, 0x1f, 0x2a, 0xc2, 0xd3,
  840. 0x94, 0x45, 0x45, 0xf9, 0xe9, 0x63, 0x29, 0x4f, 0xbd, 0x19, 0x63, 0x59, 0xe4, 0x6b, 0xf4, 0x02,
  841. 0x8a, 0x31, 0x4d, 0x42, 0xe6, 0x5b, 0x25, 0xc5, 0xb6, 0xa5, 0xd9, 0xf4, 0xe8, 0xd5, 0x0f, 0xf3,
  842. 0xd1, 0xc3, 0x79, 0x20, 0x6a, 0x42, 0x49, 0x52, 0xb3, 0x54, 0x58, 0xe5, 0x77, 0xe5, 0xe8, 0x48,
  843. 0xe4, 0x82, 0xe9, 0xb1, 0x48, 0xd0, 0x48, 0x90, 0xa9, 0x2b, 0xbc, 0x31, 0x4d, 0xb8, 0x55, 0xd9,
  844. 0x29, 0xec, 0x55, 0x0f, 0x3e, 0x7f, 0x6c, 0xfd, 0xed, 0x2c, 0xff, 0x24, 0x4b, 0xc7, 0xeb, 0xde,
  845. 0x1c, 0xe6, 0x08, 0x83, 0xc9, 0xe9, 0x84, 0x7a, 0x42, 0x8d, 0x47, 0x10, 0xb2, 0x88, 0x5b, 0xb0,
  846. 0x53, 0xd8, 0x5b, 0x3b, 0xf8, 0xe4, 0x9d, 0x5b, 0x60, 0x15, 0x8f, 0xd7, 0x35, 0x41, 0x86, 0x39,
  847. 0xfa, 0x00, 0xaa, 0x21, 0x27, 0x61, 0x2e, 0x35, 0x6b, 0x7d, 0xc7, 0xd8, 0x2b, 0x63, 0x08, 0xb9,
  848. 0x16, 0x1f, 0xc2, 0xb0, 0xa1, 0xbd, 0xd9, 0xad, 0xc8, 0x83, 0xad, 0xa9, 0x83, 0x7d, 0xf4, 0xf0,
  849. 0xae, 0x77, 0x74, 0x8b, 0xcd, 0x70, 0xde, 0xc0, 0x6b, 0x3f, 0xc3, 0xea, 0xdc, 0x68, 0x29, 0x25,
  850. 0xca, 0x85, 0xd4, 0x99, 0x91, 0x2b, 0x51, 0xe2, 0xae, 0x8f, 0x8e, 0x61, 0x36, 0x75, 0x44, 0x5c,
  851. 0xc7, 0x99, 0x70, 0xfe, 0xf5, 0xc4, 0x8a, 0x4e, 0x73, 0x9f, 0x5e, 0xc7, 0x14, 0xaf, 0x24, 0xb7,
  852. 0x50, 0xed, 0xcf, 0x02, 0x54, 0x66, 0x93, 0x87, 0xde, 0x87, 0x52, 0xca, 0x29, 0xe1, 0x7c, 0xa2,
  853. 0x76, 0x2d, 0xe3, 0x62, 0xca, 0xe9, 0x90, 0x4f, 0xa4, 0x80, 0x63, 0x57, 0x8c, 0x73, 0x91, 0xaa,
  854. 0xb5, 0xb2, 0xb1, 0x44, 0x28, 0x3d, 0x2e, 0x63, 0xb5, 0x46, 0xe7, 0x50, 0x71, 0x53, 0x31, 0x26,
  855. 0x61, 0x74, 0xc1, 0x72, 0x71, 0x39, 0x4f, 0x16, 0x40, 0xbd, 0xe5, 0xf2, 0xd0, 0xb3, 0x53, 0x31,
  856. 0xa6, 0x91, 0x08, 0xbd, 0x6c, 0xae, 0xca, 0x92, 0xb7, 0x1b, 0x5d, 0x30, 0xf9, 0x70, 0x4c, 0x5d,
  857. 0x7e, 0x49, 0xc6, 0xd4, 0xf5, 0x65, 0xef, 0x97, 0x55, 0xa5, 0x55, 0x69, 0xeb, 0x64, 0x26, 0xf4,
  858. 0x2d, 0x94, 0xb4, 0xb7, 0xa8, 0x6e, 0xe6, 0xd5, 0xd3, 0x8b, 0xc8, 0xb9, 0x9c, 0x48, 0x24, 0xd7,
  859. 0x58, 0xd3, 0xd5, 0x4e, 0xe0, 0x7f, 0x0f, 0x54, 0x87, 0x6a, 0x50, 0x4e, 0xb9, 0xbc, 0xd3, 0xd9,
  860. 0x23, 0x37, 0xc3, 0xd2, 0x17, 0xbb, 0x9c, 0xbf, 0x65, 0x89, 0x9f, 0xf7, 0x6f, 0x86, 0x6b, 0x2f,
  861. 0x61, 0xe5, 0xf6, 0x3e, 0xc8, 0x84, 0xc2, 0x25, 0xbd, 0xce, 0x29, 0xe4, 0x12, 0x6d, 0xc2, 0xf2,
  862. 0x95, 0x3b, 0x49, 0xf5, 0xfb, 0x98, 0x81, 0x97, 0x8b, 0x5f, 0x18, 0xb5, 0x67, 0x50, 0xd6, 0x02,
  863. 0x9f, 0xdd, 0x85, 0x71, 0x73, 0x17, 0xb5, 0x7d, 0x58, 0x9b, 0x17, 0x90, 0x7c, 0xf9, 0x73, 0x09,
  864. 0xe9, 0xa1, 0xca, 0x61, 0x0b, 0xa0, 0xac, 0xc7, 0xa2, 0xb5, 0x09, 0x48, 0xcd, 0x35, 0x49, 0xe8,
  865. 0x4f, 0x29, 0xe5, 0x42, 0x4d, 0xd9, 0xee, 0xaf, 0x06, 0xac, 0xde, 0x6a, 0x57, 0x37, 0x46, 0x5f,
  866. 0x41, 0x31, 0x13, 0x9d, 0x22, 0x7b, 0x82, 0xe6, 0xf2, 0x34, 0xd9, 0x98, 0x09, 0xcb, 0x1a, 0xa8,
  867. 0x1b, 0xa3, 0x31, 0xda, 0x06, 0x08, 0x63, 0xe2, 0xfa, 0x7e, 0x42, 0x39, 0xcf, 0xbf, 0x53, 0x95,
  868. 0x30, 0xb6, 0x33, 0xc3, 0x3e, 0x9d, 0xfb, 0xca, 0x64, 0xbc, 0xe8, 0x3d, 0x40, 0xd8, 0x39, 0xea,
  869. 0xf6, 0x7b, 0x64, 0xd4, 0x1b, 0x0e, 0x9c, 0x76, 0xf7, 0xeb, 0xae, 0x73, 0x68, 0x2e, 0xa0, 0x12,
  870. 0x14, 0x46, 0x43, 0xdb, 0x34, 0x10, 0x40, 0xd1, 0x19, 0xe1, 0xfe, 0xc0, 0x31, 0x17, 0xd1, 0x06,
  871. 0xac, 0x0e, 0xfb, 0xa3, 0xd3, 0x0e, 0xb1, 0x4f, 0x1c, 0xdc, 0x6d, 0xdb, 0x66, 0x01, 0x99, 0xb0,
  872. 0x62, 0x0f, 0xbb, 0x36, 0x19, 0xd8, 0x32, 0xb5, 0x6d, 0x2e, 0xed, 0x7f, 0x0f, 0x1b, 0xf7, 0x04,
  873. 0x84, 0xb6, 0x61, 0x0b, 0x3b, 0xc3, 0xfe, 0x08, 0xb7, 0x1d, 0x72, 0xfa, 0xdd, 0xc0, 0xb9, 0xb3,
  874. 0xdb, 0x0a, 0x94, 0xbb, 0xbd, 0xe1, 0xa9, 0xdd, 0x6b, 0x3b, 0xa6, 0x81, 0xb6, 0xe0, 0xff, 0xf6,
  875. 0x37, 0x43, 0xe2, 0x1c, 0xb7, 0xc8, 0x71, 0xdf, 0x3e, 0x24, 0x2d, 0xfb, 0x58, 0x7a, 0xb0, 0xb9,
  876. 0xd8, 0xfa, 0xcd, 0x00, 0xcb, 0x63, 0xd3, 0x07, 0xbb, 0xd6, 0xaa, 0x66, 0xc7, 0x1b, 0xc8, 0xf7,
  877. 0x75, 0x60, 0xbc, 0x79, 0x95, 0x07, 0x05, 0x6c, 0xe2, 0x46, 0x41, 0x9d, 0x25, 0x41, 0x23, 0xa0,
  878. 0x91, 0x7a, 0x7d, 0x1b, 0x99, 0xcb, 0x8d, 0x43, 0x3e, 0xff, 0x6f, 0xf2, 0xe5, 0x0d, 0xfa, 0x63,
  879. 0xb1, 0x76, 0x94, 0x11, 0xb4, 0x27, 0x2c, 0xf5, 0xf5, 0xf7, 0x52, 0xee, 0xf5, 0xba, 0xf9, 0x97,
  880. 0x76, 0x9e, 0x29, 0xe7, 0xd9, 0x8d, 0xf3, 0xec, 0x75, 0xf3, 0xbc, 0xa8, 0x36, 0x69, 0xfe, 0x13,
  881. 0x00, 0x00, 0xff, 0xff, 0x0a, 0x0a, 0xbb, 0x6b, 0xff, 0x08, 0x00, 0x00,
  882. }