Skip to content

Commit

Permalink
CodeGen from PR 32744 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge b64712c9889eb514591e722ba9c3f930b556bacf into a570eb7b5643099a4c210b2e7b7d2fd3038f8c74
  • Loading branch information
SDKAuto committed Feb 24, 2025
1 parent e6c197e commit 87d9a56
Show file tree
Hide file tree
Showing 216 changed files with 13,475 additions and 1,595 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,108 @@
# Release History

## 1.2.0-beta.1 (Unreleased)
## 1.2.0-beta.1 (2025-02-24)

### Features Added
- Azure Resource Manager Hybrid Connectivity client library for Java. This package contains Microsoft Azure SDK for Hybrid Connectivity Management SDK. REST API for public clouds. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

### Breaking Changes

### Bugs Fixed
#### `models.EndpointsList` was removed

#### `models.OperationListResult` was removed

#### `models.ServiceConfigurationList` was removed

#### `HybridConnectivityManager` was modified

* `fluent.HybridConnectivityManagementApi serviceClient()` -> `fluent.HybridConnectivityMgmtClient serviceClient()`

### Features Added

* `models.SolutionConfiguration` was added

* `models.GenerateAwsTemplateRequest` was added

* `models.PublicCloudConnector` was added

* `models.SolutionSettings` was added

* `models.Inventories` was added

* `models.SolutionConfiguration$Definition` was added

* `implementation.models.ServiceConfigurationList` was added

* `models.OperationStatusResult` was added

* `models.SolutionTypeSettingsProperties` was added

* `models.SolutionTypeResource` was added

* `models.AwsCloudProfile` was added

* `implementation.models.SolutionConfigurationListResult` was added

* `implementation.models.SolutionTypeResourceListResult` was added

* `models.InventoryResource` was added

* `implementation.models.EndpointsList` was added

* `models.SolutionTypeSettings` was added

* `models.SolutionConfigurationStatus` was added

* `models.SolutionConfigurations` was added

* `models.SolutionConfigurationProperties` was added

* `models.ResourceProvisioningState` was added

* `models.HostType` was added

* `models.PublicCloudConnectors` was added

* `models.PublicCloudConnectorProperties` was added

* `models.SolutionConfiguration$Update` was added

* `models.PublicCloudConnector$Definition` was added

* `models.SolutionTypes` was added

* `implementation.models.PublicCloudConnectorListResult` was added

* `models.PublicCloudConnector$DefinitionStages` was added

* `models.PublicCloudConnector$Update` was added

* `models.SolutionTypeProperties` was added

* `models.PostResponse` was added

* `models.PublicCloudConnector$UpdateStages` was added

* `models.SolutionConfiguration$DefinitionStages` was added

* `implementation.models.OperationListResult` was added

* `models.InventoryProperties` was added

* `implementation.models.InventoryResourceListResult` was added

* `models.CloudNativeType` was added

* `models.GenerateAwsTemplates` was added

* `models.SolutionConfiguration$UpdateStages` was added

#### `HybridConnectivityManager` was modified

### Other Changes
* `inventories()` was added
* `generateAwsTemplates()` was added
* `solutionTypes()` was added
* `solutionConfigurations()` was added
* `publicCloudConnectors()` was added

## 1.1.0 (2024-12-11)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Azure Resource Manager HybridConnectivity client library for Java
# Azure Resource Manager Hybrid Connectivity client library for Java

Azure Resource Manager HybridConnectivity client library for Java.
Azure Resource Manager Hybrid Connectivity client library for Java.

This package contains Microsoft Azure SDK for HybridConnectivity Management SDK. REST API for Hybrid Connectivity. Package tag package-2023-03. 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 Hybrid Connectivity Management SDK. REST API for public clouds. 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 @@ -32,7 +32,7 @@ Various documentation is available to help you get started
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-hybridconnectivity</artifactId>
<version>1.1.0</version>
<version>1.2.0-beta.1</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand All @@ -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();
HybridConnectivityManager manager = HybridConnectivityManager
.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 @@ -100,5 +100,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

0 comments on commit 87d9a56

Please sign in to comment.