Skip to content

Commit 05f3d74

Browse files
0.36.1
1 parent f7077b3 commit 05f3d74

File tree

3 files changed

+5
-238
lines changed

3 files changed

+5
-238
lines changed

orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/DPIConfig.java

Lines changed: 2 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,6 @@ public static MethodEnum fromValue(@Nonnull final String value) {
158158
@JsonProperty("allowlist")
159159
private List<String> allowlist = new ArrayList<>();
160160

161-
@JsonProperty("mask_grounding_input")
162-
private DPIConfigMaskGroundingInput maskGroundingInput;
163-
164161
@JsonAnySetter @JsonAnyGetter
165162
private final Map<String, Object> cloudSdkCustomFields = new LinkedHashMap<>();
166163

@@ -321,39 +318,6 @@ public void setAllowlist(@Nullable final List<String> allowlist) {
321318
this.allowlist = allowlist;
322319
}
323320

324-
/**
325-
* Set the maskGroundingInput of this {@link DPIConfig} instance and return the same instance.
326-
*
327-
* @param maskGroundingInput The maskGroundingInput of this {@link DPIConfig}
328-
* @return The same instance of this {@link DPIConfig} class
329-
*/
330-
@Nonnull
331-
public DPIConfig maskGroundingInput(
332-
@Nullable final DPIConfigMaskGroundingInput maskGroundingInput) {
333-
this.maskGroundingInput = maskGroundingInput;
334-
return this;
335-
}
336-
337-
/**
338-
* Get maskGroundingInput
339-
*
340-
* @return maskGroundingInput The maskGroundingInput of this {@link DPIConfig} instance.
341-
*/
342-
@Nonnull
343-
public DPIConfigMaskGroundingInput getMaskGroundingInput() {
344-
return maskGroundingInput;
345-
}
346-
347-
/**
348-
* Set the maskGroundingInput of this {@link DPIConfig} instance.
349-
*
350-
* @param maskGroundingInput The maskGroundingInput of this {@link DPIConfig}
351-
*/
352-
public void setMaskGroundingInput(
353-
@Nullable final DPIConfigMaskGroundingInput maskGroundingInput) {
354-
this.maskGroundingInput = maskGroundingInput;
355-
}
356-
357321
/**
358322
* Get the names of the unrecognizable properties of the {@link DPIConfig}.
359323
*
@@ -405,14 +369,12 @@ public boolean equals(@Nullable final java.lang.Object o) {
405369
&& Objects.equals(this.type, dpIConfig.type)
406370
&& Objects.equals(this.method, dpIConfig.method)
407371
&& Objects.equals(this.entities, dpIConfig.entities)
408-
&& Objects.equals(this.allowlist, dpIConfig.allowlist)
409-
&& Objects.equals(this.maskGroundingInput, dpIConfig.maskGroundingInput);
372+
&& Objects.equals(this.allowlist, dpIConfig.allowlist);
410373
}
411374

412375
@Override
413376
public int hashCode() {
414-
return Objects.hash(
415-
type, method, entities, allowlist, maskGroundingInput, cloudSdkCustomFields);
377+
return Objects.hash(type, method, entities, allowlist, cloudSdkCustomFields);
416378
}
417379

418380
@Override
@@ -424,7 +386,6 @@ public String toString() {
424386
sb.append(" method: ").append(toIndentedString(method)).append("\n");
425387
sb.append(" entities: ").append(toIndentedString(entities)).append("\n");
426388
sb.append(" allowlist: ").append(toIndentedString(allowlist)).append("\n");
427-
sb.append(" maskGroundingInput: ").append(toIndentedString(maskGroundingInput)).append("\n");
428389
cloudSdkCustomFields.forEach(
429390
(k, v) ->
430391
sb.append(" ").append(k).append(": ").append(toIndentedString(v)).append("\n"));

orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/DPIConfigMaskGroundingInput.java

Lines changed: 0 additions & 163 deletions
This file was deleted.

0 commit comments

Comments
 (0)