-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
90f932d
commit 2afe156
Showing
37 changed files
with
2,493 additions
and
1,768 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
41 changes: 41 additions & 0 deletions
41
...nce/src/main/java/com/microsoft/azure/management/containerinstance/ContainerGroupSku.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,41 @@ | ||
/** | ||
* 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.containerinstance; | ||
|
||
import java.util.Collection; | ||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import com.microsoft.rest.ExpandableStringEnum; | ||
|
||
/** | ||
* Defines values for ContainerGroupSku. | ||
*/ | ||
public final class ContainerGroupSku extends ExpandableStringEnum<ContainerGroupSku> { | ||
/** Static value Standard for ContainerGroupSku. */ | ||
public static final ContainerGroupSku STANDARD = fromString("Standard"); | ||
|
||
/** Static value Dedicated for ContainerGroupSku. */ | ||
public static final ContainerGroupSku DEDICATED = fromString("Dedicated"); | ||
|
||
/** | ||
* Creates or finds a ContainerGroupSku from its string representation. | ||
* @param name a name to look for | ||
* @return the corresponding ContainerGroupSku | ||
*/ | ||
@JsonCreator | ||
public static ContainerGroupSku fromString(String name) { | ||
return fromString(name, ContainerGroupSku.class); | ||
} | ||
|
||
/** | ||
* @return known ContainerGroupSku values | ||
*/ | ||
public static Collection<ContainerGroupSku> values() { | ||
return values(ContainerGroupSku.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
Oops, something went wrong.