Skip to content
Open
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
2 changes: 0 additions & 2 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ updates:
versions: [ ">=5.0.0" ]
- dependency-name: "com.github.victools:jsonschema-module-jackson"
versions: [ ">=5.0.0" ]
- dependency-name: "org.openapitools:openapi-generator"
versions: [ ">=7.22.0" ]
groups:
production-minor-patch:
dependency-type: "production"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class ConfigurationDocument
@JsonProperty("createdTimestamp")
private OffsetDateTime createdTimestamp;

/** Gets or Sets type */
/** Type of the resource. Can be FOLDER, DOCUMENT. */
public enum TypeEnum {
/** The FOLDER option of this ConfigurationDocument */
FOLDER("FOLDER"),
Expand Down Expand Up @@ -245,7 +245,7 @@ public void setCreatedTimestamp(@Nullable final OffsetDateTime createdTimestamp)
/**
* Set the type of this {@link ConfigurationDocument} instance and return the same instance.
*
* @param type The type of this {@link ConfigurationDocument}
* @param type Type of the resource. Can be FOLDER, DOCUMENT.
* @return The same instance of this {@link ConfigurationDocument} class
*/
@Nonnull
Expand All @@ -255,7 +255,7 @@ public ConfigurationDocument type(@Nullable final TypeEnum type) {
}

/**
* Get type
* Type of the resource. Can be FOLDER, DOCUMENT.
*
* @return type The type of this {@link ConfigurationDocument} instance.
*/
Expand All @@ -267,7 +267,7 @@ public TypeEnum getType() {
/**
* Set the type of this {@link ConfigurationDocument} instance.
*
* @param type The type of this {@link ConfigurationDocument}
* @param type Type of the resource. Can be FOLDER, DOCUMENT.
*/
public void setType(@Nullable final TypeEnum type) {
this.type = type;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class DocumentMetadata
@JsonProperty("value")
private List<String> value;

/** Gets or Sets matchMode */
/** Match mode for the metadata key (ANY or ALL). */
public enum MatchModeEnum {
/** The ANY option of this DocumentMetadata */
ANY("ANY"),
Expand Down Expand Up @@ -190,7 +190,7 @@ public void setValue(@Nullable final List<String> value) {
/**
* Set the matchMode of this {@link DocumentMetadata} instance and return the same instance.
*
* @param matchMode The matchMode of this {@link DocumentMetadata}
* @param matchMode Match mode for the metadata key (ANY or ALL).
* @return The same instance of this {@link DocumentMetadata} class
*/
@Nonnull
Expand All @@ -200,7 +200,7 @@ public DocumentMetadata matchMode(@Nullable final MatchModeEnum matchMode) {
}

/**
* Get matchMode
* Match mode for the metadata key (ANY or ALL).
*
* @return matchMode The matchMode of this {@link DocumentMetadata} instance.
*/
Expand All @@ -212,7 +212,7 @@ public MatchModeEnum getMatchMode() {
/**
* Set the matchMode of this {@link DocumentMetadata} instance.
*
* @param matchMode The matchMode of this {@link DocumentMetadata}
* @param matchMode Match mode for the metadata key (ANY or ALL).
*/
public void setMatchMode(@Nullable final MatchModeEnum matchMode) {
this.matchMode = matchMode;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public static DataRepositoryTypeEnum fromValue(@Nonnull final String value) {
@JsonProperty("labels")
private List<MetadataConfigurationRequestLabelsInner> labels = new ArrayList<>();

/** Gets or Sets enumerationStatus */
/** Status of metadata enumeration for the configuration. */
public enum EnumerationStatusEnum {
/** The NEW option of this MetadataConfigurationResponse */
NEW("NEW"),
Expand Down Expand Up @@ -416,7 +416,7 @@ public void setLabels(@Nullable final List<MetadataConfigurationRequestLabelsInn
* Set the enumerationStatus of this {@link MetadataConfigurationResponse} instance and return the
* same instance.
*
* @param enumerationStatus The enumerationStatus of this {@link MetadataConfigurationResponse}
* @param enumerationStatus Status of metadata enumeration for the configuration.
* @return The same instance of this {@link MetadataConfigurationResponse} class
*/
@Nonnull
Expand All @@ -427,7 +427,7 @@ public MetadataConfigurationResponse enumerationStatus(
}

/**
* Get enumerationStatus
* Status of metadata enumeration for the configuration.
*
* @return enumerationStatus The enumerationStatus of this {@link MetadataConfigurationResponse}
* instance.
Expand All @@ -440,7 +440,7 @@ public EnumerationStatusEnum getEnumerationStatus() {
/**
* Set the enumerationStatus of this {@link MetadataConfigurationResponse} instance.
*
* @param enumerationStatus The enumerationStatus of this {@link MetadataConfigurationResponse}
* @param enumerationStatus Status of metadata enumeration for the configuration.
*/
public void setEnumerationStatus(@Nullable final EnumerationStatusEnum enumerationStatus) {
this.enumerationStatus = enumerationStatus;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void setRegex(@Nonnull final String regex) {
* Set the replacementStrategy of this {@link DPICustomEntity} instance and return the same
* instance.
*
* @param replacementStrategy The replacementStrategy of this {@link DPICustomEntity}
* @param replacementStrategy Replacement strategy to be used for the entity
* @return The same instance of this {@link DPICustomEntity} class
*/
@Nonnull
Expand All @@ -85,7 +85,7 @@ public DPICustomEntity replacementStrategy(@Nonnull final DPIMethodConstant repl
}

/**
* Get replacementStrategy
* Replacement strategy to be used for the entity
*
* @return replacementStrategy The replacementStrategy of this {@link DPICustomEntity} instance.
*/
Expand All @@ -97,7 +97,7 @@ public DPIMethodConstant getReplacementStrategy() {
/**
* Set the replacementStrategy of this {@link DPICustomEntity} instance.
*
* @param replacementStrategy The replacementStrategy of this {@link DPICustomEntity}
* @param replacementStrategy Replacement strategy to be used for the entity
*/
public void setReplacementStrategy(@Nonnull final DPIMethodConstant replacementStrategy) {
this.replacementStrategy = replacementStrategy;
Expand Down Expand Up @@ -229,7 +229,7 @@ public interface Builder1 {
/**
* Set the replacementStrategy of this {@link DPICustomEntity} instance.
*
* @param replacementStrategy The replacementStrategy of this {@link DPICustomEntity}
* @param replacementStrategy Replacement strategy to be used for the entity
* @return The DPICustomEntity instance.
*/
DPICustomEntity replacementStrategy(@Nonnull final DPIMethodConstant replacementStrategy);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ protected TranslationModuleConfig() {}
/**
* Set the input of this {@link TranslationModuleConfig} instance and return the same instance.
*
* @param input The input of this {@link TranslationModuleConfig}
* @param input Configuration for input translation
* @return The same instance of this {@link TranslationModuleConfig} class
*/
@Nonnull
Expand All @@ -53,7 +53,7 @@ public TranslationModuleConfig input(@Nullable final SAPDocumentTranslationInput
}

/**
* Get input
* Configuration for input translation
*
* @return input The input of this {@link TranslationModuleConfig} instance.
*/
Expand All @@ -65,7 +65,7 @@ public SAPDocumentTranslationInput getInput() {
/**
* Set the input of this {@link TranslationModuleConfig} instance.
*
* @param input The input of this {@link TranslationModuleConfig}
* @param input Configuration for input translation
*/
public void setInput(@Nullable final SAPDocumentTranslationInput input) {
this.input = input;
Expand All @@ -74,7 +74,7 @@ public void setInput(@Nullable final SAPDocumentTranslationInput input) {
/**
* Set the output of this {@link TranslationModuleConfig} instance and return the same instance.
*
* @param output The output of this {@link TranslationModuleConfig}
* @param output Configuration for output translation
* @return The same instance of this {@link TranslationModuleConfig} class
*/
@Nonnull
Expand All @@ -84,7 +84,7 @@ public TranslationModuleConfig output(@Nullable final SAPDocumentTranslationOutp
}

/**
* Get output
* Configuration for output translation
*
* @return output The output of this {@link TranslationModuleConfig} instance.
*/
Expand All @@ -96,7 +96,7 @@ public SAPDocumentTranslationOutput getOutput() {
/**
* Set the output of this {@link TranslationModuleConfig} instance.
*
* @param output The output of this {@link TranslationModuleConfig}
* @param output Configuration for output translation
*/
public void setOutput(@Nullable final SAPDocumentTranslationOutput output) {
this.output = output;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public static TargetStatusEnum fromValue(@Nonnull final String value) {
@JsonProperty("targetStatus")
private TargetStatusEnum targetStatus;

/** Gets or Sets lastOperation */
/** Last operation applied to this deployment. */
public enum LastOperationEnum {
/** The CREATE option of this AiDeployment */
CREATE("CREATE"),
Expand Down Expand Up @@ -496,7 +496,7 @@ public void setTargetStatus(@Nullable final TargetStatusEnum targetStatus) {
/**
* Set the lastOperation of this {@link AiDeployment} instance and return the same instance.
*
* @param lastOperation The lastOperation of this {@link AiDeployment}
* @param lastOperation Last operation applied to this deployment.
* @return The same instance of this {@link AiDeployment} class
*/
@Nonnull
Expand All @@ -506,7 +506,7 @@ public AiDeployment lastOperation(@Nullable final LastOperationEnum lastOperatio
}

/**
* Get lastOperation
* Last operation applied to this deployment.
*
* @return lastOperation The lastOperation of this {@link AiDeployment} instance.
*/
Expand All @@ -518,7 +518,7 @@ public LastOperationEnum getLastOperation() {
/**
* Set the lastOperation of this {@link AiDeployment} instance.
*
* @param lastOperation The lastOperation of this {@link AiDeployment}
* @param lastOperation Last operation applied to this deployment.
*/
public void setLastOperation(@Nullable final LastOperationEnum lastOperation) {
this.lastOperation = lastOperation;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public static TargetStatusEnum fromValue(@Nonnull final String value) {
@JsonProperty("targetStatus")
private TargetStatusEnum targetStatus;

/** Gets or Sets lastOperation */
/** Last operation applied to this deployment. */
public enum LastOperationEnum {
/** The CREATE option of this AiDeploymentResponseWithDetails */
CREATE("CREATE"),
Expand Down Expand Up @@ -515,7 +515,7 @@ public void setTargetStatus(@Nullable final TargetStatusEnum targetStatus) {
* Set the lastOperation of this {@link AiDeploymentResponseWithDetails} instance and return the
* same instance.
*
* @param lastOperation The lastOperation of this {@link AiDeploymentResponseWithDetails}
* @param lastOperation Last operation applied to this deployment.
* @return The same instance of this {@link AiDeploymentResponseWithDetails} class
*/
@Nonnull
Expand All @@ -526,7 +526,7 @@ public AiDeploymentResponseWithDetails lastOperation(
}

/**
* Get lastOperation
* Last operation applied to this deployment.
*
* @return lastOperation The lastOperation of this {@link AiDeploymentResponseWithDetails}
* instance.
Expand All @@ -539,7 +539,7 @@ public LastOperationEnum getLastOperation() {
/**
* Set the lastOperation of this {@link AiDeploymentResponseWithDetails} instance.
*
* @param lastOperation The lastOperation of this {@link AiDeploymentResponseWithDetails}
* @param lastOperation Last operation applied to this deployment.
*/
public void setLastOperation(@Nullable final LastOperationEnum lastOperation) {
this.lastOperation = lastOperation;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import com.fasterxml.jackson.annotation.JsonValue;
import javax.annotation.Nonnull;

/** Gets or Sets KpiColumnName */
/** Name of the Column */
public enum KpiColumnName {
RESOURCE_GROUP("ResourceGroup"),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,9 @@ public void setRows(@Nullable final List<Map<String, RowsInnerValue>> rows) {
/**
* Set the columns of this {@link PredictRequestPayload} instance and return the same instance.
*
* @param columns The columns of this {@link PredictRequestPayload}
* @param columns Alternative to rows: columns of data where each key is a column name and the
* value is a list of all column values. Either \&quot;rows\&quot; or \&quot;columns\&quot;
* must be provided.
* @return The same instance of this {@link PredictRequestPayload} class
*/
@Nonnull
Expand All @@ -171,7 +173,8 @@ public PredictRequestPayload putcolumnsItem(
}

/**
* Get columns
* Alternative to rows: columns of data where each key is a column name and the value is a list of
* all column values. Either \&quot;rows\&quot; or \&quot;columns\&quot; must be provided.
*
* @return columns The columns of this {@link PredictRequestPayload} instance.
*/
Expand All @@ -183,7 +186,9 @@ public Map<String, List<RowsInnerValue>> getColumns() {
/**
* Set the columns of this {@link PredictRequestPayload} instance.
*
* @param columns The columns of this {@link PredictRequestPayload}
* @param columns Alternative to rows: columns of data where each key is a column name and the
* value is a list of all column values. Either \&quot;rows\&quot; or \&quot;columns\&quot;
* must be provided.
*/
public void setColumns(@Nullable final Map<String, List<RowsInnerValue>> columns) {
this.columns = columns;
Expand All @@ -193,7 +198,10 @@ public void setColumns(@Nullable final Map<String, List<RowsInnerValue>> columns
* Set the indexColumn of this {@link PredictRequestPayload} instance and return the same
* instance.
*
* @param indexColumn The indexColumn of this {@link PredictRequestPayload}
* @param indexColumn The name of the index column. If provided, the service will return this
* column&#39;s value in each prediction object to facilitate aligning the output predictions
* with the input rows on the client side. If not provided, the column will not be included in
* the output.
* @return The same instance of this {@link PredictRequestPayload} class
*/
@Nonnull
Expand All @@ -203,7 +211,9 @@ public PredictRequestPayload indexColumn(@Nullable final String indexColumn) {
}

/**
* Get indexColumn
* The name of the index column. If provided, the service will return this column&#39;s value in
* each prediction object to facilitate aligning the output predictions with the input rows on the
* client side. If not provided, the column will not be included in the output.
*
* @return indexColumn The indexColumn of this {@link PredictRequestPayload} instance.
*/
Expand All @@ -215,7 +225,10 @@ public String getIndexColumn() {
/**
* Set the indexColumn of this {@link PredictRequestPayload} instance.
*
* @param indexColumn The indexColumn of this {@link PredictRequestPayload}
* @param indexColumn The name of the index column. If provided, the service will return this
* column&#39;s value in each prediction object to facilitate aligning the output predictions
* with the input rows on the client side. If not provided, the column will not be included in
* the output.
*/
public void setIndexColumn(@Nullable final String indexColumn) {
this.indexColumn = indexColumn;
Expand Down Expand Up @@ -261,7 +274,8 @@ public void setParseDataTypes(@Nullable final Boolean parseDataTypes) {
/**
* Set the dataSchema of this {@link PredictRequestPayload} instance and return the same instance.
*
* @param dataSchema The dataSchema of this {@link PredictRequestPayload}
* @param dataSchema Optional schema defining the data types of each column. If provided, this
* will override automatic data type parsing.
* @return The same instance of this {@link PredictRequestPayload} class
*/
@Nonnull
Expand Down Expand Up @@ -289,7 +303,8 @@ public PredictRequestPayload putdataSchemaItem(
}

/**
* Get dataSchema
* Optional schema defining the data types of each column. If provided, this will override
* automatic data type parsing.
*
* @return dataSchema The dataSchema of this {@link PredictRequestPayload} instance.
*/
Expand All @@ -301,7 +316,8 @@ public Map<String, SchemaFieldConfig> getDataSchema() {
/**
* Set the dataSchema of this {@link PredictRequestPayload} instance.
*
* @param dataSchema The dataSchema of this {@link PredictRequestPayload}
* @param dataSchema Optional schema defining the data types of each column. If provided, this
* will override automatic data type parsing.
*/
public void setDataSchema(@Nullable final Map<String, SchemaFieldConfig> dataSchema) {
this.dataSchema = dataSchema;
Expand Down
Loading
Loading