-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add xms-ids for mediaservices #17742
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -187,6 +187,9 @@ | |
"items": { | ||
"$ref": "#/definitions/MetricDimension" | ||
}, | ||
"x-ms-identifiers": [ | ||
"name" | ||
], | ||
"description": "The metric dimensions.", | ||
"readOnly": true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here MediaServiceProperties - > storageAccounts is also an array. does this not need x-ms-idenitfiers. Can you explain a little on which scenario should we be adding this new property? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The type object of storageAccounts, which is sotrageAccount in this case, has a property named "id" already, which is the default value expected when x-ms-identifiers is not specified. Same reason for AccountFilterCollection. Hope this helps :) |
||
}, | ||
|
@@ -236,6 +239,9 @@ | |
"items": { | ||
"$ref": "#/definitions/LogSpecification" | ||
}, | ||
"x-ms-identifiers": [ | ||
"name" | ||
], | ||
"description": "List of log specifications.", | ||
"readOnly": true | ||
}, | ||
|
@@ -244,6 +250,9 @@ | |
"items": { | ||
"$ref": "#/definitions/MetricSpecification" | ||
}, | ||
"x-ms-identifiers": [ | ||
"name" | ||
], | ||
"description": "List of metric specifications.", | ||
"readOnly": true | ||
} | ||
|
@@ -754,6 +763,9 @@ | |
"items": { | ||
"$ref": "#/definitions/Operation" | ||
}, | ||
"x-ms-identifiers": [ | ||
"name" | ||
], | ||
"description": "A collection of Operation items." | ||
} | ||
}, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is one more array in this file, AccountFilterCollection->value. does this not need x-ms-identifiers?