@lansweeper/data-platform-outbound-grpc 0.4.3 → 0.4.5
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 +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +11 -0
- package/gen-proto/outbound_pb.js +83 -2
- package/generated-go/outbound.pb.go +11473 -11430
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +4 -2
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365Organization$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365Organization$Builder$AssignedPlansConverter.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365Organization$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365Organization.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365OrganizationOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365User$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365User$AssignedPlansDefaultEntryHolder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365User$Builder$AssignedPlansConverter.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365User$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365User$GroupKeysDefaultEntryHolder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365User.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365UserOrBuilder.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/outbound.proto +4 -2
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Office365Organization.java +75 -123
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Office365OrganizationOrBuilder.java +20 -40
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Office365User.java +278 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Office365UserOrBuilder.java +34 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3684 -3666
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Site.java +113 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SiteOrBuilder.java +19 -0
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +2 -0
- package/model/target/{outbound-model-0.4.2-sources.jar → outbound-model-0.4.4-sources.jar} +0 -0
- package/model/target/{outbound-model-0.4.2.jar → outbound-model-0.4.4.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +4 -2
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.4.2-sources.jar → outbound-service-0.4.4-sources.jar} +0 -0
- package/service/target/{outbound-service-0.4.2.jar → outbound-service-0.4.4.jar} +0 -0
|
@@ -82,6 +82,11 @@ export class Site extends jspb.Message {
|
|
|
82
82
|
getReconcileRevalidationTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
83
83
|
setReconcileRevalidationTime(value?: google_protobuf_timestamp_pb.Timestamp): Site;
|
|
84
84
|
|
|
85
|
+
hasCorrelationIndexEnabled(): boolean;
|
|
86
|
+
clearCorrelationIndexEnabled(): void;
|
|
87
|
+
getCorrelationIndexEnabled(): boolean | undefined;
|
|
88
|
+
setCorrelationIndexEnabled(value: boolean): Site;
|
|
89
|
+
|
|
85
90
|
serializeBinary(): Uint8Array;
|
|
86
91
|
toObject(includeInstance?: boolean): Site.AsObject;
|
|
87
92
|
static toObject(includeInstance: boolean, msg: Site): Site.AsObject;
|
|
@@ -110,6 +115,7 @@ export namespace Site {
|
|
|
110
115
|
|
|
111
116
|
unlinkedInstallationsMap: Array<[string, UnlinkedInstallationMetadata.AsObject]>,
|
|
112
117
|
reconcileRevalidationTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
118
|
+
correlationIndexEnabled?: boolean,
|
|
113
119
|
}
|
|
114
120
|
}
|
|
115
121
|
|
|
@@ -20825,6 +20831,9 @@ export class Office365User extends jspb.Message {
|
|
|
20825
20831
|
getDomain(): string | undefined;
|
|
20826
20832
|
setDomain(value: string): Office365User;
|
|
20827
20833
|
|
|
20834
|
+
getAssignedPlansMap(): jspb.Map<string, Office365AssignedPlan>;
|
|
20835
|
+
clearAssignedPlansMap(): void;
|
|
20836
|
+
|
|
20828
20837
|
serializeBinary(): Uint8Array;
|
|
20829
20838
|
toObject(includeInstance?: boolean): Office365User.AsObject;
|
|
20830
20839
|
static toObject(includeInstance: boolean, msg: Office365User): Office365User.AsObject;
|
|
@@ -20881,6 +20890,8 @@ export namespace Office365User {
|
|
|
20881
20890
|
groupKeysMap: Array<[string, boolean]>,
|
|
20882
20891
|
type?: string,
|
|
20883
20892
|
domain?: string,
|
|
20893
|
+
|
|
20894
|
+
assignedPlansMap: Array<[string, Office365AssignedPlan.AsObject]>,
|
|
20884
20895
|
}
|
|
20885
20896
|
}
|
|
20886
20897
|
|
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -6289,7 +6289,8 @@ proto.com.lansweeper.dp.outbound.v1.Site.toObject = function(includeInstance, ms
|
|
|
6289
6289
|
deletionRequest: (f = msg.getDeletionRequest()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
6290
6290
|
deletionTime: (f = msg.getDeletionTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
6291
6291
|
unlinkedInstallationsMap: (f = msg.getUnlinkedInstallationsMap()) ? f.toObject(includeInstance, proto.com.lansweeper.dp.outbound.v1.UnlinkedInstallationMetadata.toObject) : [],
|
|
6292
|
-
reconcileRevalidationTime: (f = msg.getReconcileRevalidationTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f)
|
|
6292
|
+
reconcileRevalidationTime: (f = msg.getReconcileRevalidationTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
6293
|
+
correlationIndexEnabled: jspb.Message.getBooleanFieldWithDefault(msg, 16, false)
|
|
6293
6294
|
};
|
|
6294
6295
|
|
|
6295
6296
|
if (includeInstance) {
|
|
@@ -6395,6 +6396,10 @@ proto.com.lansweeper.dp.outbound.v1.Site.deserializeBinaryFromReader = function(
|
|
|
6395
6396
|
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
6396
6397
|
msg.setReconcileRevalidationTime(value);
|
|
6397
6398
|
break;
|
|
6399
|
+
case 16:
|
|
6400
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
6401
|
+
msg.setCorrelationIndexEnabled(value);
|
|
6402
|
+
break;
|
|
6398
6403
|
default:
|
|
6399
6404
|
reader.skipField();
|
|
6400
6405
|
break;
|
|
@@ -6533,6 +6538,13 @@ proto.com.lansweeper.dp.outbound.v1.Site.serializeBinaryToWriter = function(mess
|
|
|
6533
6538
|
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
6534
6539
|
);
|
|
6535
6540
|
}
|
|
6541
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 16));
|
|
6542
|
+
if (f != null) {
|
|
6543
|
+
writer.writeBool(
|
|
6544
|
+
16,
|
|
6545
|
+
f
|
|
6546
|
+
);
|
|
6547
|
+
}
|
|
6536
6548
|
};
|
|
6537
6549
|
|
|
6538
6550
|
|
|
@@ -7070,6 +7082,42 @@ proto.com.lansweeper.dp.outbound.v1.Site.prototype.hasReconcileRevalidationTime
|
|
|
7070
7082
|
};
|
|
7071
7083
|
|
|
7072
7084
|
|
|
7085
|
+
/**
|
|
7086
|
+
* optional bool correlation_index_enabled = 16;
|
|
7087
|
+
* @return {boolean}
|
|
7088
|
+
*/
|
|
7089
|
+
proto.com.lansweeper.dp.outbound.v1.Site.prototype.getCorrelationIndexEnabled = function() {
|
|
7090
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 16, false));
|
|
7091
|
+
};
|
|
7092
|
+
|
|
7093
|
+
|
|
7094
|
+
/**
|
|
7095
|
+
* @param {boolean} value
|
|
7096
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Site} returns this
|
|
7097
|
+
*/
|
|
7098
|
+
proto.com.lansweeper.dp.outbound.v1.Site.prototype.setCorrelationIndexEnabled = function(value) {
|
|
7099
|
+
return jspb.Message.setField(this, 16, value);
|
|
7100
|
+
};
|
|
7101
|
+
|
|
7102
|
+
|
|
7103
|
+
/**
|
|
7104
|
+
* Clears the field making it undefined.
|
|
7105
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Site} returns this
|
|
7106
|
+
*/
|
|
7107
|
+
proto.com.lansweeper.dp.outbound.v1.Site.prototype.clearCorrelationIndexEnabled = function() {
|
|
7108
|
+
return jspb.Message.setField(this, 16, undefined);
|
|
7109
|
+
};
|
|
7110
|
+
|
|
7111
|
+
|
|
7112
|
+
/**
|
|
7113
|
+
* Returns whether this field is set.
|
|
7114
|
+
* @return {boolean}
|
|
7115
|
+
*/
|
|
7116
|
+
proto.com.lansweeper.dp.outbound.v1.Site.prototype.hasCorrelationIndexEnabled = function() {
|
|
7117
|
+
return jspb.Message.getField(this, 16) != null;
|
|
7118
|
+
};
|
|
7119
|
+
|
|
7120
|
+
|
|
7073
7121
|
|
|
7074
7122
|
|
|
7075
7123
|
|
|
@@ -165596,7 +165644,8 @@ proto.com.lansweeper.dp.outbound.v1.Office365User.toObject = function(includeIns
|
|
|
165596
165644
|
organizationEntityKey: jspb.Message.getFieldWithDefault(msg, 41, ""),
|
|
165597
165645
|
groupKeysMap: (f = msg.getGroupKeysMap()) ? f.toObject(includeInstance, undefined) : [],
|
|
165598
165646
|
type: jspb.Message.getFieldWithDefault(msg, 43, ""),
|
|
165599
|
-
domain: jspb.Message.getFieldWithDefault(msg, 44, "")
|
|
165647
|
+
domain: jspb.Message.getFieldWithDefault(msg, 44, ""),
|
|
165648
|
+
assignedPlansMap: (f = msg.getAssignedPlansMap()) ? f.toObject(includeInstance, proto.com.lansweeper.dp.outbound.v1.Office365AssignedPlan.toObject) : []
|
|
165600
165649
|
};
|
|
165601
165650
|
|
|
165602
165651
|
if (includeInstance) {
|
|
@@ -165809,6 +165858,12 @@ proto.com.lansweeper.dp.outbound.v1.Office365User.deserializeBinaryFromReader =
|
|
|
165809
165858
|
var value = /** @type {string} */ (reader.readString());
|
|
165810
165859
|
msg.setDomain(value);
|
|
165811
165860
|
break;
|
|
165861
|
+
case 45:
|
|
165862
|
+
var value = msg.getAssignedPlansMap();
|
|
165863
|
+
reader.readMessage(value, function(message, reader) {
|
|
165864
|
+
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readMessage, proto.com.lansweeper.dp.outbound.v1.Office365AssignedPlan.deserializeBinaryFromReader, "", new proto.com.lansweeper.dp.outbound.v1.Office365AssignedPlan());
|
|
165865
|
+
});
|
|
165866
|
+
break;
|
|
165812
165867
|
default:
|
|
165813
165868
|
reader.skipField();
|
|
165814
165869
|
break;
|
|
@@ -166138,6 +166193,10 @@ proto.com.lansweeper.dp.outbound.v1.Office365User.serializeBinaryToWriter = func
|
|
|
166138
166193
|
f
|
|
166139
166194
|
);
|
|
166140
166195
|
}
|
|
166196
|
+
f = message.getAssignedPlansMap(true);
|
|
166197
|
+
if (f && f.getLength() > 0) {
|
|
166198
|
+
f.serializeBinary(45, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeMessage, proto.com.lansweeper.dp.outbound.v1.Office365AssignedPlan.serializeBinaryToWriter);
|
|
166199
|
+
}
|
|
166141
166200
|
};
|
|
166142
166201
|
|
|
166143
166202
|
|
|
@@ -167659,6 +167718,28 @@ proto.com.lansweeper.dp.outbound.v1.Office365User.prototype.hasDomain = function
|
|
|
167659
167718
|
};
|
|
167660
167719
|
|
|
167661
167720
|
|
|
167721
|
+
/**
|
|
167722
|
+
* map<string, Office365AssignedPlan> assigned_plans = 45;
|
|
167723
|
+
* @param {boolean=} opt_noLazyCreate Do not create the map if
|
|
167724
|
+
* empty, instead returning `undefined`
|
|
167725
|
+
* @return {!jspb.Map<string,!proto.com.lansweeper.dp.outbound.v1.Office365AssignedPlan>}
|
|
167726
|
+
*/
|
|
167727
|
+
proto.com.lansweeper.dp.outbound.v1.Office365User.prototype.getAssignedPlansMap = function(opt_noLazyCreate) {
|
|
167728
|
+
return /** @type {!jspb.Map<string,!proto.com.lansweeper.dp.outbound.v1.Office365AssignedPlan>} */ (
|
|
167729
|
+
jspb.Message.getMapField(this, 45, opt_noLazyCreate,
|
|
167730
|
+
proto.com.lansweeper.dp.outbound.v1.Office365AssignedPlan));
|
|
167731
|
+
};
|
|
167732
|
+
|
|
167733
|
+
|
|
167734
|
+
/**
|
|
167735
|
+
* Clears values from the map. The map will be non-null.
|
|
167736
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Office365User} returns this
|
|
167737
|
+
*/
|
|
167738
|
+
proto.com.lansweeper.dp.outbound.v1.Office365User.prototype.clearAssignedPlansMap = function() {
|
|
167739
|
+
this.getAssignedPlansMap().clear();
|
|
167740
|
+
return this;};
|
|
167741
|
+
|
|
167742
|
+
|
|
167662
167743
|
/**
|
|
167663
167744
|
* @enum {number}
|
|
167664
167745
|
*/
|