mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-07-29 00:50:00 +00:00
TUN-528: Move cloudflared into a separate repo
This commit is contained in:
524
vendor/google.golang.org/genproto/googleapis/streetview/publish/v1/resources.pb.go
generated
vendored
Normal file
524
vendor/google.golang.org/genproto/googleapis/streetview/publish/v1/resources.pb.go
generated
vendored
Normal file
@@ -0,0 +1,524 @@
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: google/streetview/publish/v1/resources.proto
|
||||
|
||||
package publish // import "google.golang.org/genproto/googleapis/streetview/publish/v1"
|
||||
|
||||
import proto "github.com/golang/protobuf/proto"
|
||||
import fmt "fmt"
|
||||
import math "math"
|
||||
import timestamp "github.com/golang/protobuf/ptypes/timestamp"
|
||||
import _ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
import latlng "google.golang.org/genproto/googleapis/type/latlng"
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
var _ = proto.Marshal
|
||||
var _ = fmt.Errorf
|
||||
var _ = math.Inf
|
||||
|
||||
// This is a compile-time assertion to ensure that this generated file
|
||||
// is compatible with the proto package it is being compiled against.
|
||||
// A compilation error at this line likely means your copy of the
|
||||
// proto package needs to be updated.
|
||||
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
||||
|
||||
// Upload reference for media files.
|
||||
type UploadRef struct {
|
||||
// Required. An upload reference should be unique for each user. It follows
|
||||
// the form:
|
||||
// "https://streetviewpublish.googleapis.com/media/user/<account_id>/photo/<upload_reference>"
|
||||
UploadUrl string `protobuf:"bytes,1,opt,name=upload_url,json=uploadUrl,proto3" json:"upload_url,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *UploadRef) Reset() { *m = UploadRef{} }
|
||||
func (m *UploadRef) String() string { return proto.CompactTextString(m) }
|
||||
func (*UploadRef) ProtoMessage() {}
|
||||
func (*UploadRef) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_resources_3e1f0ecf29102852, []int{0}
|
||||
}
|
||||
func (m *UploadRef) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_UploadRef.Unmarshal(m, b)
|
||||
}
|
||||
func (m *UploadRef) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_UploadRef.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *UploadRef) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_UploadRef.Merge(dst, src)
|
||||
}
|
||||
func (m *UploadRef) XXX_Size() int {
|
||||
return xxx_messageInfo_UploadRef.Size(m)
|
||||
}
|
||||
func (m *UploadRef) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_UploadRef.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_UploadRef proto.InternalMessageInfo
|
||||
|
||||
func (m *UploadRef) GetUploadUrl() string {
|
||||
if m != nil {
|
||||
return m.UploadUrl
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// Identifier for a photo.
|
||||
type PhotoId struct {
|
||||
// Required. A base64 encoded identifier.
|
||||
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *PhotoId) Reset() { *m = PhotoId{} }
|
||||
func (m *PhotoId) String() string { return proto.CompactTextString(m) }
|
||||
func (*PhotoId) ProtoMessage() {}
|
||||
func (*PhotoId) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_resources_3e1f0ecf29102852, []int{1}
|
||||
}
|
||||
func (m *PhotoId) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_PhotoId.Unmarshal(m, b)
|
||||
}
|
||||
func (m *PhotoId) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_PhotoId.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *PhotoId) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_PhotoId.Merge(dst, src)
|
||||
}
|
||||
func (m *PhotoId) XXX_Size() int {
|
||||
return xxx_messageInfo_PhotoId.Size(m)
|
||||
}
|
||||
func (m *PhotoId) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_PhotoId.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_PhotoId proto.InternalMessageInfo
|
||||
|
||||
func (m *PhotoId) GetId() string {
|
||||
if m != nil {
|
||||
return m.Id
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// Level information containing level number and its corresponding name.
|
||||
type Level struct {
|
||||
// Floor number, used for ordering. 0 indicates the ground level, 1 indicates
|
||||
// the first level above ground level, -1 indicates the first level under
|
||||
// ground level. Non-integer values are OK.
|
||||
Number float64 `protobuf:"fixed64,1,opt,name=number,proto3" json:"number,omitempty"`
|
||||
// Required. A name assigned to this Level, restricted to 3 characters.
|
||||
// Consider how the elevator buttons would be labeled for this level if there
|
||||
// was an elevator.
|
||||
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Level) Reset() { *m = Level{} }
|
||||
func (m *Level) String() string { return proto.CompactTextString(m) }
|
||||
func (*Level) ProtoMessage() {}
|
||||
func (*Level) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_resources_3e1f0ecf29102852, []int{2}
|
||||
}
|
||||
func (m *Level) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Level.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Level) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Level.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *Level) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Level.Merge(dst, src)
|
||||
}
|
||||
func (m *Level) XXX_Size() int {
|
||||
return xxx_messageInfo_Level.Size(m)
|
||||
}
|
||||
func (m *Level) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Level.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Level proto.InternalMessageInfo
|
||||
|
||||
func (m *Level) GetNumber() float64 {
|
||||
if m != nil {
|
||||
return m.Number
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *Level) GetName() string {
|
||||
if m != nil {
|
||||
return m.Name
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// Raw pose measurement for an entity.
|
||||
type Pose struct {
|
||||
// Latitude and longitude pair of the pose, as explained here:
|
||||
// https://cloud.google.com/datastore/docs/reference/rest/Shared.Types/LatLng
|
||||
// When creating a photo, if the latitude and longitude pair are not provided
|
||||
// here, the geolocation from the exif header will be used.
|
||||
// If the latitude and longitude pair is not provided and cannot be found in
|
||||
// the exif header, the create photo process will fail.
|
||||
LatLngPair *latlng.LatLng `protobuf:"bytes,1,opt,name=lat_lng_pair,json=latLngPair,proto3" json:"lat_lng_pair,omitempty"`
|
||||
// Altitude of the pose in meters above ground level (as defined by WGS84).
|
||||
// NaN indicates an unmeasured quantity.
|
||||
Altitude float64 `protobuf:"fixed64,2,opt,name=altitude,proto3" json:"altitude,omitempty"`
|
||||
// Compass heading, measured at the center of the photo in degrees clockwise
|
||||
// from North. Value must be >=0 and <360.
|
||||
// NaN indicates an unmeasured quantity.
|
||||
Heading float64 `protobuf:"fixed64,3,opt,name=heading,proto3" json:"heading,omitempty"`
|
||||
// Pitch, measured at the center of the photo in degrees. Value must be >=-90
|
||||
// and <= 90. A value of -90 means looking directly down, and a value of 90
|
||||
// means looking directly up.
|
||||
// NaN indicates an unmeasured quantity.
|
||||
Pitch float64 `protobuf:"fixed64,4,opt,name=pitch,proto3" json:"pitch,omitempty"`
|
||||
// Roll, measured in degrees. Value must be >= 0 and <360. A value of 0
|
||||
// means level with the horizon.
|
||||
// NaN indicates an unmeasured quantity.
|
||||
Roll float64 `protobuf:"fixed64,5,opt,name=roll,proto3" json:"roll,omitempty"`
|
||||
// Level (the floor in a building) used to configure vertical navigation.
|
||||
Level *Level `protobuf:"bytes,7,opt,name=level,proto3" json:"level,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Pose) Reset() { *m = Pose{} }
|
||||
func (m *Pose) String() string { return proto.CompactTextString(m) }
|
||||
func (*Pose) ProtoMessage() {}
|
||||
func (*Pose) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_resources_3e1f0ecf29102852, []int{3}
|
||||
}
|
||||
func (m *Pose) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Pose.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Pose) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Pose.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *Pose) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Pose.Merge(dst, src)
|
||||
}
|
||||
func (m *Pose) XXX_Size() int {
|
||||
return xxx_messageInfo_Pose.Size(m)
|
||||
}
|
||||
func (m *Pose) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Pose.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Pose proto.InternalMessageInfo
|
||||
|
||||
func (m *Pose) GetLatLngPair() *latlng.LatLng {
|
||||
if m != nil {
|
||||
return m.LatLngPair
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Pose) GetAltitude() float64 {
|
||||
if m != nil {
|
||||
return m.Altitude
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *Pose) GetHeading() float64 {
|
||||
if m != nil {
|
||||
return m.Heading
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *Pose) GetPitch() float64 {
|
||||
if m != nil {
|
||||
return m.Pitch
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *Pose) GetRoll() float64 {
|
||||
if m != nil {
|
||||
return m.Roll
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *Pose) GetLevel() *Level {
|
||||
if m != nil {
|
||||
return m.Level
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Place metadata for an entity.
|
||||
type Place struct {
|
||||
// Required. Place identifier, as described in
|
||||
// https://developers.google.com/places/place-id.
|
||||
PlaceId string `protobuf:"bytes,1,opt,name=place_id,json=placeId,proto3" json:"place_id,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Place) Reset() { *m = Place{} }
|
||||
func (m *Place) String() string { return proto.CompactTextString(m) }
|
||||
func (*Place) ProtoMessage() {}
|
||||
func (*Place) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_resources_3e1f0ecf29102852, []int{4}
|
||||
}
|
||||
func (m *Place) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Place.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Place) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Place.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *Place) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Place.Merge(dst, src)
|
||||
}
|
||||
func (m *Place) XXX_Size() int {
|
||||
return xxx_messageInfo_Place.Size(m)
|
||||
}
|
||||
func (m *Place) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Place.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Place proto.InternalMessageInfo
|
||||
|
||||
func (m *Place) GetPlaceId() string {
|
||||
if m != nil {
|
||||
return m.PlaceId
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// A connection is the link from a source photo to a destination photo.
|
||||
type Connection struct {
|
||||
// Required. The destination of the connection from the containing photo to
|
||||
// another photo.
|
||||
Target *PhotoId `protobuf:"bytes,1,opt,name=target,proto3" json:"target,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Connection) Reset() { *m = Connection{} }
|
||||
func (m *Connection) String() string { return proto.CompactTextString(m) }
|
||||
func (*Connection) ProtoMessage() {}
|
||||
func (*Connection) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_resources_3e1f0ecf29102852, []int{5}
|
||||
}
|
||||
func (m *Connection) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Connection.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Connection) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Connection.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *Connection) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Connection.Merge(dst, src)
|
||||
}
|
||||
func (m *Connection) XXX_Size() int {
|
||||
return xxx_messageInfo_Connection.Size(m)
|
||||
}
|
||||
func (m *Connection) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Connection.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Connection proto.InternalMessageInfo
|
||||
|
||||
func (m *Connection) GetTarget() *PhotoId {
|
||||
if m != nil {
|
||||
return m.Target
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Photo is used to store 360 photos along with photo metadata.
|
||||
type Photo struct {
|
||||
// Output only. Identifier for the photo, which is unique among all photos in
|
||||
// Google.
|
||||
PhotoId *PhotoId `protobuf:"bytes,1,opt,name=photo_id,json=photoId,proto3" json:"photo_id,omitempty"`
|
||||
// Required (when creating photo). Input only. The resource URL where the
|
||||
// photo bytes are uploaded to.
|
||||
UploadReference *UploadRef `protobuf:"bytes,2,opt,name=upload_reference,json=uploadReference,proto3" json:"upload_reference,omitempty"`
|
||||
// Output only. The download URL for the photo bytes. This field is set only
|
||||
// when the `view` parameter in a `GetPhotoRequest` is set to
|
||||
// `INCLUDE_DOWNLOAD_URL`.
|
||||
DownloadUrl string `protobuf:"bytes,3,opt,name=download_url,json=downloadUrl,proto3" json:"download_url,omitempty"`
|
||||
// Output only. The thumbnail URL for showing a preview of the given photo.
|
||||
ThumbnailUrl string `protobuf:"bytes,9,opt,name=thumbnail_url,json=thumbnailUrl,proto3" json:"thumbnail_url,omitempty"`
|
||||
// Output only. The share link for the photo.
|
||||
ShareLink string `protobuf:"bytes,11,opt,name=share_link,json=shareLink,proto3" json:"share_link,omitempty"`
|
||||
// Pose of the photo.
|
||||
Pose *Pose `protobuf:"bytes,4,opt,name=pose,proto3" json:"pose,omitempty"`
|
||||
// Connections to other photos. A connection represents the link from this
|
||||
// photo to another photo.
|
||||
Connections []*Connection `protobuf:"bytes,5,rep,name=connections,proto3" json:"connections,omitempty"`
|
||||
// Absolute time when the photo was captured.
|
||||
// When the photo has no exif timestamp, this is used to set a timestamp in
|
||||
// the photo metadata.
|
||||
CaptureTime *timestamp.Timestamp `protobuf:"bytes,6,opt,name=capture_time,json=captureTime,proto3" json:"capture_time,omitempty"`
|
||||
// Places where this photo belongs.
|
||||
Places []*Place `protobuf:"bytes,7,rep,name=places,proto3" json:"places,omitempty"`
|
||||
// Output only. View count of the photo.
|
||||
ViewCount int64 `protobuf:"varint,10,opt,name=view_count,json=viewCount,proto3" json:"view_count,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Photo) Reset() { *m = Photo{} }
|
||||
func (m *Photo) String() string { return proto.CompactTextString(m) }
|
||||
func (*Photo) ProtoMessage() {}
|
||||
func (*Photo) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_resources_3e1f0ecf29102852, []int{6}
|
||||
}
|
||||
func (m *Photo) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Photo.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Photo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Photo.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *Photo) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Photo.Merge(dst, src)
|
||||
}
|
||||
func (m *Photo) XXX_Size() int {
|
||||
return xxx_messageInfo_Photo.Size(m)
|
||||
}
|
||||
func (m *Photo) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Photo.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Photo proto.InternalMessageInfo
|
||||
|
||||
func (m *Photo) GetPhotoId() *PhotoId {
|
||||
if m != nil {
|
||||
return m.PhotoId
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Photo) GetUploadReference() *UploadRef {
|
||||
if m != nil {
|
||||
return m.UploadReference
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Photo) GetDownloadUrl() string {
|
||||
if m != nil {
|
||||
return m.DownloadUrl
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Photo) GetThumbnailUrl() string {
|
||||
if m != nil {
|
||||
return m.ThumbnailUrl
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Photo) GetShareLink() string {
|
||||
if m != nil {
|
||||
return m.ShareLink
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Photo) GetPose() *Pose {
|
||||
if m != nil {
|
||||
return m.Pose
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Photo) GetConnections() []*Connection {
|
||||
if m != nil {
|
||||
return m.Connections
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Photo) GetCaptureTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.CaptureTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Photo) GetPlaces() []*Place {
|
||||
if m != nil {
|
||||
return m.Places
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Photo) GetViewCount() int64 {
|
||||
if m != nil {
|
||||
return m.ViewCount
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*UploadRef)(nil), "google.streetview.publish.v1.UploadRef")
|
||||
proto.RegisterType((*PhotoId)(nil), "google.streetview.publish.v1.PhotoId")
|
||||
proto.RegisterType((*Level)(nil), "google.streetview.publish.v1.Level")
|
||||
proto.RegisterType((*Pose)(nil), "google.streetview.publish.v1.Pose")
|
||||
proto.RegisterType((*Place)(nil), "google.streetview.publish.v1.Place")
|
||||
proto.RegisterType((*Connection)(nil), "google.streetview.publish.v1.Connection")
|
||||
proto.RegisterType((*Photo)(nil), "google.streetview.publish.v1.Photo")
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/streetview/publish/v1/resources.proto", fileDescriptor_resources_3e1f0ecf29102852)
|
||||
}
|
||||
|
||||
var fileDescriptor_resources_3e1f0ecf29102852 = []byte{
|
||||
// 651 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0xdb, 0x6a, 0xdb, 0x4c,
|
||||
0x10, 0xc6, 0xf1, 0x29, 0x1e, 0xf9, 0x3f, 0xb0, 0xff, 0x4f, 0x51, 0x4c, 0x43, 0x53, 0x85, 0x52,
|
||||
0x53, 0x8a, 0x44, 0x1c, 0x5a, 0x28, 0x21, 0x50, 0x92, 0xab, 0xb4, 0xbe, 0x30, 0xdb, 0xa6, 0x17,
|
||||
0xbd, 0x11, 0x6b, 0x69, 0x22, 0x2f, 0x59, 0xef, 0x2e, 0xab, 0x95, 0x43, 0x9f, 0xa1, 0x8f, 0xd1,
|
||||
0x97, 0xea, 0xe3, 0x14, 0xad, 0x56, 0x4e, 0x2f, 0x82, 0xd3, 0x2b, 0xcf, 0x7c, 0xf3, 0x7d, 0xe3,
|
||||
0x39, 0xad, 0xe0, 0x75, 0xa1, 0x54, 0x21, 0x30, 0x29, 0xad, 0x41, 0xb4, 0x1b, 0x8e, 0x77, 0x89,
|
||||
0xae, 0x96, 0x82, 0x97, 0xab, 0x64, 0x73, 0x92, 0x18, 0x2c, 0x55, 0x65, 0x32, 0x2c, 0x63, 0x6d,
|
||||
0x94, 0x55, 0xe4, 0x69, 0xc3, 0x8e, 0xef, 0xd9, 0xb1, 0x67, 0xc7, 0x9b, 0x93, 0x89, 0x8f, 0x26,
|
||||
0x4c, 0xf3, 0x84, 0x49, 0xa9, 0x2c, 0xb3, 0x5c, 0x49, 0xaf, 0x9d, 0x3c, 0xf3, 0x51, 0xe7, 0x2d,
|
||||
0xab, 0x9b, 0xc4, 0xf2, 0x35, 0x96, 0x96, 0xad, 0xb5, 0x27, 0x84, 0x9e, 0x60, 0xbf, 0x69, 0x4c,
|
||||
0x04, 0xb3, 0x42, 0x16, 0x4d, 0x24, 0x7a, 0x05, 0xa3, 0x6b, 0x2d, 0x14, 0xcb, 0x29, 0xde, 0x90,
|
||||
0x43, 0x80, 0xca, 0x39, 0x69, 0x65, 0x44, 0xd8, 0x39, 0xea, 0x4c, 0x47, 0x74, 0xd4, 0x20, 0xd7,
|
||||
0x46, 0x44, 0x07, 0x30, 0x5c, 0xac, 0x94, 0x55, 0x57, 0x39, 0xf9, 0x1b, 0xf6, 0x78, 0xee, 0x19,
|
||||
0x7b, 0x3c, 0x8f, 0x4e, 0xa1, 0x3f, 0xc7, 0x0d, 0x0a, 0xf2, 0x04, 0x06, 0xb2, 0x5a, 0x2f, 0xd1,
|
||||
0xb8, 0x60, 0x87, 0x7a, 0x8f, 0x10, 0xe8, 0x49, 0xb6, 0xc6, 0x70, 0xcf, 0x49, 0x9c, 0x1d, 0xfd,
|
||||
0xec, 0x40, 0x6f, 0xa1, 0x4a, 0x24, 0x6f, 0x60, 0x2c, 0x98, 0x4d, 0x85, 0x2c, 0x52, 0xcd, 0x78,
|
||||
0x23, 0x0d, 0x66, 0xff, 0xc5, 0x7e, 0x24, 0x75, 0xd5, 0xf1, 0x9c, 0xd9, 0xb9, 0x2c, 0x28, 0x08,
|
||||
0xf7, 0xbb, 0x60, 0xdc, 0x90, 0x09, 0xec, 0x33, 0x61, 0xb9, 0xad, 0xf2, 0x26, 0x6f, 0x87, 0x6e,
|
||||
0x7d, 0x12, 0xc2, 0x70, 0x85, 0x2c, 0xe7, 0xb2, 0x08, 0xbb, 0x2e, 0xd4, 0xba, 0xe4, 0x7f, 0xe8,
|
||||
0x6b, 0x6e, 0xb3, 0x55, 0xd8, 0x73, 0x78, 0xe3, 0xd4, 0xf5, 0x19, 0x25, 0x44, 0xd8, 0x77, 0xa0,
|
||||
0xb3, 0xc9, 0x3b, 0xe8, 0x8b, 0xba, 0xa9, 0x70, 0xe8, 0xea, 0x39, 0x8e, 0x77, 0xad, 0x28, 0x76,
|
||||
0xfd, 0xd3, 0x46, 0x11, 0x45, 0xd0, 0x5f, 0x08, 0x96, 0x21, 0x39, 0x80, 0x7d, 0x5d, 0x1b, 0xe9,
|
||||
0x76, 0x5c, 0x43, 0xe7, 0x5f, 0xe5, 0xd1, 0x47, 0x80, 0x4b, 0x25, 0x25, 0x66, 0xf5, 0x2a, 0xc9,
|
||||
0x39, 0x0c, 0x2c, 0x33, 0x05, 0x5a, 0xdf, 0xfd, 0x8b, 0xdd, 0xff, 0xe6, 0x17, 0x41, 0xbd, 0x28,
|
||||
0xfa, 0xd1, 0x83, 0xbe, 0xc3, 0xc8, 0x7b, 0xd8, 0xd7, 0xb5, 0xd1, 0xfe, 0xe3, 0x1f, 0xa7, 0x1a,
|
||||
0x6a, 0xbf, 0x5c, 0x0a, 0xff, 0xfa, 0x33, 0x30, 0x78, 0x83, 0x06, 0x65, 0xd6, 0xcc, 0x37, 0x98,
|
||||
0xbd, 0xdc, 0x9d, 0x69, 0x7b, 0x49, 0xf4, 0x9f, 0xaa, 0x35, 0x1b, 0x3d, 0x79, 0x0e, 0xe3, 0x5c,
|
||||
0xdd, 0xc9, 0xed, 0x71, 0x75, 0xdd, 0x2c, 0x82, 0x16, 0xbb, 0x36, 0x82, 0x1c, 0xc3, 0x5f, 0x76,
|
||||
0x55, 0xad, 0x97, 0x92, 0x71, 0xe1, 0x38, 0x23, 0xc7, 0x19, 0x6f, 0xc1, 0x9a, 0x74, 0x08, 0x50,
|
||||
0xae, 0x98, 0xc1, 0x54, 0x70, 0x79, 0x1b, 0x06, 0xcd, 0x89, 0x3a, 0x64, 0xce, 0xe5, 0x2d, 0x79,
|
||||
0x0b, 0x3d, 0xad, 0x4a, 0x74, 0xbb, 0x0d, 0x66, 0xd1, 0x23, 0x8d, 0xab, 0x12, 0xa9, 0xe3, 0x93,
|
||||
0x0f, 0x10, 0x64, 0xdb, 0x5d, 0x94, 0x61, 0xff, 0xa8, 0x3b, 0x0d, 0x66, 0xd3, 0xdd, 0xf2, 0xfb,
|
||||
0xe5, 0xd1, 0xdf, 0xc5, 0xe4, 0x1c, 0xc6, 0x19, 0xd3, 0xb6, 0x32, 0x98, 0xd6, 0xef, 0x30, 0x1c,
|
||||
0xb8, 0x5a, 0x26, 0x6d, 0xb2, 0xf6, 0x91, 0xc6, 0x9f, 0xdb, 0x47, 0x4a, 0x03, 0xcf, 0xaf, 0x11,
|
||||
0x72, 0x06, 0x03, 0x77, 0x21, 0x65, 0x38, 0x74, 0x55, 0x3c, 0x72, 0x76, 0xee, 0xcc, 0xa8, 0x97,
|
||||
0xd4, 0xe3, 0xa9, 0x09, 0x69, 0xa6, 0x2a, 0x69, 0x43, 0x38, 0xea, 0x4c, 0xbb, 0x74, 0x54, 0x23,
|
||||
0x97, 0x35, 0x70, 0xf1, 0xbd, 0x03, 0xd3, 0x4c, 0xad, 0xdb, 0x8c, 0x05, 0xaa, 0xb8, 0x2a, 0xb2,
|
||||
0x87, 0x33, 0x5f, 0x4c, 0x3e, 0x39, 0xf8, 0x0b, 0xc7, 0xbb, 0x45, 0x83, 0xd2, 0xf6, 0x9b, 0xf5,
|
||||
0xf5, 0xb2, 0xcd, 0xa0, 0x04, 0x93, 0x45, 0xac, 0x4c, 0x91, 0x14, 0x28, 0x5d, 0x6b, 0x49, 0x13,
|
||||
0x62, 0x9a, 0x97, 0x0f, 0x7f, 0xfa, 0xce, 0xbc, 0xb9, 0x1c, 0x38, 0xfe, 0xe9, 0xaf, 0x00, 0x00,
|
||||
0x00, 0xff, 0xff, 0xad, 0x4e, 0x7a, 0x51, 0x29, 0x05, 0x00, 0x00,
|
||||
}
|
766
vendor/google.golang.org/genproto/googleapis/streetview/publish/v1/rpcmessages.pb.go
generated
vendored
Normal file
766
vendor/google.golang.org/genproto/googleapis/streetview/publish/v1/rpcmessages.pb.go
generated
vendored
Normal file
@@ -0,0 +1,766 @@
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: google/streetview/publish/v1/rpcmessages.proto
|
||||
|
||||
package publish // import "google.golang.org/genproto/googleapis/streetview/publish/v1"
|
||||
|
||||
import proto "github.com/golang/protobuf/proto"
|
||||
import fmt "fmt"
|
||||
import math "math"
|
||||
import status "google.golang.org/genproto/googleapis/rpc/status"
|
||||
import field_mask "google.golang.org/genproto/protobuf/field_mask"
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
var _ = proto.Marshal
|
||||
var _ = fmt.Errorf
|
||||
var _ = math.Inf
|
||||
|
||||
// This is a compile-time assertion to ensure that this generated file
|
||||
// is compatible with the proto package it is being compiled against.
|
||||
// A compilation error at this line likely means your copy of the
|
||||
// proto package needs to be updated.
|
||||
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
||||
|
||||
// Specifies which view of the `Photo` should be included in the response.
|
||||
type PhotoView int32
|
||||
|
||||
const (
|
||||
// Server reponses do not include the download URL for the photo bytes.
|
||||
// The default value.
|
||||
PhotoView_BASIC PhotoView = 0
|
||||
// Server responses include the download URL for the photo bytes.
|
||||
PhotoView_INCLUDE_DOWNLOAD_URL PhotoView = 1
|
||||
)
|
||||
|
||||
var PhotoView_name = map[int32]string{
|
||||
0: "BASIC",
|
||||
1: "INCLUDE_DOWNLOAD_URL",
|
||||
}
|
||||
var PhotoView_value = map[string]int32{
|
||||
"BASIC": 0,
|
||||
"INCLUDE_DOWNLOAD_URL": 1,
|
||||
}
|
||||
|
||||
func (x PhotoView) String() string {
|
||||
return proto.EnumName(PhotoView_name, int32(x))
|
||||
}
|
||||
func (PhotoView) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_rpcmessages_d38e067cf9604ca9, []int{0}
|
||||
}
|
||||
|
||||
// Request to create a photo.
|
||||
type CreatePhotoRequest struct {
|
||||
// Required. Photo to create.
|
||||
Photo *Photo `protobuf:"bytes,1,opt,name=photo,proto3" json:"photo,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *CreatePhotoRequest) Reset() { *m = CreatePhotoRequest{} }
|
||||
func (m *CreatePhotoRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*CreatePhotoRequest) ProtoMessage() {}
|
||||
func (*CreatePhotoRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_rpcmessages_d38e067cf9604ca9, []int{0}
|
||||
}
|
||||
func (m *CreatePhotoRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_CreatePhotoRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *CreatePhotoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_CreatePhotoRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *CreatePhotoRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_CreatePhotoRequest.Merge(dst, src)
|
||||
}
|
||||
func (m *CreatePhotoRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_CreatePhotoRequest.Size(m)
|
||||
}
|
||||
func (m *CreatePhotoRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_CreatePhotoRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_CreatePhotoRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *CreatePhotoRequest) GetPhoto() *Photo {
|
||||
if m != nil {
|
||||
return m.Photo
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Request to get a photo.
|
||||
//
|
||||
// By default
|
||||
// - does not return the download URL for the photo bytes.
|
||||
//
|
||||
// Parameters:
|
||||
// - 'view' controls if the download URL for the photo bytes will be returned.
|
||||
type GetPhotoRequest struct {
|
||||
// Required. ID of the photo.
|
||||
PhotoId string `protobuf:"bytes,1,opt,name=photo_id,json=photoId,proto3" json:"photo_id,omitempty"`
|
||||
// Specifies if a download URL for the photo bytes should be returned in the
|
||||
// Photo response.
|
||||
View PhotoView `protobuf:"varint,2,opt,name=view,proto3,enum=google.streetview.publish.v1.PhotoView" json:"view,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *GetPhotoRequest) Reset() { *m = GetPhotoRequest{} }
|
||||
func (m *GetPhotoRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*GetPhotoRequest) ProtoMessage() {}
|
||||
func (*GetPhotoRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_rpcmessages_d38e067cf9604ca9, []int{1}
|
||||
}
|
||||
func (m *GetPhotoRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_GetPhotoRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *GetPhotoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_GetPhotoRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *GetPhotoRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_GetPhotoRequest.Merge(dst, src)
|
||||
}
|
||||
func (m *GetPhotoRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_GetPhotoRequest.Size(m)
|
||||
}
|
||||
func (m *GetPhotoRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_GetPhotoRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_GetPhotoRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *GetPhotoRequest) GetPhotoId() string {
|
||||
if m != nil {
|
||||
return m.PhotoId
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *GetPhotoRequest) GetView() PhotoView {
|
||||
if m != nil {
|
||||
return m.View
|
||||
}
|
||||
return PhotoView_BASIC
|
||||
}
|
||||
|
||||
// Request to get one or more photos.
|
||||
// By default
|
||||
// - does not return the download URL for the photo bytes.
|
||||
//
|
||||
// Parameters:
|
||||
// - 'view' controls if the download URL for the photo bytes will be returned.
|
||||
type BatchGetPhotosRequest struct {
|
||||
// Required. IDs of the photos.
|
||||
PhotoIds []string `protobuf:"bytes,1,rep,name=photo_ids,json=photoIds,proto3" json:"photo_ids,omitempty"`
|
||||
// Specifies if a download URL for the photo bytes should be returned in the
|
||||
// Photo response.
|
||||
View PhotoView `protobuf:"varint,2,opt,name=view,proto3,enum=google.streetview.publish.v1.PhotoView" json:"view,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *BatchGetPhotosRequest) Reset() { *m = BatchGetPhotosRequest{} }
|
||||
func (m *BatchGetPhotosRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*BatchGetPhotosRequest) ProtoMessage() {}
|
||||
func (*BatchGetPhotosRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_rpcmessages_d38e067cf9604ca9, []int{2}
|
||||
}
|
||||
func (m *BatchGetPhotosRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_BatchGetPhotosRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *BatchGetPhotosRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_BatchGetPhotosRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *BatchGetPhotosRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_BatchGetPhotosRequest.Merge(dst, src)
|
||||
}
|
||||
func (m *BatchGetPhotosRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_BatchGetPhotosRequest.Size(m)
|
||||
}
|
||||
func (m *BatchGetPhotosRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_BatchGetPhotosRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_BatchGetPhotosRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *BatchGetPhotosRequest) GetPhotoIds() []string {
|
||||
if m != nil {
|
||||
return m.PhotoIds
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *BatchGetPhotosRequest) GetView() PhotoView {
|
||||
if m != nil {
|
||||
return m.View
|
||||
}
|
||||
return PhotoView_BASIC
|
||||
}
|
||||
|
||||
// Response to batch get of photos.
|
||||
type BatchGetPhotosResponse struct {
|
||||
// List of results for each individual photo requested, in the same order as
|
||||
// the request.
|
||||
Results []*PhotoResponse `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *BatchGetPhotosResponse) Reset() { *m = BatchGetPhotosResponse{} }
|
||||
func (m *BatchGetPhotosResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*BatchGetPhotosResponse) ProtoMessage() {}
|
||||
func (*BatchGetPhotosResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_rpcmessages_d38e067cf9604ca9, []int{3}
|
||||
}
|
||||
func (m *BatchGetPhotosResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_BatchGetPhotosResponse.Unmarshal(m, b)
|
||||
}
|
||||
func (m *BatchGetPhotosResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_BatchGetPhotosResponse.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *BatchGetPhotosResponse) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_BatchGetPhotosResponse.Merge(dst, src)
|
||||
}
|
||||
func (m *BatchGetPhotosResponse) XXX_Size() int {
|
||||
return xxx_messageInfo_BatchGetPhotosResponse.Size(m)
|
||||
}
|
||||
func (m *BatchGetPhotosResponse) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_BatchGetPhotosResponse.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_BatchGetPhotosResponse proto.InternalMessageInfo
|
||||
|
||||
func (m *BatchGetPhotosResponse) GetResults() []*PhotoResponse {
|
||||
if m != nil {
|
||||
return m.Results
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Response payload for a single `Photo` in batch operations including
|
||||
// `BatchGetPhotosRequest` and `BatchUpdatePhotosRequest`.
|
||||
type PhotoResponse struct {
|
||||
// The status for the operation to get or update a single photo in the batch
|
||||
// request.
|
||||
Status *status.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
|
||||
// The photo resource, if the request was successful.
|
||||
Photo *Photo `protobuf:"bytes,2,opt,name=photo,proto3" json:"photo,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *PhotoResponse) Reset() { *m = PhotoResponse{} }
|
||||
func (m *PhotoResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*PhotoResponse) ProtoMessage() {}
|
||||
func (*PhotoResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_rpcmessages_d38e067cf9604ca9, []int{4}
|
||||
}
|
||||
func (m *PhotoResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_PhotoResponse.Unmarshal(m, b)
|
||||
}
|
||||
func (m *PhotoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_PhotoResponse.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *PhotoResponse) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_PhotoResponse.Merge(dst, src)
|
||||
}
|
||||
func (m *PhotoResponse) XXX_Size() int {
|
||||
return xxx_messageInfo_PhotoResponse.Size(m)
|
||||
}
|
||||
func (m *PhotoResponse) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_PhotoResponse.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_PhotoResponse proto.InternalMessageInfo
|
||||
|
||||
func (m *PhotoResponse) GetStatus() *status.Status {
|
||||
if m != nil {
|
||||
return m.Status
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *PhotoResponse) GetPhoto() *Photo {
|
||||
if m != nil {
|
||||
return m.Photo
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Request to list all photos that belong to the user sending the request.
|
||||
//
|
||||
// By default
|
||||
// - does not return the download URL for the photo bytes.
|
||||
//
|
||||
// Parameters:
|
||||
// - 'view' controls if the download URL for the photo bytes will be returned.
|
||||
// - 'page_size' determines the maximum number of photos to return.
|
||||
// - 'page_token' is the next page token value returned from a previous List
|
||||
// request, if any.
|
||||
type ListPhotosRequest struct {
|
||||
// Specifies if a download URL for the photos bytes should be returned in the
|
||||
// Photos response.
|
||||
View PhotoView `protobuf:"varint,1,opt,name=view,proto3,enum=google.streetview.publish.v1.PhotoView" json:"view,omitempty"`
|
||||
// The maximum number of photos to return.
|
||||
// `page_size` must be non-negative. If `page_size` is zero or is not
|
||||
// provided, the default page size of 100 will be used.
|
||||
// The number of photos returned in the response may be less than `page_size`
|
||||
// if the number of photos that belong to the user is less than `page_size`.
|
||||
PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
|
||||
// The next_page_token value returned from a previous List request, if any.
|
||||
PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
|
||||
// The filter expression.
|
||||
// Example: `placeId=ChIJj61dQgK6j4AR4GeTYWZsKWw`
|
||||
Filter string `protobuf:"bytes,4,opt,name=filter,proto3" json:"filter,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ListPhotosRequest) Reset() { *m = ListPhotosRequest{} }
|
||||
func (m *ListPhotosRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListPhotosRequest) ProtoMessage() {}
|
||||
func (*ListPhotosRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_rpcmessages_d38e067cf9604ca9, []int{5}
|
||||
}
|
||||
func (m *ListPhotosRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ListPhotosRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ListPhotosRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ListPhotosRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *ListPhotosRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ListPhotosRequest.Merge(dst, src)
|
||||
}
|
||||
func (m *ListPhotosRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_ListPhotosRequest.Size(m)
|
||||
}
|
||||
func (m *ListPhotosRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ListPhotosRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ListPhotosRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *ListPhotosRequest) GetView() PhotoView {
|
||||
if m != nil {
|
||||
return m.View
|
||||
}
|
||||
return PhotoView_BASIC
|
||||
}
|
||||
|
||||
func (m *ListPhotosRequest) GetPageSize() int32 {
|
||||
if m != nil {
|
||||
return m.PageSize
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *ListPhotosRequest) GetPageToken() string {
|
||||
if m != nil {
|
||||
return m.PageToken
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *ListPhotosRequest) GetFilter() string {
|
||||
if m != nil {
|
||||
return m.Filter
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// Response to list all photos that belong to a user.
|
||||
type ListPhotosResponse struct {
|
||||
// List of photos. There will be a maximum number of items returned based on
|
||||
// the page_size field in the request.
|
||||
Photos []*Photo `protobuf:"bytes,1,rep,name=photos,proto3" json:"photos,omitempty"`
|
||||
// Token to retrieve the next page of results, or empty if there are no
|
||||
// more results in the list.
|
||||
NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ListPhotosResponse) Reset() { *m = ListPhotosResponse{} }
|
||||
func (m *ListPhotosResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListPhotosResponse) ProtoMessage() {}
|
||||
func (*ListPhotosResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_rpcmessages_d38e067cf9604ca9, []int{6}
|
||||
}
|
||||
func (m *ListPhotosResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ListPhotosResponse.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ListPhotosResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ListPhotosResponse.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *ListPhotosResponse) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ListPhotosResponse.Merge(dst, src)
|
||||
}
|
||||
func (m *ListPhotosResponse) XXX_Size() int {
|
||||
return xxx_messageInfo_ListPhotosResponse.Size(m)
|
||||
}
|
||||
func (m *ListPhotosResponse) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ListPhotosResponse.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ListPhotosResponse proto.InternalMessageInfo
|
||||
|
||||
func (m *ListPhotosResponse) GetPhotos() []*Photo {
|
||||
if m != nil {
|
||||
return m.Photos
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ListPhotosResponse) GetNextPageToken() string {
|
||||
if m != nil {
|
||||
return m.NextPageToken
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// Request to update the metadata of a photo.
|
||||
// Updating the pixels of a photo is not supported.
|
||||
type UpdatePhotoRequest struct {
|
||||
// Required. Photo object containing the new metadata. Only the fields
|
||||
// specified in `update_mask` are used. If `update_mask` is not present, the
|
||||
// update applies to all fields.
|
||||
// **Note:** To update `pose.altitude`, `pose.latlngpair` has to be filled as
|
||||
// well. Otherwise, the request will fail.
|
||||
Photo *Photo `protobuf:"bytes,1,opt,name=photo,proto3" json:"photo,omitempty"`
|
||||
// Mask that identifies fields on the photo metadata to update.
|
||||
// If not present, the old Photo metadata will be entirely replaced with the
|
||||
// new Photo metadata in this request. The update fails if invalid fields are
|
||||
// specified. Multiple fields can be specified in a comma-delimited list.
|
||||
//
|
||||
// The following fields are valid:
|
||||
//
|
||||
// * `pose.heading`
|
||||
// * `pose.latlngpair`
|
||||
// * `pose.pitch`
|
||||
// * `pose.roll`
|
||||
// * `pose.level`
|
||||
// * `pose.altitude`
|
||||
// * `connections`
|
||||
// * `places`
|
||||
//
|
||||
//
|
||||
// **Note:** Repeated fields in `update_mask` mean the entire set of repeated
|
||||
// values will be replaced with the new contents. For example, if
|
||||
// `UpdatePhotoRequest.photo.update_mask` contains `connections` and
|
||||
// `UpdatePhotoRequest.photo.connections` is empty, all connections will be
|
||||
// removed.
|
||||
UpdateMask *field_mask.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *UpdatePhotoRequest) Reset() { *m = UpdatePhotoRequest{} }
|
||||
func (m *UpdatePhotoRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*UpdatePhotoRequest) ProtoMessage() {}
|
||||
func (*UpdatePhotoRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_rpcmessages_d38e067cf9604ca9, []int{7}
|
||||
}
|
||||
func (m *UpdatePhotoRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_UpdatePhotoRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *UpdatePhotoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_UpdatePhotoRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *UpdatePhotoRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_UpdatePhotoRequest.Merge(dst, src)
|
||||
}
|
||||
func (m *UpdatePhotoRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_UpdatePhotoRequest.Size(m)
|
||||
}
|
||||
func (m *UpdatePhotoRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_UpdatePhotoRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_UpdatePhotoRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *UpdatePhotoRequest) GetPhoto() *Photo {
|
||||
if m != nil {
|
||||
return m.Photo
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *UpdatePhotoRequest) GetUpdateMask() *field_mask.FieldMask {
|
||||
if m != nil {
|
||||
return m.UpdateMask
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Request to update the metadata of photos.
|
||||
// Updating the pixels of photos is not supported.
|
||||
type BatchUpdatePhotosRequest struct {
|
||||
// Required. List of update photo requests.
|
||||
UpdatePhotoRequests []*UpdatePhotoRequest `protobuf:"bytes,1,rep,name=update_photo_requests,json=updatePhotoRequests,proto3" json:"update_photo_requests,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *BatchUpdatePhotosRequest) Reset() { *m = BatchUpdatePhotosRequest{} }
|
||||
func (m *BatchUpdatePhotosRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*BatchUpdatePhotosRequest) ProtoMessage() {}
|
||||
func (*BatchUpdatePhotosRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_rpcmessages_d38e067cf9604ca9, []int{8}
|
||||
}
|
||||
func (m *BatchUpdatePhotosRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_BatchUpdatePhotosRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *BatchUpdatePhotosRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_BatchUpdatePhotosRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *BatchUpdatePhotosRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_BatchUpdatePhotosRequest.Merge(dst, src)
|
||||
}
|
||||
func (m *BatchUpdatePhotosRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_BatchUpdatePhotosRequest.Size(m)
|
||||
}
|
||||
func (m *BatchUpdatePhotosRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_BatchUpdatePhotosRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_BatchUpdatePhotosRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *BatchUpdatePhotosRequest) GetUpdatePhotoRequests() []*UpdatePhotoRequest {
|
||||
if m != nil {
|
||||
return m.UpdatePhotoRequests
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Response to batch update of metadata of one or more photos.
|
||||
type BatchUpdatePhotosResponse struct {
|
||||
// List of results for each individual photo updated, in the same order as
|
||||
// the request.
|
||||
Results []*PhotoResponse `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *BatchUpdatePhotosResponse) Reset() { *m = BatchUpdatePhotosResponse{} }
|
||||
func (m *BatchUpdatePhotosResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*BatchUpdatePhotosResponse) ProtoMessage() {}
|
||||
func (*BatchUpdatePhotosResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_rpcmessages_d38e067cf9604ca9, []int{9}
|
||||
}
|
||||
func (m *BatchUpdatePhotosResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_BatchUpdatePhotosResponse.Unmarshal(m, b)
|
||||
}
|
||||
func (m *BatchUpdatePhotosResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_BatchUpdatePhotosResponse.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *BatchUpdatePhotosResponse) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_BatchUpdatePhotosResponse.Merge(dst, src)
|
||||
}
|
||||
func (m *BatchUpdatePhotosResponse) XXX_Size() int {
|
||||
return xxx_messageInfo_BatchUpdatePhotosResponse.Size(m)
|
||||
}
|
||||
func (m *BatchUpdatePhotosResponse) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_BatchUpdatePhotosResponse.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_BatchUpdatePhotosResponse proto.InternalMessageInfo
|
||||
|
||||
func (m *BatchUpdatePhotosResponse) GetResults() []*PhotoResponse {
|
||||
if m != nil {
|
||||
return m.Results
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Request to delete a photo.
|
||||
type DeletePhotoRequest struct {
|
||||
// Required. ID of the photo.
|
||||
PhotoId string `protobuf:"bytes,1,opt,name=photo_id,json=photoId,proto3" json:"photo_id,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *DeletePhotoRequest) Reset() { *m = DeletePhotoRequest{} }
|
||||
func (m *DeletePhotoRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*DeletePhotoRequest) ProtoMessage() {}
|
||||
func (*DeletePhotoRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_rpcmessages_d38e067cf9604ca9, []int{10}
|
||||
}
|
||||
func (m *DeletePhotoRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DeletePhotoRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *DeletePhotoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_DeletePhotoRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *DeletePhotoRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_DeletePhotoRequest.Merge(dst, src)
|
||||
}
|
||||
func (m *DeletePhotoRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_DeletePhotoRequest.Size(m)
|
||||
}
|
||||
func (m *DeletePhotoRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_DeletePhotoRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_DeletePhotoRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *DeletePhotoRequest) GetPhotoId() string {
|
||||
if m != nil {
|
||||
return m.PhotoId
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// Request to delete multiple photos.
|
||||
type BatchDeletePhotosRequest struct {
|
||||
// Required. List of delete photo requests.
|
||||
PhotoIds []string `protobuf:"bytes,1,rep,name=photo_ids,json=photoIds,proto3" json:"photo_ids,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *BatchDeletePhotosRequest) Reset() { *m = BatchDeletePhotosRequest{} }
|
||||
func (m *BatchDeletePhotosRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*BatchDeletePhotosRequest) ProtoMessage() {}
|
||||
func (*BatchDeletePhotosRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_rpcmessages_d38e067cf9604ca9, []int{11}
|
||||
}
|
||||
func (m *BatchDeletePhotosRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_BatchDeletePhotosRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *BatchDeletePhotosRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_BatchDeletePhotosRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *BatchDeletePhotosRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_BatchDeletePhotosRequest.Merge(dst, src)
|
||||
}
|
||||
func (m *BatchDeletePhotosRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_BatchDeletePhotosRequest.Size(m)
|
||||
}
|
||||
func (m *BatchDeletePhotosRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_BatchDeletePhotosRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_BatchDeletePhotosRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *BatchDeletePhotosRequest) GetPhotoIds() []string {
|
||||
if m != nil {
|
||||
return m.PhotoIds
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Response to batch delete of one or more photos.
|
||||
type BatchDeletePhotosResponse struct {
|
||||
// The status for the operation to delete a single photo in the batch request.
|
||||
Status []*status.Status `protobuf:"bytes,1,rep,name=status,proto3" json:"status,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *BatchDeletePhotosResponse) Reset() { *m = BatchDeletePhotosResponse{} }
|
||||
func (m *BatchDeletePhotosResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*BatchDeletePhotosResponse) ProtoMessage() {}
|
||||
func (*BatchDeletePhotosResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_rpcmessages_d38e067cf9604ca9, []int{12}
|
||||
}
|
||||
func (m *BatchDeletePhotosResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_BatchDeletePhotosResponse.Unmarshal(m, b)
|
||||
}
|
||||
func (m *BatchDeletePhotosResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_BatchDeletePhotosResponse.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *BatchDeletePhotosResponse) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_BatchDeletePhotosResponse.Merge(dst, src)
|
||||
}
|
||||
func (m *BatchDeletePhotosResponse) XXX_Size() int {
|
||||
return xxx_messageInfo_BatchDeletePhotosResponse.Size(m)
|
||||
}
|
||||
func (m *BatchDeletePhotosResponse) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_BatchDeletePhotosResponse.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_BatchDeletePhotosResponse proto.InternalMessageInfo
|
||||
|
||||
func (m *BatchDeletePhotosResponse) GetStatus() []*status.Status {
|
||||
if m != nil {
|
||||
return m.Status
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*CreatePhotoRequest)(nil), "google.streetview.publish.v1.CreatePhotoRequest")
|
||||
proto.RegisterType((*GetPhotoRequest)(nil), "google.streetview.publish.v1.GetPhotoRequest")
|
||||
proto.RegisterType((*BatchGetPhotosRequest)(nil), "google.streetview.publish.v1.BatchGetPhotosRequest")
|
||||
proto.RegisterType((*BatchGetPhotosResponse)(nil), "google.streetview.publish.v1.BatchGetPhotosResponse")
|
||||
proto.RegisterType((*PhotoResponse)(nil), "google.streetview.publish.v1.PhotoResponse")
|
||||
proto.RegisterType((*ListPhotosRequest)(nil), "google.streetview.publish.v1.ListPhotosRequest")
|
||||
proto.RegisterType((*ListPhotosResponse)(nil), "google.streetview.publish.v1.ListPhotosResponse")
|
||||
proto.RegisterType((*UpdatePhotoRequest)(nil), "google.streetview.publish.v1.UpdatePhotoRequest")
|
||||
proto.RegisterType((*BatchUpdatePhotosRequest)(nil), "google.streetview.publish.v1.BatchUpdatePhotosRequest")
|
||||
proto.RegisterType((*BatchUpdatePhotosResponse)(nil), "google.streetview.publish.v1.BatchUpdatePhotosResponse")
|
||||
proto.RegisterType((*DeletePhotoRequest)(nil), "google.streetview.publish.v1.DeletePhotoRequest")
|
||||
proto.RegisterType((*BatchDeletePhotosRequest)(nil), "google.streetview.publish.v1.BatchDeletePhotosRequest")
|
||||
proto.RegisterType((*BatchDeletePhotosResponse)(nil), "google.streetview.publish.v1.BatchDeletePhotosResponse")
|
||||
proto.RegisterEnum("google.streetview.publish.v1.PhotoView", PhotoView_name, PhotoView_value)
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/streetview/publish/v1/rpcmessages.proto", fileDescriptor_rpcmessages_d38e067cf9604ca9)
|
||||
}
|
||||
|
||||
var fileDescriptor_rpcmessages_d38e067cf9604ca9 = []byte{
|
||||
// 639 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x55, 0xcb, 0x6e, 0xd3, 0x40,
|
||||
0x14, 0xc5, 0x7d, 0xa4, 0xcd, 0xad, 0x4a, 0xcb, 0x40, 0x8b, 0x1b, 0x8a, 0x14, 0x19, 0x09, 0xa2,
|
||||
0x82, 0xec, 0xb6, 0x2c, 0x10, 0xca, 0xaa, 0x49, 0x4a, 0x55, 0x29, 0x7d, 0xc8, 0xa1, 0x20, 0xb1,
|
||||
0xb1, 0x1c, 0xe7, 0xc6, 0xb1, 0xe2, 0x64, 0x5c, 0xcf, 0x38, 0x85, 0xae, 0xf8, 0x00, 0xf8, 0x0b,
|
||||
0x3e, 0x14, 0x79, 0x3c, 0xd3, 0x26, 0x69, 0x88, 0x02, 0x74, 0x67, 0xdf, 0xc7, 0xb9, 0x67, 0xce,
|
||||
0x9d, 0x63, 0x83, 0xe9, 0x53, 0xea, 0x87, 0x68, 0x31, 0x1e, 0x23, 0xf2, 0x41, 0x80, 0x57, 0x56,
|
||||
0x94, 0x34, 0xc3, 0x80, 0x75, 0xac, 0xc1, 0x9e, 0x15, 0x47, 0x5e, 0x0f, 0x19, 0x73, 0x7d, 0x64,
|
||||
0x66, 0x14, 0x53, 0x4e, 0xc9, 0x76, 0x56, 0x6f, 0xde, 0xd6, 0x9b, 0xb2, 0xde, 0x1c, 0xec, 0x15,
|
||||
0x8a, 0x12, 0x4d, 0xd4, 0x36, 0x93, 0xb6, 0xd5, 0x0e, 0x30, 0x6c, 0x39, 0x3d, 0x97, 0x75, 0xb3,
|
||||
0xfe, 0xc2, 0x53, 0x59, 0x11, 0x47, 0x9e, 0xc5, 0xb8, 0xcb, 0x13, 0x09, 0x5c, 0x78, 0x33, 0x9d,
|
||||
0x08, 0x32, 0x9a, 0xc4, 0x9e, 0xa2, 0x61, 0x9c, 0x01, 0xa9, 0xc6, 0xe8, 0x72, 0x3c, 0xef, 0x50,
|
||||
0x4e, 0x6d, 0xbc, 0x4c, 0x90, 0x71, 0xf2, 0x1e, 0x16, 0xa3, 0xf4, 0x5d, 0xd7, 0x8a, 0x5a, 0x69,
|
||||
0x65, 0xff, 0x85, 0x39, 0x8d, 0xac, 0x99, 0xb5, 0x66, 0x1d, 0x46, 0x00, 0x6b, 0x47, 0xc8, 0x47,
|
||||
0xd0, 0xb6, 0x60, 0x59, 0xe4, 0x9c, 0xa0, 0x25, 0x00, 0xf3, 0xf6, 0x92, 0x78, 0x3f, 0x6e, 0x91,
|
||||
0x32, 0x2c, 0xa4, 0x68, 0xfa, 0x5c, 0x51, 0x2b, 0x3d, 0xdc, 0x7f, 0x35, 0xc3, 0x9c, 0x4f, 0x01,
|
||||
0x5e, 0xd9, 0xa2, 0xc9, 0xb8, 0x84, 0x8d, 0x8a, 0xcb, 0xbd, 0x8e, 0x9a, 0xc7, 0xd4, 0xc0, 0x67,
|
||||
0x90, 0x57, 0x03, 0x99, 0xae, 0x15, 0xe7, 0x4b, 0x79, 0x7b, 0x59, 0x4e, 0x64, 0xff, 0x37, 0xd2,
|
||||
0x81, 0xcd, 0xf1, 0x91, 0x2c, 0xa2, 0x7d, 0x86, 0xe4, 0x10, 0x96, 0x62, 0x64, 0x49, 0xc8, 0xb3,
|
||||
0x89, 0x2b, 0xfb, 0xaf, 0x67, 0x11, 0x4d, 0x76, 0xdb, 0xaa, 0xd7, 0x18, 0xc0, 0xea, 0x48, 0x86,
|
||||
0xec, 0x40, 0x2e, 0x5b, 0xaf, 0xdc, 0x05, 0x51, 0xb0, 0x71, 0xe4, 0x99, 0x0d, 0x91, 0xb1, 0x65,
|
||||
0xc5, 0xed, 0xda, 0xe6, 0xfe, 0x7a, 0x6d, 0xbf, 0x34, 0x78, 0x54, 0x0f, 0xd8, 0x98, 0x90, 0x4a,
|
||||
0x2b, 0xed, 0x1f, 0xb4, 0x12, 0x5b, 0x70, 0x7d, 0x74, 0x58, 0x70, 0x8d, 0x82, 0xd1, 0xa2, 0xbd,
|
||||
0x9c, 0x06, 0x1a, 0xc1, 0x35, 0x92, 0xe7, 0x00, 0x22, 0xc9, 0x69, 0x17, 0xfb, 0xfa, 0xbc, 0xb8,
|
||||
0x15, 0xa2, 0xfc, 0x63, 0x1a, 0x20, 0x9b, 0x90, 0x6b, 0x07, 0x21, 0xc7, 0x58, 0x5f, 0x10, 0x29,
|
||||
0xf9, 0x66, 0x7c, 0x03, 0x32, 0xcc, 0x52, 0x6a, 0x54, 0x86, 0x9c, 0x38, 0x85, 0x92, 0x7e, 0xa6,
|
||||
0x83, 0xcb, 0x16, 0xf2, 0x12, 0xd6, 0xfa, 0xf8, 0x95, 0x3b, 0x43, 0x74, 0xe6, 0xc4, 0xcc, 0xd5,
|
||||
0x34, 0x7c, 0xae, 0x28, 0x19, 0x3f, 0x34, 0x20, 0x17, 0x51, 0xeb, 0xfe, 0xac, 0x42, 0xca, 0xb0,
|
||||
0x92, 0x08, 0x40, 0xe1, 0x6b, 0xb9, 0xb4, 0x82, 0x02, 0x50, 0xd6, 0x37, 0x3f, 0xa4, 0xd6, 0x3f,
|
||||
0x71, 0x59, 0xd7, 0x86, 0xac, 0x3c, 0x7d, 0x36, 0xbe, 0x6b, 0xa0, 0x8b, 0xab, 0x38, 0xc4, 0xe9,
|
||||
0x66, 0x6f, 0x2d, 0xd8, 0x90, 0xc8, 0x99, 0x0f, 0xe2, 0x2c, 0xae, 0xf4, 0xd9, 0x9d, 0x4e, 0xf2,
|
||||
0xee, 0x29, 0xed, 0xc7, 0xc9, 0x9d, 0x18, 0x33, 0x9a, 0xb0, 0x35, 0x81, 0xc1, 0xfd, 0xfa, 0xc1,
|
||||
0x02, 0x52, 0xc3, 0x10, 0xc7, 0x44, 0xff, 0xf3, 0x17, 0xc5, 0x78, 0x27, 0x65, 0x19, 0xea, 0x9a,
|
||||
0xe9, 0xbb, 0x60, 0x1c, 0xc9, 0xd3, 0x8c, 0x36, 0x4e, 0x70, 0xe1, 0xfc, 0x74, 0x17, 0xee, 0xec,
|
||||
0x42, 0xfe, 0xc6, 0x0a, 0x24, 0x0f, 0x8b, 0x95, 0x83, 0xc6, 0x71, 0x75, 0xfd, 0x01, 0xd1, 0xe1,
|
||||
0xc9, 0xf1, 0x69, 0xb5, 0x7e, 0x51, 0x3b, 0x74, 0x6a, 0x67, 0x9f, 0x4f, 0xeb, 0x67, 0x07, 0x35,
|
||||
0xe7, 0xc2, 0xae, 0xaf, 0x6b, 0x95, 0x9f, 0x1a, 0x94, 0x3c, 0xda, 0x53, 0x98, 0x3e, 0x52, 0x33,
|
||||
0xf1, 0xbd, 0xc9, 0x42, 0x55, 0xb6, 0x1b, 0x22, 0x9c, 0xa2, 0x9f, 0x67, 0x51, 0x3b, 0xf2, 0x4e,
|
||||
0xe4, 0xcf, 0xe5, 0x4b, 0x55, 0x61, 0xd0, 0xd0, 0xed, 0xfb, 0x26, 0x8d, 0x7d, 0xcb, 0xc7, 0xbe,
|
||||
0xb8, 0x4b, 0x56, 0x96, 0x72, 0xa3, 0x80, 0x4d, 0xfe, 0x39, 0x94, 0xe5, 0x63, 0x33, 0x27, 0xea,
|
||||
0xdf, 0xfe, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x5c, 0x7c, 0xa0, 0x45, 0xd4, 0x06, 0x00, 0x00,
|
||||
}
|
530
vendor/google.golang.org/genproto/googleapis/streetview/publish/v1/streetview_publish.pb.go
generated
vendored
Normal file
530
vendor/google.golang.org/genproto/googleapis/streetview/publish/v1/streetview_publish.pb.go
generated
vendored
Normal file
@@ -0,0 +1,530 @@
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: google/streetview/publish/v1/streetview_publish.proto
|
||||
|
||||
package publish // import "google.golang.org/genproto/googleapis/streetview/publish/v1"
|
||||
|
||||
import proto "github.com/golang/protobuf/proto"
|
||||
import fmt "fmt"
|
||||
import math "math"
|
||||
import empty "github.com/golang/protobuf/ptypes/empty"
|
||||
import _ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
|
||||
import (
|
||||
context "golang.org/x/net/context"
|
||||
grpc "google.golang.org/grpc"
|
||||
)
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
var _ = proto.Marshal
|
||||
var _ = fmt.Errorf
|
||||
var _ = math.Inf
|
||||
|
||||
// This is a compile-time assertion to ensure that this generated file
|
||||
// is compatible with the proto package it is being compiled against.
|
||||
// A compilation error at this line likely means your copy of the
|
||||
// proto package needs to be updated.
|
||||
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
var _ context.Context
|
||||
var _ grpc.ClientConn
|
||||
|
||||
// This is a compile-time assertion to ensure that this generated file
|
||||
// is compatible with the grpc package it is being compiled against.
|
||||
const _ = grpc.SupportPackageIsVersion4
|
||||
|
||||
// StreetViewPublishServiceClient is the client API for StreetViewPublishService service.
|
||||
//
|
||||
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
||||
type StreetViewPublishServiceClient interface {
|
||||
// Creates an upload session to start uploading photo data. The upload URL of
|
||||
// the returned `UploadRef` is used to upload the data for the photo.
|
||||
//
|
||||
// After the upload is complete, the `UploadRef` is used with
|
||||
// `StreetViewPublishService:CreatePhoto()` to create the `Photo` object
|
||||
// entry.
|
||||
StartUpload(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*UploadRef, error)
|
||||
// After the client finishes uploading the photo with the returned
|
||||
// `UploadRef`, `photo.create` publishes the uploaded photo to Street View on
|
||||
// Google Maps.
|
||||
//
|
||||
// This method returns the following error codes:
|
||||
//
|
||||
// * `INVALID_ARGUMENT` if the request is malformed.
|
||||
// * `NOT_FOUND` if the upload reference does not exist.
|
||||
CreatePhoto(ctx context.Context, in *CreatePhotoRequest, opts ...grpc.CallOption) (*Photo, error)
|
||||
// Gets the metadata of the specified `Photo`.
|
||||
//
|
||||
// This method returns the following error codes:
|
||||
//
|
||||
// * `PERMISSION_DENIED` if the requesting user did not create the requested
|
||||
// photo.
|
||||
// * `NOT_FOUND` if the requested photo does not exist.
|
||||
GetPhoto(ctx context.Context, in *GetPhotoRequest, opts ...grpc.CallOption) (*Photo, error)
|
||||
// Gets the metadata of the specified `Photo` batch.
|
||||
//
|
||||
// Note that if `photos.batchGet` fails, either critical fields are
|
||||
// missing or there was an authentication error.
|
||||
// Even if `photos.batchGet` succeeds, there may have been failures
|
||||
// for single photos in the batch. These failures will be specified in
|
||||
// `BatchGetPhotosResponse.results.status`.
|
||||
// See `photo.get` for specific failures that will occur per photo.
|
||||
BatchGetPhotos(ctx context.Context, in *BatchGetPhotosRequest, opts ...grpc.CallOption) (*BatchGetPhotosResponse, error)
|
||||
// Lists all the photos that belong to the user.
|
||||
ListPhotos(ctx context.Context, in *ListPhotosRequest, opts ...grpc.CallOption) (*ListPhotosResponse, error)
|
||||
// Updates the metadata of a photo, such as pose, place association, etc.
|
||||
// Changing the pixels of a photo is not supported.
|
||||
//
|
||||
// This method returns the following error codes:
|
||||
//
|
||||
// * `PERMISSION_DENIED` if the requesting user did not create the requested
|
||||
// photo.
|
||||
// * `INVALID_ARGUMENT` if the request is malformed.
|
||||
// * `NOT_FOUND` if the photo ID does not exist.
|
||||
UpdatePhoto(ctx context.Context, in *UpdatePhotoRequest, opts ...grpc.CallOption) (*Photo, error)
|
||||
// Updates the metadata of photos, such as pose, place association, etc.
|
||||
// Changing the pixels of a photo is not supported.
|
||||
//
|
||||
// Note that if `photos.batchUpdate` fails, either critical fields
|
||||
// are missing or there was an authentication error.
|
||||
// Even if `photos.batchUpdate` succeeds, there may have been
|
||||
// failures for single photos in the batch. These failures will be specified
|
||||
// in `BatchUpdatePhotosResponse.results.status`.
|
||||
// See `UpdatePhoto` for specific failures that will occur per photo.
|
||||
BatchUpdatePhotos(ctx context.Context, in *BatchUpdatePhotosRequest, opts ...grpc.CallOption) (*BatchUpdatePhotosResponse, error)
|
||||
// Deletes a photo and its metadata.
|
||||
//
|
||||
// This method returns the following error codes:
|
||||
//
|
||||
// * `PERMISSION_DENIED` if the requesting user did not create the requested
|
||||
// photo.
|
||||
// * `NOT_FOUND` if the photo ID does not exist.
|
||||
DeletePhoto(ctx context.Context, in *DeletePhotoRequest, opts ...grpc.CallOption) (*empty.Empty, error)
|
||||
// Deletes a list of photos and their metadata.
|
||||
//
|
||||
// Note that if `photos.batchDelete` fails, either critical fields
|
||||
// are missing or there was an authentication error.
|
||||
// Even if `photos.batchDelete` succeeds, there may have been
|
||||
// failures for single photos in the batch. These failures will be specified
|
||||
// in `BatchDeletePhotosResponse.status`.
|
||||
// See `photo.update` for specific failures that will occur per photo.
|
||||
BatchDeletePhotos(ctx context.Context, in *BatchDeletePhotosRequest, opts ...grpc.CallOption) (*BatchDeletePhotosResponse, error)
|
||||
}
|
||||
|
||||
type streetViewPublishServiceClient struct {
|
||||
cc *grpc.ClientConn
|
||||
}
|
||||
|
||||
func NewStreetViewPublishServiceClient(cc *grpc.ClientConn) StreetViewPublishServiceClient {
|
||||
return &streetViewPublishServiceClient{cc}
|
||||
}
|
||||
|
||||
func (c *streetViewPublishServiceClient) StartUpload(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*UploadRef, error) {
|
||||
out := new(UploadRef)
|
||||
err := c.cc.Invoke(ctx, "/google.streetview.publish.v1.StreetViewPublishService/StartUpload", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *streetViewPublishServiceClient) CreatePhoto(ctx context.Context, in *CreatePhotoRequest, opts ...grpc.CallOption) (*Photo, error) {
|
||||
out := new(Photo)
|
||||
err := c.cc.Invoke(ctx, "/google.streetview.publish.v1.StreetViewPublishService/CreatePhoto", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *streetViewPublishServiceClient) GetPhoto(ctx context.Context, in *GetPhotoRequest, opts ...grpc.CallOption) (*Photo, error) {
|
||||
out := new(Photo)
|
||||
err := c.cc.Invoke(ctx, "/google.streetview.publish.v1.StreetViewPublishService/GetPhoto", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *streetViewPublishServiceClient) BatchGetPhotos(ctx context.Context, in *BatchGetPhotosRequest, opts ...grpc.CallOption) (*BatchGetPhotosResponse, error) {
|
||||
out := new(BatchGetPhotosResponse)
|
||||
err := c.cc.Invoke(ctx, "/google.streetview.publish.v1.StreetViewPublishService/BatchGetPhotos", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *streetViewPublishServiceClient) ListPhotos(ctx context.Context, in *ListPhotosRequest, opts ...grpc.CallOption) (*ListPhotosResponse, error) {
|
||||
out := new(ListPhotosResponse)
|
||||
err := c.cc.Invoke(ctx, "/google.streetview.publish.v1.StreetViewPublishService/ListPhotos", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *streetViewPublishServiceClient) UpdatePhoto(ctx context.Context, in *UpdatePhotoRequest, opts ...grpc.CallOption) (*Photo, error) {
|
||||
out := new(Photo)
|
||||
err := c.cc.Invoke(ctx, "/google.streetview.publish.v1.StreetViewPublishService/UpdatePhoto", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *streetViewPublishServiceClient) BatchUpdatePhotos(ctx context.Context, in *BatchUpdatePhotosRequest, opts ...grpc.CallOption) (*BatchUpdatePhotosResponse, error) {
|
||||
out := new(BatchUpdatePhotosResponse)
|
||||
err := c.cc.Invoke(ctx, "/google.streetview.publish.v1.StreetViewPublishService/BatchUpdatePhotos", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *streetViewPublishServiceClient) DeletePhoto(ctx context.Context, in *DeletePhotoRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
|
||||
out := new(empty.Empty)
|
||||
err := c.cc.Invoke(ctx, "/google.streetview.publish.v1.StreetViewPublishService/DeletePhoto", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *streetViewPublishServiceClient) BatchDeletePhotos(ctx context.Context, in *BatchDeletePhotosRequest, opts ...grpc.CallOption) (*BatchDeletePhotosResponse, error) {
|
||||
out := new(BatchDeletePhotosResponse)
|
||||
err := c.cc.Invoke(ctx, "/google.streetview.publish.v1.StreetViewPublishService/BatchDeletePhotos", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
// StreetViewPublishServiceServer is the server API for StreetViewPublishService service.
|
||||
type StreetViewPublishServiceServer interface {
|
||||
// Creates an upload session to start uploading photo data. The upload URL of
|
||||
// the returned `UploadRef` is used to upload the data for the photo.
|
||||
//
|
||||
// After the upload is complete, the `UploadRef` is used with
|
||||
// `StreetViewPublishService:CreatePhoto()` to create the `Photo` object
|
||||
// entry.
|
||||
StartUpload(context.Context, *empty.Empty) (*UploadRef, error)
|
||||
// After the client finishes uploading the photo with the returned
|
||||
// `UploadRef`, `photo.create` publishes the uploaded photo to Street View on
|
||||
// Google Maps.
|
||||
//
|
||||
// This method returns the following error codes:
|
||||
//
|
||||
// * `INVALID_ARGUMENT` if the request is malformed.
|
||||
// * `NOT_FOUND` if the upload reference does not exist.
|
||||
CreatePhoto(context.Context, *CreatePhotoRequest) (*Photo, error)
|
||||
// Gets the metadata of the specified `Photo`.
|
||||
//
|
||||
// This method returns the following error codes:
|
||||
//
|
||||
// * `PERMISSION_DENIED` if the requesting user did not create the requested
|
||||
// photo.
|
||||
// * `NOT_FOUND` if the requested photo does not exist.
|
||||
GetPhoto(context.Context, *GetPhotoRequest) (*Photo, error)
|
||||
// Gets the metadata of the specified `Photo` batch.
|
||||
//
|
||||
// Note that if `photos.batchGet` fails, either critical fields are
|
||||
// missing or there was an authentication error.
|
||||
// Even if `photos.batchGet` succeeds, there may have been failures
|
||||
// for single photos in the batch. These failures will be specified in
|
||||
// `BatchGetPhotosResponse.results.status`.
|
||||
// See `photo.get` for specific failures that will occur per photo.
|
||||
BatchGetPhotos(context.Context, *BatchGetPhotosRequest) (*BatchGetPhotosResponse, error)
|
||||
// Lists all the photos that belong to the user.
|
||||
ListPhotos(context.Context, *ListPhotosRequest) (*ListPhotosResponse, error)
|
||||
// Updates the metadata of a photo, such as pose, place association, etc.
|
||||
// Changing the pixels of a photo is not supported.
|
||||
//
|
||||
// This method returns the following error codes:
|
||||
//
|
||||
// * `PERMISSION_DENIED` if the requesting user did not create the requested
|
||||
// photo.
|
||||
// * `INVALID_ARGUMENT` if the request is malformed.
|
||||
// * `NOT_FOUND` if the photo ID does not exist.
|
||||
UpdatePhoto(context.Context, *UpdatePhotoRequest) (*Photo, error)
|
||||
// Updates the metadata of photos, such as pose, place association, etc.
|
||||
// Changing the pixels of a photo is not supported.
|
||||
//
|
||||
// Note that if `photos.batchUpdate` fails, either critical fields
|
||||
// are missing or there was an authentication error.
|
||||
// Even if `photos.batchUpdate` succeeds, there may have been
|
||||
// failures for single photos in the batch. These failures will be specified
|
||||
// in `BatchUpdatePhotosResponse.results.status`.
|
||||
// See `UpdatePhoto` for specific failures that will occur per photo.
|
||||
BatchUpdatePhotos(context.Context, *BatchUpdatePhotosRequest) (*BatchUpdatePhotosResponse, error)
|
||||
// Deletes a photo and its metadata.
|
||||
//
|
||||
// This method returns the following error codes:
|
||||
//
|
||||
// * `PERMISSION_DENIED` if the requesting user did not create the requested
|
||||
// photo.
|
||||
// * `NOT_FOUND` if the photo ID does not exist.
|
||||
DeletePhoto(context.Context, *DeletePhotoRequest) (*empty.Empty, error)
|
||||
// Deletes a list of photos and their metadata.
|
||||
//
|
||||
// Note that if `photos.batchDelete` fails, either critical fields
|
||||
// are missing or there was an authentication error.
|
||||
// Even if `photos.batchDelete` succeeds, there may have been
|
||||
// failures for single photos in the batch. These failures will be specified
|
||||
// in `BatchDeletePhotosResponse.status`.
|
||||
// See `photo.update` for specific failures that will occur per photo.
|
||||
BatchDeletePhotos(context.Context, *BatchDeletePhotosRequest) (*BatchDeletePhotosResponse, error)
|
||||
}
|
||||
|
||||
func RegisterStreetViewPublishServiceServer(s *grpc.Server, srv StreetViewPublishServiceServer) {
|
||||
s.RegisterService(&_StreetViewPublishService_serviceDesc, srv)
|
||||
}
|
||||
|
||||
func _StreetViewPublishService_StartUpload_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(empty.Empty)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(StreetViewPublishServiceServer).StartUpload(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/google.streetview.publish.v1.StreetViewPublishService/StartUpload",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(StreetViewPublishServiceServer).StartUpload(ctx, req.(*empty.Empty))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _StreetViewPublishService_CreatePhoto_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(CreatePhotoRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(StreetViewPublishServiceServer).CreatePhoto(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/google.streetview.publish.v1.StreetViewPublishService/CreatePhoto",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(StreetViewPublishServiceServer).CreatePhoto(ctx, req.(*CreatePhotoRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _StreetViewPublishService_GetPhoto_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(GetPhotoRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(StreetViewPublishServiceServer).GetPhoto(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/google.streetview.publish.v1.StreetViewPublishService/GetPhoto",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(StreetViewPublishServiceServer).GetPhoto(ctx, req.(*GetPhotoRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _StreetViewPublishService_BatchGetPhotos_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(BatchGetPhotosRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(StreetViewPublishServiceServer).BatchGetPhotos(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/google.streetview.publish.v1.StreetViewPublishService/BatchGetPhotos",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(StreetViewPublishServiceServer).BatchGetPhotos(ctx, req.(*BatchGetPhotosRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _StreetViewPublishService_ListPhotos_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(ListPhotosRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(StreetViewPublishServiceServer).ListPhotos(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/google.streetview.publish.v1.StreetViewPublishService/ListPhotos",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(StreetViewPublishServiceServer).ListPhotos(ctx, req.(*ListPhotosRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _StreetViewPublishService_UpdatePhoto_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(UpdatePhotoRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(StreetViewPublishServiceServer).UpdatePhoto(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/google.streetview.publish.v1.StreetViewPublishService/UpdatePhoto",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(StreetViewPublishServiceServer).UpdatePhoto(ctx, req.(*UpdatePhotoRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _StreetViewPublishService_BatchUpdatePhotos_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(BatchUpdatePhotosRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(StreetViewPublishServiceServer).BatchUpdatePhotos(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/google.streetview.publish.v1.StreetViewPublishService/BatchUpdatePhotos",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(StreetViewPublishServiceServer).BatchUpdatePhotos(ctx, req.(*BatchUpdatePhotosRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _StreetViewPublishService_DeletePhoto_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(DeletePhotoRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(StreetViewPublishServiceServer).DeletePhoto(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/google.streetview.publish.v1.StreetViewPublishService/DeletePhoto",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(StreetViewPublishServiceServer).DeletePhoto(ctx, req.(*DeletePhotoRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _StreetViewPublishService_BatchDeletePhotos_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(BatchDeletePhotosRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(StreetViewPublishServiceServer).BatchDeletePhotos(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/google.streetview.publish.v1.StreetViewPublishService/BatchDeletePhotos",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(StreetViewPublishServiceServer).BatchDeletePhotos(ctx, req.(*BatchDeletePhotosRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
var _StreetViewPublishService_serviceDesc = grpc.ServiceDesc{
|
||||
ServiceName: "google.streetview.publish.v1.StreetViewPublishService",
|
||||
HandlerType: (*StreetViewPublishServiceServer)(nil),
|
||||
Methods: []grpc.MethodDesc{
|
||||
{
|
||||
MethodName: "StartUpload",
|
||||
Handler: _StreetViewPublishService_StartUpload_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "CreatePhoto",
|
||||
Handler: _StreetViewPublishService_CreatePhoto_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "GetPhoto",
|
||||
Handler: _StreetViewPublishService_GetPhoto_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "BatchGetPhotos",
|
||||
Handler: _StreetViewPublishService_BatchGetPhotos_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "ListPhotos",
|
||||
Handler: _StreetViewPublishService_ListPhotos_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "UpdatePhoto",
|
||||
Handler: _StreetViewPublishService_UpdatePhoto_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "BatchUpdatePhotos",
|
||||
Handler: _StreetViewPublishService_BatchUpdatePhotos_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "DeletePhoto",
|
||||
Handler: _StreetViewPublishService_DeletePhoto_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "BatchDeletePhotos",
|
||||
Handler: _StreetViewPublishService_BatchDeletePhotos_Handler,
|
||||
},
|
||||
},
|
||||
Streams: []grpc.StreamDesc{},
|
||||
Metadata: "google/streetview/publish/v1/streetview_publish.proto",
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/streetview/publish/v1/streetview_publish.proto", fileDescriptor_streetview_publish_c124bcab571c3e8a)
|
||||
}
|
||||
|
||||
var fileDescriptor_streetview_publish_c124bcab571c3e8a = []byte{
|
||||
// 533 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x94, 0x4f, 0x6f, 0xd3, 0x30,
|
||||
0x18, 0xc6, 0x15, 0x24, 0x10, 0xb8, 0x08, 0x69, 0x86, 0x55, 0x53, 0x3a, 0x24, 0x08, 0x12, 0xa0,
|
||||
0x6a, 0xd8, 0x1b, 0xe3, 0x8f, 0x54, 0x6e, 0x1d, 0x88, 0x0b, 0x87, 0x69, 0xd5, 0x38, 0x70, 0x99,
|
||||
0xdc, 0xf4, 0x5d, 0x6a, 0x29, 0x8d, 0x4d, 0xec, 0x74, 0x42, 0x30, 0x0e, 0xe3, 0xc8, 0x0d, 0x2e,
|
||||
0x7c, 0x03, 0x3e, 0x10, 0x5f, 0x81, 0x0f, 0x82, 0xea, 0xd8, 0x4d, 0x36, 0x8a, 0x49, 0x4e, 0x69,
|
||||
0xf3, 0x3e, 0xcf, 0xfb, 0xfc, 0xfa, 0xbe, 0xae, 0xd1, 0xd3, 0x44, 0x88, 0x24, 0x05, 0xaa, 0x74,
|
||||
0x0e, 0xa0, 0xe7, 0x1c, 0x4e, 0xa8, 0x2c, 0xc6, 0x29, 0x57, 0x53, 0x3a, 0xdf, 0xa9, 0xbd, 0x3d,
|
||||
0xb2, 0x6f, 0x89, 0xcc, 0x85, 0x16, 0x78, 0xb3, 0xb4, 0x91, 0x4a, 0x40, 0x9c, 0x60, 0xbe, 0x13,
|
||||
0xda, 0x2a, 0x65, 0x92, 0x53, 0x96, 0x65, 0x42, 0x33, 0xcd, 0x45, 0xa6, 0x4a, 0x6f, 0xd8, 0xb3,
|
||||
0x55, 0xf3, 0x6d, 0x5c, 0x1c, 0x53, 0x98, 0x49, 0xfd, 0xc1, 0x16, 0xb7, 0xbc, 0x3c, 0x39, 0x28,
|
||||
0x51, 0xe4, 0x31, 0xb8, 0x56, 0xc4, 0xaf, 0x96, 0xf1, 0x0c, 0x94, 0x62, 0x89, 0xd3, 0x3f, 0xfe,
|
||||
0x8a, 0xd0, 0xc6, 0xc8, 0x68, 0xdf, 0x72, 0x38, 0xd9, 0x2f, 0xa5, 0x23, 0xc8, 0xe7, 0x3c, 0x06,
|
||||
0x2c, 0x51, 0x67, 0xa4, 0x59, 0xae, 0x0f, 0x65, 0x2a, 0xd8, 0x04, 0x77, 0x6d, 0x73, 0xe2, 0x38,
|
||||
0xc9, 0xab, 0x05, 0x67, 0xf8, 0x80, 0xf8, 0x7e, 0x3b, 0x29, 0xdd, 0x07, 0x70, 0x1c, 0xdd, 0x39,
|
||||
0xfb, 0xf5, 0xfb, 0xfb, 0xa5, 0x30, 0x5a, 0x5f, 0xb0, 0xc8, 0xa9, 0xd0, 0x62, 0xa0, 0xaa, 0xfe,
|
||||
0x83, 0xa0, 0x8f, 0x3f, 0xa3, 0xce, 0x5e, 0x0e, 0x4c, 0xc3, 0xfe, 0xa2, 0x8a, 0xb7, 0xfd, 0x9d,
|
||||
0x6b, 0xd2, 0x03, 0x78, 0x5f, 0x80, 0xd2, 0xe1, 0x3d, 0xbf, 0xc3, 0x68, 0xa3, 0x0d, 0xc3, 0x81,
|
||||
0xa3, 0x6b, 0x15, 0xc7, 0x65, 0xf3, 0xc0, 0x9f, 0xd0, 0xd5, 0xd7, 0xa0, 0xcb, 0xf0, 0x47, 0xfe,
|
||||
0x56, 0x4e, 0xd7, 0x2a, 0x79, 0xd3, 0x24, 0x77, 0xf1, 0xad, 0x65, 0x32, 0xfd, 0x68, 0x1e, 0x47,
|
||||
0x7c, 0x72, 0x8a, 0x7f, 0x04, 0xe8, 0xc6, 0x90, 0xe9, 0x78, 0xea, 0x7a, 0x2b, 0xbc, 0xeb, 0xef,
|
||||
0x7a, 0x5e, 0xed, 0x50, 0x9e, 0xb4, 0x33, 0x29, 0x29, 0x32, 0x05, 0x51, 0xcf, 0xb0, 0xad, 0xe3,
|
||||
0x9b, 0x4b, 0x36, 0x35, 0x18, 0x5b, 0x29, 0xfe, 0x12, 0x20, 0xf4, 0x86, 0x2b, 0x87, 0x45, 0xfd,
|
||||
0x09, 0x95, 0xd2, 0x21, 0x6d, 0x37, 0x37, 0x58, 0x1c, 0x6c, 0x70, 0xae, 0x63, 0x54, 0xe1, 0xe0,
|
||||
0x6f, 0x01, 0xea, 0x1c, 0xca, 0x49, 0xd3, 0xf3, 0x51, 0x93, 0xb6, 0xda, 0xd2, 0x96, 0x89, 0xbe,
|
||||
0x1f, 0xde, 0xbe, 0xb8, 0x25, 0xe2, 0x76, 0x45, 0xf8, 0xe4, 0xd4, 0x9d, 0x99, 0x9f, 0x01, 0x5a,
|
||||
0x33, 0x23, 0xad, 0xc5, 0x29, 0xfc, 0xac, 0xc1, 0x0e, 0xea, 0x06, 0x07, 0xf8, 0xbc, 0xb5, 0xcf,
|
||||
0xce, 0xeb, 0xae, 0x81, 0xee, 0x45, 0xdd, 0x8b, 0xeb, 0x2b, 0xd5, 0x8b, 0x7f, 0x57, 0x81, 0x3a,
|
||||
0x2f, 0x21, 0x85, 0x86, 0xd3, 0xab, 0x49, 0x1d, 0xdc, 0x3f, 0x6e, 0x00, 0x77, 0xac, 0xfb, 0xab,
|
||||
0x8f, 0xf5, 0x72, 0x40, 0xb5, 0x8e, 0xcd, 0x06, 0x54, 0x37, 0xb4, 0x19, 0xd0, 0x79, 0xdf, 0xff,
|
||||
0x06, 0x54, 0xaa, 0x07, 0x41, 0x7f, 0x78, 0x16, 0xa0, 0x87, 0xb1, 0x98, 0xb9, 0x84, 0x04, 0x04,
|
||||
0x29, 0x92, 0x78, 0x75, 0xd2, 0x70, 0xed, 0xaf, 0x7b, 0xf3, 0xdd, 0x9e, 0x33, 0x8a, 0x94, 0x65,
|
||||
0x09, 0x11, 0x79, 0x42, 0x13, 0xc8, 0xcc, 0xb0, 0x68, 0x59, 0x62, 0x92, 0xab, 0xd5, 0x97, 0xf3,
|
||||
0x0b, 0xfb, 0x71, 0x7c, 0xc5, 0xe8, 0x77, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x7d, 0x9d, 0xfe,
|
||||
0x1c, 0x89, 0x06, 0x00, 0x00,
|
||||
}
|
Reference in New Issue
Block a user