@lansweeper/data-platform-outbound-grpc 0.5.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/gen-proto/image.json +1 -1
  3. package/gen-proto/outbound_pb.d.ts +254 -0
  4. package/gen-proto/outbound_pb.js +2056 -1
  5. package/generated-go/outbound.pb.go +4048 -3509
  6. package/java.json +1 -1
  7. package/model/pom.xml +1 -1
  8. package/model/src/main/proto/outbound.proto +44 -1
  9. package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryPrinter$1.class +0 -0
  10. package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryPrinter$Builder.class +0 -0
  11. package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryPrinter.class +0 -0
  12. package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryPrinterOrBuilder.class +0 -0
  13. package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
  14. package/model/target/classes/com/lansweeper/dp/outbound/v1/Printer$1.class +0 -0
  15. package/model/target/classes/com/lansweeper/dp/outbound/v1/Printer$Builder.class +0 -0
  16. package/model/target/classes/com/lansweeper/dp/outbound/v1/Printer.class +0 -0
  17. package/model/target/classes/com/lansweeper/dp/outbound/v1/PrinterOrBuilder.class +0 -0
  18. package/model/target/classes/outbound.proto +44 -1
  19. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryPrinter.java +5697 -0
  20. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryPrinterOrBuilder.java +649 -0
  21. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +1071 -1010
  22. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Printer.java +243 -4
  23. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/PrinterOrBuilder.java +27 -0
  24. package/model/target/maven-archiver/pom.properties +2 -2
  25. package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +4 -0
  26. package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +3 -1
  27. package/model/target/{outbound-model-0.4.10-sources.jar → outbound-model-0.5.0-sources.jar} +0 -0
  28. package/model/target/{outbound-model-0.4.10.jar → outbound-model-0.5.0.jar} +0 -0
  29. package/package.json +2 -2
  30. package/pom.xml +1 -1
  31. package/proto/outbound.proto +44 -1
  32. package/service/pom.xml +1 -1
  33. package/service/target/maven-archiver/pom.properties +2 -2
  34. package/service/target/{outbound-service-0.4.10-sources.jar → outbound-service-0.5.0-sources.jar} +0 -0
  35. package/service/target/{outbound-service-0.4.10.jar → outbound-service-0.5.0.jar} +0 -0
@@ -0,0 +1,649 @@
1
+ // Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ // source: outbound.proto
3
+
4
+ // Protobuf Java Version: 3.25.1
5
+ package com.lansweeper.dp.outbound.v1;
6
+
7
+ public interface ActiveDirectoryPrinterOrBuilder extends
8
+ // @@protoc_insertion_point(interface_extends:com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter)
9
+ com.google.protobuf.MessageOrBuilder {
10
+
11
+ /**
12
+ * <code>optional string description = 1;</code>
13
+ * @return Whether the description field is set.
14
+ */
15
+ boolean hasDescription();
16
+ /**
17
+ * <code>optional string description = 1;</code>
18
+ * @return The description.
19
+ */
20
+ java.lang.String getDescription();
21
+ /**
22
+ * <code>optional string description = 1;</code>
23
+ * @return The bytes for description.
24
+ */
25
+ com.google.protobuf.ByteString
26
+ getDescriptionBytes();
27
+
28
+ /**
29
+ * <code>optional string cn = 2;</code>
30
+ * @return Whether the cn field is set.
31
+ */
32
+ boolean hasCn();
33
+ /**
34
+ * <code>optional string cn = 2;</code>
35
+ * @return The cn.
36
+ */
37
+ java.lang.String getCn();
38
+ /**
39
+ * <code>optional string cn = 2;</code>
40
+ * @return The bytes for cn.
41
+ */
42
+ com.google.protobuf.ByteString
43
+ getCnBytes();
44
+
45
+ /**
46
+ * <code>optional uint32 driver_version = 3;</code>
47
+ * @return Whether the driverVersion field is set.
48
+ */
49
+ boolean hasDriverVersion();
50
+ /**
51
+ * <code>optional uint32 driver_version = 3;</code>
52
+ * @return The driverVersion.
53
+ */
54
+ int getDriverVersion();
55
+
56
+ /**
57
+ * <code>optional string server_name = 4;</code>
58
+ * @return Whether the serverName field is set.
59
+ */
60
+ boolean hasServerName();
61
+ /**
62
+ * <code>optional string server_name = 4;</code>
63
+ * @return The serverName.
64
+ */
65
+ java.lang.String getServerName();
66
+ /**
67
+ * <code>optional string server_name = 4;</code>
68
+ * @return The bytes for serverName.
69
+ */
70
+ com.google.protobuf.ByteString
71
+ getServerNameBytes();
72
+
73
+ /**
74
+ * <code>optional string d_score_propagation_data = 5;</code>
75
+ * @return Whether the dScorePropagationData field is set.
76
+ */
77
+ boolean hasDScorePropagationData();
78
+ /**
79
+ * <code>optional string d_score_propagation_data = 5;</code>
80
+ * @return The dScorePropagationData.
81
+ */
82
+ java.lang.String getDScorePropagationData();
83
+ /**
84
+ * <code>optional string d_score_propagation_data = 5;</code>
85
+ * @return The bytes for dScorePropagationData.
86
+ */
87
+ com.google.protobuf.ByteString
88
+ getDScorePropagationDataBytes();
89
+
90
+ /**
91
+ * <code>optional string nt_security_descriptor = 6;</code>
92
+ * @return Whether the ntSecurityDescriptor field is set.
93
+ */
94
+ boolean hasNtSecurityDescriptor();
95
+ /**
96
+ * <code>optional string nt_security_descriptor = 6;</code>
97
+ * @return The ntSecurityDescriptor.
98
+ */
99
+ java.lang.String getNtSecurityDescriptor();
100
+ /**
101
+ * <code>optional string nt_security_descriptor = 6;</code>
102
+ * @return The bytes for ntSecurityDescriptor.
103
+ */
104
+ com.google.protobuf.ByteString
105
+ getNtSecurityDescriptorBytes();
106
+
107
+ /**
108
+ * <code>optional uint32 print_start_time = 7;</code>
109
+ * @return Whether the printStartTime field is set.
110
+ */
111
+ boolean hasPrintStartTime();
112
+ /**
113
+ * <code>optional uint32 print_start_time = 7;</code>
114
+ * @return The printStartTime.
115
+ */
116
+ int getPrintStartTime();
117
+
118
+ /**
119
+ * <pre>
120
+ * from a ; separated list of bin names
121
+ * </pre>
122
+ *
123
+ * <code>repeated string print_bin_names = 8;</code>
124
+ * @return A list containing the printBinNames.
125
+ */
126
+ java.util.List<java.lang.String>
127
+ getPrintBinNamesList();
128
+ /**
129
+ * <pre>
130
+ * from a ; separated list of bin names
131
+ * </pre>
132
+ *
133
+ * <code>repeated string print_bin_names = 8;</code>
134
+ * @return The count of printBinNames.
135
+ */
136
+ int getPrintBinNamesCount();
137
+ /**
138
+ * <pre>
139
+ * from a ; separated list of bin names
140
+ * </pre>
141
+ *
142
+ * <code>repeated string print_bin_names = 8;</code>
143
+ * @param index The index of the element to return.
144
+ * @return The printBinNames at the given index.
145
+ */
146
+ java.lang.String getPrintBinNames(int index);
147
+ /**
148
+ * <pre>
149
+ * from a ; separated list of bin names
150
+ * </pre>
151
+ *
152
+ * <code>repeated string print_bin_names = 8;</code>
153
+ * @param index The index of the value to return.
154
+ * @return The bytes of the printBinNames at the given index.
155
+ */
156
+ com.google.protobuf.ByteString
157
+ getPrintBinNamesBytes(int index);
158
+
159
+ /**
160
+ * <code>optional bool print_color = 9;</code>
161
+ * @return Whether the printColor field is set.
162
+ */
163
+ boolean hasPrintColor();
164
+ /**
165
+ * <code>optional bool print_color = 9;</code>
166
+ * @return The printColor.
167
+ */
168
+ boolean getPrintColor();
169
+
170
+ /**
171
+ * <code>optional bool print_keep_printed_jobs = 10;</code>
172
+ * @return Whether the printKeepPrintedJobs field is set.
173
+ */
174
+ boolean hasPrintKeepPrintedJobs();
175
+ /**
176
+ * <code>optional bool print_keep_printed_jobs = 10;</code>
177
+ * @return The printKeepPrintedJobs.
178
+ */
179
+ boolean getPrintKeepPrintedJobs();
180
+
181
+ /**
182
+ * <code>optional string print_spooling = 11;</code>
183
+ * @return Whether the printSpooling field is set.
184
+ */
185
+ boolean hasPrintSpooling();
186
+ /**
187
+ * <code>optional string print_spooling = 11;</code>
188
+ * @return The printSpooling.
189
+ */
190
+ java.lang.String getPrintSpooling();
191
+ /**
192
+ * <code>optional string print_spooling = 11;</code>
193
+ * @return The bytes for printSpooling.
194
+ */
195
+ com.google.protobuf.ByteString
196
+ getPrintSpoolingBytes();
197
+
198
+ /**
199
+ * <code>optional bool print_duplex_supported = 12;</code>
200
+ * @return Whether the printDuplexSupported field is set.
201
+ */
202
+ boolean hasPrintDuplexSupported();
203
+ /**
204
+ * <code>optional bool print_duplex_supported = 12;</code>
205
+ * @return The printDuplexSupported.
206
+ */
207
+ boolean getPrintDuplexSupported();
208
+
209
+ /**
210
+ * <code>optional uint32 print_min_y_extent = 13;</code>
211
+ * @return Whether the printMinYExtent field is set.
212
+ */
213
+ boolean hasPrintMinYExtent();
214
+ /**
215
+ * <code>optional uint32 print_min_y_extent = 13;</code>
216
+ * @return The printMinYExtent.
217
+ */
218
+ int getPrintMinYExtent();
219
+
220
+ /**
221
+ * <code>optional uint32 print_max_y_extent = 14;</code>
222
+ * @return Whether the printMaxYExtent field is set.
223
+ */
224
+ boolean hasPrintMaxYExtent();
225
+ /**
226
+ * <code>optional uint32 print_max_y_extent = 14;</code>
227
+ * @return The printMaxYExtent.
228
+ */
229
+ int getPrintMaxYExtent();
230
+
231
+ /**
232
+ * <code>optional uint32 print_min_x_extent = 15;</code>
233
+ * @return Whether the printMinXExtent field is set.
234
+ */
235
+ boolean hasPrintMinXExtent();
236
+ /**
237
+ * <code>optional uint32 print_min_x_extent = 15;</code>
238
+ * @return The printMinXExtent.
239
+ */
240
+ int getPrintMinXExtent();
241
+
242
+ /**
243
+ * <code>optional uint32 print_max_x_extent = 16;</code>
244
+ * @return Whether the printMaxXExtent field is set.
245
+ */
246
+ boolean hasPrintMaxXExtent();
247
+ /**
248
+ * <code>optional uint32 print_max_x_extent = 16;</code>
249
+ * @return The printMaxXExtent.
250
+ */
251
+ int getPrintMaxXExtent();
252
+
253
+ /**
254
+ * <code>optional uint32 print_max_resolution_supported = 17;</code>
255
+ * @return Whether the printMaxResolutionSupported field is set.
256
+ */
257
+ boolean hasPrintMaxResolutionSupported();
258
+ /**
259
+ * <code>optional uint32 print_max_resolution_supported = 17;</code>
260
+ * @return The printMaxResolutionSupported.
261
+ */
262
+ int getPrintMaxResolutionSupported();
263
+
264
+ /**
265
+ * <code>optional uint32 print_pages_per_minute = 18;</code>
266
+ * @return Whether the printPagesPerMinute field is set.
267
+ */
268
+ boolean hasPrintPagesPerMinute();
269
+ /**
270
+ * <code>optional uint32 print_pages_per_minute = 18;</code>
271
+ * @return The printPagesPerMinute.
272
+ */
273
+ int getPrintPagesPerMinute();
274
+
275
+ /**
276
+ * <code>optional bool print_stapling_supported = 19;</code>
277
+ * @return Whether the printStaplingSupported field is set.
278
+ */
279
+ boolean hasPrintStaplingSupported();
280
+ /**
281
+ * <code>optional bool print_stapling_supported = 19;</code>
282
+ * @return The printStaplingSupported.
283
+ */
284
+ boolean getPrintStaplingSupported();
285
+
286
+ /**
287
+ * <code>optional uint32 instance_type = 20;</code>
288
+ * @return Whether the instanceType field is set.
289
+ */
290
+ boolean hasInstanceType();
291
+ /**
292
+ * <code>optional uint32 instance_type = 20;</code>
293
+ * @return The instanceType.
294
+ */
295
+ int getInstanceType();
296
+
297
+ /**
298
+ * <code>optional bool print_collate = 21;</code>
299
+ * @return Whether the printCollate field is set.
300
+ */
301
+ boolean hasPrintCollate();
302
+ /**
303
+ * <code>optional bool print_collate = 21;</code>
304
+ * @return The printCollate.
305
+ */
306
+ boolean getPrintCollate();
307
+
308
+ /**
309
+ * <code>optional uint32 print_rate = 38;</code>
310
+ * @return Whether the printRate field is set.
311
+ */
312
+ boolean hasPrintRate();
313
+ /**
314
+ * <code>optional uint32 print_rate = 38;</code>
315
+ * @return The printRate.
316
+ */
317
+ int getPrintRate();
318
+
319
+ /**
320
+ * <code>optional string print_rate_unit = 22;</code>
321
+ * @return Whether the printRateUnit field is set.
322
+ */
323
+ boolean hasPrintRateUnit();
324
+ /**
325
+ * <code>optional string print_rate_unit = 22;</code>
326
+ * @return The printRateUnit.
327
+ */
328
+ java.lang.String getPrintRateUnit();
329
+ /**
330
+ * <code>optional string print_rate_unit = 22;</code>
331
+ * @return The bytes for printRateUnit.
332
+ */
333
+ com.google.protobuf.ByteString
334
+ getPrintRateUnitBytes();
335
+
336
+ /**
337
+ * <code>optional uint32 print_end_time = 23;</code>
338
+ * @return Whether the printEndTime field is set.
339
+ */
340
+ boolean hasPrintEndTime();
341
+ /**
342
+ * <code>optional uint32 print_end_time = 23;</code>
343
+ * @return The printEndTime.
344
+ */
345
+ int getPrintEndTime();
346
+
347
+ /**
348
+ * <code>optional string port_name = 24;</code>
349
+ * @return Whether the portName field is set.
350
+ */
351
+ boolean hasPortName();
352
+ /**
353
+ * <code>optional string port_name = 24;</code>
354
+ * @return The portName.
355
+ */
356
+ java.lang.String getPortName();
357
+ /**
358
+ * <code>optional string port_name = 24;</code>
359
+ * @return The bytes for portName.
360
+ */
361
+ com.google.protobuf.ByteString
362
+ getPortNameBytes();
363
+
364
+ /**
365
+ * <code>optional string priority = 25;</code>
366
+ * @return Whether the priority field is set.
367
+ */
368
+ boolean hasPriority();
369
+ /**
370
+ * <code>optional string priority = 25;</code>
371
+ * @return The priority.
372
+ */
373
+ java.lang.String getPriority();
374
+ /**
375
+ * <code>optional string priority = 25;</code>
376
+ * @return The bytes for priority.
377
+ */
378
+ com.google.protobuf.ByteString
379
+ getPriorityBytes();
380
+
381
+ /**
382
+ * <code>optional string version_number = 26;</code>
383
+ * @return Whether the versionNumber field is set.
384
+ */
385
+ boolean hasVersionNumber();
386
+ /**
387
+ * <code>optional string version_number = 26;</code>
388
+ * @return The versionNumber.
389
+ */
390
+ java.lang.String getVersionNumber();
391
+ /**
392
+ * <code>optional string version_number = 26;</code>
393
+ * @return The bytes for versionNumber.
394
+ */
395
+ com.google.protobuf.ByteString
396
+ getVersionNumberBytes();
397
+
398
+ /**
399
+ * <code>optional string printer_name = 27;</code>
400
+ * @return Whether the printerName field is set.
401
+ */
402
+ boolean hasPrinterName();
403
+ /**
404
+ * <code>optional string printer_name = 27;</code>
405
+ * @return The printerName.
406
+ */
407
+ java.lang.String getPrinterName();
408
+ /**
409
+ * <code>optional string printer_name = 27;</code>
410
+ * @return The bytes for printerName.
411
+ */
412
+ com.google.protobuf.ByteString
413
+ getPrinterNameBytes();
414
+
415
+ /**
416
+ * <code>optional string short_server_name = 28;</code>
417
+ * @return Whether the shortServerName field is set.
418
+ */
419
+ boolean hasShortServerName();
420
+ /**
421
+ * <code>optional string short_server_name = 28;</code>
422
+ * @return The shortServerName.
423
+ */
424
+ java.lang.String getShortServerName();
425
+ /**
426
+ * <code>optional string short_server_name = 28;</code>
427
+ * @return The bytes for shortServerName.
428
+ */
429
+ com.google.protobuf.ByteString
430
+ getShortServerNameBytes();
431
+
432
+ /**
433
+ * <code>optional string print_media_ready = 29;</code>
434
+ * @return Whether the printMediaReady field is set.
435
+ */
436
+ boolean hasPrintMediaReady();
437
+ /**
438
+ * <code>optional string print_media_ready = 29;</code>
439
+ * @return The printMediaReady.
440
+ */
441
+ java.lang.String getPrintMediaReady();
442
+ /**
443
+ * <code>optional string print_media_ready = 29;</code>
444
+ * @return The bytes for printMediaReady.
445
+ */
446
+ com.google.protobuf.ByteString
447
+ getPrintMediaReadyBytes();
448
+
449
+ /**
450
+ * <pre>
451
+ * from a ; separated list of supported media types
452
+ * </pre>
453
+ *
454
+ * <code>repeated string print_media_supported = 30;</code>
455
+ * @return A list containing the printMediaSupported.
456
+ */
457
+ java.util.List<java.lang.String>
458
+ getPrintMediaSupportedList();
459
+ /**
460
+ * <pre>
461
+ * from a ; separated list of supported media types
462
+ * </pre>
463
+ *
464
+ * <code>repeated string print_media_supported = 30;</code>
465
+ * @return The count of printMediaSupported.
466
+ */
467
+ int getPrintMediaSupportedCount();
468
+ /**
469
+ * <pre>
470
+ * from a ; separated list of supported media types
471
+ * </pre>
472
+ *
473
+ * <code>repeated string print_media_supported = 30;</code>
474
+ * @param index The index of the element to return.
475
+ * @return The printMediaSupported at the given index.
476
+ */
477
+ java.lang.String getPrintMediaSupported(int index);
478
+ /**
479
+ * <pre>
480
+ * from a ; separated list of supported media types
481
+ * </pre>
482
+ *
483
+ * <code>repeated string print_media_supported = 30;</code>
484
+ * @param index The index of the value to return.
485
+ * @return The bytes of the printMediaSupported at the given index.
486
+ */
487
+ com.google.protobuf.ByteString
488
+ getPrintMediaSupportedBytes(int index);
489
+
490
+ /**
491
+ * <code>optional string unc_name = 31;</code>
492
+ * @return Whether the uncName field is set.
493
+ */
494
+ boolean hasUncName();
495
+ /**
496
+ * <code>optional string unc_name = 31;</code>
497
+ * @return The uncName.
498
+ */
499
+ java.lang.String getUncName();
500
+ /**
501
+ * <code>optional string unc_name = 31;</code>
502
+ * @return The bytes for uncName.
503
+ */
504
+ com.google.protobuf.ByteString
505
+ getUncNameBytes();
506
+
507
+ /**
508
+ * <code>optional string usn_changed = 32;</code>
509
+ * @return Whether the usnChanged field is set.
510
+ */
511
+ boolean hasUsnChanged();
512
+ /**
513
+ * <code>optional string usn_changed = 32;</code>
514
+ * @return The usnChanged.
515
+ */
516
+ java.lang.String getUsnChanged();
517
+ /**
518
+ * <code>optional string usn_changed = 32;</code>
519
+ * @return The bytes for usnChanged.
520
+ */
521
+ com.google.protobuf.ByteString
522
+ getUsnChangedBytes();
523
+
524
+ /**
525
+ * <code>optional string usn_created = 33;</code>
526
+ * @return Whether the usnCreated field is set.
527
+ */
528
+ boolean hasUsnCreated();
529
+ /**
530
+ * <code>optional string usn_created = 33;</code>
531
+ * @return The usnCreated.
532
+ */
533
+ java.lang.String getUsnCreated();
534
+ /**
535
+ * <code>optional string usn_created = 33;</code>
536
+ * @return The bytes for usnCreated.
537
+ */
538
+ com.google.protobuf.ByteString
539
+ getUsnCreatedBytes();
540
+
541
+ /**
542
+ * <code>optional string category = 34;</code>
543
+ * @return Whether the category field is set.
544
+ */
545
+ boolean hasCategory();
546
+ /**
547
+ * <code>optional string category = 34;</code>
548
+ * @return The category.
549
+ */
550
+ java.lang.String getCategory();
551
+ /**
552
+ * <code>optional string category = 34;</code>
553
+ * @return The bytes for category.
554
+ */
555
+ com.google.protobuf.ByteString
556
+ getCategoryBytes();
557
+
558
+ /**
559
+ * <code>optional string driver_name = 35;</code>
560
+ * @return Whether the driverName field is set.
561
+ */
562
+ boolean hasDriverName();
563
+ /**
564
+ * <code>optional string driver_name = 35;</code>
565
+ * @return The driverName.
566
+ */
567
+ java.lang.String getDriverName();
568
+ /**
569
+ * <code>optional string driver_name = 35;</code>
570
+ * @return The bytes for driverName.
571
+ */
572
+ com.google.protobuf.ByteString
573
+ getDriverNameBytes();
574
+
575
+ /**
576
+ * <pre>
577
+ * from a ; separated list of supported orientations
578
+ * </pre>
579
+ *
580
+ * <code>repeated string print_orientations_supported = 36;</code>
581
+ * @return A list containing the printOrientationsSupported.
582
+ */
583
+ java.util.List<java.lang.String>
584
+ getPrintOrientationsSupportedList();
585
+ /**
586
+ * <pre>
587
+ * from a ; separated list of supported orientations
588
+ * </pre>
589
+ *
590
+ * <code>repeated string print_orientations_supported = 36;</code>
591
+ * @return The count of printOrientationsSupported.
592
+ */
593
+ int getPrintOrientationsSupportedCount();
594
+ /**
595
+ * <pre>
596
+ * from a ; separated list of supported orientations
597
+ * </pre>
598
+ *
599
+ * <code>repeated string print_orientations_supported = 36;</code>
600
+ * @param index The index of the element to return.
601
+ * @return The printOrientationsSupported at the given index.
602
+ */
603
+ java.lang.String getPrintOrientationsSupported(int index);
604
+ /**
605
+ * <pre>
606
+ * from a ; separated list of supported orientations
607
+ * </pre>
608
+ *
609
+ * <code>repeated string print_orientations_supported = 36;</code>
610
+ * @param index The index of the value to return.
611
+ * @return The bytes of the printOrientationsSupported at the given index.
612
+ */
613
+ com.google.protobuf.ByteString
614
+ getPrintOrientationsSupportedBytes(int index);
615
+
616
+ /**
617
+ * <code>optional string print_share_name = 37;</code>
618
+ * @return Whether the printShareName field is set.
619
+ */
620
+ boolean hasPrintShareName();
621
+ /**
622
+ * <code>optional string print_share_name = 37;</code>
623
+ * @return The printShareName.
624
+ */
625
+ java.lang.String getPrintShareName();
626
+ /**
627
+ * <code>optional string print_share_name = 37;</code>
628
+ * @return The bytes for printShareName.
629
+ */
630
+ com.google.protobuf.ByteString
631
+ getPrintShareNameBytes();
632
+
633
+ /**
634
+ * <code>optional string ip_address = 39;</code>
635
+ * @return Whether the ipAddress field is set.
636
+ */
637
+ boolean hasIpAddress();
638
+ /**
639
+ * <code>optional string ip_address = 39;</code>
640
+ * @return The ipAddress.
641
+ */
642
+ java.lang.String getIpAddress();
643
+ /**
644
+ * <code>optional string ip_address = 39;</code>
645
+ * @return The bytes for ipAddress.
646
+ */
647
+ com.google.protobuf.ByteString
648
+ getIpAddressBytes();
649
+ }