Skip to content
Merged
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
42 changes: 22 additions & 20 deletions ibmcloudant/cloudant_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -8110,9 +8110,9 @@ def get_activity_tracker_events(
**kwargs,
) -> DetailedResponse:
"""
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
Check event types sent to IBM Cloud Activity Tracker Event Routing for the IBM
Cloudant instance.

:param dict headers: A `dict` containing the request headers
Expand Down Expand Up @@ -8149,13 +8149,13 @@ def post_activity_tracker_events(
**kwargs,
) -> DetailedResponse:
"""
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 List[str] types: An array of event types that are being sent to IBM
Cloud Activity Tracker for the IBM Cloudant instance. "management" is a
:param List[str] types: 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.
:param dict headers: A `dict` containing the request headers
:return: A `DetailedResponse` containing the result, headers and HTTP status code.
Expand Down Expand Up @@ -9146,10 +9146,10 @@ class TypeEnum(str, Enum):

class ActivityTrackerEvents:
"""
Schema for Activity Tracker events.
Schema for activity tracking events.

:param List[str] types: An array of event types that are being sent to IBM Cloud
Activity Tracker for the IBM Cloudant instance. "management" is a required
:param List[str] types: 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.
"""

Expand All @@ -9160,8 +9160,8 @@ def __init__(
"""
Initialize a ActivityTrackerEvents object.

:param List[str] types: An array of event types that are being sent to IBM
Cloud Activity Tracker for the IBM Cloudant instance. "management" is a
:param List[str] types: 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.
"""
self.types = types
Expand Down Expand Up @@ -9637,26 +9637,28 @@ class NameEnum(str, Enum):
CLASSIC = 'classic'
EMAIL = 'email'
KEYWORD = 'keyword'
PERFIELD = 'perfield'
SIMPLE = 'simple'
SIMPLE_ASCIIFOLDING = 'simple_asciifolding'
STANDARD = 'standard'
WHITESPACE = 'whitespace'
ARABIC = 'arabic'
ARMENIAN = 'armenian'
BASQUE = 'basque'
BULGARIAN = 'bulgarian'
BRAZILIAN = 'brazilian'
BULGARIAN = 'bulgarian'
CATALAN = 'catalan'
CJK = 'cjk'
CHINESE = 'chinese'
CJK = 'cjk'
CZECH = 'czech'
DANISH = 'danish'
DUTCH = 'dutch'
ENGLISH = 'english'
FINNISH = 'finnish'
FRENCH = 'french'
GALICIAN = 'galician'
GERMAN = 'german'
GREEK = 'greek'
GALICIAN = 'galician'
HINDI = 'hindi'
HUNGARIAN = 'hungarian'
INDONESIAN = 'indonesian'
Expand All @@ -9674,7 +9676,6 @@ class NameEnum(str, Enum):
SWEDISH = 'swedish'
THAI = 'thai'
TURKISH = 'turkish'
PERFIELD = 'perfield'



Expand Down Expand Up @@ -9784,26 +9785,28 @@ class NameEnum(str, Enum):
CLASSIC = 'classic'
EMAIL = 'email'
KEYWORD = 'keyword'
PERFIELD = 'perfield'
SIMPLE = 'simple'
SIMPLE_ASCIIFOLDING = 'simple_asciifolding'
STANDARD = 'standard'
WHITESPACE = 'whitespace'
ARABIC = 'arabic'
ARMENIAN = 'armenian'
BASQUE = 'basque'
BULGARIAN = 'bulgarian'
BRAZILIAN = 'brazilian'
BULGARIAN = 'bulgarian'
CATALAN = 'catalan'
CJK = 'cjk'
CHINESE = 'chinese'
CJK = 'cjk'
CZECH = 'czech'
DANISH = 'danish'
DUTCH = 'dutch'
ENGLISH = 'english'
FINNISH = 'finnish'
FRENCH = 'french'
GALICIAN = 'galician'
GERMAN = 'german'
GREEK = 'greek'
GALICIAN = 'galician'
HINDI = 'hindi'
HUNGARIAN = 'hungarian'
INDONESIAN = 'indonesian'
Expand All @@ -9821,7 +9824,6 @@ class NameEnum(str, Enum):
SWEDISH = 'swedish'
THAI = 'thai'
TURKISH = 'turkish'
PERFIELD = 'perfield'



Expand Down