Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -2019,6 +2019,10 @@
"create"
],
"description": "The geo-location where the resource lives"
},
"systemData": {
"$ref": "#/definitions/SystemData",
"readOnly": true
}
},
"required": [
Expand Down Expand Up @@ -2218,6 +2222,52 @@
}
}
},
"SystemData": {
"description": "Read only system data",
"type": "object",
"properties": {
"createdBy": {
"type": "string",
"description": "An identifier for the identity that created the resource"
},
"createdByType": {
"$ref": "#/definitions/IdentityType",
"description": "The type of identity that created the resource"
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "The timestamp of resource creation (UTC)"
},
"lastModifiedBy": {
"type": "string",
"description": "An identifier for the identity that last modified the resource"
},
"lastModifiedByType": {
"$ref": "#/definitions/IdentityType",
"description": "The type of identity that last modified the resource"
},
"lastModifiedAt": {
"type": "string",
"format": "date-time",
"description": "The timestamp of resource last modification (UTC)"
}
}
},
"IdentityType": {
"description": "The type of identity that creates/modifies resources",
"type": "string",
"enum": [
"user",
"application",
"managedIdentity",
"key"
],
"x-ms-enum": {
"name": "IdentityType",
"modelAsString": true
}
},
"ResourceSku": {
"type": "object",
"properties": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@
"200": {
"body": {
"properties": {},
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"location": "northeurope",
"tags": {
"mytag": "myval"
Expand All @@ -29,6 +37,14 @@
"body": {
"properties": {},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@
"body": {
"properties": {},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand All @@ -29,6 +37,14 @@
"body": {
"properties": {},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@
"body": {
"properties": {},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand All @@ -29,6 +37,14 @@
"body": {
"properties": {},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@
"status": "Connected"
},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand All @@ -51,6 +59,14 @@
"status": "Connected"
},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@
"body": {
"properties": {},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@
"body": {
"properties": {},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@
"body": {
"properties": {},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@
"status": "Connected"
},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@
{
"properties": {},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand All @@ -21,6 +29,14 @@
{
"properties": {},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@
{
"properties": {},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand All @@ -21,6 +29,14 @@
{
"properties": {},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@
{
"properties": {},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand All @@ -21,6 +29,14 @@
{
"properties": {},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@
"status": "Connected"
},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand All @@ -37,6 +45,14 @@
"status": "Connected"
},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@
{
"properties": {},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand All @@ -20,6 +28,14 @@
{
"properties": {},
"location": "northeurope",
"systemData": {
"createdBy": "user1",
"createdByType": "user",
"createdAt": "2020-01-01T17:18:19.1234567Z",
"lastModifiedBy": "user2",
"lastModifiedByType": "user",
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
},
"tags": {
"mytag": "myval"
},
Expand Down
Loading