Skip to content
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,14 +1,90 @@
# Release History

## 1.3.0-beta.1 (Unreleased)
## 1.3.0-beta.1 (2025-11-07)

### Features Added
- Azure Resource Manager NewRelicObservability client library for Java. This package contains Microsoft Azure SDK for NewRelicObservability Management SDK. Package tag package-2025-05-01-preview. 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.MonitorsSwitchBillingResponse` was removed

#### `models.MonitorsSwitchBillingHeaders` was removed

#### `models.BillingCycle` was removed

#### `models.PlanData` was modified

* `models.BillingCycle billingCycle()` -> `java.lang.String billingCycle()`
* `withBillingCycle(models.BillingCycle)` was removed

### Features Added

* `models.SaaS` was added

* `models.LatestLinkedSaaSResponse` was added

* `models.ActivateSaaSParameterRequest` was added

* `models.ResubscribeProperties` was added

* `models.SaaSData` was added

* `models.SaaSResourceDetailsResponse` was added

#### `models.PlanData` was modified

* `withBillingCycle(java.lang.String)` was added

#### `models.MarketplaceSaaSInfo` was modified

* `withPublisherId(java.lang.String)` was added
* `withOfferId(java.lang.String)` was added
* `publisherId()` was added
* `offerId()` was added

#### `models.NewRelicMonitorResource$Update` was modified

* `withSaaSData(models.SaaSData)` was added

#### `models.NewRelicMonitorResource` was modified

* `latestLinkedSaaS()` was added
* `linkSaaS(models.SaaSData)` was added
* `refreshIngestionKeyWithResponse(com.azure.core.util.Context)` was added
* `linkSaaS(models.SaaSData,com.azure.core.util.Context)` was added
* `refreshIngestionKey()` was added
* `resubscribe()` was added
* `latestLinkedSaaSWithResponse(com.azure.core.util.Context)` was added
* `saaSData()` was added
* `resubscribe(models.ResubscribeProperties,com.azure.core.util.Context)` was added

#### `models.NewRelicMonitorResource$Definition` was modified

* `withSaaSData(models.SaaSData)` was added

#### `models.NewRelicMonitorResourceUpdate` was modified

* `withSaaSData(models.SaaSData)` was added
* `saaSData()` was added

#### `models.MonitoredSubscriptionProperties` was modified

* `systemData()` was added

#### `models.Monitors` was modified

* `resubscribe(java.lang.String,java.lang.String,models.ResubscribeProperties,com.azure.core.util.Context)` was added
* `latestLinkedSaaS(java.lang.String,java.lang.String)` was added
* `refreshIngestionKeyWithResponse(java.lang.String,java.lang.String,com.azure.core.util.Context)` was added
* `resubscribe(java.lang.String,java.lang.String)` was added
* `latestLinkedSaaSWithResponse(java.lang.String,java.lang.String,com.azure.core.util.Context)` was added
* `linkSaaS(java.lang.String,java.lang.String,models.SaaSData,com.azure.core.util.Context)` was added
* `linkSaaS(java.lang.String,java.lang.String,models.SaaSData)` was added
* `refreshIngestionKey(java.lang.String,java.lang.String)` was added

#### `NewRelicObservabilityManager` was modified

### Other Changes
* `saaS()` was added

## 1.2.0 (2024-12-19)

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

Azure Resource Manager NewRelicObservability client library for Java.

This package contains Microsoft Azure SDK for NewRelicObservability Management SDK. Package tag package-2024-01-01. 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 NewRelicObservability Management SDK. Package tag package-2025-05-01-preview. 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();
NewRelicObservabilityManager manager = NewRelicObservabilityManager
.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