Skip to content

Commit

Permalink
Fix missing overloads on client
Browse files Browse the repository at this point in the history
  • Loading branch information
jviau committed Apr 25, 2024
1 parent 182013e commit cf0546a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ public override AsyncPageable<OrchestrationMetadata> GetAllInstancesAsync(Orches
}

public override Task<PurgeResult> PurgeAllInstancesAsync(
PurgeInstancesFilter filter, CancellationToken cancellation = default)
PurgeInstancesFilter filter, PurgeInstanceOptions? options = null, CancellationToken cancellation = default)
{
return this.inner.PurgeAllInstancesAsync(filter, cancellation);
return this.inner.PurgeAllInstancesAsync(filter, options, cancellation);
}

public override Task<PurgeResult> PurgeInstanceAsync(
string instanceId, CancellationToken cancellation = default)
string instanceId, PurgeInstanceOptions? options = null, CancellationToken cancellation = default)
{
return this.inner.PurgeInstanceAsync(instanceId, cancellation);
return this.inner.PurgeInstanceAsync(instanceId, options, cancellation);
}

public override Task RaiseEventAsync(
Expand Down

0 comments on commit cf0546a

Please sign in to comment.