你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

ComputeExtensions.GetCloudServices 方法

定义

重载

GetCloudServices(ResourceGroupResource)

获取 ResourceGroupResource 中 CloudServiceResources 的集合。

GetCloudServices(SubscriptionResource, CancellationToken)

获取订阅中所有云服务的列表,而不考虑关联的资源组。 在响应中使用 nextLink 属性可获取云服务的下一页。 执行此操作,直到 nextLink 为 null 可提取所有云服务。

  • 请求路径/subscriptions/{subscriptionId}/providers/Microsoft.Compute/cloudServices
  • 操作IdCloudServices_ListAll

GetCloudServices(ResourceGroupResource)

获取 ResourceGroupResource 中 CloudServiceResources 的集合。

public static Azure.ResourceManager.Compute.CloudServiceCollection GetCloudServices (this Azure.ResourceManager.Resources.ResourceGroupResource resourceGroupResource);
static member GetCloudServices : Azure.ResourceManager.Resources.ResourceGroupResource -> Azure.ResourceManager.Compute.CloudServiceCollection
<Extension()>
Public Function GetCloudServices (resourceGroupResource As ResourceGroupResource) As CloudServiceCollection

参数

resourceGroupResource
ResourceGroupResource

方法 ResourceGroupResource 将对其执行的实例。

返回

一个 对象,表示 CloudServiceResources 集合及其在 CloudServiceResource 上的操作。

适用于

GetCloudServices(SubscriptionResource, CancellationToken)

获取订阅中所有云服务的列表,而不考虑关联的资源组。 在响应中使用 nextLink 属性可获取云服务的下一页。 执行此操作,直到 nextLink 为 null 可提取所有云服务。

  • 请求路径/subscriptions/{subscriptionId}/providers/Microsoft.Compute/cloudServices
  • 操作IdCloudServices_ListAll
public static Azure.Pageable<Azure.ResourceManager.Compute.CloudServiceResource> GetCloudServices (this Azure.ResourceManager.Resources.SubscriptionResource subscriptionResource, System.Threading.CancellationToken cancellationToken = default);
static member GetCloudServices : Azure.ResourceManager.Resources.SubscriptionResource * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Compute.CloudServiceResource>
<Extension()>
Public Function GetCloudServices (subscriptionResource As SubscriptionResource, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of CloudServiceResource)

参数

subscriptionResource
SubscriptionResource

方法 SubscriptionResource 将对其执行的实例。

cancellationToken
CancellationToken

要使用的取消标记。

返回

可能需要多个服务请求来循环访问的 的 CloudServiceResource 集合。

适用于