Skip to content

Commit a275d00

Browse files
author
SDKAuto
committed
CodeGen from PR 29007 in Azure/azure-rest-api-specs
Merge 365a99211930055ef1c82ef51b1d23b74fcf2616 into dd1b1d0a58a10c4a34f55231c7035c80dd09b746
1 parent c86b87e commit a275d00

File tree

1,545 files changed

+94155
-51481
lines changed

Some content is hidden

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

1,545 files changed

+94155
-51481
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Release History
22

3-
## 1.1.0-beta.1 (Unreleased)
3+
## 1.0.0-beta.1 (2024-05-08)
4+
5+
- Azure Resource Manager Machine Learning client library for Java. This package contains Microsoft Azure SDK for Machine Learning Management SDK. These APIs allow end users to operate on Azure Machine Learning Workspace resources. Package tag package-2024-04. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
46

57
### Features Added
68

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

Lines changed: 49 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Azure Resource Manager Machine Learning client library for Java.
44

5-
This package contains Microsoft Azure SDK for Machine Learning Management SDK. These APIs allow end users to operate on Azure Machine Learning Workspace resources. Package tag package-2022-10. 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 Machine Learning Management SDK. These APIs allow end users to operate on Azure Machine Learning Workspace resources. Package tag package-2024-04. 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-machinelearning</artifactId>
35-
<version>1.0.0</version>
35+
<version>1.1.0-beta.1</version>
3636
</dependency>
3737
```
3838
[//]: # ({x-version-update-end})
@@ -45,7 +45,7 @@ Azure Management Libraries require a `TokenCredential` implementation for authen
4545

4646
### Authentication
4747

48-
By default, Azure Active Directory token authentication depends on correct configuration of the following environment variables.
48+
By default, Microsoft Entra ID token authentication depends on correct configuration of the following environment variables.
4949

5050
- `AZURE_CLIENT_ID` for Azure client ID.
5151
- `AZURE_TENANT_ID` for Azure tenant ID.
@@ -74,6 +74,49 @@ See [API design][design] for general introduction on design and key concepts on
7474

7575
## Examples
7676

77+
```java
78+
workspace = machineLearningManager.workspaces()
79+
.define(workspaceName)
80+
.withExistingResourceGroup(resourceGroupName)
81+
.withRegion(REGION)
82+
.withSku(new Sku().withName("Basic").withTier(SkuTier.BASIC))
83+
.withIdentity(new ManagedServiceIdentity().withType(ManagedServiceIdentityType.SYSTEM_ASSIGNED))
84+
.withFriendlyName(workspaceName)
85+
.withStorageAccount(
86+
storageManager.storageAccounts()
87+
.define(storageName)
88+
.withRegion(REGION)
89+
.withExistingResourceGroup(resourceGroupName)
90+
.withSku(StorageAccountSkuType.STANDARD_LRS)
91+
.withMinimumTlsVersion(MinimumTlsVersion.TLS1_0)
92+
.withHnsEnabled(false)
93+
.withAccessFromAzureServices()
94+
.withOnlyHttpsTraffic()
95+
.withBlobStorageAccountKind().withAccessTier(AccessTier.HOT)
96+
.create()
97+
.id())
98+
.withKeyVault(
99+
keyVaultManager.vaults()
100+
.define(keyVaultName)
101+
.withRegion(REGION)
102+
.withExistingResourceGroup(resourceGroupName)
103+
.withEmptyAccessPolicy()
104+
.withSku(SkuName.STANDARD)
105+
.withDeploymentDisabled()
106+
.withAccessFromAllNetworks()
107+
.create()
108+
.id())
109+
.withApplicationInsights(
110+
applicationInsightsManager.components()
111+
.define(insightName)
112+
.withRegion(REGION)
113+
.withExistingResourceGroup(resourceGroupName)
114+
.withKind("web")
115+
.withApplicationType(ApplicationType.WEB)
116+
.create()
117+
.id())
118+
.create();
119+
```
77120
[Code snippets and samples](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/machinelearning/azure-resourcemanager-machinelearning/SAMPLE.md)
78121

79122

@@ -94,7 +137,7 @@ This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For m
94137
<!-- LINKS -->
95138
[survey]: https://microsoft.qualtrics.com/jfe/form/SV_ehN0lIk2FKEBkwd?Q_CHL=DOCS
96139
[docs]: https://azure.github.io/azure-sdk-for-java/
97-
[jdk]: https://docs.microsoft.com/java/azure/jdk/
140+
[jdk]: https://learn.microsoft.com/azure/developer/java/fundamentals/
98141
[azure_subscription]: https://azure.microsoft.com/free/
99142
[azure_identity]: https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/identity/azure-identity
100143
[azure_core_http_netty]: https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/core/azure-core-http-netty
@@ -103,3 +146,5 @@ This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For m
103146
[cg]: https://github.com/Azure/azure-sdk-for-java/blob/main/CONTRIBUTING.md
104147
[coc]: https://opensource.microsoft.com/codeofconduct/
105148
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/
149+
150+
![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-java%2Fsdk%2Fmachinelearning%2Fazure-resourcemanager-machinelearning%2FREADME.png)

0 commit comments

Comments
 (0)