Skip to content
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

Introducing System data #13113

Merged
merged 22 commits into from
Mar 1, 2021
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -2799,6 +2799,11 @@
"description": "Type of the object.",
"type": "string",
"readOnly": true
},
"systemData": {
"$ref": "#/definitions/systemData",
"description": "Metadata pertaining to creation and last modification of the resource.",
"readOnly": true
}
}
},
Expand Down Expand Up @@ -4142,6 +4147,44 @@
},
"x-ms-discriminator-value": "ValidateSubscriptionIsAllowedToCreateJob"
},
"systemData": {
"description": "Provides details about resource creation and update time",
"type": "object",
"properties": {
"createdBy": {
"description": "A string identifier for the identity that created the resource",
"type": "string",
"readOnly": true
},
"createdByType": {
"description": "The type of identity that created the resource: user, application, managedIdentity",
"type": "string",
"readOnly": true
},
"createdAt": {
"format": "date-time",
"description": "The timestamp of resource creation (UTC)",
"type": "string",
"readOnly": true
},
"lastModifiedBy": {
"description": "A string identifier for the identity that last modified the resource",
"type": "string",
"readOnly": true
},
"lastModifiedByType": {
"description": "The type of identity that last modified the resource: user, application, managedIdentity",
"type": "string",
"readOnly": true
},
"lastModifiedAt": {
"format": "date-time",
"description": "The timestamp of resource last modification (UTC)",
"type": "string",
"readOnly": true
}
}
},
"TransferAllDetails": {
"description": "Details to transfer all data.",
"required": [
Expand Down