Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdk/kusto/arm-kusto/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"rollup-plugin-sourcemaps": "^0.4.2",
"uglify-js": "^3.6.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/feature/v4/sdk/kusto/arm-kusto",
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/kusto/arm-kusto",
"repository": {
"type": "git",
"url": "https://github.com/Azure/azure-sdk-for-js.git"
Expand Down
6 changes: 4 additions & 2 deletions sdk/kusto/arm-kusto/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -742,8 +742,9 @@ export interface ReadWriteDatabase {
hotCachePeriod?: string;
/**
* The statistics of the database.
* **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
statistics?: DatabaseStatistics;
readonly statistics?: DatabaseStatistics;
/**
* Indicates whether the database is followed.
* **NOTE: This property will not be serialized. It can only be populated by the server.**
Expand Down Expand Up @@ -797,8 +798,9 @@ export interface ReadOnlyFollowingDatabase {
hotCachePeriod?: string;
/**
* The statistics of the database.
* **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
statistics?: DatabaseStatistics;
readonly statistics?: DatabaseStatistics;
/**
* The name of the leader cluster
* **NOTE: This property will not be serialized. It can only be populated by the server.**
Expand Down
2 changes: 2 additions & 0 deletions sdk/kusto/arm-kusto/src/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1179,6 +1179,7 @@ export const ReadWriteDatabase: msRest.CompositeMapper = {
}
},
statistics: {
readOnly: true,
serializedName: "properties.statistics",
type: {
name: "Composite",
Expand Down Expand Up @@ -1226,6 +1227,7 @@ export const ReadOnlyFollowingDatabase: msRest.CompositeMapper = {
}
},
statistics: {
readOnly: true,
serializedName: "properties.statistics",
type: {
name: "Composite",
Expand Down