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.
CodeGen from PR 11823 in Azure/azure-rest-api-specs
Merge 7e2d4886639b5520ae9c85859bc61bc8ecf218d1 into 171eb5562c1d2e86eb0658923c54860cb25c8379
- Loading branch information
SDKAuto
committed
Dec 1, 2020
1 parent
33362b5
commit 4649289
Showing
26 changed files
with
1,183 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<SupportedRuntimeVersion> value(); | ||
|
||
} |
96 changes: 96 additions & 0 deletions
96
...m/microsoft/azure/management/appplatform/v2020_07_01/ConfigServerSettingsErrorRecord.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,96 @@ | ||
/** | ||
* 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; | ||
|
||
/** | ||
* Error record of the config server settings. | ||
*/ | ||
public class ConfigServerSettingsErrorRecord { | ||
/** | ||
* The name of the config server settings error record. | ||
*/ | ||
@JsonProperty(value = "name") | ||
private String name; | ||
|
||
/** | ||
* The uri of the config server settings error record. | ||
*/ | ||
@JsonProperty(value = "uri") | ||
private String uri; | ||
|
||
/** | ||
* The detail error messages of the record. | ||
*/ | ||
@JsonProperty(value = "messages") | ||
private List<String> messages; | ||
|
||
/** | ||
* Get the name of the config server settings error record. | ||
* | ||
* @return the name value | ||
*/ | ||
public String name() { | ||
return this.name; | ||
} | ||
|
||
/** | ||
* Set the name of the config server settings error record. | ||
* | ||
* @param name the name value to set | ||
* @return the ConfigServerSettingsErrorRecord object itself. | ||
*/ | ||
public ConfigServerSettingsErrorRecord withName(String name) { | ||
this.name = name; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get the uri of the config server settings error record. | ||
* | ||
* @return the uri value | ||
*/ | ||
public String uri() { | ||
return this.uri; | ||
} | ||
|
||
/** | ||
* Set the uri of the config server settings error record. | ||
* | ||
* @param uri the uri value to set | ||
* @return the ConfigServerSettingsErrorRecord object itself. | ||
*/ | ||
public ConfigServerSettingsErrorRecord withUri(String uri) { | ||
this.uri = uri; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get the detail error messages of the record. | ||
* | ||
* @return the messages value | ||
*/ | ||
public List<String> messages() { | ||
return this.messages; | ||
} | ||
|
||
/** | ||
* Set the detail error messages of the record. | ||
* | ||
* @param messages the messages value to set | ||
* @return the ConfigServerSettingsErrorRecord object itself. | ||
*/ | ||
public ConfigServerSettingsErrorRecord withMessages(List<String> messages) { | ||
this.messages = messages; | ||
return this; | ||
} | ||
|
||
} |
31 changes: 31 additions & 0 deletions
31
...icrosoft/azure/management/appplatform/v2020_07_01/ConfigServerSettingsValidateResult.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,31 @@ | ||
/** | ||
* 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.ConfigServerSettingsValidateResultInner; | ||
import java.util.List; | ||
|
||
/** | ||
* Type representing ConfigServerSettingsValidateResult. | ||
*/ | ||
public interface ConfigServerSettingsValidateResult extends HasInner<ConfigServerSettingsValidateResultInner>, HasManager<AppPlatformManager> { | ||
/** | ||
* @return the details value. | ||
*/ | ||
List<ConfigServerSettingsErrorRecord> details(); | ||
|
||
/** | ||
* @return the isValid value. | ||
*/ | ||
Boolean isValid(); | ||
|
||
} |
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
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(); | ||
|
||
} |
Oops, something went wrong.