次の方法で共有


WorkItemConfigurations class

WorkItemConfigurations を表すクラス。

コンストラクター

WorkItemConfigurations(ApplicationInsightsManagementClientContext)

WorkItemConfigurations を作成します。

メソッド

create(string, string, WorkItemCreateConfiguration, RequestOptionsBase)

Application Insights コンポーネントの作業項目構成を作成します。

create(string, string, WorkItemCreateConfiguration, RequestOptionsBase, ServiceCallback<WorkItemConfiguration>)
create(string, string, WorkItemCreateConfiguration, ServiceCallback<WorkItemConfiguration>)
deleteMethod(string, string, string, RequestOptionsBase)

Application Insights コンポーネントの作業項目の構成を削除します。

deleteMethod(string, string, string, RequestOptionsBase, ServiceCallback<void>)
deleteMethod(string, string, string, ServiceCallback<void>)
getDefault(string, string, RequestOptionsBase)

アプリケーションに存在する既定の作業項目の構成を取得します

getDefault(string, string, RequestOptionsBase, ServiceCallback<WorkItemConfiguration>)
getDefault(string, string, ServiceCallback<WorkItemConfiguration>)
getItem(string, string, string, RequestOptionsBase)

Application Insights コンポーネントの指定された作業項目の構成を取得します。

getItem(string, string, string, RequestOptionsBase, ServiceCallback<WorkItemConfiguration>)
getItem(string, string, string, ServiceCallback<WorkItemConfiguration>)
list(string, string, RequestOptionsBase)

アプリケーションに存在する作業項目の構成の一覧を取得します

list(string, string, RequestOptionsBase, ServiceCallback<WorkItemConfigurationsListResult>)
list(string, string, ServiceCallback<WorkItemConfigurationsListResult>)
updateItem(string, string, string, WorkItemCreateConfiguration, RequestOptionsBase)

Application Insights コンポーネントの作業項目の構成を更新します。

updateItem(string, string, string, WorkItemCreateConfiguration, RequestOptionsBase, ServiceCallback<WorkItemConfiguration>)
updateItem(string, string, string, WorkItemCreateConfiguration, ServiceCallback<WorkItemConfiguration>)

コンストラクターの詳細

WorkItemConfigurations(ApplicationInsightsManagementClientContext)

WorkItemConfigurations を作成します。

new WorkItemConfigurations(client: ApplicationInsightsManagementClientContext)

パラメーター

client
ApplicationInsightsManagementClientContext

サービス クライアントへの参照。

メソッドの詳細

create(string, string, WorkItemCreateConfiguration, RequestOptionsBase)

Application Insights コンポーネントの作業項目構成を作成します。

function create(resourceGroupName: string, resourceName: string, workItemConfigurationProperties: WorkItemCreateConfiguration, options?: RequestOptionsBase): Promise<WorkItemConfigurationsCreateResponse>

パラメーター

resourceGroupName

string

リソース グループの名前。 名前の大文字と小文字は区別されます。

resourceName

string

Application Insights コンポーネント リソースの名前。

workItemConfigurationProperties
WorkItemCreateConfiguration

Application Insights コンポーネントの作業項目構成を作成するために指定する必要があるプロパティ。

options
RequestOptionsBase

省略可能なパラメーター

戻り値

Promise<Models.WorkItemConfigurationsCreateResponse>

create(string, string, WorkItemCreateConfiguration, RequestOptionsBase, ServiceCallback<WorkItemConfiguration>)

function create(resourceGroupName: string, resourceName: string, workItemConfigurationProperties: WorkItemCreateConfiguration, options: RequestOptionsBase, callback: ServiceCallback<WorkItemConfiguration>)

パラメーター

resourceGroupName

string

リソース グループの名前。 名前の大文字と小文字は区別されます。

resourceName

string

Application Insights コンポーネント リソースの名前。

workItemConfigurationProperties
WorkItemCreateConfiguration

Application Insights コンポーネントの作業項目構成を作成するために指定する必要があるプロパティ。

options
RequestOptionsBase

省略可能なパラメーター

callback

ServiceCallback<WorkItemConfiguration>

コールバック。

create(string, string, WorkItemCreateConfiguration, ServiceCallback<WorkItemConfiguration>)

function create(resourceGroupName: string, resourceName: string, workItemConfigurationProperties: WorkItemCreateConfiguration, callback: ServiceCallback<WorkItemConfiguration>)

パラメーター

resourceGroupName

string

リソース グループの名前。 名前の大文字と小文字は区別されます。

resourceName

string

Application Insights コンポーネント リソースの名前。

workItemConfigurationProperties
WorkItemCreateConfiguration

Application Insights コンポーネントの作業項目構成を作成するために指定する必要があるプロパティ。

callback

ServiceCallback<WorkItemConfiguration>

コールバック。

deleteMethod(string, string, string, RequestOptionsBase)

Application Insights コンポーネントの作業項目の構成を削除します。

function deleteMethod(resourceGroupName: string, resourceName: string, workItemConfigId: string, options?: RequestOptionsBase): Promise<RestResponse>

パラメーター

resourceGroupName

string

リソース グループの名前。 名前の大文字と小文字は区別されます。

resourceName

string

Application Insights コンポーネント リソースの名前。

workItemConfigId

string

一意の作業項目構成 ID。これは、コネクタ構成で定義されているコネクタのフレンドリ名のいずれかです

options
RequestOptionsBase

省略可能なパラメーター

戻り値

Promise<RestResponse>

Promise<msRest.RestResponse>

deleteMethod(string, string, string, RequestOptionsBase, ServiceCallback<void>)

function deleteMethod(resourceGroupName: string, resourceName: string, workItemConfigId: string, options: RequestOptionsBase, callback: ServiceCallback<void>)

パラメーター

resourceGroupName

string

リソース グループの名前。 名前の大文字と小文字は区別されます。

resourceName

string

Application Insights コンポーネント リソースの名前。

workItemConfigId

string

一意の作業項目構成 ID。これは、コネクタ構成で定義されているコネクタのフレンドリ名のいずれかです

options
RequestOptionsBase

省略可能なパラメーター

callback

ServiceCallback<void>

コールバック。

deleteMethod(string, string, string, ServiceCallback<void>)

function deleteMethod(resourceGroupName: string, resourceName: string, workItemConfigId: string, callback: ServiceCallback<void>)

パラメーター

resourceGroupName

string

リソース グループの名前。 名前の大文字と小文字は区別されます。

resourceName

string

Application Insights コンポーネント リソースの名前。

workItemConfigId

string

一意の作業項目構成 ID。これは、コネクタ構成で定義されているコネクタのフレンドリ名のいずれかです

callback

ServiceCallback<void>

コールバック。

getDefault(string, string, RequestOptionsBase)

アプリケーションに存在する既定の作業項目の構成を取得します

function getDefault(resourceGroupName: string, resourceName: string, options?: RequestOptionsBase): Promise<WorkItemConfigurationsGetDefaultResponse>

パラメーター

resourceGroupName

string

リソース グループの名前。 名前の大文字と小文字は区別されます。

resourceName

string

Application Insights コンポーネント リソースの名前。

options
RequestOptionsBase

省略可能なパラメーター

戻り値

Promise<Models.WorkItemConfigurationsGetDefaultResponse>

getDefault(string, string, RequestOptionsBase, ServiceCallback<WorkItemConfiguration>)

function getDefault(resourceGroupName: string, resourceName: string, options: RequestOptionsBase, callback: ServiceCallback<WorkItemConfiguration>)

パラメーター

resourceGroupName

string

リソース グループの名前。 名前の大文字と小文字は区別されます。

resourceName

string

Application Insights コンポーネント リソースの名前。

options
RequestOptionsBase

省略可能なパラメーター

callback

ServiceCallback<WorkItemConfiguration>

コールバック。

getDefault(string, string, ServiceCallback<WorkItemConfiguration>)

function getDefault(resourceGroupName: string, resourceName: string, callback: ServiceCallback<WorkItemConfiguration>)

パラメーター

resourceGroupName

string

リソース グループの名前。 名前の大文字と小文字は区別されます。

resourceName

string

Application Insights コンポーネント リソースの名前。

callback

ServiceCallback<WorkItemConfiguration>

コールバック。

getItem(string, string, string, RequestOptionsBase)

Application Insights コンポーネントの指定された作業項目の構成を取得します。

function getItem(resourceGroupName: string, resourceName: string, workItemConfigId: string, options?: RequestOptionsBase): Promise<WorkItemConfigurationsGetItemResponse>

パラメーター

resourceGroupName

string

リソース グループの名前。 名前の大文字と小文字は区別されます。

resourceName

string

Application Insights コンポーネント リソースの名前。

workItemConfigId

string

一意の作業項目構成 ID。これは、コネクタ構成で定義されているコネクタのフレンドリ名のいずれかです

options
RequestOptionsBase

省略可能なパラメーター

戻り値

Promise<Models.WorkItemConfigurationsGetItemResponse>

getItem(string, string, string, RequestOptionsBase, ServiceCallback<WorkItemConfiguration>)

function getItem(resourceGroupName: string, resourceName: string, workItemConfigId: string, options: RequestOptionsBase, callback: ServiceCallback<WorkItemConfiguration>)

パラメーター

resourceGroupName

string

リソース グループの名前。 名前の大文字と小文字は区別されます。

resourceName

string

Application Insights コンポーネント リソースの名前。

workItemConfigId

string

一意の作業項目構成 ID。これは、コネクタ構成で定義されているコネクタのフレンドリ名のいずれかです

options
RequestOptionsBase

省略可能なパラメーター

callback

ServiceCallback<WorkItemConfiguration>

コールバック。

getItem(string, string, string, ServiceCallback<WorkItemConfiguration>)

function getItem(resourceGroupName: string, resourceName: string, workItemConfigId: string, callback: ServiceCallback<WorkItemConfiguration>)

パラメーター

resourceGroupName

string

リソース グループの名前。 名前の大文字と小文字は区別されます。

resourceName

string

Application Insights コンポーネント リソースの名前。

workItemConfigId

string

一意の作業項目構成 ID。これは、コネクタ構成で定義されているコネクタのフレンドリ名のいずれかです

callback

ServiceCallback<WorkItemConfiguration>

コールバック。

list(string, string, RequestOptionsBase)

アプリケーションに存在する作業項目の構成の一覧を取得します

function list(resourceGroupName: string, resourceName: string, options?: RequestOptionsBase): Promise<WorkItemConfigurationsListResponse>

パラメーター

resourceGroupName

string

リソース グループの名前。 名前の大文字と小文字は区別されます。

resourceName

string

Application Insights コンポーネント リソースの名前。

options
RequestOptionsBase

省略可能なパラメーター

戻り値

Promise<Models.WorkItemConfigurationsListResponse>

list(string, string, RequestOptionsBase, ServiceCallback<WorkItemConfigurationsListResult>)

function list(resourceGroupName: string, resourceName: string, options: RequestOptionsBase, callback: ServiceCallback<WorkItemConfigurationsListResult>)

パラメーター

resourceGroupName

string

リソース グループの名前。 名前の大文字と小文字は区別されます。

resourceName

string

Application Insights コンポーネント リソースの名前。

options
RequestOptionsBase

省略可能なパラメーター

callback

ServiceCallback<WorkItemConfigurationsListResult>

コールバック。

list(string, string, ServiceCallback<WorkItemConfigurationsListResult>)

function list(resourceGroupName: string, resourceName: string, callback: ServiceCallback<WorkItemConfigurationsListResult>)

パラメーター

resourceGroupName

string

リソース グループの名前。 名前の大文字と小文字は区別されます。

resourceName

string

Application Insights コンポーネント リソースの名前。

callback

ServiceCallback<WorkItemConfigurationsListResult>

コールバック。

updateItem(string, string, string, WorkItemCreateConfiguration, RequestOptionsBase)

Application Insights コンポーネントの作業項目の構成を更新します。

function updateItem(resourceGroupName: string, resourceName: string, workItemConfigId: string, workItemConfigurationProperties: WorkItemCreateConfiguration, options?: RequestOptionsBase): Promise<WorkItemConfigurationsUpdateItemResponse>

パラメーター

resourceGroupName

string

リソース グループの名前。 名前の大文字と小文字は区別されます。

resourceName

string

Application Insights コンポーネント リソースの名前。

workItemConfigId

string

一意の作業項目構成 ID。これは、コネクタ構成で定義されているコネクタのフレンドリ名のいずれかになります

workItemConfigurationProperties
WorkItemCreateConfiguration

この Application Insights コンポーネントの作業項目構成を更新するために指定する必要があるプロパティ。

options
RequestOptionsBase

省略可能なパラメーター

戻り値

Promise<Models.WorkItemConfigurationsUpdateItemResponse>

updateItem(string, string, string, WorkItemCreateConfiguration, RequestOptionsBase, ServiceCallback<WorkItemConfiguration>)

function updateItem(resourceGroupName: string, resourceName: string, workItemConfigId: string, workItemConfigurationProperties: WorkItemCreateConfiguration, options: RequestOptionsBase, callback: ServiceCallback<WorkItemConfiguration>)

パラメーター

resourceGroupName

string

リソース グループの名前。 名前の大文字と小文字は区別されます。

resourceName

string

Application Insights コンポーネント リソースの名前。

workItemConfigId

string

一意の作業項目構成 ID。これは、コネクタ構成で定義されているコネクタのフレンドリ名のいずれかになります

workItemConfigurationProperties
WorkItemCreateConfiguration

この Application Insights コンポーネントの作業項目構成を更新するために指定する必要があるプロパティ。

options
RequestOptionsBase

省略可能なパラメーター

callback

ServiceCallback<WorkItemConfiguration>

コールバック。

updateItem(string, string, string, WorkItemCreateConfiguration, ServiceCallback<WorkItemConfiguration>)

function updateItem(resourceGroupName: string, resourceName: string, workItemConfigId: string, workItemConfigurationProperties: WorkItemCreateConfiguration, callback: ServiceCallback<WorkItemConfiguration>)

パラメーター

resourceGroupName

string

リソース グループの名前。 名前の大文字と小文字は区別されます。

resourceName

string

Application Insights コンポーネント リソースの名前。

workItemConfigId

string

一意の作業項目構成 ID。これは、コネクタ構成で定義されているコネクタのフレンドリ名のいずれかになります

workItemConfigurationProperties
WorkItemCreateConfiguration

この Application Insights コンポーネントの作業項目構成を更新するために指定する必要があるプロパティ。

callback

ServiceCallback<WorkItemConfiguration>

コールバック。