public ProfileMetadata[] queryHostProfileMetadata(String[] profileName) throws RuntimeFault, RemoteException { return getVimService().queryHostProfileMetadata(getMOR(), profileName, null); }
public ProfileMetadata[] queryHostProfileMetadata(String[] profileNames, Profile profile) throws RuntimeFault, RemoteException { return getVimService().queryHostProfileMetadata(getMOR(), profileNames, profile==null? null : profile.getMOR()); }
/** * SDK4.1 signature for back compatibility */ List<ProfileMetadata> queryHostProfileMetadata(List<String> profileName) throws RuntimeFault, RemoteException;
/** * SDK5.0 signature */ List<ProfileMetadata> queryHostProfileMetadata(List<String> profileNames, Profile profile) throws RuntimeFault, RemoteException;