Skip to content

Commit

Permalink
build(codegen): updating SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
ct-sdks[bot] committed Nov 7, 2024
1 parent 18b4f60 commit 7ed5afe
Show file tree
Hide file tree
Showing 10 changed files with 49 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

/**
* <p>If an object with the given container/key exists, the object will be replaced with the new value and the version is incremented. If the request contains a version and an object with the given container/key, then the version must match the version of the existing object. Concurrent updates to the same Custom Object returns a ConcurrentModification error even if the version is not provided.</p>
* <p>Fields with <code>null</code> values will <strong>not be saved</strong>.</p>
* <p>Fields within <code>value</code> that have <code>null</code> values <strong>are not saved</strong>.</p>
*
* <hr>
* <div class=code-example>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

/**
* <p>If an object with the given container/key exists, the object will be replaced with the new value and the version is incremented. If the request contains a version and an object with the given container/key, then the version must match the version of the existing object. Concurrent updates to the same Custom Object returns a ConcurrentModification error even if the version is not provided.</p>
* <p>Fields with <code>null</code> values will <strong>not be saved</strong>.</p>
* <p>Fields within <code>value</code> that have <code>null</code> values <strong>are not saved</strong>.</p>
*
* <hr>
* <div class=code-example>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,10 @@ public interface CustomObject
public String getKey();

/**
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
* <ul>
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
* </ul>
* @return value
*/
@NotNull
Expand Down Expand Up @@ -172,7 +175,10 @@ public interface CustomObject
public void setKey(final String key);

/**
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
* <ul>
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
* </ul>
* @param value value to be set
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,10 @@ public CustomObjectBuilder key(final String key) {
}

/**
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
* <ul>
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
* </ul>
* @param value value to be set
* @return Builder
*/
Expand Down Expand Up @@ -272,7 +275,10 @@ public String getKey() {
}

/**
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
* <ul>
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
* </ul>
* @return value
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ public interface CustomObjectDraft extends io.vrap.rmf.base.client.Draft<CustomO
public String getKey();

/**
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
* <ul>
* <li>Fields within <code>value</code> that have <code>null</code> values <strong>are not saved</strong>.</li>
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
* </ul>
* @return value
*/
@NotNull
Expand Down Expand Up @@ -79,7 +83,11 @@ public interface CustomObjectDraft extends io.vrap.rmf.base.client.Draft<CustomO
public void setKey(final String key);

/**
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
* <ul>
* <li>Fields within <code>value</code> that have <code>null</code> values <strong>are not saved</strong>.</li>
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
* </ul>
* @param value value to be set
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ public CustomObjectDraftBuilder key(final String key) {
}

/**
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
* <ul>
* <li>Fields within <code>value</code> that have <code>null</code> values <strong>are not saved</strong>.</li>
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
* </ul>
* @param value value to be set
* @return Builder
*/
Expand Down Expand Up @@ -96,7 +100,11 @@ public String getKey() {
}

/**
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
* <ul>
* <li>Fields within <code>value</code> that have <code>null</code> values <strong>are not saved</strong>.</li>
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
* </ul>
* @return value
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,11 @@ public String getKey() {
}

/**
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
* <ul>
* <li>Fields within <code>value</code> that have <code>null</code> values <strong>are not saved</strong>.</li>
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
* </ul>
*/

public java.lang.Object getValue() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,10 @@ public String getKey() {
}

/**
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
* <ul>
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
* </ul>
*/

public java.lang.Object getValue() {
Expand Down
1 change: 1 addition & 0 deletions reference.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ccf4522140c12b0093aefe0e2a27d62bcc4834a6
1 change: 1 addition & 0 deletions references.txt
Original file line number Diff line number Diff line change
Expand Up @@ -323,3 +323,4 @@ c8c2455221baca20421082b7715eaa0a712af7f1
1406d1e9ac4945b1179cfce2a956a39f67b757a9
d410bad973f2fe90ea8239c4cb586fe0cfc13856
ccf4522140c12b0093aefe0e2a27d62bcc4834a6
6bb8d35316a92441d0a59417b49ad3a8c7037e45

0 comments on commit 7ed5afe

Please sign in to comment.