Skip to content

[AutoPR azure-resourcemanager-cognitiveservices] [CogSvc] 2025 04 01 release #15742

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
@@ -1,14 +1,145 @@
# Release History

## 1.2.0-beta.1 (Unreleased)
## 1.0.0-beta.1 (2025-04-17)

- Azure Resource Manager CognitiveServices client library for Java. This package contains Microsoft Azure SDK for CognitiveServices Management SDK. Cognitive Services Management Client. Package tag package-2025-04-01. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

### Features Added

### Breaking Changes
* `models.ProjectListResult` was added

* `models.Project$Update` was added

* `models.ConnectionOAuth2` was added

* `models.CapabilityHost$Update` was added

* `models.ConnectionServicePrincipal` was added

* `models.ConnectionSharedAccessSignature` was added

* `models.CapabilityHost$UpdateStages` was added

* `models.CapabilityHost` was added

* `models.ResourceBase` was added

* `models.ConnectionPropertiesV2BasicResource` was added

* `models.ServicePrincipalAuthTypeConnectionProperties` was added

* `models.CapabilityHost$Definition` was added

* `models.CapabilityHostKind` was added

* `models.CapabilityHostProperties` was added

* `models.Project$UpdateStages` was added

* `models.ConnectionPropertiesV2` was added

* `models.ConnectionAccessKey` was added

* `models.CustomKeysConnectionProperties` was added

* `models.ProjectConnections` was added

* `models.AccountConnections` was added

* `models.ConnectionAuthType` was added

* `models.ManagedPERequirement` was added

* `models.Project$Definition` was added

* `models.PatAuthTypeConnectionProperties` was added

* `models.ConnectionPropertiesV2BasicResource$Definition` was added

* `models.NoneAuthTypeConnectionProperties` was added

* `models.AccountKeyAuthTypeConnectionProperties` was added

* `models.AccessKeyAuthTypeConnectionProperties` was added

* `models.ConnectionApiKey` was added

* `models.AccountCapabilityHosts` was added

* `models.ManagedPEStatus` was added

### Bugs Fixed
* `models.ConnectionUpdateContent` was added

* `models.ConnectionManagedIdentity` was added

* `models.ConnectionPropertiesV2BasicResource$Update` was added

* `models.CapabilityHostProvisioningState` was added

* `models.CustomKeys` was added

* `models.ManagedIdentityAuthTypeConnectionProperties` was added

* `models.ProjectProperties` was added

* `models.ConnectionCategory` was added

* `models.ProjectCapabilityHosts` was added

* `models.Projects` was added

* `models.Project` was added

* `models.OAuth2AuthTypeConnectionProperties` was added

* `models.ApiKeyAuthConnectionProperties` was added

* `models.Project$DefinitionStages` was added

* `models.ConnectionAccountKey` was added

* `models.NetworkInjections` was added

* `models.SasAuthTypeConnectionProperties` was added

* `models.UsernamePasswordAuthTypeConnectionProperties` was added

* `models.CapabilityHost$DefinitionStages` was added

* `models.ConnectionPropertiesV2BasicResourceArmPaginatedResult` was added

* `models.ConnectionGroup` was added

* `models.AadAuthTypeConnectionProperties` was added

* `models.ConnectionUsernamePassword` was added

* `models.ConnectionPropertiesV2BasicResource$DefinitionStages` was added

* `models.ConnectionPropertiesV2BasicResource$UpdateStages` was added

* `models.ConnectionPersonalAccessToken` was added

* `models.ScenarioType` was added

#### `CognitiveServicesManager` was modified

* `projectConnections()` was added
* `accountConnections()` was added
* `projects()` was added
* `projectCapabilityHosts()` was added
* `accountCapabilityHosts()` was added

#### `models.AccountProperties` was modified

### Other Changes
* `withAssociatedProjects(java.util.List)` was added
* `withDefaultProject(java.lang.String)` was added
* `associatedProjects()` was added
* `networkInjections()` was added
* `allowProjectManagement()` was added
* `defaultProject()` was added
* `withAllowProjectManagement(java.lang.Boolean)` was added
* `withNetworkInjections(models.NetworkInjections)` was added

## 1.1.0 (2024-11-22)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Azure Resource Manager CognitiveServices client library for Java.

This package contains Microsoft Azure SDK for CognitiveServices Management SDK. Cognitive Services Management Client. Package tag package-2024-10. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
This package contains Microsoft Azure SDK for CognitiveServices Management SDK. Cognitive Services Management Client. Package tag package-2025-04-01. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

## We'd love to hear your feedback

Expand Down Expand Up @@ -52,15 +52,15 @@ Azure subscription ID can be configured via `AZURE_SUBSCRIPTION_ID` environment
Assuming the use of the `DefaultAzureCredential` credential class, the client can be authenticated using the following code:

```java
AzureProfile profile = new AzureProfile(AzureEnvironment.AZURE);
AzureProfile profile = new AzureProfile(AzureCloud.AZURE_PUBLIC_CLOUD);
TokenCredential credential = new DefaultAzureCredentialBuilder()
.authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint())
.build();
CognitiveServicesManager manager = CognitiveServicesManager
.authenticate(credential, profile);
```

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

See [Authentication][authenticate] for more options.

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


Loading