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 284f4341279535e1af43f19440b90a0d0e82e10d
fix typo for 'outboundIPs' & 'publicIPs' properties
- Loading branch information
SDK Automation
committed
Sep 9, 2020
1 parent
020de86
commit 5dd77a5
Showing
19 changed files
with
600 additions
and
8 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
26 changes: 26 additions & 0 deletions
26
...java/com/microsoft/azure/management/appplatform/v2020_07_01/AvailableRuntimeVersions.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,26 @@ | ||
/** | ||
* 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.appplatform.v2020_07_01; | ||
|
||
import com.microsoft.azure.arm.model.HasInner; | ||
import com.microsoft.azure.arm.resources.models.HasManager; | ||
import com.microsoft.azure.management.appplatform.v2020_07_01.implementation.AppPlatformManager; | ||
import com.microsoft.azure.management.appplatform.v2020_07_01.implementation.AvailableRuntimeVersionsInner; | ||
import java.util.List; | ||
|
||
/** | ||
* Type representing AvailableRuntimeVersions. | ||
*/ | ||
public interface AvailableRuntimeVersions extends HasInner<AvailableRuntimeVersionsInner>, HasManager<AppPlatformManager> { | ||
/** | ||
* @return the value value. | ||
*/ | ||
List<SupportedRuntimeVersion1> value(); | ||
|
||
} |
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
33 changes: 33 additions & 0 deletions
33
...ava/com/microsoft/azure/management/appplatform/v2020_07_01/NetworkProfileOutboundIPs.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,33 @@ | ||
/** | ||
* 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.appplatform.v2020_07_01; | ||
|
||
import java.util.List; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** | ||
* Desired outbound IP resources for Azure Spring Cloud instance. | ||
*/ | ||
public class NetworkProfileOutboundIPs { | ||
/** | ||
* A list of public IP addresses. | ||
*/ | ||
@JsonProperty(value = "publicIPs", access = JsonProperty.Access.WRITE_ONLY) | ||
private List<String> publicIPs; | ||
|
||
/** | ||
* Get a list of public IP addresses. | ||
* | ||
* @return the publicIPs value | ||
*/ | ||
public List<String> publicIPs() { | ||
return this.publicIPs; | ||
} | ||
|
||
} |
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
27 changes: 27 additions & 0 deletions
27
...src/main/java/com/microsoft/azure/management/appplatform/v2020_07_01/RuntimeVersions.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,27 @@ | ||
/** | ||
* 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.appplatform.v2020_07_01; | ||
|
||
import rx.Observable; | ||
import com.microsoft.azure.management.appplatform.v2020_07_01.implementation.RuntimeVersionsInner; | ||
import com.microsoft.azure.arm.model.HasInner; | ||
|
||
/** | ||
* Type representing RuntimeVersions. | ||
*/ | ||
public interface RuntimeVersions extends HasInner<RuntimeVersionsInner> { | ||
/** | ||
* Lists all of the available runtime versions supported by Microsoft.AppPlatform provider. | ||
* | ||
* @throws IllegalArgumentException thrown if parameters fail the validation | ||
* @return the observable for the request | ||
*/ | ||
Observable<AvailableRuntimeVersions> listRuntimeVersionsAsync(); | ||
|
||
} |
41 changes: 41 additions & 0 deletions
41
...java/com/microsoft/azure/management/appplatform/v2020_07_01/SupportedRuntimePlatform.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.appplatform.v2020_07_01; | ||
|
||
import java.util.Collection; | ||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import com.microsoft.rest.ExpandableStringEnum; | ||
|
||
/** | ||
* Defines values for SupportedRuntimePlatform. | ||
*/ | ||
public final class SupportedRuntimePlatform extends ExpandableStringEnum<SupportedRuntimePlatform> { | ||
/** Static value Java for SupportedRuntimePlatform. */ | ||
public static final SupportedRuntimePlatform JAVA = fromString("Java"); | ||
|
||
/** Static value .NET Core for SupportedRuntimePlatform. */ | ||
public static final SupportedRuntimePlatform NET_CORE = fromString(".NET Core"); | ||
|
||
/** | ||
* Creates or finds a SupportedRuntimePlatform from its string representation. | ||
* @param name a name to look for | ||
* @return the corresponding SupportedRuntimePlatform | ||
*/ | ||
@JsonCreator | ||
public static SupportedRuntimePlatform fromString(String name) { | ||
return fromString(name, SupportedRuntimePlatform.class); | ||
} | ||
|
||
/** | ||
* @return known SupportedRuntimePlatform values | ||
*/ | ||
public static Collection<SupportedRuntimePlatform> values() { | ||
return values(SupportedRuntimePlatform.class); | ||
} | ||
} |
44 changes: 44 additions & 0 deletions
44
.../java/com/microsoft/azure/management/appplatform/v2020_07_01/SupportedRuntimeVersion.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.appplatform.v2020_07_01; | ||
|
||
import java.util.Collection; | ||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import com.microsoft.rest.ExpandableStringEnum; | ||
|
||
/** | ||
* Defines values for SupportedRuntimeVersion. | ||
*/ | ||
public final class SupportedRuntimeVersion extends ExpandableStringEnum<SupportedRuntimeVersion> { | ||
/** Static value Java_8 for SupportedRuntimeVersion. */ | ||
public static final SupportedRuntimeVersion JAVA_8 = fromString("Java_8"); | ||
|
||
/** Static value Java_11 for SupportedRuntimeVersion. */ | ||
public static final SupportedRuntimeVersion JAVA_11 = fromString("Java_11"); | ||
|
||
/** Static value NetCore_31 for SupportedRuntimeVersion. */ | ||
public static final SupportedRuntimeVersion NET_CORE_31 = fromString("NetCore_31"); | ||
|
||
/** | ||
* Creates or finds a SupportedRuntimeVersion from its string representation. | ||
* @param name a name to look for | ||
* @return the corresponding SupportedRuntimeVersion | ||
*/ | ||
@JsonCreator | ||
public static SupportedRuntimeVersion fromString(String name) { | ||
return fromString(name, SupportedRuntimeVersion.class); | ||
} | ||
|
||
/** | ||
* @return known SupportedRuntimeVersion values | ||
*/ | ||
public static Collection<SupportedRuntimeVersion> values() { | ||
return values(SupportedRuntimeVersion.class); | ||
} | ||
} |
Oops, something went wrong.