Skip to content

Commit

Permalink
CodeGen from PR 16965 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge e331e09a3816efc4eeb2c8da95a3afdceab6b730 into c78873e2383602fdc5edb6cb0283f5bbfcbc550c
  • Loading branch information
SDKAuto committed Dec 4, 2021
1 parent 875bd80 commit 0da50c5
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Release History

## 1.0.0-beta.2 (Unreleased)
## 1.0.0-beta.1 (2021-12-04)

- Azure Resource Manager DataProtection client library for Java. This package contains Microsoft Azure SDK for DataProtection Management SDK. Open API 2.0 Specs for Azure Data Protection service. Package tag package-2021-07. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

### Features Added

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Various documentation is available to help you get started
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-dataprotection</artifactId>
<version>1.0.0-beta.1</version>
<version>1.0.0-beta.2</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ private PollerFlux<PollResult<BackupInstanceResourceInner>, BackupInstanceResour
this.client.getHttpPipeline(),
BackupInstanceResourceInner.class,
BackupInstanceResourceInner.class,
Context.NONE);
this.client.getContext());
}

/**
Expand Down Expand Up @@ -1013,7 +1013,8 @@ private PollerFlux<PollResult<Void>, Void> beginDeleteAsync(
deleteWithResponseAsync(vaultName, resourceGroupName, backupInstanceName);
return this
.client
.<Void, Void>getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class, Context.NONE);
.<Void, Void>getLroResult(
mono, this.client.getHttpPipeline(), Void.class, Void.class, this.client.getContext());
}

/**
Expand Down Expand Up @@ -1291,7 +1292,7 @@ private PollerFlux<PollResult<OperationJobExtendedInfoInner>, OperationJobExtend
this.client.getHttpPipeline(),
OperationJobExtendedInfoInner.class,
OperationJobExtendedInfoInner.class,
Context.NONE);
this.client.getContext());
}

/**
Expand Down Expand Up @@ -1586,7 +1587,7 @@ private Mono<Response<Flux<ByteBuffer>>> validateForBackupWithResponseAsync(
this.client.getHttpPipeline(),
OperationJobExtendedInfoInner.class,
OperationJobExtendedInfoInner.class,
Context.NONE);
this.client.getContext());
}

/**
Expand Down Expand Up @@ -1876,7 +1877,8 @@ private PollerFlux<PollResult<Void>, Void> beginTriggerRehydrateAsync(
triggerRehydrateWithResponseAsync(resourceGroupName, vaultName, backupInstanceName, parameters);
return this
.client
.<Void, Void>getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class, Context.NONE);
.<Void, Void>getLroResult(
mono, this.client.getHttpPipeline(), Void.class, Void.class, this.client.getContext());
}

/**
Expand Down Expand Up @@ -2194,7 +2196,7 @@ private Mono<Response<Flux<ByteBuffer>>> triggerRestoreWithResponseAsync(
this.client.getHttpPipeline(),
OperationJobExtendedInfoInner.class,
OperationJobExtendedInfoInner.class,
Context.NONE);
this.client.getContext());
}

/**
Expand Down Expand Up @@ -2514,7 +2516,7 @@ private Mono<Response<Flux<ByteBuffer>>> validateForRestoreWithResponseAsync(
this.client.getHttpPipeline(),
OperationJobExtendedInfoInner.class,
OperationJobExtendedInfoInner.class,
Context.NONE);
this.client.getContext());
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ private PollerFlux<PollResult<BackupVaultResourceInner>, BackupVaultResourceInne
this.client.getHttpPipeline(),
BackupVaultResourceInner.class,
BackupVaultResourceInner.class,
Context.NONE);
this.client.getContext());
}

/**
Expand Down Expand Up @@ -1186,7 +1186,7 @@ private PollerFlux<PollResult<BackupVaultResourceInner>, BackupVaultResourceInne
this.client.getHttpPipeline(),
BackupVaultResourceInner.class,
BackupVaultResourceInner.class,
Context.NONE);
this.client.getContext());
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@ private PollerFlux<PollResult<Void>, Void> beginTriggerAsync(String resourceGrou
Mono<Response<Flux<ByteBuffer>>> mono = triggerWithResponseAsync(resourceGroupName, vaultName);
return this
.client
.<Void, Void>getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class, Context.NONE);
.<Void, Void>getLroResult(
mono, this.client.getHttpPipeline(), Void.class, Void.class, this.client.getContext());
}

/**
Expand Down

0 comments on commit 0da50c5

Please sign in to comment.