@@ -49,20 +49,20 @@ def _get_audit_logs_default_header():
4949filter_option_user_ids = click .option (
5050 "--actor-user-id" ,
5151 required = False ,
52- help = "Filter results by actor user ids ." ,
52+ help = "Filter results by actor user IDs ." ,
5353 multiple = True ,
5454)
5555
5656filter_option_user_ip_addresses = click .option (
5757 "--actor-ip" ,
5858 required = False ,
59- help = "Filter results by user ip addresses." ,
59+ help = "Filter results by user IP addresses." ,
6060 multiple = True ,
6161)
6262filter_option_affected_user_ids = click .option (
6363 "--affected-user-id" ,
6464 required = False ,
65- help = "Filter results by affected user ids ." ,
65+ help = "Filter results by affected user IDs ." ,
6666 multiple = True ,
6767)
6868filter_option_affected_usernames = click .option (
@@ -94,7 +94,7 @@ def filter_options(f):
9494@click .group (cls = OrderedGroup )
9595@sdk_options (hidden = True )
9696def audit_logs (state ):
97- """Tools for getting audit- log data."""
97+ """Tools for getting audit log event data."""
9898 # store cursor getter on the group state so shared --begin option can use it in validation
9999 state .cursor_getter = _get_audit_log_cursor_store
100100
@@ -125,7 +125,7 @@ def search(
125125 format ,
126126 use_checkpoint ,
127127):
128- """Search audit logs ."""
128+ """Search audit log events ."""
129129 formatter = OutputFormatter (format , _get_audit_logs_default_header ())
130130 cursor = _get_audit_log_cursor_store (state .profile .name )
131131 if use_checkpoint :
@@ -179,7 +179,7 @@ def send_to(
179179 use_checkpoint ,
180180 ** kwargs ,
181181):
182- """Send audit logs to the given server address in JSON format.
182+ """Send audit log events to the given server address in JSON format.
183183
184184 HOSTNAME format: address:port where port is optional and defaults to 514.
185185 """
0 commit comments