diff --git a/src/sentry/replays/endpoints/organization_replay_count.py b/src/sentry/replays/endpoints/organization_replay_count.py index 7ec0e7530ceb..94afa51ec269 100644 --- a/src/sentry/replays/endpoints/organization_replay_count.py +++ b/src/sentry/replays/endpoints/organization_replay_count.py @@ -73,7 +73,8 @@ class OrganizationReplayCountEndpoint(OrganizationEventsEndpointBase): @extend_schema( examples=ReplayExamples.GET_REPLAY_COUNTS, - operation_id="Retrieve a Count of Replays for a Given Issue or Transaction", + operation_id="getOrganizationReplayCount", + summary="Retrieve a Count of Replays for a Given Issue or Transaction", parameters=[ GlobalParams.ENVIRONMENT, GlobalParams.ORG_ID_OR_SLUG, diff --git a/src/sentry/replays/endpoints/organization_replay_details.py b/src/sentry/replays/endpoints/organization_replay_details.py index 16f229d11a27..e91f2c75a1fd 100644 --- a/src/sentry/replays/endpoints/organization_replay_details.py +++ b/src/sentry/replays/endpoints/organization_replay_details.py @@ -233,7 +233,8 @@ class OrganizationReplayDetailsEndpoint(OrganizationReplayEndpoint): } @extend_schema( - operation_id="Retrieve a Replay Instance", + operation_id="getOrganizationReplay", + summary="Retrieve a Replay Instance", parameters=[GlobalParams.ORG_ID_OR_SLUG, ReplayParams.REPLAY_ID, ReplayValidator], responses={ 200: inline_sentry_response_serializer("GetReplay", GetReplayResponse), diff --git a/src/sentry/replays/endpoints/organization_replay_index.py b/src/sentry/replays/endpoints/organization_replay_index.py index 8e53072cf049..8dea25872471 100644 --- a/src/sentry/replays/endpoints/organization_replay_index.py +++ b/src/sentry/replays/endpoints/organization_replay_index.py @@ -37,7 +37,8 @@ class OrganizationReplayIndexEndpoint(OrganizationReplayEndpoint): } @extend_schema( - operation_id="List an Organization's Replays", + operation_id="listOrganizationReplays", + summary="List an Organization's Replays", parameters=[GlobalParams.ORG_ID_OR_SLUG, ReplayValidator], responses={ 200: inline_sentry_response_serializer("ListReplays", _ListReplaysResponse), diff --git a/src/sentry/replays/endpoints/organization_replay_selector_index.py b/src/sentry/replays/endpoints/organization_replay_selector_index.py index 5ca5c2d3ee70..f60f80cb2573 100644 --- a/src/sentry/replays/endpoints/organization_replay_selector_index.py +++ b/src/sentry/replays/endpoints/organization_replay_selector_index.py @@ -92,7 +92,8 @@ def get_replay_filter_params(self, request, organization): @handled_snuba_exceptions @extend_schema( - operation_id="List an Organization's Selectors", + operation_id="listOrganizationReplaySelectors", + summary="List an Organization's Selectors", parameters=[ GlobalParams.ORG_ID_OR_SLUG, GlobalParams.ENVIRONMENT, diff --git a/src/sentry/replays/endpoints/project_replay_clicks_index.py b/src/sentry/replays/endpoints/project_replay_clicks_index.py index 8c78a970101b..7e6756da5410 100644 --- a/src/sentry/replays/endpoints/project_replay_clicks_index.py +++ b/src/sentry/replays/endpoints/project_replay_clicks_index.py @@ -62,7 +62,8 @@ class ProjectReplayClicksIndexEndpoint(ProjectReplayEndpoint): } @extend_schema( - operation_id="List Clicked Nodes", + operation_id="listProjectReplayClicks", + summary="List Clicked Nodes", parameters=[ CursorQueryParam, GlobalParams.ORG_ID_OR_SLUG, diff --git a/src/sentry/replays/endpoints/project_replay_details.py b/src/sentry/replays/endpoints/project_replay_details.py index c0db6a884493..391ed9ca0c63 100644 --- a/src/sentry/replays/endpoints/project_replay_details.py +++ b/src/sentry/replays/endpoints/project_replay_details.py @@ -67,7 +67,8 @@ def get(self, request: Request, project: Project, replay_id: str) -> Response: return Response({"data": replay_data[0]}, status=200) @extend_schema( - operation_id="Delete a Replay Instance", + operation_id="deleteProjectReplay", + summary="Delete a Replay Instance", parameters=[ GlobalParams.ORG_ID_OR_SLUG, GlobalParams.PROJECT_ID_OR_SLUG, diff --git a/src/sentry/replays/endpoints/project_replay_jobs_delete.py b/src/sentry/replays/endpoints/project_replay_jobs_delete.py index 1750ba27fe6a..cb9a7442da12 100644 --- a/src/sentry/replays/endpoints/project_replay_jobs_delete.py +++ b/src/sentry/replays/endpoints/project_replay_jobs_delete.py @@ -97,7 +97,8 @@ class ProjectReplayDeletionJobsIndexEndpoint(ProjectEndpoint): permission_classes = (ReplayDeletionJobPermission,) @extend_schema( - operation_id="List Replay Batch-Deletion Jobs", + operation_id="listProjectReplayDeletionJobs", + summary="List Replay Batch-Deletion Jobs", parameters=[ GlobalParams.ORG_ID_OR_SLUG, GlobalParams.PROJECT_ID_OR_SLUG, @@ -132,7 +133,8 @@ def get(self, request: Request, project) -> Response[ReplayDeletionJobListRespon ) @extend_schema( - operation_id="Create Replay Batch Deletion Job", + operation_id="createProjectReplayDeletionJob", + summary="Create Replay Batch Deletion Job", parameters=[ GlobalParams.ORG_ID_OR_SLUG, GlobalParams.PROJECT_ID_OR_SLUG, @@ -203,7 +205,8 @@ class ProjectReplayDeletionJobDetailEndpoint(ProjectReplayEndpoint): permission_classes = (ReplayDeletionJobPermission,) @extend_schema( - operation_id="Retrieve a Replay Batch-Deletion Job", + operation_id="getProjectReplayDeletionJob", + summary="Retrieve a Replay Batch-Deletion Job", parameters=[ GlobalParams.ORG_ID_OR_SLUG, GlobalParams.PROJECT_ID_OR_SLUG, diff --git a/src/sentry/replays/endpoints/project_replay_recording_segment_details.py b/src/sentry/replays/endpoints/project_replay_recording_segment_details.py index a3f2ca51eca7..c6985ddf5c05 100644 --- a/src/sentry/replays/endpoints/project_replay_recording_segment_details.py +++ b/src/sentry/replays/endpoints/project_replay_recording_segment_details.py @@ -38,7 +38,8 @@ class ProjectReplayRecordingSegmentDetailsEndpoint(ProjectReplayEndpoint): } @extend_schema( - operation_id="Retrieve a Recording Segment", + operation_id="getProjectReplayRecordingSegment", + summary="Retrieve a Recording Segment", parameters=[ GlobalParams.ORG_ID_OR_SLUG, GlobalParams.PROJECT_ID_OR_SLUG, diff --git a/src/sentry/replays/endpoints/project_replay_recording_segment_index.py b/src/sentry/replays/endpoints/project_replay_recording_segment_index.py index edfbec3111b5..0806be93bfc0 100644 --- a/src/sentry/replays/endpoints/project_replay_recording_segment_index.py +++ b/src/sentry/replays/endpoints/project_replay_recording_segment_index.py @@ -30,7 +30,8 @@ def __init__(self, **options) -> None: super().__init__(**options) @extend_schema( - operation_id="List Recording Segments", + operation_id="listProjectReplayRecordingSegments", + summary="List Recording Segments", parameters=[ CursorQueryParam, GlobalParams.ORG_ID_OR_SLUG, diff --git a/src/sentry/replays/endpoints/project_replay_viewed_by.py b/src/sentry/replays/endpoints/project_replay_viewed_by.py index f98e8a0d53eb..0804616c0811 100644 --- a/src/sentry/replays/endpoints/project_replay_viewed_by.py +++ b/src/sentry/replays/endpoints/project_replay_viewed_by.py @@ -37,7 +37,8 @@ class ProjectReplayViewedByEndpoint(ProjectReplayEndpoint): permission_classes = (ProjectEventPermission,) @extend_schema( - operation_id="List Users Who Have Viewed a Replay", + operation_id="listProjectReplayViewedBy", + summary="List Users Who Have Viewed a Replay", parameters=[ GlobalParams.ORG_ID_OR_SLUG, GlobalParams.PROJECT_ID_OR_SLUG,