@lansweeper/data-platform-outbound-grpc 0.3.38 → 0.4.1
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.
- package/CHANGELOG.md +20 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +54 -0
- package/gen-proto/outbound_pb.js +438 -3
- package/generated-go/outbound.pb.go +10983 -10877
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +12 -4
- package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterface$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterface$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterface.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterfaceOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$Builder$UnlinkedInstallationsConverter.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Site.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SiteOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SpecHardwareInfo$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SpecHardwareInfo$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SpecHardwareInfo.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SpecHardwareInfoOrBuilder.class +0 -0
- package/model/target/classes/outbound.proto +12 -4
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkInterface.java +984 -6
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkInterfaceOrBuilder.java +116 -2
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3379 -3369
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Site.java +185 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SiteOrBuilder.java +15 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SpecHardwareInfo.java +386 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SpecHardwareInfoOrBuilder.java +58 -0
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/{outbound-model-0.3.37-sources.jar → outbound-model-0.4.0-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.37.jar → outbound-model-0.4.0.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +12 -4
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.3.37-sources.jar → outbound-service-0.4.0-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.37.jar → outbound-service-0.4.0.jar} +0 -0
|
@@ -401,7 +401,7 @@ public interface NetworkInterfaceOrBuilder extends
|
|
|
401
401
|
|
|
402
402
|
/**
|
|
403
403
|
* <pre>
|
|
404
|
-
* SNMP and EsxiHost
|
|
404
|
+
* SNMP, Linux, and EsxiHost
|
|
405
405
|
* </pre>
|
|
406
406
|
*
|
|
407
407
|
* <code>optional int64 mtu = 18;</code>
|
|
@@ -410,7 +410,7 @@ public interface NetworkInterfaceOrBuilder extends
|
|
|
410
410
|
boolean hasMtu();
|
|
411
411
|
/**
|
|
412
412
|
* <pre>
|
|
413
|
-
* SNMP and EsxiHost
|
|
413
|
+
* SNMP, Linux, and EsxiHost
|
|
414
414
|
* </pre>
|
|
415
415
|
*
|
|
416
416
|
* <code>optional int64 mtu = 18;</code>
|
|
@@ -690,4 +690,118 @@ public interface NetworkInterfaceOrBuilder extends
|
|
|
690
690
|
* @return The ipv6DhcpEnabled.
|
|
691
691
|
*/
|
|
692
692
|
boolean getIpv6DhcpEnabled();
|
|
693
|
+
|
|
694
|
+
/**
|
|
695
|
+
* <pre>
|
|
696
|
+
* Linux specifics:
|
|
697
|
+
* </pre>
|
|
698
|
+
*
|
|
699
|
+
* <code>optional string state = 36;</code>
|
|
700
|
+
* @return Whether the state field is set.
|
|
701
|
+
*/
|
|
702
|
+
boolean hasState();
|
|
703
|
+
/**
|
|
704
|
+
* <pre>
|
|
705
|
+
* Linux specifics:
|
|
706
|
+
* </pre>
|
|
707
|
+
*
|
|
708
|
+
* <code>optional string state = 36;</code>
|
|
709
|
+
* @return The state.
|
|
710
|
+
*/
|
|
711
|
+
java.lang.String getState();
|
|
712
|
+
/**
|
|
713
|
+
* <pre>
|
|
714
|
+
* Linux specifics:
|
|
715
|
+
* </pre>
|
|
716
|
+
*
|
|
717
|
+
* <code>optional string state = 36;</code>
|
|
718
|
+
* @return The bytes for state.
|
|
719
|
+
*/
|
|
720
|
+
com.google.protobuf.ByteString
|
|
721
|
+
getStateBytes();
|
|
722
|
+
|
|
723
|
+
/**
|
|
724
|
+
* <code>optional string link_encap = 37;</code>
|
|
725
|
+
* @return Whether the linkEncap field is set.
|
|
726
|
+
*/
|
|
727
|
+
boolean hasLinkEncap();
|
|
728
|
+
/**
|
|
729
|
+
* <code>optional string link_encap = 37;</code>
|
|
730
|
+
* @return The linkEncap.
|
|
731
|
+
*/
|
|
732
|
+
java.lang.String getLinkEncap();
|
|
733
|
+
/**
|
|
734
|
+
* <code>optional string link_encap = 37;</code>
|
|
735
|
+
* @return The bytes for linkEncap.
|
|
736
|
+
*/
|
|
737
|
+
com.google.protobuf.ByteString
|
|
738
|
+
getLinkEncapBytes();
|
|
739
|
+
|
|
740
|
+
/**
|
|
741
|
+
* <code>optional string broadcast = 38;</code>
|
|
742
|
+
* @return Whether the broadcast field is set.
|
|
743
|
+
*/
|
|
744
|
+
boolean hasBroadcast();
|
|
745
|
+
/**
|
|
746
|
+
* <code>optional string broadcast = 38;</code>
|
|
747
|
+
* @return The broadcast.
|
|
748
|
+
*/
|
|
749
|
+
java.lang.String getBroadcast();
|
|
750
|
+
/**
|
|
751
|
+
* <code>optional string broadcast = 38;</code>
|
|
752
|
+
* @return The bytes for broadcast.
|
|
753
|
+
*/
|
|
754
|
+
com.google.protobuf.ByteString
|
|
755
|
+
getBroadcastBytes();
|
|
756
|
+
|
|
757
|
+
/**
|
|
758
|
+
* <code>optional string scope = 39;</code>
|
|
759
|
+
* @return Whether the scope field is set.
|
|
760
|
+
*/
|
|
761
|
+
boolean hasScope();
|
|
762
|
+
/**
|
|
763
|
+
* <code>optional string scope = 39;</code>
|
|
764
|
+
* @return The scope.
|
|
765
|
+
*/
|
|
766
|
+
java.lang.String getScope();
|
|
767
|
+
/**
|
|
768
|
+
* <code>optional string scope = 39;</code>
|
|
769
|
+
* @return The bytes for scope.
|
|
770
|
+
*/
|
|
771
|
+
com.google.protobuf.ByteString
|
|
772
|
+
getScopeBytes();
|
|
773
|
+
|
|
774
|
+
/**
|
|
775
|
+
* <code>optional string q_disc = 40;</code>
|
|
776
|
+
* @return Whether the qDisc field is set.
|
|
777
|
+
*/
|
|
778
|
+
boolean hasQDisc();
|
|
779
|
+
/**
|
|
780
|
+
* <code>optional string q_disc = 40;</code>
|
|
781
|
+
* @return The qDisc.
|
|
782
|
+
*/
|
|
783
|
+
java.lang.String getQDisc();
|
|
784
|
+
/**
|
|
785
|
+
* <code>optional string q_disc = 40;</code>
|
|
786
|
+
* @return The bytes for qDisc.
|
|
787
|
+
*/
|
|
788
|
+
com.google.protobuf.ByteString
|
|
789
|
+
getQDiscBytes();
|
|
790
|
+
|
|
791
|
+
/**
|
|
792
|
+
* <code>optional string group = 41;</code>
|
|
793
|
+
* @return Whether the group field is set.
|
|
794
|
+
*/
|
|
795
|
+
boolean hasGroup();
|
|
796
|
+
/**
|
|
797
|
+
* <code>optional string group = 41;</code>
|
|
798
|
+
* @return The group.
|
|
799
|
+
*/
|
|
800
|
+
java.lang.String getGroup();
|
|
801
|
+
/**
|
|
802
|
+
* <code>optional string group = 41;</code>
|
|
803
|
+
* @return The bytes for group.
|
|
804
|
+
*/
|
|
805
|
+
com.google.protobuf.ByteString
|
|
806
|
+
getGroupBytes();
|
|
693
807
|
}
|