次の方法で共有


QueryRequest コンストラクター

定義

オーバーロード

QueryRequest()

QueryRequest クラスの新しいインスタンスを初期化します。

QueryRequest(IList<String>, String, QueryRequestOptions, IList<FacetRequest>)

QueryRequest クラスの新しいインスタンスを初期化します。 このコンストラクターは、以前のバージョンの ResourceGraph パッケージで使用されており、下位互換性のために必要です。

QueryRequest(String, IList<String>, IList<String>, QueryRequestOptions, IList<FacetRequest>)

QueryRequest クラスの新しいインスタンスを初期化します。

QueryRequest()

QueryRequest クラスの新しいインスタンスを初期化します。

public QueryRequest ();
Public Sub New ()

適用対象

QueryRequest(IList<String>, String, QueryRequestOptions, IList<FacetRequest>)

QueryRequest クラスの新しいインスタンスを初期化します。 このコンストラクターは、以前のバージョンの ResourceGraph パッケージで使用されており、下位互換性のために必要です。

public QueryRequest (System.Collections.Generic.IList<string> subscriptions, string query, Microsoft.Azure.Management.ResourceGraph.Models.QueryRequestOptions options = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ResourceGraph.Models.FacetRequest> facets = default);
new Microsoft.Azure.Management.ResourceGraph.Models.QueryRequest : System.Collections.Generic.IList<string> * string * Microsoft.Azure.Management.ResourceGraph.Models.QueryRequestOptions * System.Collections.Generic.IList<Microsoft.Azure.Management.ResourceGraph.Models.FacetRequest> -> Microsoft.Azure.Management.ResourceGraph.Models.QueryRequest
Public Sub New (subscriptions As IList(Of String), query As String, Optional options As QueryRequestOptions = Nothing, Optional facets As IList(Of FacetRequest) = Nothing)

パラメーター

subscriptions
IList<String>

クエリを実行する Azure サブスクリプション。

query
String

リソース クエリ。

options
QueryRequestOptions

クエリ評価オプション

facets
IList<FacetRequest>

クエリ結果に対して計算されるファセット要求の配列。

適用対象

QueryRequest(String, IList<String>, IList<String>, QueryRequestOptions, IList<FacetRequest>)

QueryRequest クラスの新しいインスタンスを初期化します。

public QueryRequest (string query, System.Collections.Generic.IList<string> subscriptions = default, System.Collections.Generic.IList<string> managementGroups = default, Microsoft.Azure.Management.ResourceGraph.Models.QueryRequestOptions options = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ResourceGraph.Models.FacetRequest> facets = default);
new Microsoft.Azure.Management.ResourceGraph.Models.QueryRequest : string * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * Microsoft.Azure.Management.ResourceGraph.Models.QueryRequestOptions * System.Collections.Generic.IList<Microsoft.Azure.Management.ResourceGraph.Models.FacetRequest> -> Microsoft.Azure.Management.ResourceGraph.Models.QueryRequest
Public Sub New (query As String, Optional subscriptions As IList(Of String) = Nothing, Optional managementGroups As IList(Of String) = Nothing, Optional options As QueryRequestOptions = Nothing, Optional facets As IList(Of FacetRequest) = Nothing)

パラメーター

query
String

リソース クエリ。

subscriptions
IList<String>

クエリを実行する Azure サブスクリプション。

managementGroups
IList<String>

クエリを実行する Azure 管理グループ。 例: [ 'mg1', 'mg2' ]

options
QueryRequestOptions

クエリ評価オプション

facets
IList<FacetRequest>

クエリ結果に対して計算されるファセット要求の配列。

適用対象