@@ -1144,7 +1144,7 @@ public Response<KeyBundle> getKeyWithResponse(String keyName, String keyVersion,
1144
1144
* @throws HttpResponseException thrown if the service returns an error.
1145
1145
* @return the key list result.
1146
1146
*/
1147
- private PagedResponse <KeyItem > getKeyVersionsSinglePage (String keyName , RequestOptions requestOptions ) {
1147
+ public PagedResponse <KeyItem > getKeyVersionsSinglePage (String keyName , RequestOptions requestOptions ) {
1148
1148
Response <KeyListResult > res
1149
1149
= service .getKeyVersions (this .getServiceVersion ().getVersion (), keyName , requestOptions );
1150
1150
return new PagedResponse <>(res .getRequest (), res .getStatusCode (), res .getHeaders (), res .getBody (),
@@ -1257,7 +1257,7 @@ public PagedIterable<KeyItem> getKeyVersions(String keyName, RequestOptions requ
1257
1257
* @throws HttpResponseException thrown if the service returns an error.
1258
1258
* @return the key list result.
1259
1259
*/
1260
- private PagedResponse <KeyItem > getKeysSinglePage (RequestOptions requestOptions ) {
1260
+ public PagedResponse <KeyItem > getKeysSinglePage (RequestOptions requestOptions ) {
1261
1261
Response <KeyListResult > res = service .getKeys (this .getServiceVersion ().getVersion (), requestOptions );
1262
1262
return new PagedResponse <>(res .getRequest (), res .getStatusCode (), res .getHeaders (), res .getBody (),
1263
1263
res .getValue ().getValue (), null , res .getValue ().getNextLink (), null , null , null );
@@ -1816,7 +1816,7 @@ public Response<ReleaseKeyResult> releaseWithResponse(String keyName, String key
1816
1816
* @throws HttpResponseException thrown if the service returns an error.
1817
1817
* @return a list of keys that have been deleted in this vault.
1818
1818
*/
1819
- private PagedResponse <DeletedKeyItem > getDeletedKeysSinglePage (RequestOptions requestOptions ) {
1819
+ public PagedResponse <DeletedKeyItem > getDeletedKeysSinglePage (RequestOptions requestOptions ) {
1820
1820
Response <DeletedKeyListResult > res
1821
1821
= service .getDeletedKeys (this .getServiceVersion ().getVersion (), requestOptions );
1822
1822
return new PagedResponse <>(res .getRequest (), res .getStatusCode (), res .getHeaders (), res .getBody (),
@@ -2219,7 +2219,7 @@ public Response<RandomBytes> getRandomBytesWithResponse(BinaryData parameters, R
2219
2219
* @throws HttpResponseException thrown if the service returns an error.
2220
2220
* @return the key list result.
2221
2221
*/
2222
- private PagedResponse <KeyItem > getKeyVersionsNextSinglePage (String nextLink , RequestOptions requestOptions ) {
2222
+ public PagedResponse <KeyItem > getKeyVersionsNextSinglePage (String nextLink , RequestOptions requestOptions ) {
2223
2223
Response <KeyListResult > res = service .getKeyVersionsNext (nextLink , requestOptions );
2224
2224
return new PagedResponse <>(res .getRequest (), res .getStatusCode (), res .getHeaders (), res .getBody (),
2225
2225
res .getValue ().getValue (), null , res .getValue ().getNextLink (), null , null , null );
@@ -2264,7 +2264,7 @@ private PagedResponse<KeyItem> getKeyVersionsNextSinglePage(String nextLink, Req
2264
2264
* @throws HttpResponseException thrown if the service returns an error.
2265
2265
* @return the key list result.
2266
2266
*/
2267
- private PagedResponse <KeyItem > getKeysNextSinglePage (String nextLink , RequestOptions requestOptions ) {
2267
+ public PagedResponse <KeyItem > getKeysNextSinglePage (String nextLink , RequestOptions requestOptions ) {
2268
2268
Response <KeyListResult > res = service .getKeysNext (nextLink , requestOptions );
2269
2269
return new PagedResponse <>(res .getRequest (), res .getStatusCode (), res .getHeaders (), res .getBody (),
2270
2270
res .getValue ().getValue (), null , res .getValue ().getNextLink (), null , null , null );
@@ -2312,7 +2312,7 @@ private PagedResponse<KeyItem> getKeysNextSinglePage(String nextLink, RequestOpt
2312
2312
* @throws HttpResponseException thrown if the service returns an error.
2313
2313
* @return a list of keys that have been deleted in this vault.
2314
2314
*/
2315
- private PagedResponse <DeletedKeyItem > getDeletedKeysNextSinglePage (String nextLink , RequestOptions requestOptions ) {
2315
+ public PagedResponse <DeletedKeyItem > getDeletedKeysNextSinglePage (String nextLink , RequestOptions requestOptions ) {
2316
2316
Response <DeletedKeyListResult > res = service .getDeletedKeysNext (nextLink , requestOptions );
2317
2317
return new PagedResponse <>(res .getRequest (), res .getStatusCode (), res .getHeaders (), res .getBody (),
2318
2318
res .getValue ().getValue (), null , res .getValue ().getNextLink (), null , null , null );
0 commit comments