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

StreamingJobInputResource.Test Method

Definition

Tests whether an input’s datasource is reachable and usable by the Azure Stream Analytics service.

  • Request Path: /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs/{inputName}/test
  • Operation Id: Inputs_Test
  • Default Api Version: 2021-10-01-preview
  • Resource: StreamingJobInputResource
public virtual Azure.ResourceManager.ArmOperation<Azure.ResourceManager.StreamAnalytics.Models.StreamAnalyticsResourceTestStatus> Test(Azure.WaitUntil waitUntil, Azure.ResourceManager.StreamAnalytics.StreamingJobInputData input = default, System.Threading.CancellationToken cancellationToken = default);
abstract member Test : Azure.WaitUntil * Azure.ResourceManager.StreamAnalytics.StreamingJobInputData * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.StreamAnalytics.Models.StreamAnalyticsResourceTestStatus>
override this.Test : Azure.WaitUntil * Azure.ResourceManager.StreamAnalytics.StreamingJobInputData * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.StreamAnalytics.Models.StreamAnalyticsResourceTestStatus>
Public Overridable Function Test (waitUntil As WaitUntil, Optional input As StreamingJobInputData = Nothing, Optional cancellationToken As CancellationToken = Nothing) As ArmOperation(Of StreamAnalyticsResourceTestStatus)

Parameters

waitUntil
WaitUntil

Completed if the method should wait to return until the long-running operation has completed on the service; Started if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples.

input
StreamingJobInputData

If the input specified does not already exist, this parameter must contain the full input definition intended to be tested. If the input specified already exists, this parameter can be left null to test the existing input as is or if specified, the properties specified will overwrite the corresponding properties in the existing input (exactly like a PATCH operation) and the resulting input will be tested.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Applies to