この質問に役立つリソースを表示するには、上の「リソースを取得」ボタンをクリックしてください。あるエンジニアが、6000 台の Cisco UCS サーバーがインストールされ稼動している DC を管理しています。このエンジニアは、モデルが UCSB ファミリーで、使用可能なメモリが 5 GB 以下のすべてのリソースを識別するように求められています。このタスクを達成する REST API 呼び出しはどれですか。
                
                                        
                        A. GET/api/v1/compute/RackUnits?$select=Vendor,Model,Serial&$filter=not(Model eq 'UCSC') and AvailableMemory le 5000。                    
                                        
                        B. GET/api/v1/compute/RackUnits?$select=Vendor,Model,Serial&$filter=Model eq 'UCSB' and AvailableMemory lt 5000                    
                                        
                        C. GET/api/v1/compute/RackUnits?$select=Vendor,Model,Serial&$filter=contains(Model, UCSB') and AvailableMemory lt 5000                    
                                        
                        D. GET/api/v1/compute/RackUnits?$select=Vendor,Model,Serial&$filter=contains(Model, UCSB') and AvailableMemory le 5000