You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -25,6 +26,15 @@ class ListRepoOccurrencesParamsForRemediate(ListRepoOccurrencesParams):
25
26
26
27
classRemediateSecretIncidentsParams(BaseModel):
27
28
"""Parameters for remediating secret incidents."""
29
+
repository_name: str|None=Field(
30
+
default=None,
31
+
description="The full repository name. For example, for https://github.com/GitGuardian/ggmcp.git the full name is GitGuardian/ggmcp. Pass the current repository name if not provided.",
32
+
)
33
+
source_id: str|int|None=Field(
34
+
default=None,
35
+
description="The source ID of the repository. Pass the current repository source ID if not provided.",
36
+
)
37
+
get_all: bool=Field(default=True, description="Whether to get all occurrences or just the first page")
28
38
mine: bool=Field(
29
39
default=False,
30
40
description="If True, fetch only incidents assigned to the current user. Set to False to get all incidents.",
@@ -48,6 +58,13 @@ class RemediateSecretIncidentsParams(BaseModel):
48
58
description="Parameters for listing repository occurrences",
0 commit comments