MaintenanceApplyUpdateCollection.Exists Method

Definition

Overloads

Name Description
Exists(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.
Exists(String, String, String, String, CancellationToken)

Checks to see if the resource exists in azure.

Exists(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 Azure.Response<bool> Exists(string applyUpdateName, System.Threading.CancellationToken cancellationToken = default);
abstract member Exists : string * System.Threading.CancellationToken -> Azure.Response<bool>
override this.Exists : string * System.Threading.CancellationToken -> Azure.Response<bool>
Public Overridable Function Exists (applyUpdateName As String, Optional cancellationToken As CancellationToken = Nothing) As 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

Exists(String, String, String, String, CancellationToken)

Source:
MaintenanceApplyUpdateCollection.cs
Source:
MaintenanceApplyUpdateCollection.cs

Checks to see if the resource exists in azure.

public virtual Azure.Response<bool> Exists(string providerName, string resourceType, string resourceName, string applyUpdateName, System.Threading.CancellationToken cancellationToken = default);
abstract member Exists : string * string * string * string * System.Threading.CancellationToken -> Azure.Response<bool>
override this.Exists : string * string * string * string * System.Threading.CancellationToken -> Azure.Response<bool>
Public Overridable Function Exists (providerName As String, resourceType As String, resourceName As String, applyUpdateName As String, Optional cancellationToken As CancellationToken = Nothing) As 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