@azure-tools/typespec-azure-resource-manager 0.51.0-dev.5 → 0.51.0-dev.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -48,13 +48,13 @@ model SystemAssignedServiceIdentity {
48
48
  * User assigned identity properties
49
49
  */
50
50
  model UserAssignedIdentity {
51
- /** The principal ID of the assigned identity. */
52
- @visibility("read")
53
- principalId?: uuid;
54
-
55
51
  /** The client ID of the assigned identity. */
56
52
  @visibility("read")
57
53
  clientId?: uuid;
54
+
55
+ /** The principal ID of the assigned identity. */
56
+ @visibility("read")
57
+ principalId?: uuid;
58
58
  }
59
59
 
60
60
  /**
@@ -144,7 +144,7 @@ model PrivateLinkResourceParameter<Segment extends valueof string = "privateLink
144
144
  /** The name of the private link associated with the Azure resource. */
145
145
  @path
146
146
  @TypeSpec.Rest.segment(Segment)
147
- @key("privateLinkResourcenName")
147
+ @key("privateLinkResourceName")
148
148
  name: string;
149
149
  }
150
150
 
@@ -74,7 +74,7 @@ model ResourceModelWithAllowedPropertySet extends TrackedResource {
74
74
  * Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19),
75
75
  * If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields. */
76
76
  @visibility("read")
77
- eTag?: string;
77
+ etag?: string;
78
78
 
79
79
  @typeChangedFrom(Versions.v6, Identity)
80
80
  identity?: ManagedServiceIdentity;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure-tools/typespec-azure-resource-manager",
3
- "version": "0.51.0-dev.5",
3
+ "version": "0.51.0-dev.7",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "TypeSpec Azure Resource Manager library",
6
6
  "homepage": "https://azure.github.io/typespec-azure",