2

VMware ESXi サーバーのデータストアから一般的なプロパティ (容量、空き容量、名前) を取得しようとしています。TraversalSpec、ObjectSpec、および PropertySpecs を取得できません。

誰かが私が間違っていることを教えてもらえますか?

public void GetDataStoreValues()
{
    PropertyFilterSpec spec = GetDataStoreQuery();

    ObjectContent[] objectContent = _service.RetrieveProperties(_sic.propertyCollector, new[] { spec } );
    foreach (ObjectContent content in objectContent)
    {
        if (content.obj.type == "DataStore")
        {
            //... get values
        }
    }
}

private PropertyFilterSpec GetDataStoreQuery()
{
    try
    {
        // Traversal to get to the host from ComputeResource
        TraversalSpec tSpec = new TraversalSpec
        {
            name = "HStoDS",
            type = "HostSystem",
            path = "dataStore",
            skip = false
        };

        // Now create Object Spec
        var objectSpec = new ObjectSpec
        {
            obj = _sic.rootFolder,
            skip = true,
            selectSet = new SelectionSpec[] { tSpec }
        };
        var objectSpecs = new[] { objectSpec };

        // Create PropertyFilterSpec using the PropertySpec and ObjectPec
        // created above.
        // Create Property Spec
        string[] propertyArray = new[] {
                                        "summary.capacity"
                                        ,"summary.freeSpace"
                                        ,"summary.name"
                                      };
        var propertySpec = new PropertySpec
        {
            all = true,
            pathSet = propertyArray,
            type = "DataStore"
        };
        var propertySpecs = new[] { propertySpec };

        var propertyFilterSpec = new PropertyFilterSpec
        {
            propSet = propertySpecs,
            objectSet = objectSpecs
        };

        return propertyFilterSpec;
    }
    catch (Exception)
    {
    }
    return null;
}

また、オブジェクト型名は大文字と小文字を区別しますか? サンプルを見ていると、いろいろなケースがあるように思います。

提案をありがとう。

4

1 に答える 1

1

最初の質問:次のコードを使用して、DataStore のプロパティを取得できます。このコードを vCenter 5.1 でテストしました

public void Test()
{
    var properties = GetProperties(
        new ManagedObjectReference { type = "Datastore", Value = "<your_datastore_key>" },
        new[] {"summary.capacity", "summary.freeSpace", "summary.name"});
}

private List<DynamicProperty> GetProperties(ManagedObjectReference objectRef, string[] properties)
{
    var typesAndProperties = new Dictionary<string, string[]> { { objectRef.type, properties } };
    var objectContents = RetrieveResults(typesAndProperties, new List<ManagedObjectReference> { objectRef });
    return ExtractDynamicProperties(objectRef, objectContents);
}

private List<ObjectContent> RetrieveResults(Dictionary<string, string[]> typesAndProperties, List<ManagedObjectReference> objectReferences)
{
    var result = new List<ObjectContent>();
    var tSpec = new TraversalSpec { path = "view", skip = false };
    var oSpec = new ObjectSpec { skip = true, selectSet = new SelectionSpec[] { tSpec } };
    oSpec.obj = service.CreateListView(serviceContent.viewManager, objectReferences.ToArray());
    tSpec.type = "ListView";

    var fSpec = new PropertyFilterSpec
    {
        objectSet = new[] { oSpec },
        propSet = typesAndProperties.Keys.Select(typeName => new PropertySpec { type = typeName, pathSet = typesAndProperties[typeName] }).ToArray()
    };

    PropertyFilterSpec[] pfs = { fSpec };
    var retrieveResult = service.RetrievePropertiesEx(serviceContent.propertyCollector, pfs, new RetrieveOptions());
    if (retrieveResult != null)
    {
        result.AddRange(retrieveResult.objects);
        while (!String.IsNullOrEmpty(retrieveResult.token))
        {
            retrieveResult = service.ContinueRetrievePropertiesEx(serviceContent.propertyCollector, retrieveResult.token);
            result.AddRange(retrieveResult.objects);
        }
        service.DestroyView(oSpec.obj);
    }
    return result;
}

private static List<DynamicProperty> ExtractDynamicProperties(ManagedObjectReference objectRef, IEnumerable<ObjectContent> objectContents)
{
    var result = new List<DynamicProperty>();
    foreach (var objectContent in objectContents)
    {
        if (objectContent.propSet == null) continue;
        if (objectContent.obj == null) continue;
        if (objectContent.obj.type != objectRef.type || objectContent.obj.Value != objectRef.Value) continue;
        result.AddRange(objectContent.propSet);
    }
    return result;
}

サンプルの実行方法:

  1. クラスのbyオブジェクトとクラスのserviceby オブジェクトを初期化します。VimServiceserviceContentServiceContent
  2. を使用して vCenter または ESX にログインしますservice
  3. <your_datastore_key>データストアのキーに置き換えます。Managed Object Browserを使用して、データストアのキーを見つけることができます。データストア オブジェクトの説明を取得するには、MOB の次のリンクにアクセスしてください: content -> rootFolder -> childEntity -> datastoreFolder -> childEntity。ページ上部の「Managed Object ID」の値は正しい Key (のようなdatastore-46) です。

2 番目の質問:はい、ManagedObjectReference の型は大文字と小文字が区別されます。

于 2013-07-25T11:19:00.293 に答える