Skip to content

Commit

Permalink
Merge pull request #435 from RedHatInsights/create-pull-request/patch
Browse files Browse the repository at this point in the history
Syncing API
  • Loading branch information
fhlavac authored Dec 18, 2024
2 parents 3d1be73 + 4504fd2 commit 18d2378
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 95 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8220,7 +8220,7 @@
"Purge": {
"properties": {
"finished_before": {
"default": "2024-11-04",
"default": "2024-11-18",
"description": "Purge tasks completed earlier than this timestamp. Format '%Y-%m-%d[T%H:%M:%S]'",
"format": "date-time",
"type": "string"
Expand Down
92 changes: 0 additions & 92 deletions packages/common/config/apis/hcc-insights/integrations/content.json
Original file line number Diff line number Diff line change
Expand Up @@ -618,98 +618,6 @@
"summary": "Create an email subscription endpoint"
}
},
"/endpoints/{endpointId}/eventType/{eventTypeId}": {
"delete": {
"description": "Delete the link between an endpoint and an event type.",
"operationId": "EndpointResource$V1_deleteEventTypeFromEndpoint",
"parameters": [
{
"in": "path",
"name": "endpointId",
"required": true,
"schema": {
"$ref": "#/components/schemas/UUID"
}
},
{
"in": "path",
"name": "eventTypeId",
"required": true,
"schema": {
"$ref": "#/components/schemas/UUID"
}
}
],
"responses": {
"204": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "No Content"
},
"404": {
"content": {
"text/plain": {
"schema": {
"type": "string"
}
}
},
"description": "No event type or endpoint found with the passed id."
}
},
"summary": "Delete the link between an endpoint and an event type"
},
"put": {
"description": "Add a link between an endpoint and an event type.",
"operationId": "EndpointResource$V1_addEventTypeToEndpoint",
"parameters": [
{
"in": "path",
"name": "endpointId",
"required": true,
"schema": {
"$ref": "#/components/schemas/UUID"
}
},
{
"in": "path",
"name": "eventTypeId",
"required": true,
"schema": {
"$ref": "#/components/schemas/UUID"
}
}
],
"responses": {
"204": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "No Content"
},
"404": {
"content": {
"text/plain": {
"schema": {
"type": "string"
}
}
},
"description": "No event type or endpoint found with the passed id."
}
},
"summary": "Add a link between an endpoint and an event type"
}
},
"/endpoints/{endpointId}/eventTypes": {
"put": {
"description": "Update links between an endpoint and event types.",
Expand Down
22 changes: 21 additions & 1 deletion packages/common/config/apis/hcc-insights/inventory/content.json
Original file line number Diff line number Diff line change
Expand Up @@ -2033,12 +2033,32 @@
"rhel_ai": {
"description": "Object containing information about RHEL AI",
"properties": {
"amd_gpu_models": {
"description": "Model name of AMD GPUs",
"items": {
"description": "The AMD GPU model",
"example": "Advanced Micro Devices, Inc. [AMD/ATI] Device 0c34, Advanced Micro Devices, Inc. [AMD/ATI] Radeon PRO V320",
"maxLength": 128,
"type": "string"
},
"type": "array"
},
"intel_gaudi_hpu_models": {
"description": "Model name of Intel Gaudi HPUs",
"items": {
"description": "The Intel Gaudi HPU model",
"example": "Habana Labs Ltd. Device 1020, Habana Labs Ltd. HL-2000 AI Training Accelerator [Gaudi]",
"maxLength": 128,
"type": "string"
},
"type": "array"
},
"nvidia_gpu_models": {
"description": "Model name of Nvidia GPUs in the GPU index order",
"items": {
"description": "The Nvidia GPU model",
"example": "Tesla V100-PCIE-16GB",
"maxLength": 64,
"maxLength": 128,
"type": "string"
},
"type": "array"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,9 @@
"not_subscription_locked_or_subscribed_by_default": {
"type": "boolean"
},
"restrict_to_recipients_integrations": {
"type": "boolean"
},
"subscribed_by_default": {
"type": "boolean"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3720,7 +3720,7 @@
},
"info": {
"title": "Vulnerability Engine Manager",
"version": "2.42.24"
"version": "2.42.29"
},
"openapi": "3.0.0",
"paths": {
Expand Down

0 comments on commit 18d2378

Please sign in to comment.