Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@ private Builder(ErrorCause instance) {
this.causedBy = instance.causedBy;
this.rootCause = instance.rootCause;
this.suppressed = instance.suppressed;
this.metadata = instance.metadata;

}
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,7 @@ private Builder(InlineGet<TDocument> instance) {
this.primaryTerm = instance.primaryTerm;
this.routing = instance.routing;
this.source = instance.source;
this.metadata = instance.metadata;

}
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ private Builder(InferenceAggregate instance) {
this.featureImportance = instance.featureImportance;
this.topClasses = instance.topClasses;
this.warning = instance.warning;
this.data = instance.data;

}
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ public Builder() {
}
private Builder(Suggester instance) {
this.text = instance.text;
this.suggesters = instance.suggesters;

}
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1366,6 +1366,7 @@ private Builder(IndexSettings instance) {
this.indexingSlowlog = instance.indexingSlowlog;
this.indexingPressure = instance.indexingPressure;
this.store = instance.store;
this.otherSettings = instance.otherSettings;

}
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,7 @@ private Builder(ExplainAnalyzeToken instance) {
this.termfrequency = instance.termfrequency;
this.token = instance.token;
this.type = instance.type;
this.attributes = instance.attributes;

}
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ private Builder(DocumentSimulation instance) {
this.source = instance.source;
this.version = instance.version;
this.versionType = instance.versionType;
this.metadata = instance.metadata;

}
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ private Builder(NodeInfoDiscover instance) {
this.seedHosts = instance.seedHosts;
this.type = instance.type;
this.seedProviders = instance.seedProviders;
this.settings = instance.settings;

}
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ private Builder(Tags instance) {
this.alias = instance.alias;
this.type = instance.type;
this.organisation = instance.organisation;
this.userDefinedTags = instance.userDefinedTags;

}
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,7 @@ private Builder(IngestDocumentSimulation instance) {
this.ignoredFields = instance.ignoredFields;
this.error = instance.error;
this.effectiveMapping = instance.effectiveMapping;
this.metadata = instance.metadata;

}
/**
Expand Down