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
description: 'Get logs for a specific service sub-resource by service UUID. The `sub_service_name` query parameter must match the `name` field of one of the service applications or databases returned by `GET /services/{uuid}`.',
737
+
path: '/services/{uuid}/logs',
738
+
operationId: 'get-service-logs-by-uuid',
739
+
security: [
740
+
['bearerAuth' => []],
741
+
],
742
+
tags: ['Services'],
743
+
parameters: [
744
+
newOA\Parameter(
745
+
name: 'uuid',
746
+
in: 'path',
747
+
description: 'UUID of the service.',
748
+
required: true,
749
+
schema: newOA\Schema(
750
+
type: 'string',
751
+
format: 'uuid',
752
+
)
753
+
),
754
+
newOA\Parameter(
755
+
name: 'sub_service_name',
756
+
in: 'query',
757
+
description: 'Sub-service name from `GET /services/{uuid}` under `applications[].name` or `databases[].name`. Do not use `human_name` or the Docker container name with the service UUID suffix.',
0 commit comments