Skip to content

Commit

Permalink
[Automation] Generate Fluent Lite from Swagger elasticsan#package-pre…
Browse files Browse the repository at this point in the history
…view-2024-06 (#42525)
  • Loading branch information
azure-sdk authored Oct 23, 2024
1 parent 56aa378 commit 64fc3ba
Show file tree
Hide file tree
Showing 97 changed files with 1,396 additions and 530 deletions.
27 changes: 23 additions & 4 deletions sdk/elasticsan/azure-resourcemanager-elasticsan/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,33 @@
# Release History

## 1.2.0-beta.1 (Unreleased)
## 1.2.0-beta.1 (2024-10-23)

- Azure Resource Manager ElasticSan client library for Java. This package contains Microsoft Azure SDK for ElasticSan Management SDK. Package tag package-preview-2024-06. 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.AutoScaleProperties` was added

* `models.AutoScalePolicyEnforcement` was added

* `models.ScaleUpProperties` was added

#### `models.ElasticSanUpdate` was modified

* `autoScaleProperties()` was added
* `withAutoScaleProperties(models.AutoScaleProperties)` was added

### Bugs Fixed
#### `models.ElasticSan` was modified

* `autoScaleProperties()` was added

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

* `withAutoScaleProperties(models.AutoScaleProperties)` was added

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

### Other Changes
* `withAutoScaleProperties(models.AutoScaleProperties)` was added

## 1.1.0 (2024-09-25)

Expand Down
14 changes: 12 additions & 2 deletions sdk/elasticsan/azure-resourcemanager-elasticsan/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Azure Resource Manager ElasticSan client library for Java.

This package contains Microsoft Azure SDK for ElasticSan Management SDK. Package tag package-2024-05. 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 ElasticSan Management SDK. Package tag package-preview-2024-06. 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-elasticsan</artifactId>
<version>1.1.0</version>
<version>1.2.0-beta.1</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down Expand Up @@ -70,6 +70,16 @@ See [API design][design] for general introduction on design and key concepts on

## Examples

```java
elasticSan = elasticSanManager.elasticSans()
.define(elasticSanName)
.withRegion(REGION)
.withExistingResourceGroup(resourceGroupName)
.withSku(new Sku().withName(SkuName.PREMIUM_LRS).withTier(SkuTier.PREMIUM))
.withBaseSizeTiB(1L)
.withExtendedCapacitySizeTiB(1L)
.create();
```
[Code snippets and samples](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/elasticsan/azure-resourcemanager-elasticsan/SAMPLE.md)


Expand Down
Loading

0 comments on commit 64fc3ba

Please sign in to comment.