Skip to content

Commit

Permalink
fixing System data definition is different from swagger Azure#679
Browse files Browse the repository at this point in the history
  • Loading branch information
allenjzhang committed Jun 7, 2024
1 parent 116fb2b commit c93cbb4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/libraries/azure-resource-manager/reference/data-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -1635,10 +1635,10 @@ model Azure.ResourceManager.CommonTypes.SystemData
| ------------------- | ---------------------------------------------------------------------------------- | ----------------------------------------------------- |
| createdBy? | `string` | The identity that created the resource. |
| createdByType? | [`createdByType`](./data-types.md#Azure.ResourceManager.CommonTypes.createdByType) | The type of identity that created the resource. |
| createdAt? | `plainDate` | The timestamp of resource creation (UTC). |
| createdAt? | `utcDateTime` | The timestamp of resource creation (UTC). |
| lastModifiedBy? | `string` | The identity that last modified the resource. |
| lastModifiedByType? | [`createdByType`](./data-types.md#Azure.ResourceManager.CommonTypes.createdByType) | The type of identity that last modified the resource. |
| lastModifiedAt? | `plainDate` | The timestamp of resource last modification (UTC) |
| lastModifiedAt? | `utcDateTime` | The timestamp of resource last modification (UTC) |

### `TenantIdParameter` {#Azure.ResourceManager.CommonTypes.TenantIdParameter}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ model SystemData {

/** The timestamp of resource creation (UTC). */
@visibility("read")
createdAt?: plainDate;
createdAt?: utcDateTime;

/** The identity that last modified the resource. */
@visibility("read")
Expand All @@ -308,7 +308,7 @@ model SystemData {

/** The timestamp of resource last modification (UTC) */
@visibility("read")
lastModifiedAt?: plainDate;
lastModifiedAt?: utcDateTime;
}

/**
Expand Down

0 comments on commit c93cbb4

Please sign in to comment.