@lansweeper/data-platform-outbound-grpc 0.3.5 → 0.3.7

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 (43) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/gen-proto/image.json +1 -1
  3. package/gen-proto/outbound_pb.d.ts +63 -5
  4. package/gen-proto/outbound_pb.js +480 -22
  5. package/generated-go/outbound.pb.go +10115 -9946
  6. package/java.json +1 -1
  7. package/model/pom.xml +1 -1
  8. package/model/src/main/proto/outbound.proto +15 -1
  9. package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroup$1.class +0 -0
  10. package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroup$Builder.class +0 -0
  11. package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroup.class +0 -0
  12. package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroupOrBuilder.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/Site$1.class +0 -0
  15. package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$Builder$UnlinkedInstallationsConverter.class +0 -0
  16. package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$Builder.class +0 -0
  17. package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$UnlinkedInstallationsDefaultEntryHolder.class +0 -0
  18. package/model/target/classes/com/lansweeper/dp/outbound/v1/Site.class +0 -0
  19. package/model/target/classes/com/lansweeper/dp/outbound/v1/SiteOrBuilder.class +0 -0
  20. package/model/target/classes/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadata$1.class +0 -0
  21. package/model/target/classes/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadata$Builder.class +0 -0
  22. package/model/target/classes/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadata.class +0 -0
  23. package/model/target/classes/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadataOrBuilder.class +0 -0
  24. package/model/target/classes/outbound.proto +15 -1
  25. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroup.java +149 -52
  26. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroupOrBuilder.java +10 -6
  27. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +2948 -2909
  28. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Site.java +900 -0
  29. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SiteOrBuilder.java +106 -0
  30. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadata.java +794 -0
  31. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadataOrBuilder.java +40 -0
  32. package/model/target/maven-archiver/pom.properties +2 -2
  33. package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +6 -0
  34. package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +2 -0
  35. package/model/target/{outbound-model-0.3.4-sources.jar → outbound-model-0.3.6-sources.jar} +0 -0
  36. package/model/target/{outbound-model-0.3.4.jar → outbound-model-0.3.6.jar} +0 -0
  37. package/package.json +2 -2
  38. package/pom.xml +1 -1
  39. package/proto/outbound.proto +15 -1
  40. package/service/pom.xml +1 -1
  41. package/service/target/maven-archiver/pom.properties +2 -2
  42. package/service/target/{outbound-service-0.3.4-sources.jar → outbound-service-0.3.6-sources.jar} +0 -0
  43. package/service/target/{outbound-service-0.3.4.jar → outbound-service-0.3.6.jar} +0 -0
@@ -143,4 +143,110 @@ public interface SiteOrBuilder extends
143
143
  * @return The reconciliationRefreshFrequency.
144
144
  */
145
145
  long getReconciliationRefreshFrequency();
146
+
147
+ /**
148
+ * <code>optional int32 user_size = 10;</code>
149
+ * @return Whether the userSize field is set.
150
+ */
151
+ boolean hasUserSize();
152
+ /**
153
+ * <code>optional int32 user_size = 10;</code>
154
+ * @return The userSize.
155
+ */
156
+ int getUserSize();
157
+
158
+ /**
159
+ * <code>optional int32 group_size = 11;</code>
160
+ * @return Whether the groupSize field is set.
161
+ */
162
+ boolean hasGroupSize();
163
+ /**
164
+ * <code>optional int32 group_size = 11;</code>
165
+ * @return The groupSize.
166
+ */
167
+ int getGroupSize();
168
+
169
+ /**
170
+ * <code>optional .google.protobuf.Timestamp deletion_request = 12;</code>
171
+ * @return Whether the deletionRequest field is set.
172
+ */
173
+ boolean hasDeletionRequest();
174
+ /**
175
+ * <code>optional .google.protobuf.Timestamp deletion_request = 12;</code>
176
+ * @return The deletionRequest.
177
+ */
178
+ com.google.protobuf.Timestamp getDeletionRequest();
179
+ /**
180
+ * <code>optional .google.protobuf.Timestamp deletion_request = 12;</code>
181
+ */
182
+ com.google.protobuf.TimestampOrBuilder getDeletionRequestOrBuilder();
183
+
184
+ /**
185
+ * <code>optional .google.protobuf.Timestamp deletion_time = 13;</code>
186
+ * @return Whether the deletionTime field is set.
187
+ */
188
+ boolean hasDeletionTime();
189
+ /**
190
+ * <code>optional .google.protobuf.Timestamp deletion_time = 13;</code>
191
+ * @return The deletionTime.
192
+ */
193
+ com.google.protobuf.Timestamp getDeletionTime();
194
+ /**
195
+ * <code>optional .google.protobuf.Timestamp deletion_time = 13;</code>
196
+ */
197
+ com.google.protobuf.TimestampOrBuilder getDeletionTimeOrBuilder();
198
+
199
+ /**
200
+ * <pre>
201
+ * Unlinked installations, where the key is the installation id and the value is the metadata
202
+ * </pre>
203
+ *
204
+ * <code>map&lt;string, .com.lansweeper.dp.outbound.v1.UnlinkedInstallationMetadata&gt; unlinked_installations = 14;</code>
205
+ */
206
+ int getUnlinkedInstallationsCount();
207
+ /**
208
+ * <pre>
209
+ * Unlinked installations, where the key is the installation id and the value is the metadata
210
+ * </pre>
211
+ *
212
+ * <code>map&lt;string, .com.lansweeper.dp.outbound.v1.UnlinkedInstallationMetadata&gt; unlinked_installations = 14;</code>
213
+ */
214
+ boolean containsUnlinkedInstallations(
215
+ java.lang.String key);
216
+ /**
217
+ * Use {@link #getUnlinkedInstallationsMap()} instead.
218
+ */
219
+ @java.lang.Deprecated
220
+ java.util.Map<java.lang.String, com.lansweeper.dp.outbound.v1.UnlinkedInstallationMetadata>
221
+ getUnlinkedInstallations();
222
+ /**
223
+ * <pre>
224
+ * Unlinked installations, where the key is the installation id and the value is the metadata
225
+ * </pre>
226
+ *
227
+ * <code>map&lt;string, .com.lansweeper.dp.outbound.v1.UnlinkedInstallationMetadata&gt; unlinked_installations = 14;</code>
228
+ */
229
+ java.util.Map<java.lang.String, com.lansweeper.dp.outbound.v1.UnlinkedInstallationMetadata>
230
+ getUnlinkedInstallationsMap();
231
+ /**
232
+ * <pre>
233
+ * Unlinked installations, where the key is the installation id and the value is the metadata
234
+ * </pre>
235
+ *
236
+ * <code>map&lt;string, .com.lansweeper.dp.outbound.v1.UnlinkedInstallationMetadata&gt; unlinked_installations = 14;</code>
237
+ */
238
+ /* nullable */
239
+ com.lansweeper.dp.outbound.v1.UnlinkedInstallationMetadata getUnlinkedInstallationsOrDefault(
240
+ java.lang.String key,
241
+ /* nullable */
242
+ com.lansweeper.dp.outbound.v1.UnlinkedInstallationMetadata defaultValue);
243
+ /**
244
+ * <pre>
245
+ * Unlinked installations, where the key is the installation id and the value is the metadata
246
+ * </pre>
247
+ *
248
+ * <code>map&lt;string, .com.lansweeper.dp.outbound.v1.UnlinkedInstallationMetadata&gt; unlinked_installations = 14;</code>
249
+ */
250
+ com.lansweeper.dp.outbound.v1.UnlinkedInstallationMetadata getUnlinkedInstallationsOrThrow(
251
+ java.lang.String key);
146
252
  }