MaintenanceExtensions.GetMaintenanceApplyUpdate Method

Definition

Overloads

Name Description
GetMaintenanceApplyUpdate(ArmClient, ResourceIdentifier, String, CancellationToken)

Track maintenance updates to resource with parent <item> Mocking. To mock this method, please mock GetMaintenanceApplyUpdate(ResourceIdentifier, String, CancellationToken) instead. </item>

GetMaintenanceApplyUpdate(ResourceGroupResource, String, String, String, String, CancellationToken)

Track maintenance updates to resource.

GetMaintenanceApplyUpdate(ArmClient, ResourceIdentifier, String, CancellationToken)

Source:
MaintenanceExtensions.cs

Track maintenance updates to resource with parent <item> Mocking. To mock this method, please mock GetMaintenanceApplyUpdate(ResourceIdentifier, String, CancellationToken) instead. </item>

public static Azure.Response<Azure.ResourceManager.Maintenance.MaintenanceApplyUpdateResource> GetMaintenanceApplyUpdate(this Azure.ResourceManager.ArmClient client, Azure.Core.ResourceIdentifier scope, string applyUpdateName, System.Threading.CancellationToken cancellationToken = default);
static member GetMaintenanceApplyUpdate : Azure.ResourceManager.ArmClient * Azure.Core.ResourceIdentifier * string * System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.Maintenance.MaintenanceApplyUpdateResource>
<Extension()>
Public Function GetMaintenanceApplyUpdate (client As ArmClient, scope As ResourceIdentifier, applyUpdateName As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of MaintenanceApplyUpdateResource)

Parameters

client
ArmClient

The ArmClient the method will execute against.

scope
ResourceIdentifier

The scope of the resource collection to get.

applyUpdateName
String

The name of the ApplyUpdate.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

client is null.

Applies to

GetMaintenanceApplyUpdate(ResourceGroupResource, String, String, String, String, CancellationToken)

Source:
MaintenanceExtensions.cs
Source:
MaintenanceExtensions.cs

Track maintenance updates to resource.

public static Azure.Response<Azure.ResourceManager.Maintenance.MaintenanceApplyUpdateResource> GetMaintenanceApplyUpdate(this Azure.ResourceManager.Resources.ResourceGroupResource resourceGroupResource, string providerName, string resourceType, string resourceName, string applyUpdateName, System.Threading.CancellationToken cancellationToken = default);
static member GetMaintenanceApplyUpdate : Azure.ResourceManager.Resources.ResourceGroupResource * string * string * string * string * System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.Maintenance.MaintenanceApplyUpdateResource>
<Extension()>
Public Function GetMaintenanceApplyUpdate (resourceGroupResource As ResourceGroupResource, providerName As String, resourceType As String, resourceName As String, applyUpdateName As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of MaintenanceApplyUpdateResource)

Parameters

resourceGroupResource
ResourceGroupResource

The ResourceGroupResource instance the method will execute against.

providerName
String

Resource provider name.

resourceType
String

Resource type.

resourceName
String

Resource identifier.

applyUpdateName
String

applyUpdate Id.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

resourceGroupResource, providerName, resourceType, resourceName or applyUpdateName is null.

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

Applies to