File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
packages_generated/audit_trail/src/v1alpha1 Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -60,13 +60,15 @@ export class API extends ParentAPI {
6060 request . pageSize ?? this . client . settings . defaultPageSize ,
6161 ] ,
6262 [ 'page_token' , request . pageToken ] ,
63+ [ 'principal_id' , request . principalId ] ,
6364 [ 'product_name' , request . productName ] ,
6465 [ 'project_id' , request . projectId ] ,
6566 [ 'recorded_after' , request . recordedAfter ] ,
6667 [ 'recorded_before' , request . recordedBefore ] ,
6768 [ 'resource_id' , request . resourceId ] ,
6869 [ 'resource_type' , request . resourceType ] ,
6970 [ 'service_name' , request . serviceName ] ,
71+ [ 'source_ip' , request . sourceIp ] ,
7072 [ 'status' , request . status ] ,
7173 ) ,
7274 } ,
Original file line number Diff line number Diff line change @@ -519,6 +519,14 @@ export type ListEventsRequest = {
519519 * (Optional) ID of the Scaleway resource.
520520 */
521521 resourceId ?: string
522+ /**
523+ * (Optional) ID of the User or IAM application at the origin of the event.
524+ */
525+ principalId ?: string
526+ /**
527+ * (Optional) IP address at the origin of the event.
528+ */
529+ sourceIp ?: string
522530}
523531
524532export interface ListEventsResponse {
You can’t perform that action at this time.
0 commit comments