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.
 
 
 

842 lines
34 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/streetview/publish/v1/rpcmessages.proto
  3. package publish // import "google.golang.org/genproto/googleapis/streetview/publish/v1"
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import status "google.golang.org/genproto/googleapis/rpc/status"
  8. import field_mask "google.golang.org/genproto/protobuf/field_mask"
  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. // Specifies which view of the [Photo][google.streetview.publish.v1.Photo]
  19. // to include in the response.
  20. type PhotoView int32
  21. const (
  22. // Server reponses do not include the download URL for the photo bytes.
  23. // The default value.
  24. PhotoView_BASIC PhotoView = 0
  25. // Server responses include the download URL for the photo bytes.
  26. PhotoView_INCLUDE_DOWNLOAD_URL PhotoView = 1
  27. )
  28. var PhotoView_name = map[int32]string{
  29. 0: "BASIC",
  30. 1: "INCLUDE_DOWNLOAD_URL",
  31. }
  32. var PhotoView_value = map[string]int32{
  33. "BASIC": 0,
  34. "INCLUDE_DOWNLOAD_URL": 1,
  35. }
  36. func (x PhotoView) String() string {
  37. return proto.EnumName(PhotoView_name, int32(x))
  38. }
  39. func (PhotoView) EnumDescriptor() ([]byte, []int) {
  40. return fileDescriptor_rpcmessages_8c9ea656d647f358, []int{0}
  41. }
  42. // Request to create a [Photo][google.streetview.publish.v1.Photo].
  43. type CreatePhotoRequest struct {
  44. // Required. Photo to create.
  45. Photo *Photo `protobuf:"bytes,1,opt,name=photo,proto3" json:"photo,omitempty"`
  46. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  47. XXX_unrecognized []byte `json:"-"`
  48. XXX_sizecache int32 `json:"-"`
  49. }
  50. func (m *CreatePhotoRequest) Reset() { *m = CreatePhotoRequest{} }
  51. func (m *CreatePhotoRequest) String() string { return proto.CompactTextString(m) }
  52. func (*CreatePhotoRequest) ProtoMessage() {}
  53. func (*CreatePhotoRequest) Descriptor() ([]byte, []int) {
  54. return fileDescriptor_rpcmessages_8c9ea656d647f358, []int{0}
  55. }
  56. func (m *CreatePhotoRequest) XXX_Unmarshal(b []byte) error {
  57. return xxx_messageInfo_CreatePhotoRequest.Unmarshal(m, b)
  58. }
  59. func (m *CreatePhotoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  60. return xxx_messageInfo_CreatePhotoRequest.Marshal(b, m, deterministic)
  61. }
  62. func (dst *CreatePhotoRequest) XXX_Merge(src proto.Message) {
  63. xxx_messageInfo_CreatePhotoRequest.Merge(dst, src)
  64. }
  65. func (m *CreatePhotoRequest) XXX_Size() int {
  66. return xxx_messageInfo_CreatePhotoRequest.Size(m)
  67. }
  68. func (m *CreatePhotoRequest) XXX_DiscardUnknown() {
  69. xxx_messageInfo_CreatePhotoRequest.DiscardUnknown(m)
  70. }
  71. var xxx_messageInfo_CreatePhotoRequest proto.InternalMessageInfo
  72. func (m *CreatePhotoRequest) GetPhoto() *Photo {
  73. if m != nil {
  74. return m.Photo
  75. }
  76. return nil
  77. }
  78. // Request to get a [Photo][google.streetview.publish.v1.Photo].
  79. //
  80. // By default
  81. //
  82. // * does not return the download URL for the photo bytes.
  83. //
  84. // Parameters:
  85. //
  86. // * `view` controls if the download URL for the photo bytes is returned.
  87. type GetPhotoRequest struct {
  88. // Required. ID of the [Photo][google.streetview.publish.v1.Photo].
  89. PhotoId string `protobuf:"bytes,1,opt,name=photo_id,json=photoId,proto3" json:"photo_id,omitempty"`
  90. // Specifies if a download URL for the photo bytes should be returned in the
  91. // [Photo][google.streetview.publish.v1.Photo] response.
  92. View PhotoView `protobuf:"varint,2,opt,name=view,proto3,enum=google.streetview.publish.v1.PhotoView" json:"view,omitempty"`
  93. // The BCP-47 language code, such as "en-US" or "sr-Latn". For more
  94. // information, see
  95. // http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
  96. // If language_code is unspecified, the user's language preference for Google
  97. // services is used.
  98. LanguageCode string `protobuf:"bytes,3,opt,name=language_code,json=languageCode,proto3" json:"language_code,omitempty"`
  99. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  100. XXX_unrecognized []byte `json:"-"`
  101. XXX_sizecache int32 `json:"-"`
  102. }
  103. func (m *GetPhotoRequest) Reset() { *m = GetPhotoRequest{} }
  104. func (m *GetPhotoRequest) String() string { return proto.CompactTextString(m) }
  105. func (*GetPhotoRequest) ProtoMessage() {}
  106. func (*GetPhotoRequest) Descriptor() ([]byte, []int) {
  107. return fileDescriptor_rpcmessages_8c9ea656d647f358, []int{1}
  108. }
  109. func (m *GetPhotoRequest) XXX_Unmarshal(b []byte) error {
  110. return xxx_messageInfo_GetPhotoRequest.Unmarshal(m, b)
  111. }
  112. func (m *GetPhotoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  113. return xxx_messageInfo_GetPhotoRequest.Marshal(b, m, deterministic)
  114. }
  115. func (dst *GetPhotoRequest) XXX_Merge(src proto.Message) {
  116. xxx_messageInfo_GetPhotoRequest.Merge(dst, src)
  117. }
  118. func (m *GetPhotoRequest) XXX_Size() int {
  119. return xxx_messageInfo_GetPhotoRequest.Size(m)
  120. }
  121. func (m *GetPhotoRequest) XXX_DiscardUnknown() {
  122. xxx_messageInfo_GetPhotoRequest.DiscardUnknown(m)
  123. }
  124. var xxx_messageInfo_GetPhotoRequest proto.InternalMessageInfo
  125. func (m *GetPhotoRequest) GetPhotoId() string {
  126. if m != nil {
  127. return m.PhotoId
  128. }
  129. return ""
  130. }
  131. func (m *GetPhotoRequest) GetView() PhotoView {
  132. if m != nil {
  133. return m.View
  134. }
  135. return PhotoView_BASIC
  136. }
  137. func (m *GetPhotoRequest) GetLanguageCode() string {
  138. if m != nil {
  139. return m.LanguageCode
  140. }
  141. return ""
  142. }
  143. // Request to get one or more [Photos][google.streetview.publish.v1.Photo].
  144. // By default
  145. //
  146. // * does not return the download URL for the photo bytes.
  147. //
  148. // Parameters:
  149. //
  150. // * `view` controls if the download URL for the photo bytes is returned.
  151. type BatchGetPhotosRequest struct {
  152. // Required. IDs of the [Photos][google.streetview.publish.v1.Photo]. HTTP GET
  153. // requests require the following syntax for the URL query parameter:
  154. // `photoIds=<id1>&photoIds=<id2>&...`.
  155. PhotoIds []string `protobuf:"bytes,1,rep,name=photo_ids,json=photoIds,proto3" json:"photo_ids,omitempty"`
  156. // Specifies if a download URL for the photo bytes should be returned in the
  157. // Photo response.
  158. View PhotoView `protobuf:"varint,2,opt,name=view,proto3,enum=google.streetview.publish.v1.PhotoView" json:"view,omitempty"`
  159. // The BCP-47 language code, such as "en-US" or "sr-Latn". For more
  160. // information, see
  161. // http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
  162. // If language_code is unspecified, the user's language preference for Google
  163. // services is used.
  164. LanguageCode string `protobuf:"bytes,3,opt,name=language_code,json=languageCode,proto3" json:"language_code,omitempty"`
  165. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  166. XXX_unrecognized []byte `json:"-"`
  167. XXX_sizecache int32 `json:"-"`
  168. }
  169. func (m *BatchGetPhotosRequest) Reset() { *m = BatchGetPhotosRequest{} }
  170. func (m *BatchGetPhotosRequest) String() string { return proto.CompactTextString(m) }
  171. func (*BatchGetPhotosRequest) ProtoMessage() {}
  172. func (*BatchGetPhotosRequest) Descriptor() ([]byte, []int) {
  173. return fileDescriptor_rpcmessages_8c9ea656d647f358, []int{2}
  174. }
  175. func (m *BatchGetPhotosRequest) XXX_Unmarshal(b []byte) error {
  176. return xxx_messageInfo_BatchGetPhotosRequest.Unmarshal(m, b)
  177. }
  178. func (m *BatchGetPhotosRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  179. return xxx_messageInfo_BatchGetPhotosRequest.Marshal(b, m, deterministic)
  180. }
  181. func (dst *BatchGetPhotosRequest) XXX_Merge(src proto.Message) {
  182. xxx_messageInfo_BatchGetPhotosRequest.Merge(dst, src)
  183. }
  184. func (m *BatchGetPhotosRequest) XXX_Size() int {
  185. return xxx_messageInfo_BatchGetPhotosRequest.Size(m)
  186. }
  187. func (m *BatchGetPhotosRequest) XXX_DiscardUnknown() {
  188. xxx_messageInfo_BatchGetPhotosRequest.DiscardUnknown(m)
  189. }
  190. var xxx_messageInfo_BatchGetPhotosRequest proto.InternalMessageInfo
  191. func (m *BatchGetPhotosRequest) GetPhotoIds() []string {
  192. if m != nil {
  193. return m.PhotoIds
  194. }
  195. return nil
  196. }
  197. func (m *BatchGetPhotosRequest) GetView() PhotoView {
  198. if m != nil {
  199. return m.View
  200. }
  201. return PhotoView_BASIC
  202. }
  203. func (m *BatchGetPhotosRequest) GetLanguageCode() string {
  204. if m != nil {
  205. return m.LanguageCode
  206. }
  207. return ""
  208. }
  209. // Response to batch get of [Photos][google.streetview.publish.v1.Photo].
  210. type BatchGetPhotosResponse struct {
  211. // List of results for each individual
  212. // [Photo][google.streetview.publish.v1.Photo] requested, in the same order as
  213. // the requests in
  214. // [BatchGetPhotos][google.streetview.publish.v1.StreetViewPublishService.BatchGetPhotos].
  215. Results []*PhotoResponse `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
  216. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  217. XXX_unrecognized []byte `json:"-"`
  218. XXX_sizecache int32 `json:"-"`
  219. }
  220. func (m *BatchGetPhotosResponse) Reset() { *m = BatchGetPhotosResponse{} }
  221. func (m *BatchGetPhotosResponse) String() string { return proto.CompactTextString(m) }
  222. func (*BatchGetPhotosResponse) ProtoMessage() {}
  223. func (*BatchGetPhotosResponse) Descriptor() ([]byte, []int) {
  224. return fileDescriptor_rpcmessages_8c9ea656d647f358, []int{3}
  225. }
  226. func (m *BatchGetPhotosResponse) XXX_Unmarshal(b []byte) error {
  227. return xxx_messageInfo_BatchGetPhotosResponse.Unmarshal(m, b)
  228. }
  229. func (m *BatchGetPhotosResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  230. return xxx_messageInfo_BatchGetPhotosResponse.Marshal(b, m, deterministic)
  231. }
  232. func (dst *BatchGetPhotosResponse) XXX_Merge(src proto.Message) {
  233. xxx_messageInfo_BatchGetPhotosResponse.Merge(dst, src)
  234. }
  235. func (m *BatchGetPhotosResponse) XXX_Size() int {
  236. return xxx_messageInfo_BatchGetPhotosResponse.Size(m)
  237. }
  238. func (m *BatchGetPhotosResponse) XXX_DiscardUnknown() {
  239. xxx_messageInfo_BatchGetPhotosResponse.DiscardUnknown(m)
  240. }
  241. var xxx_messageInfo_BatchGetPhotosResponse proto.InternalMessageInfo
  242. func (m *BatchGetPhotosResponse) GetResults() []*PhotoResponse {
  243. if m != nil {
  244. return m.Results
  245. }
  246. return nil
  247. }
  248. // Response payload for a single
  249. // [Photo][google.streetview.publish.v1.Photo]
  250. // in batch operations including
  251. // [BatchGetPhotos][google.streetview.publish.v1.StreetViewPublishService.BatchGetPhotos]
  252. // and
  253. // [BatchUpdatePhotos][google.streetview.publish.v1.StreetViewPublishService.BatchUpdatePhotos].
  254. type PhotoResponse struct {
  255. // The status for the operation to get or update a single photo in the batch
  256. // request.
  257. Status *status.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
  258. // The [Photo][google.streetview.publish.v1.Photo] resource, if the request
  259. // was successful.
  260. Photo *Photo `protobuf:"bytes,2,opt,name=photo,proto3" json:"photo,omitempty"`
  261. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  262. XXX_unrecognized []byte `json:"-"`
  263. XXX_sizecache int32 `json:"-"`
  264. }
  265. func (m *PhotoResponse) Reset() { *m = PhotoResponse{} }
  266. func (m *PhotoResponse) String() string { return proto.CompactTextString(m) }
  267. func (*PhotoResponse) ProtoMessage() {}
  268. func (*PhotoResponse) Descriptor() ([]byte, []int) {
  269. return fileDescriptor_rpcmessages_8c9ea656d647f358, []int{4}
  270. }
  271. func (m *PhotoResponse) XXX_Unmarshal(b []byte) error {
  272. return xxx_messageInfo_PhotoResponse.Unmarshal(m, b)
  273. }
  274. func (m *PhotoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  275. return xxx_messageInfo_PhotoResponse.Marshal(b, m, deterministic)
  276. }
  277. func (dst *PhotoResponse) XXX_Merge(src proto.Message) {
  278. xxx_messageInfo_PhotoResponse.Merge(dst, src)
  279. }
  280. func (m *PhotoResponse) XXX_Size() int {
  281. return xxx_messageInfo_PhotoResponse.Size(m)
  282. }
  283. func (m *PhotoResponse) XXX_DiscardUnknown() {
  284. xxx_messageInfo_PhotoResponse.DiscardUnknown(m)
  285. }
  286. var xxx_messageInfo_PhotoResponse proto.InternalMessageInfo
  287. func (m *PhotoResponse) GetStatus() *status.Status {
  288. if m != nil {
  289. return m.Status
  290. }
  291. return nil
  292. }
  293. func (m *PhotoResponse) GetPhoto() *Photo {
  294. if m != nil {
  295. return m.Photo
  296. }
  297. return nil
  298. }
  299. // Request to list all photos that belong to the user sending the request.
  300. //
  301. // By default
  302. //
  303. // * does not return the download URL for the photo bytes.
  304. //
  305. // Parameters:
  306. //
  307. // * `view` controls if the download URL for the photo bytes is returned.
  308. // * `pageSize` determines the maximum number of photos to return.
  309. // * `pageToken` is the next page token value returned from a previous
  310. // [ListPhotos][google.streetview.publish.v1.StreetViewPublishService.ListPhotos]
  311. // request, if any.
  312. // * `filter` allows filtering by a given parameter. 'placeId' is the only
  313. // parameter supported at the moment.
  314. type ListPhotosRequest struct {
  315. // Specifies if a download URL for the photos bytes should be returned in the
  316. // Photos response.
  317. View PhotoView `protobuf:"varint,1,opt,name=view,proto3,enum=google.streetview.publish.v1.PhotoView" json:"view,omitempty"`
  318. // The maximum number of photos to return.
  319. // `pageSize` must be non-negative. If `pageSize` is zero or is not provided,
  320. // the default page size of 100 is used.
  321. // The number of photos returned in the response may be less than `pageSize`
  322. // if the number of photos that belong to the user is less than `pageSize`.
  323. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  324. // The
  325. // [nextPageToken][google.streetview.publish.v1.ListPhotosResponse.next_page_token]
  326. // value returned from a previous
  327. // [ListPhotos][google.streetview.publish.v1.StreetViewPublishService.ListPhotos]
  328. // request, if any.
  329. PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
  330. // The filter expression. For example: `placeId=ChIJj61dQgK6j4AR4GeTYWZsKWw`.
  331. //
  332. // The only filter supported at the moment is `placeId`.
  333. Filter string `protobuf:"bytes,4,opt,name=filter,proto3" json:"filter,omitempty"`
  334. // The BCP-47 language code, such as "en-US" or "sr-Latn". For more
  335. // information, see
  336. // http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
  337. // If language_code is unspecified, the user's language preference for Google
  338. // services is used.
  339. LanguageCode string `protobuf:"bytes,5,opt,name=language_code,json=languageCode,proto3" json:"language_code,omitempty"`
  340. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  341. XXX_unrecognized []byte `json:"-"`
  342. XXX_sizecache int32 `json:"-"`
  343. }
  344. func (m *ListPhotosRequest) Reset() { *m = ListPhotosRequest{} }
  345. func (m *ListPhotosRequest) String() string { return proto.CompactTextString(m) }
  346. func (*ListPhotosRequest) ProtoMessage() {}
  347. func (*ListPhotosRequest) Descriptor() ([]byte, []int) {
  348. return fileDescriptor_rpcmessages_8c9ea656d647f358, []int{5}
  349. }
  350. func (m *ListPhotosRequest) XXX_Unmarshal(b []byte) error {
  351. return xxx_messageInfo_ListPhotosRequest.Unmarshal(m, b)
  352. }
  353. func (m *ListPhotosRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  354. return xxx_messageInfo_ListPhotosRequest.Marshal(b, m, deterministic)
  355. }
  356. func (dst *ListPhotosRequest) XXX_Merge(src proto.Message) {
  357. xxx_messageInfo_ListPhotosRequest.Merge(dst, src)
  358. }
  359. func (m *ListPhotosRequest) XXX_Size() int {
  360. return xxx_messageInfo_ListPhotosRequest.Size(m)
  361. }
  362. func (m *ListPhotosRequest) XXX_DiscardUnknown() {
  363. xxx_messageInfo_ListPhotosRequest.DiscardUnknown(m)
  364. }
  365. var xxx_messageInfo_ListPhotosRequest proto.InternalMessageInfo
  366. func (m *ListPhotosRequest) GetView() PhotoView {
  367. if m != nil {
  368. return m.View
  369. }
  370. return PhotoView_BASIC
  371. }
  372. func (m *ListPhotosRequest) GetPageSize() int32 {
  373. if m != nil {
  374. return m.PageSize
  375. }
  376. return 0
  377. }
  378. func (m *ListPhotosRequest) GetPageToken() string {
  379. if m != nil {
  380. return m.PageToken
  381. }
  382. return ""
  383. }
  384. func (m *ListPhotosRequest) GetFilter() string {
  385. if m != nil {
  386. return m.Filter
  387. }
  388. return ""
  389. }
  390. func (m *ListPhotosRequest) GetLanguageCode() string {
  391. if m != nil {
  392. return m.LanguageCode
  393. }
  394. return ""
  395. }
  396. // Response to list all photos that belong to a user.
  397. type ListPhotosResponse struct {
  398. // List of photos. The
  399. // [pageSize][google.streetview.publish.v1.ListPhotosRequest.page_size] field
  400. // in the request determines the number of items returned.
  401. Photos []*Photo `protobuf:"bytes,1,rep,name=photos,proto3" json:"photos,omitempty"`
  402. // Token to retrieve the next page of results, or empty if there are no more
  403. // results in the list.
  404. NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
  405. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  406. XXX_unrecognized []byte `json:"-"`
  407. XXX_sizecache int32 `json:"-"`
  408. }
  409. func (m *ListPhotosResponse) Reset() { *m = ListPhotosResponse{} }
  410. func (m *ListPhotosResponse) String() string { return proto.CompactTextString(m) }
  411. func (*ListPhotosResponse) ProtoMessage() {}
  412. func (*ListPhotosResponse) Descriptor() ([]byte, []int) {
  413. return fileDescriptor_rpcmessages_8c9ea656d647f358, []int{6}
  414. }
  415. func (m *ListPhotosResponse) XXX_Unmarshal(b []byte) error {
  416. return xxx_messageInfo_ListPhotosResponse.Unmarshal(m, b)
  417. }
  418. func (m *ListPhotosResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  419. return xxx_messageInfo_ListPhotosResponse.Marshal(b, m, deterministic)
  420. }
  421. func (dst *ListPhotosResponse) XXX_Merge(src proto.Message) {
  422. xxx_messageInfo_ListPhotosResponse.Merge(dst, src)
  423. }
  424. func (m *ListPhotosResponse) XXX_Size() int {
  425. return xxx_messageInfo_ListPhotosResponse.Size(m)
  426. }
  427. func (m *ListPhotosResponse) XXX_DiscardUnknown() {
  428. xxx_messageInfo_ListPhotosResponse.DiscardUnknown(m)
  429. }
  430. var xxx_messageInfo_ListPhotosResponse proto.InternalMessageInfo
  431. func (m *ListPhotosResponse) GetPhotos() []*Photo {
  432. if m != nil {
  433. return m.Photos
  434. }
  435. return nil
  436. }
  437. func (m *ListPhotosResponse) GetNextPageToken() string {
  438. if m != nil {
  439. return m.NextPageToken
  440. }
  441. return ""
  442. }
  443. // Request to update the metadata of a
  444. // [Photo][google.streetview.publish.v1.Photo]. Updating the pixels of a photo
  445. // is not supported.
  446. type UpdatePhotoRequest struct {
  447. // Required. [Photo][google.streetview.publish.v1.Photo] object containing the
  448. // new metadata.
  449. Photo *Photo `protobuf:"bytes,1,opt,name=photo,proto3" json:"photo,omitempty"`
  450. // Mask that identifies fields on the photo metadata to update.
  451. // If not present, the old [Photo][google.streetview.publish.v1.Photo]
  452. // metadata is entirely replaced with the
  453. // new [Photo][google.streetview.publish.v1.Photo] metadata in this request.
  454. // The update fails if invalid fields are specified. Multiple fields can be
  455. // specified in a comma-delimited list.
  456. //
  457. // The following fields are valid:
  458. //
  459. // * `pose.heading`
  460. // * `pose.latLngPair`
  461. // * `pose.pitch`
  462. // * `pose.roll`
  463. // * `pose.level`
  464. // * `pose.altitude`
  465. // * `connections`
  466. // * `places`
  467. //
  468. //
  469. // <aside class="note"><b>Note:</b> When
  470. // [updateMask][google.streetview.publish.v1.UpdatePhotoRequest.update_mask]
  471. // contains repeated fields, the entire set of repeated values get replaced
  472. // with the new contents. For example, if
  473. // [updateMask][google.streetview.publish.v1.UpdatePhotoRequest.update_mask]
  474. // contains `connections` and `UpdatePhotoRequest.photo.connections` is empty,
  475. // all connections are removed.</aside>
  476. UpdateMask *field_mask.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
  477. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  478. XXX_unrecognized []byte `json:"-"`
  479. XXX_sizecache int32 `json:"-"`
  480. }
  481. func (m *UpdatePhotoRequest) Reset() { *m = UpdatePhotoRequest{} }
  482. func (m *UpdatePhotoRequest) String() string { return proto.CompactTextString(m) }
  483. func (*UpdatePhotoRequest) ProtoMessage() {}
  484. func (*UpdatePhotoRequest) Descriptor() ([]byte, []int) {
  485. return fileDescriptor_rpcmessages_8c9ea656d647f358, []int{7}
  486. }
  487. func (m *UpdatePhotoRequest) XXX_Unmarshal(b []byte) error {
  488. return xxx_messageInfo_UpdatePhotoRequest.Unmarshal(m, b)
  489. }
  490. func (m *UpdatePhotoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  491. return xxx_messageInfo_UpdatePhotoRequest.Marshal(b, m, deterministic)
  492. }
  493. func (dst *UpdatePhotoRequest) XXX_Merge(src proto.Message) {
  494. xxx_messageInfo_UpdatePhotoRequest.Merge(dst, src)
  495. }
  496. func (m *UpdatePhotoRequest) XXX_Size() int {
  497. return xxx_messageInfo_UpdatePhotoRequest.Size(m)
  498. }
  499. func (m *UpdatePhotoRequest) XXX_DiscardUnknown() {
  500. xxx_messageInfo_UpdatePhotoRequest.DiscardUnknown(m)
  501. }
  502. var xxx_messageInfo_UpdatePhotoRequest proto.InternalMessageInfo
  503. func (m *UpdatePhotoRequest) GetPhoto() *Photo {
  504. if m != nil {
  505. return m.Photo
  506. }
  507. return nil
  508. }
  509. func (m *UpdatePhotoRequest) GetUpdateMask() *field_mask.FieldMask {
  510. if m != nil {
  511. return m.UpdateMask
  512. }
  513. return nil
  514. }
  515. // Request to update the metadata of photos.
  516. // Updating the pixels of photos is not supported.
  517. type BatchUpdatePhotosRequest struct {
  518. // Required. List of
  519. // [UpdatePhotoRequests][google.streetview.publish.v1.UpdatePhotoRequest].
  520. UpdatePhotoRequests []*UpdatePhotoRequest `protobuf:"bytes,1,rep,name=update_photo_requests,json=updatePhotoRequests,proto3" json:"update_photo_requests,omitempty"`
  521. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  522. XXX_unrecognized []byte `json:"-"`
  523. XXX_sizecache int32 `json:"-"`
  524. }
  525. func (m *BatchUpdatePhotosRequest) Reset() { *m = BatchUpdatePhotosRequest{} }
  526. func (m *BatchUpdatePhotosRequest) String() string { return proto.CompactTextString(m) }
  527. func (*BatchUpdatePhotosRequest) ProtoMessage() {}
  528. func (*BatchUpdatePhotosRequest) Descriptor() ([]byte, []int) {
  529. return fileDescriptor_rpcmessages_8c9ea656d647f358, []int{8}
  530. }
  531. func (m *BatchUpdatePhotosRequest) XXX_Unmarshal(b []byte) error {
  532. return xxx_messageInfo_BatchUpdatePhotosRequest.Unmarshal(m, b)
  533. }
  534. func (m *BatchUpdatePhotosRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  535. return xxx_messageInfo_BatchUpdatePhotosRequest.Marshal(b, m, deterministic)
  536. }
  537. func (dst *BatchUpdatePhotosRequest) XXX_Merge(src proto.Message) {
  538. xxx_messageInfo_BatchUpdatePhotosRequest.Merge(dst, src)
  539. }
  540. func (m *BatchUpdatePhotosRequest) XXX_Size() int {
  541. return xxx_messageInfo_BatchUpdatePhotosRequest.Size(m)
  542. }
  543. func (m *BatchUpdatePhotosRequest) XXX_DiscardUnknown() {
  544. xxx_messageInfo_BatchUpdatePhotosRequest.DiscardUnknown(m)
  545. }
  546. var xxx_messageInfo_BatchUpdatePhotosRequest proto.InternalMessageInfo
  547. func (m *BatchUpdatePhotosRequest) GetUpdatePhotoRequests() []*UpdatePhotoRequest {
  548. if m != nil {
  549. return m.UpdatePhotoRequests
  550. }
  551. return nil
  552. }
  553. // Response to batch update of metadata of one or more
  554. // [Photos][google.streetview.publish.v1.Photo].
  555. type BatchUpdatePhotosResponse struct {
  556. // List of results for each individual
  557. // [Photo][google.streetview.publish.v1.Photo] updated, in the same order as
  558. // the request.
  559. Results []*PhotoResponse `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
  560. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  561. XXX_unrecognized []byte `json:"-"`
  562. XXX_sizecache int32 `json:"-"`
  563. }
  564. func (m *BatchUpdatePhotosResponse) Reset() { *m = BatchUpdatePhotosResponse{} }
  565. func (m *BatchUpdatePhotosResponse) String() string { return proto.CompactTextString(m) }
  566. func (*BatchUpdatePhotosResponse) ProtoMessage() {}
  567. func (*BatchUpdatePhotosResponse) Descriptor() ([]byte, []int) {
  568. return fileDescriptor_rpcmessages_8c9ea656d647f358, []int{9}
  569. }
  570. func (m *BatchUpdatePhotosResponse) XXX_Unmarshal(b []byte) error {
  571. return xxx_messageInfo_BatchUpdatePhotosResponse.Unmarshal(m, b)
  572. }
  573. func (m *BatchUpdatePhotosResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  574. return xxx_messageInfo_BatchUpdatePhotosResponse.Marshal(b, m, deterministic)
  575. }
  576. func (dst *BatchUpdatePhotosResponse) XXX_Merge(src proto.Message) {
  577. xxx_messageInfo_BatchUpdatePhotosResponse.Merge(dst, src)
  578. }
  579. func (m *BatchUpdatePhotosResponse) XXX_Size() int {
  580. return xxx_messageInfo_BatchUpdatePhotosResponse.Size(m)
  581. }
  582. func (m *BatchUpdatePhotosResponse) XXX_DiscardUnknown() {
  583. xxx_messageInfo_BatchUpdatePhotosResponse.DiscardUnknown(m)
  584. }
  585. var xxx_messageInfo_BatchUpdatePhotosResponse proto.InternalMessageInfo
  586. func (m *BatchUpdatePhotosResponse) GetResults() []*PhotoResponse {
  587. if m != nil {
  588. return m.Results
  589. }
  590. return nil
  591. }
  592. // Request to delete a [Photo][google.streetview.publish.v1.Photo].
  593. type DeletePhotoRequest struct {
  594. // Required. ID of the [Photo][google.streetview.publish.v1.Photo].
  595. PhotoId string `protobuf:"bytes,1,opt,name=photo_id,json=photoId,proto3" json:"photo_id,omitempty"`
  596. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  597. XXX_unrecognized []byte `json:"-"`
  598. XXX_sizecache int32 `json:"-"`
  599. }
  600. func (m *DeletePhotoRequest) Reset() { *m = DeletePhotoRequest{} }
  601. func (m *DeletePhotoRequest) String() string { return proto.CompactTextString(m) }
  602. func (*DeletePhotoRequest) ProtoMessage() {}
  603. func (*DeletePhotoRequest) Descriptor() ([]byte, []int) {
  604. return fileDescriptor_rpcmessages_8c9ea656d647f358, []int{10}
  605. }
  606. func (m *DeletePhotoRequest) XXX_Unmarshal(b []byte) error {
  607. return xxx_messageInfo_DeletePhotoRequest.Unmarshal(m, b)
  608. }
  609. func (m *DeletePhotoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  610. return xxx_messageInfo_DeletePhotoRequest.Marshal(b, m, deterministic)
  611. }
  612. func (dst *DeletePhotoRequest) XXX_Merge(src proto.Message) {
  613. xxx_messageInfo_DeletePhotoRequest.Merge(dst, src)
  614. }
  615. func (m *DeletePhotoRequest) XXX_Size() int {
  616. return xxx_messageInfo_DeletePhotoRequest.Size(m)
  617. }
  618. func (m *DeletePhotoRequest) XXX_DiscardUnknown() {
  619. xxx_messageInfo_DeletePhotoRequest.DiscardUnknown(m)
  620. }
  621. var xxx_messageInfo_DeletePhotoRequest proto.InternalMessageInfo
  622. func (m *DeletePhotoRequest) GetPhotoId() string {
  623. if m != nil {
  624. return m.PhotoId
  625. }
  626. return ""
  627. }
  628. // Request to delete multiple [Photos][google.streetview.publish.v1.Photo].
  629. type BatchDeletePhotosRequest struct {
  630. // Required. IDs of the [Photos][google.streetview.publish.v1.Photo]. HTTP
  631. // GET requests require the following syntax for the URL query parameter:
  632. // `photoIds=<id1>&photoIds=<id2>&...`.
  633. PhotoIds []string `protobuf:"bytes,1,rep,name=photo_ids,json=photoIds,proto3" json:"photo_ids,omitempty"`
  634. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  635. XXX_unrecognized []byte `json:"-"`
  636. XXX_sizecache int32 `json:"-"`
  637. }
  638. func (m *BatchDeletePhotosRequest) Reset() { *m = BatchDeletePhotosRequest{} }
  639. func (m *BatchDeletePhotosRequest) String() string { return proto.CompactTextString(m) }
  640. func (*BatchDeletePhotosRequest) ProtoMessage() {}
  641. func (*BatchDeletePhotosRequest) Descriptor() ([]byte, []int) {
  642. return fileDescriptor_rpcmessages_8c9ea656d647f358, []int{11}
  643. }
  644. func (m *BatchDeletePhotosRequest) XXX_Unmarshal(b []byte) error {
  645. return xxx_messageInfo_BatchDeletePhotosRequest.Unmarshal(m, b)
  646. }
  647. func (m *BatchDeletePhotosRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  648. return xxx_messageInfo_BatchDeletePhotosRequest.Marshal(b, m, deterministic)
  649. }
  650. func (dst *BatchDeletePhotosRequest) XXX_Merge(src proto.Message) {
  651. xxx_messageInfo_BatchDeletePhotosRequest.Merge(dst, src)
  652. }
  653. func (m *BatchDeletePhotosRequest) XXX_Size() int {
  654. return xxx_messageInfo_BatchDeletePhotosRequest.Size(m)
  655. }
  656. func (m *BatchDeletePhotosRequest) XXX_DiscardUnknown() {
  657. xxx_messageInfo_BatchDeletePhotosRequest.DiscardUnknown(m)
  658. }
  659. var xxx_messageInfo_BatchDeletePhotosRequest proto.InternalMessageInfo
  660. func (m *BatchDeletePhotosRequest) GetPhotoIds() []string {
  661. if m != nil {
  662. return m.PhotoIds
  663. }
  664. return nil
  665. }
  666. // Response to batch delete of one or more
  667. // [Photos][google.streetview.publish.v1.Photo].
  668. type BatchDeletePhotosResponse struct {
  669. // The status for the operation to delete a single
  670. // [Photo][google.streetview.publish.v1.Photo] in the batch request.
  671. Status []*status.Status `protobuf:"bytes,1,rep,name=status,proto3" json:"status,omitempty"`
  672. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  673. XXX_unrecognized []byte `json:"-"`
  674. XXX_sizecache int32 `json:"-"`
  675. }
  676. func (m *BatchDeletePhotosResponse) Reset() { *m = BatchDeletePhotosResponse{} }
  677. func (m *BatchDeletePhotosResponse) String() string { return proto.CompactTextString(m) }
  678. func (*BatchDeletePhotosResponse) ProtoMessage() {}
  679. func (*BatchDeletePhotosResponse) Descriptor() ([]byte, []int) {
  680. return fileDescriptor_rpcmessages_8c9ea656d647f358, []int{12}
  681. }
  682. func (m *BatchDeletePhotosResponse) XXX_Unmarshal(b []byte) error {
  683. return xxx_messageInfo_BatchDeletePhotosResponse.Unmarshal(m, b)
  684. }
  685. func (m *BatchDeletePhotosResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  686. return xxx_messageInfo_BatchDeletePhotosResponse.Marshal(b, m, deterministic)
  687. }
  688. func (dst *BatchDeletePhotosResponse) XXX_Merge(src proto.Message) {
  689. xxx_messageInfo_BatchDeletePhotosResponse.Merge(dst, src)
  690. }
  691. func (m *BatchDeletePhotosResponse) XXX_Size() int {
  692. return xxx_messageInfo_BatchDeletePhotosResponse.Size(m)
  693. }
  694. func (m *BatchDeletePhotosResponse) XXX_DiscardUnknown() {
  695. xxx_messageInfo_BatchDeletePhotosResponse.DiscardUnknown(m)
  696. }
  697. var xxx_messageInfo_BatchDeletePhotosResponse proto.InternalMessageInfo
  698. func (m *BatchDeletePhotosResponse) GetStatus() []*status.Status {
  699. if m != nil {
  700. return m.Status
  701. }
  702. return nil
  703. }
  704. func init() {
  705. proto.RegisterType((*CreatePhotoRequest)(nil), "google.streetview.publish.v1.CreatePhotoRequest")
  706. proto.RegisterType((*GetPhotoRequest)(nil), "google.streetview.publish.v1.GetPhotoRequest")
  707. proto.RegisterType((*BatchGetPhotosRequest)(nil), "google.streetview.publish.v1.BatchGetPhotosRequest")
  708. proto.RegisterType((*BatchGetPhotosResponse)(nil), "google.streetview.publish.v1.BatchGetPhotosResponse")
  709. proto.RegisterType((*PhotoResponse)(nil), "google.streetview.publish.v1.PhotoResponse")
  710. proto.RegisterType((*ListPhotosRequest)(nil), "google.streetview.publish.v1.ListPhotosRequest")
  711. proto.RegisterType((*ListPhotosResponse)(nil), "google.streetview.publish.v1.ListPhotosResponse")
  712. proto.RegisterType((*UpdatePhotoRequest)(nil), "google.streetview.publish.v1.UpdatePhotoRequest")
  713. proto.RegisterType((*BatchUpdatePhotosRequest)(nil), "google.streetview.publish.v1.BatchUpdatePhotosRequest")
  714. proto.RegisterType((*BatchUpdatePhotosResponse)(nil), "google.streetview.publish.v1.BatchUpdatePhotosResponse")
  715. proto.RegisterType((*DeletePhotoRequest)(nil), "google.streetview.publish.v1.DeletePhotoRequest")
  716. proto.RegisterType((*BatchDeletePhotosRequest)(nil), "google.streetview.publish.v1.BatchDeletePhotosRequest")
  717. proto.RegisterType((*BatchDeletePhotosResponse)(nil), "google.streetview.publish.v1.BatchDeletePhotosResponse")
  718. proto.RegisterEnum("google.streetview.publish.v1.PhotoView", PhotoView_name, PhotoView_value)
  719. }
  720. func init() {
  721. proto.RegisterFile("google/streetview/publish/v1/rpcmessages.proto", fileDescriptor_rpcmessages_8c9ea656d647f358)
  722. }
  723. var fileDescriptor_rpcmessages_8c9ea656d647f358 = []byte{
  724. // 669 bytes of a gzipped FileDescriptorProto
  725. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x55, 0x5d, 0x4f, 0xd3, 0x5e,
  726. 0x18, 0xff, 0x17, 0xd8, 0x60, 0x0f, 0x7f, 0x04, 0x8f, 0x82, 0x65, 0x62, 0xb2, 0x94, 0x44, 0x17,
  727. 0x34, 0x2d, 0xe0, 0x85, 0x31, 0xbb, 0x62, 0x1b, 0x12, 0x92, 0xf1, 0x92, 0x4e, 0x34, 0xf1, 0xa6,
  728. 0xe9, 0xda, 0x87, 0xd2, 0x50, 0x76, 0x6a, 0xcf, 0xe9, 0x50, 0xae, 0xfc, 0x00, 0xea, 0xa5, 0xdf,
  729. 0xc9, 0x6f, 0x65, 0x7a, 0x7a, 0x0e, 0x8c, 0x6d, 0x2e, 0xd3, 0x10, 0xef, 0x7a, 0x9e, 0x97, 0x5f,
  730. 0x7f, 0xe7, 0xf7, 0xbc, 0x1c, 0x30, 0x03, 0x4a, 0x83, 0x08, 0x2d, 0xc6, 0x13, 0x44, 0xde, 0x0b,
  731. 0xf1, 0xd2, 0x8a, 0xd3, 0x4e, 0x14, 0xb2, 0x33, 0xab, 0xb7, 0x65, 0x25, 0xb1, 0x77, 0x81, 0x8c,
  732. 0xb9, 0x01, 0x32, 0x33, 0x4e, 0x28, 0xa7, 0x64, 0x2d, 0x8f, 0x37, 0x6f, 0xe2, 0x4d, 0x19, 0x6f,
  733. 0xf6, 0xb6, 0xca, 0x15, 0x89, 0x26, 0x62, 0x3b, 0xe9, 0xa9, 0x75, 0x1a, 0x62, 0xe4, 0x3b, 0x17,
  734. 0x2e, 0x3b, 0xcf, 0xf3, 0xcb, 0x8f, 0x64, 0x44, 0x12, 0x7b, 0x16, 0xe3, 0x2e, 0x4f, 0x25, 0x70,
  735. 0xf9, 0xc5, 0x78, 0x22, 0xc8, 0x68, 0x9a, 0x78, 0x8a, 0x86, 0x71, 0x04, 0xa4, 0x91, 0xa0, 0xcb,
  736. 0xf1, 0xf8, 0x8c, 0x72, 0x6a, 0xe3, 0xc7, 0x14, 0x19, 0x27, 0xaf, 0xa1, 0x10, 0x67, 0x67, 0x5d,
  737. 0xab, 0x68, 0xd5, 0xf9, 0xed, 0x75, 0x73, 0x1c, 0x59, 0x33, 0x4f, 0xcd, 0x33, 0x8c, 0xef, 0x1a,
  738. 0x2c, 0xee, 0x21, 0xbf, 0x05, 0xb7, 0x0a, 0x73, 0xc2, 0xe9, 0x84, 0xbe, 0x40, 0x2c, 0xd9, 0xb3,
  739. 0xe2, 0xbc, 0xef, 0x93, 0x1a, 0xcc, 0x64, 0x70, 0xfa, 0x54, 0x45, 0xab, 0xde, 0xdb, 0x7e, 0x36,
  740. 0xc1, 0x8f, 0xde, 0x85, 0x78, 0x69, 0x8b, 0x24, 0xb2, 0x0e, 0x0b, 0x91, 0xdb, 0x0d, 0x52, 0x37,
  741. 0x40, 0xc7, 0xa3, 0x3e, 0xea, 0xd3, 0x02, 0xfc, 0x7f, 0x65, 0x6c, 0x50, 0x1f, 0x8d, 0x1f, 0x1a,
  742. 0x2c, 0xd7, 0x5d, 0xee, 0x9d, 0x29, 0x56, 0x4c, 0xd1, 0x7a, 0x0c, 0x25, 0x45, 0x8b, 0xe9, 0x5a,
  743. 0x65, 0xba, 0x5a, 0xb2, 0xe7, 0x24, 0x2f, 0xf6, 0x0f, 0x88, 0x39, 0xb0, 0x32, 0xc8, 0x8b, 0xc5,
  744. 0xb4, 0xcb, 0x90, 0xec, 0xc2, 0x6c, 0x82, 0x2c, 0x8d, 0x78, 0x4e, 0x6b, 0x7e, 0xfb, 0xf9, 0x24,
  745. 0x05, 0x90, 0xd9, 0xb6, 0xca, 0x35, 0x7a, 0xb0, 0x70, 0xcb, 0x43, 0x36, 0xa0, 0x98, 0xb7, 0x8a,
  746. 0xac, 0x2b, 0x51, 0xb0, 0x49, 0xec, 0x99, 0x6d, 0xe1, 0xb1, 0x65, 0xc4, 0x4d, 0x0b, 0x4c, 0xfd,
  747. 0x71, 0x0b, 0xfc, 0xd4, 0xe0, 0x7e, 0x2b, 0x64, 0x03, 0x6a, 0x2b, 0x41, 0xb5, 0xbf, 0x11, 0x34,
  748. 0x2b, 0x55, 0x26, 0x26, 0x0b, 0xaf, 0x50, 0x30, 0x2a, 0xd8, 0x73, 0x99, 0xa1, 0x1d, 0x5e, 0x21,
  749. 0x79, 0x02, 0x20, 0x9c, 0x9c, 0x9e, 0x63, 0x57, 0x4a, 0x2d, 0xc2, 0xdf, 0x66, 0x06, 0xb2, 0x02,
  750. 0xc5, 0xd3, 0x30, 0xe2, 0x98, 0xe8, 0x33, 0xc2, 0x25, 0x4f, 0xc3, 0x45, 0x2a, 0x8c, 0x28, 0xd2,
  751. 0x67, 0x20, 0xfd, 0x57, 0x91, 0x42, 0xd6, 0xa0, 0x28, 0xae, 0xaa, 0xea, 0x33, 0x91, 0x3a, 0x32,
  752. 0x85, 0x3c, 0x85, 0xc5, 0x2e, 0x7e, 0xe2, 0x4e, 0x1f, 0xe7, 0x29, 0xf1, 0xe7, 0x85, 0xcc, 0x7c,
  753. 0xac, 0x78, 0x1b, 0x5f, 0x35, 0x20, 0x27, 0xb1, 0x7f, 0x77, 0xb3, 0x49, 0x6a, 0x30, 0x9f, 0x0a,
  754. 0x40, 0xb1, 0x48, 0x64, 0x65, 0xcb, 0x0a, 0x40, 0xed, 0x1a, 0xf3, 0x4d, 0xb6, 0x6b, 0x0e, 0x5c,
  755. 0x76, 0x6e, 0x43, 0x1e, 0x9e, 0x7d, 0x1b, 0x5f, 0x34, 0xd0, 0x45, 0xbf, 0xf6, 0x71, 0xba, 0x2e,
  756. 0xae, 0x0f, 0xcb, 0x12, 0x39, 0x9f, 0xa8, 0x24, 0xb7, 0x2b, 0x7d, 0x36, 0xc7, 0x93, 0x1c, 0xbe,
  757. 0xa5, 0xfd, 0x20, 0x1d, 0xb2, 0x31, 0xa3, 0x03, 0xab, 0x23, 0x18, 0xdc, 0xed, 0xd0, 0x58, 0x40,
  758. 0x9a, 0x18, 0xe1, 0x80, 0xe8, 0xbf, 0xdf, 0x60, 0xc6, 0x2b, 0x29, 0x4b, 0x5f, 0xd6, 0x44, 0x1b,
  759. 0xc6, 0xd8, 0x93, 0xb7, 0xb9, 0x9d, 0x38, 0x62, 0x54, 0xa7, 0xc7, 0x8f, 0xea, 0xc6, 0x26, 0x94,
  760. 0xae, 0xe7, 0x85, 0x94, 0xa0, 0x50, 0xdf, 0x69, 0xef, 0x37, 0x96, 0xfe, 0x23, 0x3a, 0x3c, 0xdc,
  761. 0x3f, 0x6c, 0xb4, 0x4e, 0x9a, 0xbb, 0x4e, 0xf3, 0xe8, 0xfd, 0x61, 0xeb, 0x68, 0xa7, 0xe9, 0x9c,
  762. 0xd8, 0xad, 0x25, 0xad, 0xfe, 0x4d, 0x83, 0xaa, 0x47, 0x2f, 0x14, 0x66, 0x80, 0xd4, 0x4c, 0x03,
  763. 0x6f, 0xb4, 0x50, 0xf5, 0xb5, 0xb6, 0x30, 0x67, 0xe8, 0xc7, 0xb9, 0xd5, 0x8e, 0xbd, 0x03, 0xf9,
  764. 0x9a, 0x7d, 0x68, 0x28, 0x0c, 0x9a, 0xcd, 0x8d, 0x49, 0x93, 0xc0, 0x0a, 0xb0, 0x2b, 0x7a, 0xc9,
  765. 0xca, 0x5d, 0x6e, 0x1c, 0xb2, 0xd1, 0xaf, 0x51, 0x4d, 0x7e, 0x76, 0x8a, 0x22, 0xfe, 0xe5, 0xaf,
  766. 0x00, 0x00, 0x00, 0xff, 0xff, 0xab, 0x7d, 0x68, 0xfd, 0x45, 0x07, 0x00, 0x00,
  767. }