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

[NetAppFiles] Urgent bug fix, backup response, #12852

Merged
merged 6 commits into from
Feb 9, 2021
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
systemData
  • Loading branch information
audunn committed Feb 4, 2021
commit 5800cb0c9fb38ab2a283feaf79c21a2df27fb21d
Original file line number Diff line number Diff line change
Expand Up @@ -2842,6 +2842,11 @@
"description": "NetApp Account properties",
"$ref": "#/definitions/accountProperties",
"x-ms-client-flatten": true
},
"systemData": {
"readOnly": true,
"description": "The system meta data relating to this resource.",
"$ref": "#/definitions/systemData"
}
}
},
Expand Down Expand Up @@ -4834,6 +4839,59 @@
}
},
"description": "An error response from the service."
},
"systemData": {
"description": "Metadata pertaining to creation and last modification of the resource.",
"type": "object",
"readOnly": true,
"properties": {
"createdBy": {
"type": "string",
"description": "The identity that created the resource."
},
"createdByType": {
"type": "string",
"description": "The type of identity that created the resource.",
"enum": [
"User",
"Application",
"ManagedIdentity",
"Key"
],
"x-ms-enum": {
"name": "createdByType",
"modelAsString": true
}
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "The timestamp of resource creation (UTC)."
},
"lastModifiedBy": {
"type": "string",
"description": "The identity that last modified the resource."
},
"lastModifiedByType": {
"type": "string",
"description": "The type of identity that last modified the resource.",
"enum": [
"User",
"Application",
"ManagedIdentity",
"Key"
],
"x-ms-enum": {
"name": "createdByType",
"modelAsString": true
}
},
"lastModifiedAt": {
"type": "string",
"format": "date-time",
"description": "The type of identity that last modified the resource."
}
}
}
},
"parameters": {
Expand Down