Skip to content
Closed
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
4 changes: 3 additions & 1 deletion sdk/billing/azure-resourcemanager-billing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Release History

## 1.0.0-beta.3 (Unreleased)
## 1.0.0-beta.1 (2022-10-13)

- Azure Resource Manager Billing client library for Java. This package contains Microsoft Azure SDK for Billing Management SDK. Billing client provides access to billing resources for Azure subscriptions. Package tag package-2020-05. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

### Features Added

Expand Down
2 changes: 1 addition & 1 deletion sdk/billing/azure-resourcemanager-billing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Various documentation is available to help you get started
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-billing</artifactId>
<version>1.0.0-beta.2</version>
<version>1.0.0-beta.3</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
27 changes: 26 additions & 1 deletion sdk/billing/azure-resourcemanager-billing/SAMPLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,10 @@
- [ListByBillingProfile](#invoices_listbybillingprofile)
- [ListByBillingSubscription](#invoices_listbybillingsubscription)

## Operations

- [List](#operations_list)

## Policies

- [GetByBillingProfile](#policies_getbybillingprofile)
Expand Down Expand Up @@ -1836,7 +1840,28 @@ public final class InvoicesListByBillingSubscriptionSamples {
*/
public static void billingSubscriptionsListByBillingAccount(
com.azure.resourcemanager.billing.BillingManager manager) {
manager.invoices().listByBillingSubscription("2018-01-01", "2018-06-30", Context.NONE);
manager.invoices().listByBillingSubscription("2022-01-01", "2022-06-30", Context.NONE);
}
}
```

### Operations_List

```java
import com.azure.core.util.Context;

/** Samples for Operations List. */
public final class OperationsListSamples {
/*
* x-ms-original-file: specification/billing/resource-manager/Microsoft.Billing/stable/2020-05-01/examples/GetOperations.json
*/
/**
* Sample code: BillingAccountPermissionsList.
*
* @param manager Entry point to BillingManager.
*/
public static void billingAccountPermissionsList(com.azure.resourcemanager.billing.BillingManager manager) {
manager.operations().list(Context.NONE);
}
}
```
Expand Down
Loading