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 @@ -4367,9 +4367,9 @@ public ServiceCall<List<ActiveTask>> getActiveTasks() {
}

/**
* Retrieve Activity Tracker events information.
* Retrieve activity tracking events information.
*
* Check event types that are being sent to IBM Cloud Activity Tracker for the IBM Cloudant instance.
* Check event types sent to IBM Cloud Activity Tracker Event Routing for the IBM Cloudant instance.
*
* @param getActivityTrackerEventsOptions the {@link GetActivityTrackerEventsOptions} containing the options for the call
* @return a {@link ServiceCall} with a result of type {@link ActivityTrackerEvents}
Expand All @@ -4387,9 +4387,9 @@ public ServiceCall<ActivityTrackerEvents> getActivityTrackerEvents(GetActivityTr
}

/**
* Retrieve Activity Tracker events information.
* Retrieve activity tracking events information.
*
* Check event types that are being sent to IBM Cloud Activity Tracker for the IBM Cloudant instance.
* Check event types sent to IBM Cloud Activity Tracker Event Routing for the IBM Cloudant instance.
*
* @return a {@link ServiceCall} with a result of type {@link ActivityTrackerEvents}
*/
Expand All @@ -4398,9 +4398,9 @@ public ServiceCall<ActivityTrackerEvents> getActivityTrackerEvents() {
}

/**
* Modify Activity Tracker events configuration.
* Modify activity tracking events configuration.
*
* Configure event types that are being sent to IBM Cloud Activity Tracker for the IBM Cloudant instance.
* Configure event types sent to IBM Cloud Activity Tracker Event Routing for the IBM Cloudant instance.
*
* @param postActivityTrackerEventsOptions the {@link PostActivityTrackerEventsOptions} containing the options for the call
* @return a {@link ServiceCall} with a result of type {@link Ok}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import com.ibm.cloud.sdk.core.service.model.GenericModel;

/**
* Schema for Activity Tracker events.
* Schema for activity tracking events.
*/
public class ActivityTrackerEvents extends GenericModel {

Expand Down Expand Up @@ -120,7 +120,7 @@ public Builder newBuilder() {
/**
* Gets the types.
*
* An array of event types that are being sent to IBM Cloud Activity Tracker for the IBM Cloudant instance.
* An array of event types sent to IBM Cloud Activity Tracker Event Routing for the IBM Cloudant instance.
* "management" is a required element of this array.
*
* @return the types
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,12 @@ public interface Name {
String EMAIL = "email";
/** keyword. */
String KEYWORD = "keyword";
/** perfield. */
String PERFIELD = "perfield";
/** simple. */
String SIMPLE = "simple";
/** simple_asciifolding. */
String SIMPLE_ASCIIFOLDING = "simple_asciifolding";
/** standard. */
String STANDARD = "standard";
/** whitespace. */
Expand All @@ -48,16 +52,16 @@ public interface Name {
String ARMENIAN = "armenian";
/** basque. */
String BASQUE = "basque";
/** bulgarian. */
String BULGARIAN = "bulgarian";
/** brazilian. */
String BRAZILIAN = "brazilian";
/** bulgarian. */
String BULGARIAN = "bulgarian";
/** catalan. */
String CATALAN = "catalan";
/** cjk. */
String CJK = "cjk";
/** chinese. */
String CHINESE = "chinese";
/** cjk. */
String CJK = "cjk";
/** czech. */
String CZECH = "czech";
/** danish. */
Expand All @@ -70,12 +74,12 @@ public interface Name {
String FINNISH = "finnish";
/** french. */
String FRENCH = "french";
/** galician. */
String GALICIAN = "galician";
/** german. */
String GERMAN = "german";
/** greek. */
String GREEK = "greek";
/** galician. */
String GALICIAN = "galician";
/** hindi. */
String HINDI = "hindi";
/** hungarian. */
Expand Down Expand Up @@ -110,8 +114,6 @@ public interface Name {
String THAI = "thai";
/** turkish. */
String TURKISH = "turkish";
/** perfield. */
String PERFIELD = "perfield";
}

protected String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,12 @@ public interface Name {
String EMAIL = "email";
/** keyword. */
String KEYWORD = "keyword";
/** perfield. */
String PERFIELD = "perfield";
/** simple. */
String SIMPLE = "simple";
/** simple_asciifolding. */
String SIMPLE_ASCIIFOLDING = "simple_asciifolding";
/** standard. */
String STANDARD = "standard";
/** whitespace. */
Expand All @@ -49,16 +53,16 @@ public interface Name {
String ARMENIAN = "armenian";
/** basque. */
String BASQUE = "basque";
/** bulgarian. */
String BULGARIAN = "bulgarian";
/** brazilian. */
String BRAZILIAN = "brazilian";
/** bulgarian. */
String BULGARIAN = "bulgarian";
/** catalan. */
String CATALAN = "catalan";
/** cjk. */
String CJK = "cjk";
/** chinese. */
String CHINESE = "chinese";
/** cjk. */
String CJK = "cjk";
/** czech. */
String CZECH = "czech";
/** danish. */
Expand All @@ -71,12 +75,12 @@ public interface Name {
String FINNISH = "finnish";
/** french. */
String FRENCH = "french";
/** galician. */
String GALICIAN = "galician";
/** german. */
String GERMAN = "german";
/** greek. */
String GREEK = "greek";
/** galician. */
String GALICIAN = "galician";
/** hindi. */
String HINDI = "hindi";
/** hungarian. */
Expand Down Expand Up @@ -111,8 +115,6 @@ public interface Name {
String THAI = "thai";
/** turkish. */
String TURKISH = "turkish";
/** perfield. */
String PERFIELD = "perfield";
}

protected String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public Builder newBuilder() {
/**
* Gets the types.
*
* An array of event types that are being sent to IBM Cloud Activity Tracker for the IBM Cloudant instance.
* An array of event types sent to IBM Cloud Activity Tracker Event Routing for the IBM Cloudant instance.
* "management" is a required element of this array.
*
* @return the types
Expand Down