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 {
60
60
request . pageSize ?? this . client . settings . defaultPageSize ,
61
61
] ,
62
62
[ 'page_token' , request . pageToken ] ,
63
+ [ 'principal_id' , request . principalId ] ,
63
64
[ 'product_name' , request . productName ] ,
64
65
[ 'project_id' , request . projectId ] ,
65
66
[ 'recorded_after' , request . recordedAfter ] ,
66
67
[ 'recorded_before' , request . recordedBefore ] ,
67
68
[ 'resource_id' , request . resourceId ] ,
68
69
[ 'resource_type' , request . resourceType ] ,
69
70
[ 'service_name' , request . serviceName ] ,
71
+ [ 'source_ip' , request . sourceIp ] ,
70
72
[ 'status' , request . status ] ,
71
73
) ,
72
74
} ,
Original file line number Diff line number Diff line change @@ -519,6 +519,14 @@ export type ListEventsRequest = {
519
519
* (Optional) ID of the Scaleway resource.
520
520
*/
521
521
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
522
530
}
523
531
524
532
export interface ListEventsResponse {
You can’t perform that action at this time.
0 commit comments