Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Release History

## 1.1.0-beta.3 (Unreleased)
## 1.0.0-beta.1 (2022-08-04)

- Azure Resource Manager IotDps client library for Java. This package contains Microsoft Azure SDK for IotDps Management SDK. API for using the Azure IoT Hub Device Provisioning Service features. Package tag package-2022-02. 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-deviceprovisioningservices</artifactId>
<version>1.1.0-beta.2</version>
<version>1.1.0-beta.3</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jacoco.skip>true</jacoco.skip>
<revapi.skip>true</revapi.skip>
</properties>
<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public IotDpsManager authenticate(TokenCredential credential, AzureProfile profi
.append("-")
.append("com.azure.resourcemanager.deviceprovisioningservices")
.append("/")
.append("1.1.0-beta.2");
.append("1.0.0-beta.1");
if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) {
userAgentBuilder
.append(" (")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ Response<CertificateResponseInner> getWithResponse(
Context context);

/**
* Add new certificate or update an existing certificate.
* Upload the certificate to the provisioning service.
*
* <p>Add new certificate or update an existing certificate.
*
* @param resourceGroupName Resource group identifier.
* @param provisioningServiceName The name of the provisioning service.
Expand All @@ -75,7 +77,9 @@ CertificateResponseInner createOrUpdate(
CertificateResponseInner certificateDescription);

/**
* Add new certificate or update an existing certificate.
* Upload the certificate to the provisioning service.
*
* <p>Add new certificate or update an existing certificate.
*
* @param resourceGroupName Resource group identifier.
* @param provisioningServiceName The name of the provisioning service.
Expand All @@ -100,7 +104,9 @@ Response<CertificateResponseInner> createOrUpdateWithResponse(
Context context);

/**
* Deletes the specified certificate associated with the Provisioning Service.
* Delete the Provisioning Service Certificate.
*
* <p>Deletes the specified certificate associated with the Provisioning Service.
*
* @param resourceGroupName Resource group identifier.
* @param ifMatch ETag of the certificate.
Expand All @@ -116,7 +122,9 @@ Response<CertificateResponseInner> createOrUpdateWithResponse(
void delete(String resourceGroupName, String ifMatch, String provisioningServiceName, String certificateName);

/**
* Deletes the specified certificate associated with the Provisioning Service.
* Delete the Provisioning Service Certificate.
*
* <p>Deletes the specified certificate associated with the Provisioning Service.
*
* @param resourceGroupName Resource group identifier.
* @param ifMatch ETag of the certificate.
Expand Down Expand Up @@ -244,8 +252,10 @@ Response<VerificationCodeResponseInner> generateVerificationCodeWithResponse(
Context context);

/**
* Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre uploaded
* certificate.
* Verify certificate's private key possession.
*
* <p>Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre
* uploaded certificate.
*
* @param certificateName The mandatory logical name of the certificate, that the provisioning service uses to
* access.
Expand All @@ -268,8 +278,10 @@ CertificateResponseInner verifyCertificate(
VerificationCodeRequest request);

/**
* Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre uploaded
* certificate.
* Verify certificate's private key possession.
*
* <p>Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre
* uploaded certificate.
*
* @param certificateName The mandatory logical name of the certificate, that the provisioning service uses to
* access.
Expand Down
Loading