forked from Azure/azure-sdk-for-java
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mgmt, regen appplatform (Azure#15306)
* regen appplatform * add comments * add missing file
- Loading branch information
1 parent
60097ca
commit b5c2a44
Showing
4 changed files
with
45 additions
and
41 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
...orm/src/main/java/com/azure/resourcemanager/appplatform/models/SupportedRuntimeValue.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
|
||
package com.azure.resourcemanager.appplatform.models; | ||
|
||
import com.azure.core.util.ExpandableStringEnum; | ||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import java.util.Collection; | ||
|
||
/** Defines values for SupportedRuntimeValue. */ | ||
public final class SupportedRuntimeValue extends ExpandableStringEnum<SupportedRuntimeValue> { | ||
/** Static value Java_8 for SupportedRuntimeValue. */ | ||
public static final SupportedRuntimeValue JAVA_8 = fromString("Java_8"); | ||
|
||
/** Static value Java_11 for SupportedRuntimeValue. */ | ||
public static final SupportedRuntimeValue JAVA_11 = fromString("Java_11"); | ||
|
||
/** Static value NetCore_31 for SupportedRuntimeValue. */ | ||
public static final SupportedRuntimeValue NET_CORE_31 = fromString("NetCore_31"); | ||
|
||
/** | ||
* Creates or finds a SupportedRuntimeValue from its string representation. | ||
* | ||
* @param name a name to look for. | ||
* @return the corresponding SupportedRuntimeValue. | ||
*/ | ||
@JsonCreator | ||
public static SupportedRuntimeValue fromString(String name) { | ||
return fromString(name, SupportedRuntimeValue.class); | ||
} | ||
|
||
/** @return known SupportedRuntimeValue values. */ | ||
public static Collection<SupportedRuntimeValue> values() { | ||
return values(SupportedRuntimeValue.class); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 0 additions & 37 deletions
37
...c/main/java/com/azure/resourcemanager/appplatform/models/SupportedRuntimeVersionEnum.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters