Skip to content

Commit db377f4

Browse files
golddoveAlancere
andauthored
[StorageTasks] Bugfix maxpagesize type (#29534)
* [StorageTasks] Bugfix maxpagesize type * add sdk-suppressions.yaml --------- Co-authored-by: Alancere <[email protected]>
1 parent 1c63635 commit db377f4

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

specification/storage/resource-manager/Microsoft.Storage/stable/2023-05-01/storageTaskAssignments.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,8 @@
275275
{
276276
"name": "$maxpagesize",
277277
"in": "query",
278-
"type": "string",
278+
"type": "integer",
279+
"format": "int32",
279280
"description": "Optional, specifies the maximum number of storage task assignment Ids to be included in the list response."
280281
},
281282
{
@@ -326,7 +327,8 @@
326327
{
327328
"name": "$maxpagesize",
328329
"in": "query",
329-
"type": "string",
330+
"type": "integer",
331+
"format": "int32",
330332
"description": "Optional, specifies the maximum number of storage task assignment instances to be included in the list response."
331333
},
332334
{
@@ -386,7 +388,8 @@
386388
{
387389
"name": "$maxpagesize",
388390
"in": "query",
389-
"type": "string",
391+
"type": "integer",
392+
"format": "int32",
390393
"description": "Optional, specifies the maximum number of storage task assignment instances to be included in the list response."
391394
},
392395
{

specification/storageactions/resource-manager/Microsoft.StorageActions/stable/2023-01-01/storageactions.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,8 @@
374374
{
375375
"name": "$maxpagesize",
376376
"in": "query",
377-
"type": "string",
377+
"type": "integer",
378+
"format": "int32",
378379
"description": "Optional, specifies the maximum number of Storage Task Assignment Resource IDs to be included in the list response."
379380
},
380381
{
@@ -425,7 +426,8 @@
425426
{
426427
"name": "$maxpagesize",
427428
"in": "query",
428-
"type": "string",
429+
"type": "integer",
430+
"format": "int32",
429431
"description": "Optional, specifies the maximum number of Storage Task Assignment Resource IDs to be included in the list response."
430432
},
431433
{
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
suppressions:
2+
azure-sdk-for-go:
3+
- package: sdk/resourcemanager/storageactions/armstorageactions
4+
breaking-changes:
5+
- Type of `StorageTaskAssignmentClientListOptions.Maxpagesize` has been changed from `*string` to `*int32`
6+
- Type of `StorageTasksReportClientListOptions.Maxpagesize` has been changed from `*string` to `*int32`

0 commit comments

Comments
 (0)