1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package logging
22
23 import (
24 reflect "reflect"
25 sync "sync"
26
27 protoreflect "google.golang.org/protobuf/reflect/protoreflect"
28 protoimpl "google.golang.org/protobuf/runtime/protoimpl"
29 )
30
31 const (
32
33 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
34
35 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
36 )
37
38
39 type IngestDetailsLog struct {
40 state protoimpl.MessageState
41 sizeCache protoimpl.SizeCache
42 unknownFields protoimpl.UnknownFields
43
44
45 IngestionTrackingId string `protobuf:"bytes,1,opt,name=ingestion_tracking_id,json=ingestionTrackingId,proto3" json:"ingestion_tracking_id,omitempty"`
46
47 Content string `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"`
48 }
49
50 func (x *IngestDetailsLog) Reset() {
51 *x = IngestDetailsLog{}
52 if protoimpl.UnsafeEnabled {
53 mi := &file_google_search_partnerdataingestion_logging_v1_platformlog_proto_msgTypes[0]
54 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
55 ms.StoreMessageInfo(mi)
56 }
57 }
58
59 func (x *IngestDetailsLog) String() string {
60 return protoimpl.X.MessageStringOf(x)
61 }
62
63 func (*IngestDetailsLog) ProtoMessage() {}
64
65 func (x *IngestDetailsLog) ProtoReflect() protoreflect.Message {
66 mi := &file_google_search_partnerdataingestion_logging_v1_platformlog_proto_msgTypes[0]
67 if protoimpl.UnsafeEnabled && x != nil {
68 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
69 if ms.LoadMessageInfo() == nil {
70 ms.StoreMessageInfo(mi)
71 }
72 return ms
73 }
74 return mi.MessageOf(x)
75 }
76
77
78 func (*IngestDetailsLog) Descriptor() ([]byte, []int) {
79 return file_google_search_partnerdataingestion_logging_v1_platformlog_proto_rawDescGZIP(), []int{0}
80 }
81
82 func (x *IngestDetailsLog) GetIngestionTrackingId() string {
83 if x != nil {
84 return x.IngestionTrackingId
85 }
86 return ""
87 }
88
89 func (x *IngestDetailsLog) GetContent() string {
90 if x != nil {
91 return x.Content
92 }
93 return ""
94 }
95
96 var File_google_search_partnerdataingestion_logging_v1_platformlog_proto protoreflect.FileDescriptor
97
98 var file_google_search_partnerdataingestion_logging_v1_platformlog_proto_rawDesc = []byte{
99 0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x2f,
100 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x69, 0x6e, 0x67, 0x65, 0x73,
101 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x6c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x2f, 0x76, 0x31, 0x2f,
102 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x6c, 0x6f, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74,
103 0x6f, 0x12, 0x2d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68,
104 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x69, 0x6e, 0x67, 0x65,
105 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x6c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31,
106 0x22, 0x60, 0x0a, 0x10, 0x49, 0x6e, 0x67, 0x65, 0x73, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c,
107 0x73, 0x4c, 0x6f, 0x67, 0x12, 0x32, 0x0a, 0x15, 0x69, 0x6e, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f,
108 0x6e, 0x5f, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
109 0x01, 0x28, 0x09, 0x52, 0x13, 0x69, 0x6e, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x72,
110 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74,
111 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65,
112 0x6e, 0x74, 0x42, 0xa0, 0x01, 0x0a, 0x31, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
113 0x65, 0x2e, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
114 0x64, 0x61, 0x74, 0x61, 0x69, 0x6e, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x6c, 0x6f,
115 0x67, 0x67, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x42, 0x10, 0x50, 0x6c, 0x61, 0x74, 0x66, 0x6f,
116 0x72, 0x6d, 0x4c, 0x6f, 0x67, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x54, 0x67, 0x6f,
117 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
118 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
119 0x70, 0x69, 0x73, 0x2f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e,
120 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x69, 0x6e, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x2f,
121 0x6c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x2f, 0x76, 0x31, 0x3b, 0x6c, 0x6f, 0x67, 0x67, 0x69,
122 0x6e, 0x67, 0xf8, 0x01, 0x01, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
123 }
124
125 var (
126 file_google_search_partnerdataingestion_logging_v1_platformlog_proto_rawDescOnce sync.Once
127 file_google_search_partnerdataingestion_logging_v1_platformlog_proto_rawDescData = file_google_search_partnerdataingestion_logging_v1_platformlog_proto_rawDesc
128 )
129
130 func file_google_search_partnerdataingestion_logging_v1_platformlog_proto_rawDescGZIP() []byte {
131 file_google_search_partnerdataingestion_logging_v1_platformlog_proto_rawDescOnce.Do(func() {
132 file_google_search_partnerdataingestion_logging_v1_platformlog_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_search_partnerdataingestion_logging_v1_platformlog_proto_rawDescData)
133 })
134 return file_google_search_partnerdataingestion_logging_v1_platformlog_proto_rawDescData
135 }
136
137 var file_google_search_partnerdataingestion_logging_v1_platformlog_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
138 var file_google_search_partnerdataingestion_logging_v1_platformlog_proto_goTypes = []interface{}{
139 (*IngestDetailsLog)(nil),
140 }
141 var file_google_search_partnerdataingestion_logging_v1_platformlog_proto_depIdxs = []int32{
142 0,
143 0,
144 0,
145 0,
146 0,
147 }
148
149 func init() { file_google_search_partnerdataingestion_logging_v1_platformlog_proto_init() }
150 func file_google_search_partnerdataingestion_logging_v1_platformlog_proto_init() {
151 if File_google_search_partnerdataingestion_logging_v1_platformlog_proto != nil {
152 return
153 }
154 if !protoimpl.UnsafeEnabled {
155 file_google_search_partnerdataingestion_logging_v1_platformlog_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
156 switch v := v.(*IngestDetailsLog); i {
157 case 0:
158 return &v.state
159 case 1:
160 return &v.sizeCache
161 case 2:
162 return &v.unknownFields
163 default:
164 return nil
165 }
166 }
167 }
168 type x struct{}
169 out := protoimpl.TypeBuilder{
170 File: protoimpl.DescBuilder{
171 GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
172 RawDescriptor: file_google_search_partnerdataingestion_logging_v1_platformlog_proto_rawDesc,
173 NumEnums: 0,
174 NumMessages: 1,
175 NumExtensions: 0,
176 NumServices: 0,
177 },
178 GoTypes: file_google_search_partnerdataingestion_logging_v1_platformlog_proto_goTypes,
179 DependencyIndexes: file_google_search_partnerdataingestion_logging_v1_platformlog_proto_depIdxs,
180 MessageInfos: file_google_search_partnerdataingestion_logging_v1_platformlog_proto_msgTypes,
181 }.Build()
182 File_google_search_partnerdataingestion_logging_v1_platformlog_proto = out.File
183 file_google_search_partnerdataingestion_logging_v1_platformlog_proto_rawDesc = nil
184 file_google_search_partnerdataingestion_logging_v1_platformlog_proto_goTypes = nil
185 file_google_search_partnerdataingestion_logging_v1_platformlog_proto_depIdxs = nil
186 }
187
View as plain text