update uint32_t to int32_t (#2399)

This commit is contained in:
Victor Vazquez 2021-06-07 12:36:14 -07:00 committed by GitHub
parent ecdadddc23
commit 17b91ffe59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -17,6 +17,6 @@ namespace Azure { namespace Security { namespace KeyVault { namespace _internal
{
virtual ~GetPageResultOptions() = default;
Azure::Nullable<std::string> NextPageToken;
Azure::Nullable<uint32_t> MaxPageResults;
Azure::Nullable<int32_t> MaxPageResults;
};
}}}} // namespace Azure::Security::KeyVault::_internal

View File

@ -4,6 +4,10 @@
### Breaking Changes
- Updated `MaxPageResults` type to `int32_t` affecting:
- GetDeletedKeysOptions.
- GetPropertiesOfKeysOptions.
- GetPropertiesOfKeyVersionsOptions.
- Updated `CreateRsaKeyOptions::KeySize` type from `uint64_t` to `int64_t`.
- Updated `CreateRsaKeyOptions::PublicExponent` type from `uint64_t` to `int64_t`.
- Updated `CreateOctKeyOptions::KeySize` type from `uint64_t` to `int64_t`.