{"id":21706846,"url":"https://github.com/silk-us/silk-sdp-powershell-sdk","last_synced_at":"2026-03-12T15:02:03.226Z","repository":{"id":64732405,"uuid":"277636671","full_name":"silk-us/silk-sdp-powershell-sdk","owner":"silk-us","description":"PowerShell SDK and module for the Silk SDP (formerly Kaminario) storage platforms. ","archived":false,"fork":false,"pushed_at":"2026-02-12T20:26:08.000Z","size":182,"stargazers_count":2,"open_issues_count":2,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-02-13T04:03:20.625Z","etag":null,"topics":["kaminario","powershell","sdp","silk"],"latest_commit_sha":null,"homepage":"","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/silk-us.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-07-06T19:59:32.000Z","updated_at":"2026-02-12T20:26:11.000Z","dependencies_parsed_at":"2023-11-08T04:43:11.243Z","dependency_job_id":"5b06d946-569e-4927-83db-afbbb3c6a1f9","html_url":"https://github.com/silk-us/silk-sdp-powershell-sdk","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/silk-us/silk-sdp-powershell-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/silk-us%2Fsilk-sdp-powershell-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/silk-us%2Fsilk-sdp-powershell-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/silk-us%2Fsilk-sdp-powershell-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/silk-us%2Fsilk-sdp-powershell-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/silk-us","download_url":"https://codeload.github.com/silk-us/silk-sdp-powershell-sdk/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/silk-us%2Fsilk-sdp-powershell-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30429298,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T14:34:45.044Z","status":"ssl_error","status_checked_at":"2026-03-12T14:09:33.793Z","response_time":114,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["kaminario","powershell","sdp","silk"],"created_at":"2024-11-25T22:14:31.110Z","updated_at":"2026-03-12T15:02:03.207Z","avatar_url":"https://github.com/silk-us.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Silk Data Pod (formerly Kaminario K2) PowerShell SDK \n## This SDK and module is provided as-is. \n\n### Installation \nFor now, clone this repo and import the module manually via:\n```powershell\nImport-Module ./path/SDP/sdp.psd1 \n```\n\nOr install via the PowerShell Gallery\n```powershell\nFind-Module SDP | Install-Module -confirm:0\n```\n\nOr, run the provided `InstallSDP.ps1` script. \n```powershell\nUnblock-File .\\InstallSDP.ps1\n.\\InstallSDP.ps1\n```\nWhich gives you a simple install menu. \n```powershell\n------\n1. C:\\Users\\user\\Documents\\PowerShell\\Modules\n2. C:\\Program Files\\PowerShell\\Modules\n3. c:\\program files\\powershell\\7\\Modules\n4. C:\\Program Files (x86)\\WindowsPowerShell\\Modules\n5. C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules\n------\nSelect Install location:\n```\n\n### Example usage: \n\nThis module requires Powershell 4.x or above and was developed on PowerShell Core Preview 7. \nAfter importing, you can connect to the Silk Data Platform or Kaminario K2 appliance using a conventional PowerShell credential object\n```powershell\n$creds = get-credential\nConnect-SDP -Server 10.10.47.16 -Credentials $cred\n```\n\nYou can then use the functions in the module manifest to perform the desired operations. \n```Powershell\n# Gather events specific to the desired query:\nGet-SDPEvents -EventId 28 -user admin\n\n# Quickly gather the hosts for a desired host group:\nGet-SDPHostGroup -name TestDemo | Get-SDPHost\n\n# Create Host:\nNew-SDPHost -name Host01 -type Linux\n\n# Create Volume Group:\nNew-SDPVolumeGroup -name VG01\n\n# Create Volumes and add volumes to volume group:\nNew-SDPVolume -name Vol01 -sizeInGB 20 -volumeGroupname VG01\n# or via pipe\nGet-SDPVolumeGroup -name VG01 | New-SDPVolume -name Vol02 -sizeInGB 20\n\n# Move volumes from VolumeGroup VG01 to VG02:\nGet-SDPVolumeGroup -name VG01 | Get-SDPVolume | Set-SDPVolume -volumeGroupName VG02\n\n# Add all volumes from a volume group to a host:\nGet-SDPVolumeGroup -name VG01 | Get-SDPVolume | New-SDPHostMapping -hostName Host01\n```\n\nSpecify -Verbose on any cmdlet to see the entire API process, including endoint declarations, and json statements. You can use this to help model API calls directly or troubleshoot. \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsilk-us%2Fsilk-sdp-powershell-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsilk-us%2Fsilk-sdp-powershell-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsilk-us%2Fsilk-sdp-powershell-sdk/lists"}