Skip to content

Commit

Permalink
RubrikPolaris (#38025)
Browse files Browse the repository at this point in the history
* fix

* RN
  • Loading branch information
shmuel44 authored Jan 8, 2025
1 parent 058f573 commit 4947bab
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -947,10 +947,10 @@ def prepare_context_hr_vm_object_list(response: dict):
else None,
"RBS Status": node.get('agentStatus', {}).get('agentStatus', "") if node.get('agentStatus') else None,
"Source Storage": convert_bytes(
node.get('reportSnappable', {}).get('archiveStorage', "") if node.get('reportSnappable')
node.get('reportSnappable', {}).get('archiveStorage', "") if node.get('reportSnappable') # type: ignore[arg-type]
else None),
"Archival Storage": convert_bytes(
node.get('reportSnappable', {}).get('physicalBytes', "") if node.get('reportSnappable')
node.get('reportSnappable', {}).get('physicalBytes', "") if node.get('reportSnappable') # type: ignore[arg-type]
else None)
})
context.append(remove_empty_elements(node))
Expand Down Expand Up @@ -1059,7 +1059,7 @@ def prepare_context_hr_vm_object_snapshot(response: dict):
f" {node.get('groupByInfo').get('end')}",
SNAPSHOT_IDS: []}
ids = []
for sub_node in sub_nodes:
for sub_node in sub_nodes: # type: ignore[union-attr]
ids.append(sub_node.get("id"))
hr_data[SNAPSHOT_IDS] = ids
hr.append(hr_data)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3396,7 +3396,7 @@ script:
description: The status of the domain.
type: Datte
- contextPath: Domain.NameServers
description: (List<String>) Name servers of the domain.
description: (List<String>) Name servers of the domain.
type: Unknown
- contextPath: Domain.Organization
description: The organization of the domain.
Expand Down
6 changes: 6 additions & 0 deletions Packs/RubrikPolaris/ReleaseNotes/1_4_2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

#### Integrations

##### Rubrik Security Cloud

Documentation and metadata improvements.
2 changes: 1 addition & 1 deletion Packs/RubrikPolaris/pack_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Rubrik Security Cloud",
"description": "Rubrik Security Cloud revolutionizes the data management market, specifically backup/recovery, archival, and DR, by providing a global policy framework, workflow orchestration, and deep data intelligence as cloud-delivered applications. The content pack fetches Rubrik Anomaly Event and provides playbooks to analyze, discover and recover -- to mention a few -- organizational data. The content pack is rich with commands to perform on-demand scans, backups, recoveries and many more features exposed by the RSC API.",
"support": "partner",
"currentVersion": "1.4.1",
"currentVersion": "1.4.2",
"author": "Rubrik",
"url": "https://www.rubrik.com/support/",
"email": "[email protected]",
Expand Down

0 comments on commit 4947bab

Please sign in to comment.