Skip to content

Commit

Permalink
CodeGen from PR 19612 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Add "Pending" to LabProperties status (Azure#19612)

Add "Pending" to LabProperties status, an extensible enum
  • Loading branch information
SDKAuto committed Jun 28, 2022
1 parent 04598ba commit fbe75f9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion sdk/education/azure-resourcemanager-education/CHANGELOG.md
@@ -1,6 +1,8 @@
# Release History

## 1.0.0-beta.2 (Unreleased)
## 1.0.0-beta.1 (2022-06-28)

- Azure Resource Manager Education client library for Java. This package contains Microsoft Azure SDK for Education Management SDK. Education client provides access to education resources for Azure subscriptions. Package tag package-2021-12-01-preview. 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/education/azure-resourcemanager-education/README.md
Expand Up @@ -32,7 +32,7 @@ Various documentation is available to help you get started
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-education</artifactId>
<version>1.0.0-beta.1</version>
<version>1.0.0-beta.2</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
Expand Up @@ -16,6 +16,9 @@ public final class LabStatus extends ExpandableStringEnum<LabStatus> {
/** Static value Deleted for LabStatus. */
public static final LabStatus DELETED = fromString("Deleted");

/** Static value Pending for LabStatus. */
public static final LabStatus PENDING = fromString("Pending");

/**
* Creates or finds a LabStatus from its string representation.
*
Expand Down

0 comments on commit fbe75f9

Please sign in to comment.