ProblemClassificationsClient インターフェイス

public interface ProblemClassificationsClient

このクラスのインスタンスは、ProblemClassificationsClient で定義されているすべての操作へのアクセスを提供します。

メソッドの概要

修飾子と型 メソッドと説明
abstract ProblemClassificationInner get(String serviceName, String problemClassificationName)

特定の Azure サービスの問題分類の詳細を取得します。

abstract Response<ProblemClassificationInner> getWithResponse(String serviceName, String problemClassificationName, Context context)

特定の Azure サービスの問題分類の詳細を取得します。

abstract PagedIterable<ProblemClassificationInner> list(String serviceName)

特定の Azure サービスで使用できるすべての問題分類 (カテゴリ) を一覧表示します。

abstract PagedIterable<ProblemClassificationInner> list(String serviceName, Context context)

特定の Azure サービスで使用できるすべての問題分類 (カテゴリ) を一覧表示します。

メソッドの詳細

get

public abstract ProblemClassificationInner get(String serviceName, String problemClassificationName)

特定の Azure サービスの問題分類の詳細を取得します。

Parameters:

serviceName - サポートに使用できる Azure サービスの名前。
problemClassificationName - 問題分類の名前。

Returns:

特定の Azure サービスの問題分類の詳細。

getWithResponse

public abstract Response getWithResponse(String serviceName, String problemClassificationName, Context context)

特定の Azure サービスの問題分類の詳細を取得します。

Parameters:

serviceName - サポートに使用できる Azure サービスの名前。
problemClassificationName - 問題分類の名前。
context - この操作に関連付けるコンテキスト。

Returns:

と共 Response<T>に、特定の Azure サービスの問題分類の詳細。

list

public abstract PagedIterable list(String serviceName)

特定の Azure サービスで使用できるすべての問題分類 (カテゴリ) を一覧表示します。 プログラムで取得したサービスと問題の分類を常に使用します。 この方法により、常に最新のサービスと問題の分類 ID のセットが用意されます。

Parameters:

serviceName - 問題の分類を取得する必要がある Azure サービスの名前。

Returns:

を使用したページ分割された応答としての ProblemClassification リソースの PagedIterable<T>コレクション。

list

public abstract PagedIterable list(String serviceName, Context context)

特定の Azure サービスで使用できるすべての問題分類 (カテゴリ) を一覧表示します。 プログラムで取得したサービスと問題の分類を常に使用します。 この方法により、常に最新のサービスと問題の分類 ID のセットが用意されます。

Parameters:

serviceName - 問題の分類を取得する必要がある Azure サービスの名前。
context - この操作に関連付けるコンテキスト。

Returns:

を使用したページ分割された応答としての ProblemClassification リソースの PagedIterable<T>コレクション。

適用対象