Certificates update changelog (#3395)

* update changelog

* text update
This commit is contained in:
George Arama 2022-03-07 14:26:29 -08:00 committed by GitHub
parent 5050bee3bf
commit f7841a89b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@
### Features Added
### Breaking Changes
- Updated `CreateCertificateOperation.PollUntilDone()` (returned from `StartCreateCertificate()`) to return the operation status instead of the newly created certificate.
### Bugs Fixed

View File

@ -44,7 +44,7 @@ CertificateCreateOptions options
// start the create process
auto response = certificateClient.StartCreateCertificate(certificateName, options);
// wait for complete to get the certificate
auto certificate = response.PollUntilDone(defaultWait).Value;
auto pollResponse = response.PollUntilDone(defaultWait).Value;
```
## Getting properties of Certificates