Skip to content

Commit e2e2ab7

Browse files
author
SDKAuto
committed
CodeGen from PR 32538 in Azure/azure-rest-api-specs
Merge d2e2ca6f6e47405e1e3c741cec296f2ebccddb69 into 9ab61572efcab66bf8ad836aac27d02839ea0139
1 parent 225e34b commit e2e2ab7

File tree

108 files changed

+1319
-1929
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+1319
-1929
lines changed

sdk/healthdataaiservices/azure-resourcemanager-healthdataaiservices/CHANGELOG.md

Lines changed: 69 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,79 @@
11
# Release History
22

3-
## 1.1.0-beta.1 (Unreleased)
3+
## 1.0.0-beta.1 (2025-02-18)
44

5-
### Features Added
5+
- Azure Resource Manager healthdataaiservices client library for Java. This package contains Microsoft Azure SDK for healthdataaiservices Management SDK. Package tag package-2024-09-20. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
66

77
### Breaking Changes
88

9-
### Bugs Fixed
9+
#### `implementation.models.OperationListResult` was removed
10+
11+
#### `implementation.models.PrivateLinkResourceListResult` was removed
12+
13+
#### `implementation.models.PrivateEndpointConnectionResourceListResult` was removed
14+
15+
#### `HealthDataAIServicesManager` was removed
16+
17+
#### `HealthDataAIServicesManager$Configurable` was removed
18+
19+
#### `models.PrivateEndpointConnectionProperties` was removed
20+
21+
#### `implementation.models.DeidServiceListResult` was removed
22+
23+
#### `models.PrivateEndpointConnection` was modified
24+
25+
* `properties()` was removed
26+
27+
#### `models.PrivateEndpointConnectionResource$Definition` was modified
28+
29+
* `withProperties(models.PrivateEndpointConnectionProperties)` was removed
30+
31+
#### `models.PrivateEndpointConnectionResource` was modified
32+
33+
* `models.PrivateEndpointConnectionProperties properties()` -> `fluent.models.PrivateEndpointConnectionProperties properties()`
34+
35+
#### `models.UserAssignedIdentity` was modified
36+
37+
* `java.lang.String principalId()` -> `java.util.UUID principalId()`
38+
* `java.lang.String clientId()` -> `java.util.UUID clientId()`
39+
40+
#### `models.ManagedServiceIdentity` was modified
41+
42+
* `java.lang.String tenantId()` -> `java.util.UUID tenantId()`
43+
* `java.lang.String principalId()` -> `java.util.UUID principalId()`
44+
45+
### Features Added
46+
47+
* `models.OperationListResult` was added
48+
49+
* `models.DeidServiceListResult` was added
50+
51+
* `models.UserAssignedIdentities` was added
52+
53+
* `HealthdataaiservicesManager$Configurable` was added
54+
55+
* `models.PrivateEndpointConnectionResourceListResult` was added
56+
57+
* `models.PrivateLinkResourceListResult` was added
58+
59+
* `HealthdataaiservicesManager` was added
60+
61+
#### `models.PrivateEndpointConnection` was modified
62+
63+
* `groupIds()` was added
64+
* `withPrivateLinkServiceConnectionState(models.PrivateLinkServiceConnectionState)` was added
65+
* `provisioningState()` was added
66+
* `withPrivateEndpoint(models.PrivateEndpoint)` was added
67+
* `privateLinkServiceConnectionState()` was added
68+
* `privateEndpoint()` was added
69+
70+
#### `models.PrivateEndpointConnectionResource$Definition` was modified
71+
72+
* `withProperties(fluent.models.PrivateEndpointConnectionProperties)` was added
73+
74+
#### `models.PrivateLinkResourceProperties` was modified
1075

11-
### Other Changes
76+
* `withRequiredZoneNames(java.util.List)` was added
1277

1378
## 1.0.0 (2024-11-21)
1479

sdk/healthdataaiservices/azure-resourcemanager-healthdataaiservices/README.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Azure Resource Manager Health Data AI Services client library for Java
1+
# Azure Resource Manager healthdataaiservices client library for Java
22

3-
Azure Resource Manager Health Data AI Services client library for Java.
3+
Azure Resource Manager healthdataaiservices client library for Java.
44

5-
This package contains Microsoft Azure SDK for Health Data AI Services Management SDK. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
5+
This package contains Microsoft Azure SDK for healthdataaiservices Management SDK. Package tag package-2024-09-20. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
66

77
## We'd love to hear your feedback
88

@@ -32,7 +32,7 @@ Various documentation is available to help you get started
3232
<dependency>
3333
<groupId>com.azure.resourcemanager</groupId>
3434
<artifactId>azure-resourcemanager-healthdataaiservices</artifactId>
35-
<version>1.0.0</version>
35+
<version>1.1.0-beta.1</version>
3636
</dependency>
3737
```
3838
[//]: # ({x-version-update-end})
@@ -52,15 +52,15 @@ Azure subscription ID can be configured via `AZURE_SUBSCRIPTION_ID` environment
5252
Assuming the use of the `DefaultAzureCredential` credential class, the client can be authenticated using the following code:
5353

5454
```java
55-
AzureProfile profile = new AzureProfile(AzureEnvironment.AZURE);
55+
AzureProfile profile = new AzureProfile(AzureCloud.AZURE_PUBLIC_CLOUD);
5656
TokenCredential credential = new DefaultAzureCredentialBuilder()
5757
.authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint())
5858
.build();
59-
HealthDataAIServicesManager manager = HealthDataAIServicesManager
59+
HealthdataaiservicesManager manager = HealthdataaiservicesManager
6060
.authenticate(credential, profile);
6161
```
6262

63-
The sample code assumes global Azure. Please change `AzureEnvironment.AZURE` variable if otherwise.
63+
The sample code assumes global Azure. Please change the `AzureCloud.AZURE_PUBLIC_CLOUD` variable if otherwise.
6464

6565
See [Authentication][authenticate] for more options.
6666

@@ -100,5 +100,3 @@ This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For m
100100
[cg]: https://github.com/Azure/azure-sdk-for-java/blob/main/CONTRIBUTING.md
101101
[coc]: https://opensource.microsoft.com/codeofconduct/
102102
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/
103-
104-

0 commit comments

Comments
 (0)