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.
Generated from 25309e914a29c0a123aa603e611dce5deba3c974
Merge remote-tracking branch 'upstream/master' into datrM
- Loading branch information
SDK Automation
committed
May 6, 2020
1 parent
0649c57
commit 38f19fd
Showing
9 changed files
with
76 additions
and
36 deletions.
There are no files selected for viewing
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
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
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
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
44 changes: 44 additions & 0 deletions
44
...zure/management/desktopvirtualization/v2019_01_23_preview/RegistrationTokenOperation.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,44 @@ | ||
/** | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
*/ | ||
|
||
package com.microsoft.azure.management.desktopvirtualization.v2019_01_23_preview; | ||
|
||
import java.util.Collection; | ||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import com.microsoft.rest.ExpandableStringEnum; | ||
|
||
/** | ||
* Defines values for RegistrationTokenOperation. | ||
*/ | ||
public final class RegistrationTokenOperation extends ExpandableStringEnum<RegistrationTokenOperation> { | ||
/** Static value Delete for RegistrationTokenOperation. */ | ||
public static final RegistrationTokenOperation DELETE = fromString("Delete"); | ||
|
||
/** Static value None for RegistrationTokenOperation. */ | ||
public static final RegistrationTokenOperation NONE = fromString("None"); | ||
|
||
/** Static value Update for RegistrationTokenOperation. */ | ||
public static final RegistrationTokenOperation UPDATE = fromString("Update"); | ||
|
||
/** | ||
* Creates or finds a RegistrationTokenOperation from its string representation. | ||
* @param name a name to look for | ||
* @return the corresponding RegistrationTokenOperation | ||
*/ | ||
@JsonCreator | ||
public static RegistrationTokenOperation fromString(String name) { | ||
return fromString(name, RegistrationTokenOperation.class); | ||
} | ||
|
||
/** | ||
* @return known RegistrationTokenOperation values | ||
*/ | ||
public static Collection<RegistrationTokenOperation> values() { | ||
return values(RegistrationTokenOperation.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
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
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
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