public ApplyProfile createDefaultProfile(String profileType) throws RuntimeFault, RemoteException { return createDefaultProfile(profileType, null, null); }
public ApplyProfile createDefaultProfile(String profileType, String profileTypeName, Profile profile) throws RuntimeFault, RemoteException { return getVimService().createDefaultProfile(getMOR(), profileType, profileTypeName, profile==null? null : profile.getMOR()); }
/** * SDK4.1 signature for back compatibility */ ApplyProfile createDefaultProfile(String profileType) throws RuntimeFault, RemoteException;
/** * SDK5.0 signature */ ApplyProfile createDefaultProfile(String profileType, String profileTypeName, Profile profile) throws RuntimeFault, RemoteException;