Skip to content

Commit 64fc3ba

Browse files
authored
[Automation] Generate Fluent Lite from Swagger elasticsan#package-preview-2024-06 (#42525)
1 parent 56aa378 commit 64fc3ba

File tree

97 files changed

+1396
-530
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+1396
-530
lines changed

sdk/elasticsan/azure-resourcemanager-elasticsan/CHANGELOG.md

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,33 @@
11
# Release History
22

3-
## 1.2.0-beta.1 (Unreleased)
3+
## 1.2.0-beta.1 (2024-10-23)
4+
5+
- 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).
46

57
### Features Added
68

7-
### Breaking Changes
9+
* `models.AutoScaleProperties` was added
10+
11+
* `models.AutoScalePolicyEnforcement` was added
12+
13+
* `models.ScaleUpProperties` was added
14+
15+
#### `models.ElasticSanUpdate` was modified
16+
17+
* `autoScaleProperties()` was added
18+
* `withAutoScaleProperties(models.AutoScaleProperties)` was added
819

9-
### Bugs Fixed
20+
#### `models.ElasticSan` was modified
21+
22+
* `autoScaleProperties()` was added
23+
24+
#### `models.ElasticSan$Definition` was modified
25+
26+
* `withAutoScaleProperties(models.AutoScaleProperties)` was added
27+
28+
#### `models.ElasticSan$Update` was modified
1029

11-
### Other Changes
30+
* `withAutoScaleProperties(models.AutoScaleProperties)` was added
1231

1332
## 1.1.0 (2024-09-25)
1433

sdk/elasticsan/azure-resourcemanager-elasticsan/README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Azure Resource Manager ElasticSan client library for Java.
44

5-
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).
5+
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).
66

77
## We'd love to hear your feedback
88

@@ -32,7 +32,7 @@ Various documentation is available to help you get started
3232
<dependency>
3333
<groupId>com.azure.resourcemanager</groupId>
3434
<artifactId>azure-resourcemanager-elasticsan</artifactId>
35-
<version>1.1.0</version>
35+
<version>1.2.0-beta.1</version>
3636
</dependency>
3737
```
3838
[//]: # ({x-version-update-end})
@@ -70,6 +70,16 @@ See [API design][design] for general introduction on design and key concepts on
7070

7171
## Examples
7272

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

7585

0 commit comments

Comments
 (0)