|
2 | 2 |
|
3 | 3 | Azure Resource Manager Machine Learning client library for Java. |
4 | 4 |
|
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). |
| 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-preview-2024-10. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt). |
6 | 6 |
|
7 | 7 | ## We'd love to hear your feedback |
8 | 8 |
|
@@ -32,7 +32,7 @@ Various documentation is available to help you get started |
32 | 32 | <dependency> |
33 | 33 | <groupId>com.azure.resourcemanager</groupId> |
34 | 34 | <artifactId>azure-resourcemanager-machinelearning</artifactId> |
35 | | - <version>1.1.0</version> |
| 35 | + <version>1.2.0-beta.1</version> |
36 | 36 | </dependency> |
37 | 37 | ``` |
38 | 38 | [//]: # ({x-version-update-end}) |
@@ -78,39 +78,37 @@ workspace = machineLearningManager.workspaces() |
78 | 78 | .withSku(new Sku().withName("Basic").withTier(SkuTier.BASIC)) |
79 | 79 | .withIdentity(new ManagedServiceIdentity().withType(ManagedServiceIdentityType.SYSTEM_ASSIGNED)) |
80 | 80 | .withFriendlyName(workspaceName) |
81 | | - .withStorageAccount( |
82 | | - storageManager.storageAccounts() |
83 | | - .define(storageName) |
84 | | - .withRegion(REGION) |
85 | | - .withExistingResourceGroup(resourceGroupName) |
86 | | - .withSku(StorageAccountSkuType.STANDARD_LRS) |
87 | | - .withMinimumTlsVersion(MinimumTlsVersion.TLS1_0) |
88 | | - .withHnsEnabled(false) |
89 | | - .withAccessFromAzureServices() |
90 | | - .withOnlyHttpsTraffic() |
91 | | - .withBlobStorageAccountKind().withAccessTier(AccessTier.HOT) |
92 | | - .create() |
93 | | - .id()) |
94 | | - .withKeyVault( |
95 | | - keyVaultManager.vaults() |
96 | | - .define(keyVaultName) |
97 | | - .withRegion(REGION) |
98 | | - .withExistingResourceGroup(resourceGroupName) |
99 | | - .withEmptyAccessPolicy() |
100 | | - .withSku(SkuName.STANDARD) |
101 | | - .withDeploymentDisabled() |
102 | | - .withAccessFromAllNetworks() |
103 | | - .create() |
104 | | - .id()) |
105 | | - .withApplicationInsights( |
106 | | - applicationInsightsManager.components() |
107 | | - .define(insightName) |
108 | | - .withRegion(REGION) |
109 | | - .withExistingResourceGroup(resourceGroupName) |
110 | | - .withKind("web") |
111 | | - .withApplicationType(ApplicationType.WEB) |
112 | | - .create() |
113 | | - .id()) |
| 81 | + .withStorageAccount(storageManager.storageAccounts() |
| 82 | + .define(storageName) |
| 83 | + .withRegion(REGION) |
| 84 | + .withExistingResourceGroup(resourceGroupName) |
| 85 | + .withSku(StorageAccountSkuType.STANDARD_LRS) |
| 86 | + .withMinimumTlsVersion(MinimumTlsVersion.TLS1_0) |
| 87 | + .withHnsEnabled(false) |
| 88 | + .withAccessFromAzureServices() |
| 89 | + .withOnlyHttpsTraffic() |
| 90 | + .withBlobStorageAccountKind() |
| 91 | + .withAccessTier(AccessTier.HOT) |
| 92 | + .create() |
| 93 | + .id()) |
| 94 | + .withKeyVault(keyVaultManager.vaults() |
| 95 | + .define(keyVaultName) |
| 96 | + .withRegion(REGION) |
| 97 | + .withExistingResourceGroup(resourceGroupName) |
| 98 | + .withEmptyAccessPolicy() |
| 99 | + .withSku(SkuName.STANDARD) |
| 100 | + .withDeploymentDisabled() |
| 101 | + .withAccessFromAllNetworks() |
| 102 | + .create() |
| 103 | + .id()) |
| 104 | + .withApplicationInsights(applicationInsightsManager.components() |
| 105 | + .define(insightName) |
| 106 | + .withRegion(REGION) |
| 107 | + .withExistingResourceGroup(resourceGroupName) |
| 108 | + .withKind("web") |
| 109 | + .withApplicationType(ApplicationType.WEB) |
| 110 | + .create() |
| 111 | + .id()) |
114 | 112 | .create(); |
115 | 113 | ``` |
116 | 114 | [Code snippets and samples](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/machinelearning/azure-resourcemanager-machinelearning/SAMPLE.md) |
|
0 commit comments