MaintenanceApplyUpdateCollection.ExistsAsync Method

Definition

Overloads

Name Description
ExistsAsync(String, CancellationToken)

Checks to see if the resource exists in azure.

  • Request Path. : /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{providerName}/{resourceParentType}/{resourceParentName}/{resourceType}/{resourceName}/providers/Microsoft.Maintenance/applyUpdates/{applyUpdateName}.
  • Operation Id. : ApplyUpdates_GetParent.
  • Default Api Version. : 2023-10-01-preview.
ExistsAsync(String, String, String, String, CancellationToken)

Checks to see if the resource exists in azure.

ExistsAsync(String, CancellationToken)

Source:
MaintenanceApplyUpdateCollection.cs

Checks to see if the resource exists in azure.

  • Request Path. : /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{providerName}/{resourceParentType}/{resourceParentName}/{resourceType}/{resourceName}/providers/Microsoft.Maintenance/applyUpdates/{applyUpdateName}.
  • Operation Id. : ApplyUpdates_GetParent.
  • Default Api Version. : 2023-10-01-preview.
public virtual System.Threading.Tasks.Task<Azure.Response<bool>> ExistsAsync(string applyUpdateName, System.Threading.CancellationToken cancellationToken = default);
abstract member ExistsAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<bool>>
override this.ExistsAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<bool>>
Public Overridable Function ExistsAsync (applyUpdateName As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of Boolean))

Parameters

applyUpdateName
String

The name of the ApplyUpdate.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

applyUpdateName is null.

applyUpdateName is an empty string, and was expected to be non-empty.

Applies to

ExistsAsync(String, String, String, String, CancellationToken)

Source:
MaintenanceApplyUpdateCollection.cs
Source:
MaintenanceApplyUpdateCollection.cs

Checks to see if the resource exists in azure.

public virtual System.Threading.Tasks.Task<Azure.Response<bool>> ExistsAsync(string providerName, string resourceType, string resourceName, string applyUpdateName, System.Threading.CancellationToken cancellationToken = default);
abstract member ExistsAsync : string * string * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<bool>>
override this.ExistsAsync : string * string * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<bool>>
Public Overridable Function ExistsAsync (providerName As String, resourceType As String, resourceName As String, applyUpdateName As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of Boolean))

Parameters

providerName
String

Resource provider name.

resourceType
String

Resource type.

resourceName
String

Resource identifier.

applyUpdateName
String

The name of the ApplyUpdate.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

providerName, resourceType, resourceName or applyUpdateName is an empty string, and was expected to be non-empty.

providerName, resourceType, resourceName or applyUpdateName is null.

Applies to