forked from Azure/azure-sdk-for-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from afa8ccf350ace9279c30bc5f7df053fa3f65a476
fix modal
- Loading branch information
SDK Automation
committed
Sep 26, 2019
1 parent
4373d02
commit 1ec3594
Showing
11 changed files
with
825 additions
and
104 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
70 changes: 70 additions & 0 deletions
70
.../microsoft/azure/management/sqlvirtualmachine/v2017_03_01_preview/SQLStorageSettings.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,70 @@ | ||
/** | ||
* 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.sqlvirtualmachine.v2017_03_01_preview; | ||
|
||
import java.util.List; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** | ||
* Set disk storage settings for SQL Server. | ||
*/ | ||
public class SQLStorageSettings { | ||
/** | ||
* Logical Unit Numbers for the disks. | ||
*/ | ||
@JsonProperty(value = "luns") | ||
private List<Integer> luns; | ||
|
||
/** | ||
* SQL Server default file path. | ||
*/ | ||
@JsonProperty(value = "defaultFilePath") | ||
private String defaultFilePath; | ||
|
||
/** | ||
* Get logical Unit Numbers for the disks. | ||
* | ||
* @return the luns value | ||
*/ | ||
public List<Integer> luns() { | ||
return this.luns; | ||
} | ||
|
||
/** | ||
* Set logical Unit Numbers for the disks. | ||
* | ||
* @param luns the luns value to set | ||
* @return the SQLStorageSettings object itself. | ||
*/ | ||
public SQLStorageSettings withLuns(List<Integer> luns) { | ||
this.luns = luns; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get sQL Server default file path. | ||
* | ||
* @return the defaultFilePath value | ||
*/ | ||
public String defaultFilePath() { | ||
return this.defaultFilePath; | ||
} | ||
|
||
/** | ||
* Set sQL Server default file path. | ||
* | ||
* @param defaultFilePath the defaultFilePath value to set | ||
* @return the SQLStorageSettings object itself. | ||
*/ | ||
public SQLStorageSettings withDefaultFilePath(String defaultFilePath) { | ||
this.defaultFilePath = defaultFilePath; | ||
return this; | ||
} | ||
|
||
} |
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.