forked from Azure/azure-sdk-for-java
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CodeGen from PR 25135 in Azure/azure-rest-api-specs
[HDInsight]Add New API Version 2023-08-15-Preview (Azure#25135) Co-authored-by: Xin Li <xinli1@microsoft.com>
- Loading branch information
1 parent
eedfd0a
commit d2d70e0
Showing
169 changed files
with
247 additions
and
6,560 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
146 changes: 75 additions & 71 deletions
146
sdk/hdinsight/azure-resourcemanager-hdinsight/SAMPLE.md
Large diffs are not rendered by default.
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
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
51 changes: 51 additions & 0 deletions
51
...main/java/com/azure/resourcemanager/hdinsight/models/OutboundDependenciesManagedType.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,51 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
|
||
package com.azure.resourcemanager.hdinsight.models; | ||
|
||
import com.azure.core.util.ExpandableStringEnum; | ||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import java.util.Collection; | ||
|
||
/** | ||
* A value to describe how the outbound dependencies of a HDInsight cluster are managed. 'Managed' means that the | ||
* outbound dependencies are managed by the HDInsight service. 'External' means that the outbound dependencies are | ||
* managed by a customer specific solution. | ||
*/ | ||
public final class OutboundDependenciesManagedType extends ExpandableStringEnum<OutboundDependenciesManagedType> { | ||
/** Static value Managed for OutboundDependenciesManagedType. */ | ||
public static final OutboundDependenciesManagedType MANAGED = fromString("Managed"); | ||
|
||
/** Static value External for OutboundDependenciesManagedType. */ | ||
public static final OutboundDependenciesManagedType EXTERNAL = fromString("External"); | ||
|
||
/** | ||
* Creates a new instance of OutboundDependenciesManagedType value. | ||
* | ||
* @deprecated Use the {@link #fromString(String)} factory method. | ||
*/ | ||
@Deprecated | ||
public OutboundDependenciesManagedType() { | ||
} | ||
|
||
/** | ||
* Creates or finds a OutboundDependenciesManagedType from its string representation. | ||
* | ||
* @param name a name to look for. | ||
* @return the corresponding OutboundDependenciesManagedType. | ||
*/ | ||
@JsonCreator | ||
public static OutboundDependenciesManagedType fromString(String name) { | ||
return fromString(name, OutboundDependenciesManagedType.class); | ||
} | ||
|
||
/** | ||
* Gets known OutboundDependenciesManagedType values. | ||
* | ||
* @return known OutboundDependenciesManagedType values. | ||
*/ | ||
public static Collection<OutboundDependenciesManagedType> values() { | ||
return values(OutboundDependenciesManagedType.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
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
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.