GET ComputeResources({id})/TenantNetworkCompatibility

Get the list of tenants that are allowed to use a compute resource for provisioning private delivery groups, along with information about whether the tenant's networks are available on the compute resource.

Request Information

Parameters

NameDescriptionAdditional information
id

ID of the compute resource.

Type:

name

See Filtering, Arranging, and Paging.

Type: String

filterBy

See Filtering, Arranging, and Paging. The supported filters are:

  • All: All tenants. (default)

Type: Filter

filterProp

See Filtering, Arranging, and Paging.

Type: String

arrangeBy

See Filtering, Arranging, and Paging. The supported arrangers are:

  • Name: Arrange by name. (default)

Type: String

skip

See Filtering, Arranging, and Paging.

Type: Number

take

See Filtering, Arranging, and Paging.

Type: Number

Response Information

The tenants, and their compatibility with the compute resource.

Response type

CollectionResultModel<TenantNetworkCompatibilityModel>

Response body formats

application/json, text/json

Sample:
{
  "Href": "[api:ComputeResources(ab32f043-4682-4953-8dea-a0489b839f80)/TenantNetworkCompatibility]",
  "Count": 1,
  "TotalMatchingFilter": 1,
  "Items": [
    {
      "Tenant": {
        "Href": "[api:Tenants(91ade655-feb5-47d3-9585-a5827ad50132)]",
        "Name": "Tenant 1",
        "Id": "91ade655-feb5-47d3-9585-a5827ad50132"
      },
      "UsesSharedDeliveryGroupNetworks": false,
      "RequiredDeliveryGroupNetworks": [
        "tenant 1 network"
      ],
      "MissingDeliveryGroupNetworks": [
        "tenant 1 network"
      ]
    }
  ]
}