Skip to content

Commit 8b13132

Browse files
author
SDKAuto
committed
CodeGen from PR 34270 in Azure/azure-rest-api-specs
Merge 447c4193246efcde66d0d0feaa59da2c756c794f into a19648565889eaae019e531c15f3045d1244c7ce
1 parent 6c30600 commit 8b13132

File tree

5 files changed

+19
-15
lines changed

5 files changed

+19
-15
lines changed

sdk/arizeaiobservabilityeval/azure-mgmt-arizeaiobservabilityeval/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release History
22

3+
## 1.0.0 (2025-05-13)
4+
5+
### Features Added
6+
7+
- Method `OrganizationProperties.__init__` has a new overload `def __init__(self: None, marketplace: _models.MarketplaceDetails, user: _models.UserDetails, partner_properties: _models.PartnerProperties, single_sign_on_properties: Optional[_models.SingleSignOnPropertiesV2])`
8+
39
## 1.0.0 (2025-05-07)
410

511
### Other Changes
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"commit": "532b1b8f4efdb960efce95c6694164303d79a3fc",
2+
"commit": "5ab69662eff4ee3c2bc93c2a4959470ab9867c99",
33
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
44
"typespec_src": "specification/liftrarize/ArizeAi.ObservabilityEval.Management",
5-
"@azure-tools/typespec-python": "0.44.1"
5+
"@azure-tools/typespec-python": "0.44.2"
66
}

sdk/arizeaiobservabilityeval/azure-mgmt-arizeaiobservabilityeval/azure/mgmt/arizeaiobservabilityeval/models/_models.py

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@ class ErrorDetail(_Model):
6262

6363

6464
class ErrorResponse(_Model):
65-
"""Common error response for all Azure Resource Manager APIs to return error details for failed
66-
operations.
65+
"""Error response.
6766
6867
:ivar error: The error object.
6968
:vartype error: ~azure.mgmt.arizeaiobservabilityeval.models.ErrorDetail
@@ -242,7 +241,7 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:
242241

243242

244243
class Operation(_Model):
245-
"""Details of a REST API operation, returned from the Resource Provider Operations API.
244+
"""REST API Operation.
246245
247246
:ivar name: The name of the operation, as per Resource-Based Access Control (RBAC). Examples:
248247
"Microsoft.Compute/virtualMachines/write", "Microsoft.Compute/virtualMachines/capture/action".
@@ -387,7 +386,7 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:
387386

388387

389388
class Resource(_Model):
390-
"""Common fields that are returned in the response for all Azure Resource Manager resources.
389+
"""Resource.
391390
392391
:ivar id: Fully qualified resource ID for the resource. Ex -
393392
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
@@ -415,8 +414,7 @@ class Resource(_Model):
415414

416415

417416
class TrackedResource(Resource):
418-
"""The resource model definition for an Azure Resource Manager tracked top level resource which
419-
has 'tags' and a 'location'.
417+
"""Tracked Resource.
420418
421419
:ivar id: Fully qualified resource ID for the resource. Ex -
422420
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
@@ -708,16 +706,16 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:
708706
class UserAssignedIdentity(_Model):
709707
"""User assigned identity properties.
710708
711-
:ivar client_id: The client ID of the assigned identity.
712-
:vartype client_id: str
713709
:ivar principal_id: The principal ID of the assigned identity.
714710
:vartype principal_id: str
711+
:ivar client_id: The client ID of the assigned identity.
712+
:vartype client_id: str
715713
"""
716714

717-
client_id: Optional[str] = rest_field(name="clientId", visibility=["read"])
718-
"""The client ID of the assigned identity."""
719715
principal_id: Optional[str] = rest_field(name="principalId", visibility=["read"])
720716
"""The principal ID of the assigned identity."""
717+
client_id: Optional[str] = rest_field(name="clientId", visibility=["read"])
718+
"""The client ID of the assigned identity."""
721719

722720

723721
class UserDetails(_Model):

sdk/arizeaiobservabilityeval/azure-mgmt-arizeaiobservabilityeval/azure/mgmt/arizeaiobservabilityeval/operations/_operations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ class Operations:
245245
:attr:`operations` attribute.
246246
"""
247247

248-
def __init__(self, *args, **kwargs):
248+
def __init__(self, *args, **kwargs) -> None:
249249
input_args = list(args)
250250
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
251251
self._config: ArizeAIObservabilityEvalMgmtClientConfiguration = (
@@ -348,7 +348,7 @@ class OrganizationsOperations:
348348
:attr:`organizations` attribute.
349349
"""
350350

351-
def __init__(self, *args, **kwargs):
351+
def __init__(self, *args, **kwargs) -> None:
352352
input_args = list(args)
353353
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
354354
self._config: ArizeAIObservabilityEvalMgmtClientConfiguration = (
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
directory: specification/liftrarize/ArizeAi.ObservabilityEval.Management
2-
commit: 532b1b8f4efdb960efce95c6694164303d79a3fc
2+
commit: 5ab69662eff4ee3c2bc93c2a4959470ab9867c99
33
repo: Azure/azure-rest-api-specs
44
additionalDirectories:

0 commit comments

Comments
 (0)