@@ -62,8 +62,7 @@ class ErrorDetail(_Model):
62
62
63
63
64
64
class ErrorResponse (_Model ):
65
- """Common error response for all Azure Resource Manager APIs to return error details for failed
66
- operations.
65
+ """Error response.
67
66
68
67
:ivar error: The error object.
69
68
:vartype error: ~azure.mgmt.weightsandbiases.models.ErrorDetail
@@ -148,7 +147,7 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:
148
147
149
148
150
149
class Resource (_Model ):
151
- """Common fields that are returned in the response for all Azure Resource Manager resources .
150
+ """Resource.
152
151
153
152
:ivar id: Fully qualified resource ID for the resource. Ex -
154
153
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
@@ -176,8 +175,7 @@ class Resource(_Model):
176
175
177
176
178
177
class TrackedResource (Resource ):
179
- """The resource model definition for an Azure Resource Manager tracked top level resource which
180
- has 'tags' and a 'location'.
178
+ """Tracked Resource.
181
179
182
180
:ivar id: Fully qualified resource ID for the resource. Ex -
183
181
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
@@ -462,7 +460,7 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:
462
460
463
461
464
462
class Operation (_Model ):
465
- """Details of a REST API operation, returned from the Resource Provider Operations API .
463
+ """REST API Operation .
466
464
467
465
:ivar name: The name of the operation, as per Resource-Based Access Control (RBAC). Examples:
468
466
"Microsoft.Compute/virtualMachines/write", "Microsoft.Compute/virtualMachines/capture/action".
@@ -714,16 +712,16 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:
714
712
class UserAssignedIdentity (_Model ):
715
713
"""User assigned identity properties.
716
714
717
- :ivar client_id: The client ID of the assigned identity.
718
- :vartype client_id: str
719
715
:ivar principal_id: The principal ID of the assigned identity.
720
716
:vartype principal_id: str
717
+ :ivar client_id: The client ID of the assigned identity.
718
+ :vartype client_id: str
721
719
"""
722
720
723
- client_id : Optional [str ] = rest_field (name = "clientId" , visibility = ["read" ])
724
- """The client ID of the assigned identity."""
725
721
principal_id : Optional [str ] = rest_field (name = "principalId" , visibility = ["read" ])
726
722
"""The principal ID of the assigned identity."""
723
+ client_id : Optional [str ] = rest_field (name = "clientId" , visibility = ["read" ])
724
+ """The client ID of the assigned identity."""
727
725
728
726
729
727
class UserDetails (_Model ):
0 commit comments