<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to get the datastores (vSphere) / volumes (ONTAP) of VMs protected by SC Server using Cmdlet in Data Protection</title>
    <link>https://community.netapp.com/t5/Data-Protection/How-to-get-the-datastores-vSphere-volumes-ONTAP-of-VMs-protected-by-SC-Server/m-p/436547#M13661</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this examples help to explain what I mean.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;# ----------------------------------------------------------------------------------------------------------------------
# HOST-LINUX-ORACLE-VMDK - NOT OK
# ----------------------------------------------------------------------------------------------------------------------

scmgr@SCS-VMDK ~ PS &amp;gt; $scURL = 'https://SCS-VMDK:8146/'
$scCredential = Get-Credential -Message 'Enter SnapCenter credential'
Open-SmConnection -Credential $scCredential -SMSbaseUrl $scURL -RoleName 'SnapCenterAdmin'


scmgr@SCS-VMDK ~ PS &amp;gt; $hostname = 'HOST-LINUX-ORACLE-VMDK'

# ----------------------------------------------------------------------------------------------------------------------
# Calls to `Get-SmResources` with `ListStorageFootprint` parameter fail.
# ----------------------------------------------------------------------------------------------------------------------

scmgr@SCS-VMDK ~ PS &amp;gt; $scResources = Get-SmResources -PluginCode 'SCO' -HostName $hostname -UseKnownResources -ListStorageFootprint
Get-SmResources : A parameter cannot be found that matches parameter name 'ListStorageFootprint'.
At line:1 char:89
+ ... de 'SCO' -HostName $hostname -UseKnownResources -ListStorageFootprint
+                                                     ~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-SmResources], ParameterBindingException
    + FullyQualifiedErrorId : NamedParameterNotFound,SmPSSnapin.PsGetSmResources
 

# ----------------------------------------------------------------------------------------------------------------------
# SnapCenter versions
# ----------------------------------------------------------------------------------------------------------------------

scmgr@SCS-VMDK ~ PS &amp;gt; Get-SmServerConfig
Standalone Server Configuration
SnapCenter Server Version : 4.4.0.5343

scmgr@SCS-VMDK ~ PS &amp;gt; Get-Module -Name SnapCenter

ModuleType Version    Name                                ExportedCommands
---------- -------    ----                                ----------------
Manifest   1.0        SnapCenter                          {Add-SmCloneDataSet, Add-SmCloneJob, Add-SmConfigurationCheckSchedule, Add-SmCredential...}



scmgr@SCS-VMDK ~ PS &amp;gt; Get-SmPluginConfiguration -PluginCode 'SCO' -HostName $hostname


Auth                      : SMCoreContracts.SmAuth
DateCreated               : 11/15/2020 10:58:06 AM
DateModified              : 7/8/2022 4:20:09 PM
Description               : SnapCenter Plug-in for Oracle Database
DisplayName               : 
EndpointURI               : https://HOST-LINUX-ORACLE-VMDK:8145/SMCorePlugin_SCO
GUID                      : 
HostMaintenanceStatus     : Production
HostName                  : HOST-LINUX-ORACLE-VMDK
InstallPath               : /opt/NetApp/snapcenter/spl/plugins/sco
LicenseKey                : 
LicenseType               : None
Message                   : 
PluginCode                : SCO
PluginCompatibilityStatus : None
PluginConfiguration       : SMCoreContracts.SmConfiguration
PluginInfoId              : 53
PluginInstallStatus       : ePluginStatusInstalled
PluginName                : SnapCenter Plug-in for Oracle Database
PluginServiceAction       : None
PluginVersion             : 4.4.0.5343
Port                      : 8145
ReleaseVersion            : 
Resources                 : {}
ServiceName               : SnapCenter Plug-in Loader
ServiceStatus             : Unavailable
TCPPort                   : 0
VendorName                : NetApp




scmgr@SCS-VMDK ~ PS &amp;gt; Get-SmPluginConfiguration -PluginCode 'SCU' -HostName $hostname


Auth                      : SMCoreContracts.SmAuth
DateCreated               : 11/15/2020 10:58:06 AM
DateModified              : 7/8/2022 4:31:09 PM
Description               : 
DisplayName               : 
EndpointURI               : https://HOST-LINUX-ORACLE-VMDK:8145/SMCorePlugin_SCU
GUID                      : 
HostMaintenanceStatus     : Production
HostName                  : HOST-LINUX-ORACLE-VMDK
InstallPath               : /opt/NetApp/snapcenter/spl/plugins/scu
LicenseKey                : 
LicenseType               : None
Message                   : 
PluginCode                : SCU
PluginCompatibilityStatus : None
PluginConfiguration       : SMCoreContracts.SmConfiguration
PluginInfoId              : 51
PluginInstallStatus       : ePluginStatusInstalled
PluginName                : SnapCenter Plug-in for UNIX
PluginServiceAction       : None
PluginVersion             : 4.4.0.5343
Port                      : 8145
ReleaseVersion            : 
Resources                 : {}
ServiceName               : SnapCenter Plug-in Loader
ServiceStatus             : Unavailable
TCPPort                   : 0
VendorName                : NetApp




scmgr@SCS-VMDK ~ PS &amp;gt; Get-SmPluginConfiguration -PluginCode 'SCV' -HostName 'SCV-APPLIANCE'


Auth                      : SMCoreContracts.SmAuth
DateCreated               : 5/29/2020 9:42:49 PM
DateModified              : 7/8/2022 4:31:06 PM
Description               : 
DisplayName               : 
EndpointURI               : https://SCV-APPLIANCE:8144/scbr/smcoreplugin
GUID                      : 
HostMaintenanceStatus     : Production
HostName                  : SCV-APPLIANCE
InstallPath               : 
LicenseKey                : 
LicenseType               : None
Message                   : 
PluginCode                : SCV
PluginCompatibilityStatus : None
PluginConfiguration       : SMCoreContracts.SmConfiguration
PluginInfoId              : 4
PluginInstallStatus       : ePluginInstallStatusUnknown
PluginName                : SnapCenter Plug-in for VMware vSphere
PluginServiceAction       : None
PluginVersion             : 4.4.0
Port                      : 8144
ReleaseVersion            : 4.4
Resources                 : {}
ServiceName               : SnapCenter Plugin for VMware
ServiceStatus             : Unavailable
TCPPort                   : 0
VendorName                : NetApp




scmgr@SCS-VMDK ~ PS &amp;gt;

# ----------------------------------------------------------------------------------------------------------------------
# HOST-LINUX-HANA-NFS - OK
# ----------------------------------------------------------------------------------------------------------------------

scmgr@SCS-NFS ~ PS &amp;gt; $scURL = 'https://SCS-NFS:8146/'
$scCredential = Get-Credential -Message 'Enter SnapCenter credential'
Open-SmConnection -Credential $scCredential -SMSbaseUrl $scURL -RoleName 'SnapCenterAdmin'


scmgr@SCS-NFS ~ PS &amp;gt; $hostname = 'HOST-LINUX-HANA-NFS'

# ----------------------------------------------------------------------------------------------------------------------
# Calls to `Get-SmResources` with `ListStorageFootprint` parameter successful.
# ----------------------------------------------------------------------------------------------------------------------

scmgr@SCS-NFS ~ PS &amp;gt; $scResources = Get-SmResources -PluginCode 'HANA' -HostName $hostname -UseKnownResources -ListStorageFootprint

scmgr@SCS-NFS ~ PS &amp;gt; $scStorageFootprint = (($scResources.StorageFootPrint -join "`n") -split "`n") |
        Select-String -Pattern 'StorageResource : ([A-Za-z0-9_]+):/(vol/)?([A-Za-z0-9_]+)' |
        Select-Object -Unique |
        ForEach-Object -Process {
            [PsCustomObject]@{
                Vserver = $PSItem.Matches.Groups[1]
                Volume = $PSItem.Matches.Groups[3]
            }
        }

scmgr@SCS-NFS ~ PS &amp;gt; $scStorageFootprint

Vserver       Volume
-------       ------
cluster1svm12 hana_sid_vol1
cluster1svm12 hana_sid_vol2
cluster1svm12 hana_sid_vol3
cluster1svm12 hana_sid_vol4



# ----------------------------------------------------------------------------------------------------------------------
# SnapCenter versions
# ----------------------------------------------------------------------------------------------------------------------

scmgr@SCS-NFS ~ PS &amp;gt; Get-SmServerConfig
Standalone Server Configuration
SnapCenter Server Version : 4.4.0.5343

scmgr@SCS-NFS ~ PS &amp;gt; Get-Module -Name SnapCenter

ModuleType Version    Name                                ExportedCommands
---------- -------    ----                                ----------------
Manifest   1.0        SnapCenter                          {Add-SmCloneDataSet, Add-SmCloneJob, Add-SmConfigurationCheckSchedule, Add-SmCredential...}



scmgr@SCS-NFS ~ PS &amp;gt; Get-SmPluginConfiguration -PluginCode 'HANA' -HostName $hostname


Auth                      : SMCoreContracts.SmAuth
DateCreated               : 4/19/2021 3:23:10 PM
DateModified              : 7/8/2022 4:25:31 PM
Description               : hana
DisplayName               : SnapCenter Plug-in for SAP HANA
EndpointURI               : https://HOST-LINUX-HANA-NFS:9090/
GUID                      : 
HostMaintenanceStatus     : Production
HostName                  : HOST-LINUX-HANA-NFS
InstallPath               : /opt/NetApp/snapcenter/scc
LicenseKey                : 
LicenseType               : None
Message                   : 
PluginCode                : hana
PluginCompatibilityStatus : None
PluginConfiguration       : SMCoreContracts.SmConfiguration
PluginInfoId              : 104
PluginInstallStatus       : ePluginStatusInstalled
PluginName                : hana
PluginServiceAction       : None
PluginVersion             : 3.0
Port                      : 8145
ReleaseVersion            : 
Resources                 : {}
ServiceName               : SnapCenter Plug-in Creator
ServiceStatus             : Unavailable
TCPPort                   : 0
VendorName                : NetApp




scmgr@SCS-NFS ~ PS &amp;gt; Get-SmPluginConfiguration -PluginCode 'SCU' -HostName $hostname


Auth                      : SMCoreContracts.SmAuth
DateCreated               : 4/19/2021 3:23:10 PM
DateModified              : 7/8/2022 4:25:31 PM
Description               : 
DisplayName               : 
EndpointURI               : https://HOST-LINUX-HANA-NFS:8145/SMCorePlugin_SCU
GUID                      : 
HostMaintenanceStatus     : Production
HostName                  : HOST-LINUX-HANA-NFS
InstallPath               : /opt/NetApp/snapcenter/spl/plugins/scu
LicenseKey                : 
LicenseType               : None
Message                   : 
PluginCode                : SCU
PluginCompatibilityStatus : None
PluginConfiguration       : SMCoreContracts.SmConfiguration
PluginInfoId              : 102
PluginInstallStatus       : ePluginStatusInstalled
PluginName                : SnapCenter Plug-in for UNIX
PluginServiceAction       : None
PluginVersion             : 4.4.0.5343
Port                      : 8145
ReleaseVersion            : 
Resources                 : {}
ServiceName               : SnapCenter Plug-in Loader
ServiceStatus             : Unavailable
TCPPort                   : 0
VendorName                : NetApp




scmgr@SCS-NFS ~ PS &amp;gt; 

# ----------------------------------------------------------------------------------------------------------------------&lt;/PRE&gt;&lt;PRE&gt;&amp;nbsp;&lt;/PRE&gt;</description>
    <pubDate>Fri, 08 Jul 2022 22:10:46 GMT</pubDate>
    <dc:creator>benaph</dc:creator>
    <dc:date>2022-07-08T22:10:46Z</dc:date>
    <item>
      <title>How to get the datastores (vSphere) / volumes (ONTAP) of VMs protected by SC Server using Cmdlet CLI</title>
      <link>https://community.netapp.com/t5/Data-Protection/How-to-get-the-datastores-vSphere-volumes-ONTAP-of-VMs-protected-by-SC-Server/m-p/436428#M13655</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We need to get the datastores (vSphere) / volumes (ONTAP) of VMs protected by SnapCenter Server using Cmdlet CLI. A RESP API alternative is OK.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Context&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For this scenario all the VMs has SCO (Oracle database) plugin for Linux installed and are VMDK-based. We have SCV for integration between SC Server and vSphere.&amp;nbsp;We are using SC 4.4P2 + SCV 4.4P1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Ben&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 09:59:03 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/How-to-get-the-datastores-vSphere-volumes-ONTAP-of-VMs-protected-by-SC-Server/m-p/436428#M13655</guid>
      <dc:creator>benaph</dc:creator>
      <dc:date>2025-06-04T09:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the datastores (vSphere) / volumes (ONTAP) of VMs protected by SC Server using Cmdlet</title>
      <link>https://community.netapp.com/t5/Data-Protection/How-to-get-the-datastores-vSphere-volumes-ONTAP-of-VMs-protected-by-SC-Server/m-p/436429#M13656</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Context (cont.)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;We also have another SC Server used to protect HANA databases in NFS-based VMs. In those cases we simply use &lt;FONT face="courier new,courier" color="#0000FF"&gt;Get-SmResources -PluginCode $plugin -HostName $host -ListStorageFootprint&lt;/FONT&gt; to retrieve the required information.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jul 2022 16:56:41 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/How-to-get-the-datastores-vSphere-volumes-ONTAP-of-VMs-protected-by-SC-Server/m-p/436429#M13656</guid>
      <dc:creator>benaph</dc:creator>
      <dc:date>2022-07-05T16:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the datastores (vSphere) / volumes (ONTAP) of VMs protected by SC Server using Cmdlet</title>
      <link>https://community.netapp.com/t5/Data-Protection/How-to-get-the-datastores-vSphere-volumes-ONTAP-of-VMs-protected-by-SC-Server/m-p/436438#M13657</link>
      <description>&lt;P&gt;REST APIs are available for SCV:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.netapp.com/us-en/sc-plugin-vmware-vsphere/scpivs44_rest_apis_overview.html" target="_blank"&gt;https://docs.netapp.com/us-en/sc-plugin-vmware-vsphere/scpivs44_rest_apis_overview.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 07:15:05 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/How-to-get-the-datastores-vSphere-volumes-ONTAP-of-VMs-protected-by-SC-Server/m-p/436438#M13657</guid>
      <dc:creator>aladd</dc:creator>
      <dc:date>2022-07-06T07:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the datastores (vSphere) / volumes (ONTAP) of VMs protected by SC Server using Cmdlet</title>
      <link>https://community.netapp.com/t5/Data-Protection/How-to-get-the-datastores-vSphere-volumes-ONTAP-of-VMs-protected-by-SC-Server/m-p/436469#M13658</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="https://community.netapp.com/t5/user/viewprofilepage/user-id/17855"&gt;@aladd&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I really appreciate your response. Unfortunately I could not find a single operation of the SCV REST API that returns the information I require: the names of the datastores / volumes of a VM at the time of the query. Maybe I couldn't identify it, would you please be so kind as to point me to the operation that returns this information?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Ben&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 14:26:25 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/How-to-get-the-datastores-vSphere-volumes-ONTAP-of-VMs-protected-by-SC-Server/m-p/436469#M13658</guid>
      <dc:creator>benaph</dc:creator>
      <dc:date>2022-07-06T14:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the datastores (vSphere) / volumes (ONTAP) of VMs protected by SC Server using Cmdlet</title>
      <link>https://community.netapp.com/t5/Data-Protection/How-to-get-the-datastores-vSphere-volumes-ONTAP-of-VMs-protected-by-SC-Server/m-p/436545#M13660</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In other words, we need somethig equivalent to&amp;nbsp;&lt;SPAN&gt;&lt;FONT face="courier new,courier" color="#FF00FF"&gt;&lt;STRONG&gt;Get-SmResources -PluginCode 'HANA' -HostName $hostname -ListStorageFootprint&lt;/STRONG&gt;&lt;/FONT&gt; for ORACLE databases on VMDK file systems. It seems &lt;FONT face="courier new,courier"&gt;-ListStorageFootprint&lt;/FONT&gt; parameter is not supported on that environment.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestion?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Ben&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2022 21:11:11 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/How-to-get-the-datastores-vSphere-volumes-ONTAP-of-VMs-protected-by-SC-Server/m-p/436545#M13660</guid>
      <dc:creator>benaph</dc:creator>
      <dc:date>2022-07-08T21:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the datastores (vSphere) / volumes (ONTAP) of VMs protected by SC Server using Cmdlet</title>
      <link>https://community.netapp.com/t5/Data-Protection/How-to-get-the-datastores-vSphere-volumes-ONTAP-of-VMs-protected-by-SC-Server/m-p/436547#M13661</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this examples help to explain what I mean.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;# ----------------------------------------------------------------------------------------------------------------------
# HOST-LINUX-ORACLE-VMDK - NOT OK
# ----------------------------------------------------------------------------------------------------------------------

scmgr@SCS-VMDK ~ PS &amp;gt; $scURL = 'https://SCS-VMDK:8146/'
$scCredential = Get-Credential -Message 'Enter SnapCenter credential'
Open-SmConnection -Credential $scCredential -SMSbaseUrl $scURL -RoleName 'SnapCenterAdmin'


scmgr@SCS-VMDK ~ PS &amp;gt; $hostname = 'HOST-LINUX-ORACLE-VMDK'

# ----------------------------------------------------------------------------------------------------------------------
# Calls to `Get-SmResources` with `ListStorageFootprint` parameter fail.
# ----------------------------------------------------------------------------------------------------------------------

scmgr@SCS-VMDK ~ PS &amp;gt; $scResources = Get-SmResources -PluginCode 'SCO' -HostName $hostname -UseKnownResources -ListStorageFootprint
Get-SmResources : A parameter cannot be found that matches parameter name 'ListStorageFootprint'.
At line:1 char:89
+ ... de 'SCO' -HostName $hostname -UseKnownResources -ListStorageFootprint
+                                                     ~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-SmResources], ParameterBindingException
    + FullyQualifiedErrorId : NamedParameterNotFound,SmPSSnapin.PsGetSmResources
 

# ----------------------------------------------------------------------------------------------------------------------
# SnapCenter versions
# ----------------------------------------------------------------------------------------------------------------------

scmgr@SCS-VMDK ~ PS &amp;gt; Get-SmServerConfig
Standalone Server Configuration
SnapCenter Server Version : 4.4.0.5343

scmgr@SCS-VMDK ~ PS &amp;gt; Get-Module -Name SnapCenter

ModuleType Version    Name                                ExportedCommands
---------- -------    ----                                ----------------
Manifest   1.0        SnapCenter                          {Add-SmCloneDataSet, Add-SmCloneJob, Add-SmConfigurationCheckSchedule, Add-SmCredential...}



scmgr@SCS-VMDK ~ PS &amp;gt; Get-SmPluginConfiguration -PluginCode 'SCO' -HostName $hostname


Auth                      : SMCoreContracts.SmAuth
DateCreated               : 11/15/2020 10:58:06 AM
DateModified              : 7/8/2022 4:20:09 PM
Description               : SnapCenter Plug-in for Oracle Database
DisplayName               : 
EndpointURI               : https://HOST-LINUX-ORACLE-VMDK:8145/SMCorePlugin_SCO
GUID                      : 
HostMaintenanceStatus     : Production
HostName                  : HOST-LINUX-ORACLE-VMDK
InstallPath               : /opt/NetApp/snapcenter/spl/plugins/sco
LicenseKey                : 
LicenseType               : None
Message                   : 
PluginCode                : SCO
PluginCompatibilityStatus : None
PluginConfiguration       : SMCoreContracts.SmConfiguration
PluginInfoId              : 53
PluginInstallStatus       : ePluginStatusInstalled
PluginName                : SnapCenter Plug-in for Oracle Database
PluginServiceAction       : None
PluginVersion             : 4.4.0.5343
Port                      : 8145
ReleaseVersion            : 
Resources                 : {}
ServiceName               : SnapCenter Plug-in Loader
ServiceStatus             : Unavailable
TCPPort                   : 0
VendorName                : NetApp




scmgr@SCS-VMDK ~ PS &amp;gt; Get-SmPluginConfiguration -PluginCode 'SCU' -HostName $hostname


Auth                      : SMCoreContracts.SmAuth
DateCreated               : 11/15/2020 10:58:06 AM
DateModified              : 7/8/2022 4:31:09 PM
Description               : 
DisplayName               : 
EndpointURI               : https://HOST-LINUX-ORACLE-VMDK:8145/SMCorePlugin_SCU
GUID                      : 
HostMaintenanceStatus     : Production
HostName                  : HOST-LINUX-ORACLE-VMDK
InstallPath               : /opt/NetApp/snapcenter/spl/plugins/scu
LicenseKey                : 
LicenseType               : None
Message                   : 
PluginCode                : SCU
PluginCompatibilityStatus : None
PluginConfiguration       : SMCoreContracts.SmConfiguration
PluginInfoId              : 51
PluginInstallStatus       : ePluginStatusInstalled
PluginName                : SnapCenter Plug-in for UNIX
PluginServiceAction       : None
PluginVersion             : 4.4.0.5343
Port                      : 8145
ReleaseVersion            : 
Resources                 : {}
ServiceName               : SnapCenter Plug-in Loader
ServiceStatus             : Unavailable
TCPPort                   : 0
VendorName                : NetApp




scmgr@SCS-VMDK ~ PS &amp;gt; Get-SmPluginConfiguration -PluginCode 'SCV' -HostName 'SCV-APPLIANCE'


Auth                      : SMCoreContracts.SmAuth
DateCreated               : 5/29/2020 9:42:49 PM
DateModified              : 7/8/2022 4:31:06 PM
Description               : 
DisplayName               : 
EndpointURI               : https://SCV-APPLIANCE:8144/scbr/smcoreplugin
GUID                      : 
HostMaintenanceStatus     : Production
HostName                  : SCV-APPLIANCE
InstallPath               : 
LicenseKey                : 
LicenseType               : None
Message                   : 
PluginCode                : SCV
PluginCompatibilityStatus : None
PluginConfiguration       : SMCoreContracts.SmConfiguration
PluginInfoId              : 4
PluginInstallStatus       : ePluginInstallStatusUnknown
PluginName                : SnapCenter Plug-in for VMware vSphere
PluginServiceAction       : None
PluginVersion             : 4.4.0
Port                      : 8144
ReleaseVersion            : 4.4
Resources                 : {}
ServiceName               : SnapCenter Plugin for VMware
ServiceStatus             : Unavailable
TCPPort                   : 0
VendorName                : NetApp




scmgr@SCS-VMDK ~ PS &amp;gt;

# ----------------------------------------------------------------------------------------------------------------------
# HOST-LINUX-HANA-NFS - OK
# ----------------------------------------------------------------------------------------------------------------------

scmgr@SCS-NFS ~ PS &amp;gt; $scURL = 'https://SCS-NFS:8146/'
$scCredential = Get-Credential -Message 'Enter SnapCenter credential'
Open-SmConnection -Credential $scCredential -SMSbaseUrl $scURL -RoleName 'SnapCenterAdmin'


scmgr@SCS-NFS ~ PS &amp;gt; $hostname = 'HOST-LINUX-HANA-NFS'

# ----------------------------------------------------------------------------------------------------------------------
# Calls to `Get-SmResources` with `ListStorageFootprint` parameter successful.
# ----------------------------------------------------------------------------------------------------------------------

scmgr@SCS-NFS ~ PS &amp;gt; $scResources = Get-SmResources -PluginCode 'HANA' -HostName $hostname -UseKnownResources -ListStorageFootprint

scmgr@SCS-NFS ~ PS &amp;gt; $scStorageFootprint = (($scResources.StorageFootPrint -join "`n") -split "`n") |
        Select-String -Pattern 'StorageResource : ([A-Za-z0-9_]+):/(vol/)?([A-Za-z0-9_]+)' |
        Select-Object -Unique |
        ForEach-Object -Process {
            [PsCustomObject]@{
                Vserver = $PSItem.Matches.Groups[1]
                Volume = $PSItem.Matches.Groups[3]
            }
        }

scmgr@SCS-NFS ~ PS &amp;gt; $scStorageFootprint

Vserver       Volume
-------       ------
cluster1svm12 hana_sid_vol1
cluster1svm12 hana_sid_vol2
cluster1svm12 hana_sid_vol3
cluster1svm12 hana_sid_vol4



# ----------------------------------------------------------------------------------------------------------------------
# SnapCenter versions
# ----------------------------------------------------------------------------------------------------------------------

scmgr@SCS-NFS ~ PS &amp;gt; Get-SmServerConfig
Standalone Server Configuration
SnapCenter Server Version : 4.4.0.5343

scmgr@SCS-NFS ~ PS &amp;gt; Get-Module -Name SnapCenter

ModuleType Version    Name                                ExportedCommands
---------- -------    ----                                ----------------
Manifest   1.0        SnapCenter                          {Add-SmCloneDataSet, Add-SmCloneJob, Add-SmConfigurationCheckSchedule, Add-SmCredential...}



scmgr@SCS-NFS ~ PS &amp;gt; Get-SmPluginConfiguration -PluginCode 'HANA' -HostName $hostname


Auth                      : SMCoreContracts.SmAuth
DateCreated               : 4/19/2021 3:23:10 PM
DateModified              : 7/8/2022 4:25:31 PM
Description               : hana
DisplayName               : SnapCenter Plug-in for SAP HANA
EndpointURI               : https://HOST-LINUX-HANA-NFS:9090/
GUID                      : 
HostMaintenanceStatus     : Production
HostName                  : HOST-LINUX-HANA-NFS
InstallPath               : /opt/NetApp/snapcenter/scc
LicenseKey                : 
LicenseType               : None
Message                   : 
PluginCode                : hana
PluginCompatibilityStatus : None
PluginConfiguration       : SMCoreContracts.SmConfiguration
PluginInfoId              : 104
PluginInstallStatus       : ePluginStatusInstalled
PluginName                : hana
PluginServiceAction       : None
PluginVersion             : 3.0
Port                      : 8145
ReleaseVersion            : 
Resources                 : {}
ServiceName               : SnapCenter Plug-in Creator
ServiceStatus             : Unavailable
TCPPort                   : 0
VendorName                : NetApp




scmgr@SCS-NFS ~ PS &amp;gt; Get-SmPluginConfiguration -PluginCode 'SCU' -HostName $hostname


Auth                      : SMCoreContracts.SmAuth
DateCreated               : 4/19/2021 3:23:10 PM
DateModified              : 7/8/2022 4:25:31 PM
Description               : 
DisplayName               : 
EndpointURI               : https://HOST-LINUX-HANA-NFS:8145/SMCorePlugin_SCU
GUID                      : 
HostMaintenanceStatus     : Production
HostName                  : HOST-LINUX-HANA-NFS
InstallPath               : /opt/NetApp/snapcenter/spl/plugins/scu
LicenseKey                : 
LicenseType               : None
Message                   : 
PluginCode                : SCU
PluginCompatibilityStatus : None
PluginConfiguration       : SMCoreContracts.SmConfiguration
PluginInfoId              : 102
PluginInstallStatus       : ePluginStatusInstalled
PluginName                : SnapCenter Plug-in for UNIX
PluginServiceAction       : None
PluginVersion             : 4.4.0.5343
Port                      : 8145
ReleaseVersion            : 
Resources                 : {}
ServiceName               : SnapCenter Plug-in Loader
ServiceStatus             : Unavailable
TCPPort                   : 0
VendorName                : NetApp




scmgr@SCS-NFS ~ PS &amp;gt; 

# ----------------------------------------------------------------------------------------------------------------------&lt;/PRE&gt;&lt;PRE&gt;&amp;nbsp;&lt;/PRE&gt;</description>
      <pubDate>Fri, 08 Jul 2022 22:10:46 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/How-to-get-the-datastores-vSphere-volumes-ONTAP-of-VMs-protected-by-SC-Server/m-p/436547#M13661</guid>
      <dc:creator>benaph</dc:creator>
      <dc:date>2022-07-08T22:10:46Z</dc:date>
    </item>
  </channel>
</rss>

