Skip to content

Commit

Permalink
feat(migrationcenter): update the API
Browse files Browse the repository at this point in the history
#### migrationcenter:v1alpha1

The following keys were added:
- schemas.ReportSummaryGroupFinding.properties.overlappingAssetCount.deprecated

The following keys were changed:
- schemas.DiskUsageSample.properties.averageIops.description
- schemas.ReportSummaryGroupFinding.properties.overlappingAssetCount.description

#### migrationcenter:v1

The following keys were added:
- schemas.ReportSummaryGroupFinding.properties.overlappingAssetCount.deprecated

The following keys were changed:
- schemas.ReportSummaryGroupFinding.properties.overlappingAssetCount.description
  • Loading branch information
yoshi-automation authored and sofisl committed Sep 22, 2023
1 parent 3a1ae5c commit a714be5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
5 changes: 3 additions & 2 deletions discovery/migrationcenter-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -2099,7 +2099,7 @@
}
}
},
"revision": "20230804",
"revision": "20230908",
"rootUrl": "https://migrationcenter.googleapis.com/",
"schemas": {
"AddAssetsToGroupRequest": {
Expand Down Expand Up @@ -4915,7 +4915,8 @@
"type": "string"
},
"overlappingAssetCount": {
"description": "Count of the number of assets in this group which are also included in another group within the same report.",
"deprecated": true,
"description": "This field is deprecated, do not rely on it having a value.",
"format": "int64",
"type": "string"
},
Expand Down
7 changes: 4 additions & 3 deletions discovery/migrationcenter-v1alpha1.json
Original file line number Diff line number Diff line change
Expand Up @@ -2102,7 +2102,7 @@
}
}
},
"revision": "20230804",
"revision": "20230908",
"rootUrl": "https://migrationcenter.googleapis.com/",
"schemas": {
"AddAssetsToGroupRequest": {
Expand Down Expand Up @@ -2980,7 +2980,7 @@
"id": "DiskUsageSample",
"properties": {
"averageIops": {
"description": "Average IOPS sampled over a short window. Must be non-negative.",
"description": "Average IOPS sampled over a short window. Must be non-negative. Must be equal to the sum of read and write if one of them is positive. if both read and write are zero they are ignored.",
"format": "float",
"type": "number"
}
Expand Down Expand Up @@ -4849,7 +4849,8 @@
"type": "string"
},
"overlappingAssetCount": {
"description": "Count of the number of assets in this group which are also included in another group within the same report.",
"deprecated": true,
"description": "This field is deprecated, do not rely on it having a value.",
"format": "int64",
"type": "string"
},
Expand Down
2 changes: 1 addition & 1 deletion src/apis/migrationcenter/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2112,7 +2112,7 @@ export namespace migrationcenter_v1 {
*/
displayName?: string | null;
/**
* Count of the number of assets in this group which are also included in another group within the same report.
* This field is deprecated, do not rely on it having a value.
*/
overlappingAssetCount?: string | null;
/**
Expand Down
4 changes: 2 additions & 2 deletions src/apis/migrationcenter/v1alpha1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,7 @@ export namespace migrationcenter_v1alpha1 {
*/
export interface Schema$DiskUsageSample {
/**
* Average IOPS sampled over a short window. Must be non-negative.
* Average IOPS sampled over a short window. Must be non-negative. Must be equal to the sum of read and write if one of them is positive. if both read and write are zero they are ignored.
*/
averageIops?: number | null;
}
Expand Down Expand Up @@ -2075,7 +2075,7 @@ export namespace migrationcenter_v1alpha1 {
*/
displayName?: string | null;
/**
* Count of the number of assets in this group which are also included in another group within the same report.
* This field is deprecated, do not rely on it having a value.
*/
overlappingAssetCount?: string | null;
/**
Expand Down

0 comments on commit a714be5

Please sign in to comment.