-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from 45e35bcbc58caa5f6d38632405b8a855872b77d9 (#2920)
Merge pull request #1 from anuchandy/data-classification-java-codegen Fixing java codegen
- Loading branch information
1 parent
0df5398
commit 8d2f2cf
Showing
16 changed files
with
2,298 additions
and
0 deletions.
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
...m/microsoft/azure/management/sql/v2017_03_01_preview/DatabasisServerSensitivityLabel.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,55 @@ | ||
/** | ||
* 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.sql.v2017_03_01_preview; | ||
|
||
import com.microsoft.azure.arm.model.HasInner; | ||
import com.microsoft.azure.management.sql.v2017_03_01_preview.implementation.SensitivityLabelInner; | ||
import com.microsoft.azure.arm.resources.models.HasManager; | ||
import com.microsoft.azure.management.sql.v2017_03_01_preview.implementation.SqlManager; | ||
|
||
/** | ||
* Type representing DatabasisServerSensitivityLabel. | ||
*/ | ||
public interface DatabasisServerSensitivityLabel extends HasInner<SensitivityLabelInner>, HasManager<SqlManager> { | ||
/** | ||
* @return the id value. | ||
*/ | ||
String id(); | ||
|
||
/** | ||
* @return the informationType value. | ||
*/ | ||
String informationType(); | ||
|
||
/** | ||
* @return the informationTypeId value. | ||
*/ | ||
String informationTypeId(); | ||
|
||
/** | ||
* @return the labelId value. | ||
*/ | ||
String labelId(); | ||
|
||
/** | ||
* @return the labelName value. | ||
*/ | ||
String labelName(); | ||
|
||
/** | ||
* @return the name value. | ||
*/ | ||
String name(); | ||
|
||
/** | ||
* @return the type value. | ||
*/ | ||
String type(); | ||
|
||
} |
55 changes: 55 additions & 0 deletions
55
...rosoft/azure/management/sql/v2017_03_01_preview/DatabasisServerSensitivityLabelModel.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,55 @@ | ||
/** | ||
* 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.sql.v2017_03_01_preview; | ||
|
||
import com.microsoft.azure.arm.model.HasInner; | ||
import com.microsoft.azure.management.sql.v2017_03_01_preview.implementation.SensitivityLabelInner; | ||
import com.microsoft.azure.arm.resources.models.HasManager; | ||
import com.microsoft.azure.management.sql.v2017_03_01_preview.implementation.SqlManager; | ||
|
||
/** | ||
* Type representing DatabasisServerSensitivityLabelModel. | ||
*/ | ||
public interface DatabasisServerSensitivityLabelModel extends HasInner<SensitivityLabelInner>, HasManager<SqlManager> { | ||
/** | ||
* @return the id value. | ||
*/ | ||
String id(); | ||
|
||
/** | ||
* @return the informationType value. | ||
*/ | ||
String informationType(); | ||
|
||
/** | ||
* @return the informationTypeId value. | ||
*/ | ||
String informationTypeId(); | ||
|
||
/** | ||
* @return the labelId value. | ||
*/ | ||
String labelId(); | ||
|
||
/** | ||
* @return the labelName value. | ||
*/ | ||
String labelName(); | ||
|
||
/** | ||
* @return the name value. | ||
*/ | ||
String name(); | ||
|
||
/** | ||
* @return the type value. | ||
*/ | ||
String type(); | ||
|
||
} |
30 changes: 30 additions & 0 deletions
30
.../com/microsoft/azure/management/sql/v2017_03_01_preview/RecommendedSensitivityLabels.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,30 @@ | ||
/** | ||
* 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.sql.v2017_03_01_preview; | ||
|
||
import rx.Observable; | ||
import com.microsoft.azure.management.sql.v2017_03_01_preview.implementation.RecommendedSensitivityLabelsInner; | ||
import com.microsoft.azure.arm.model.HasInner; | ||
|
||
/** | ||
* Type representing RecommendedSensitivityLabels. | ||
*/ | ||
public interface RecommendedSensitivityLabels extends HasInner<RecommendedSensitivityLabelsInner> { | ||
/** | ||
* Gets the sensitivity labels of a given database. | ||
* | ||
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. | ||
* @param serverName The name of the server. | ||
* @param databaseName The name of the database. | ||
* @throws IllegalArgumentException thrown if parameters fail the validation | ||
* @return the observable for the request | ||
*/ | ||
Observable<DatabasisServerSensitivityLabelModel> listByDatabaseAsync(final String resourceGroupName, final String serverName, final String databaseName); | ||
|
||
} |
185 changes: 185 additions & 0 deletions
185
...rc/main/java/com/microsoft/azure/management/sql/v2017_03_01_preview/SensitivityLabel.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,185 @@ | ||
/** | ||
* 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.sql.v2017_03_01_preview; | ||
|
||
import com.microsoft.azure.arm.model.HasInner; | ||
import com.microsoft.azure.management.sql.v2017_03_01_preview.implementation.SensitivityLabelInner; | ||
import com.microsoft.azure.arm.model.Indexable; | ||
import com.microsoft.azure.arm.model.Refreshable; | ||
import com.microsoft.azure.arm.model.Updatable; | ||
import com.microsoft.azure.arm.model.Appliable; | ||
import com.microsoft.azure.arm.model.Creatable; | ||
import com.microsoft.azure.arm.resources.models.HasManager; | ||
import com.microsoft.azure.management.sql.v2017_03_01_preview.implementation.SqlManager; | ||
|
||
/** | ||
* Type representing SensitivityLabel. | ||
*/ | ||
public interface SensitivityLabel extends HasInner<SensitivityLabelInner>, Indexable, Refreshable<SensitivityLabel>, Updatable<SensitivityLabel.Update>, HasManager<SqlManager> { | ||
/** | ||
* @return the id value. | ||
*/ | ||
String id(); | ||
|
||
/** | ||
* @return the informationType value. | ||
*/ | ||
String informationType(); | ||
|
||
/** | ||
* @return the informationTypeId value. | ||
*/ | ||
String informationTypeId(); | ||
|
||
/** | ||
* @return the labelId value. | ||
*/ | ||
String labelId(); | ||
|
||
/** | ||
* @return the labelName value. | ||
*/ | ||
String labelName(); | ||
|
||
/** | ||
* @return the name value. | ||
*/ | ||
String name(); | ||
|
||
/** | ||
* @return the type value. | ||
*/ | ||
String type(); | ||
|
||
/** | ||
* The entirety of the SensitivityLabel definition. | ||
*/ | ||
interface Definition extends DefinitionStages.Blank, DefinitionStages.WithColumn, DefinitionStages.WithCreate { | ||
} | ||
|
||
/** | ||
* Grouping of SensitivityLabel definition stages. | ||
*/ | ||
interface DefinitionStages { | ||
/** | ||
* The first stage of a SensitivityLabel definition. | ||
*/ | ||
interface Blank extends WithColumn { | ||
} | ||
|
||
/** | ||
* The stage of the sensitivitylabel definition allowing to specify Column. | ||
*/ | ||
interface WithColumn { | ||
/** | ||
* Specifies resourceGroupName, serverName, databaseName, schemaName, tableName, columnName. | ||
*/ | ||
WithCreate withExistingColumn(String resourceGroupName, String serverName, String databaseName, String schemaName, String tableName, String columnName); | ||
} | ||
|
||
/** | ||
* The stage of the sensitivitylabel definition allowing to specify InformationType. | ||
*/ | ||
interface WithInformationType { | ||
/** | ||
* Specifies informationType. | ||
*/ | ||
WithCreate withInformationType(String informationType); | ||
} | ||
|
||
/** | ||
* The stage of the sensitivitylabel definition allowing to specify InformationTypeId. | ||
*/ | ||
interface WithInformationTypeId { | ||
/** | ||
* Specifies informationTypeId. | ||
*/ | ||
WithCreate withInformationTypeId(String informationTypeId); | ||
} | ||
|
||
/** | ||
* The stage of the sensitivitylabel definition allowing to specify LabelId. | ||
*/ | ||
interface WithLabelId { | ||
/** | ||
* Specifies labelId. | ||
*/ | ||
WithCreate withLabelId(String labelId); | ||
} | ||
|
||
/** | ||
* The stage of the sensitivitylabel definition allowing to specify LabelName. | ||
*/ | ||
interface WithLabelName { | ||
/** | ||
* Specifies labelName. | ||
*/ | ||
WithCreate withLabelName(String labelName); | ||
} | ||
|
||
/** | ||
* The stage of the definition which contains all the minimum required inputs for | ||
* the resource to be created (via {@link WithCreate#create()}), but also allows | ||
* for any other optional settings to be specified. | ||
*/ | ||
interface WithCreate extends Creatable<SensitivityLabel>, DefinitionStages.WithInformationType, DefinitionStages.WithInformationTypeId, DefinitionStages.WithLabelId, DefinitionStages.WithLabelName { | ||
} | ||
} | ||
/** | ||
* The template for a SensitivityLabel update operation, containing all the settings that can be modified. | ||
*/ | ||
interface Update extends Appliable<SensitivityLabel>, UpdateStages.WithInformationType, UpdateStages.WithInformationTypeId, UpdateStages.WithLabelId, UpdateStages.WithLabelName { | ||
} | ||
|
||
/** | ||
* Grouping of SensitivityLabel update stages. | ||
*/ | ||
interface UpdateStages { | ||
/** | ||
* The stage of the sensitivitylabel update allowing to specify InformationType. | ||
*/ | ||
interface WithInformationType { | ||
/** | ||
* Specifies informationType. | ||
*/ | ||
Update withInformationType(String informationType); | ||
} | ||
|
||
/** | ||
* The stage of the sensitivitylabel update allowing to specify InformationTypeId. | ||
*/ | ||
interface WithInformationTypeId { | ||
/** | ||
* Specifies informationTypeId. | ||
*/ | ||
Update withInformationTypeId(String informationTypeId); | ||
} | ||
|
||
/** | ||
* The stage of the sensitivitylabel update allowing to specify LabelId. | ||
*/ | ||
interface WithLabelId { | ||
/** | ||
* Specifies labelId. | ||
*/ | ||
Update withLabelId(String labelId); | ||
} | ||
|
||
/** | ||
* The stage of the sensitivitylabel update allowing to specify LabelName. | ||
*/ | ||
interface WithLabelName { | ||
/** | ||
* Specifies labelName. | ||
*/ | ||
Update withLabelName(String labelName); | ||
} | ||
|
||
} | ||
} |
53 changes: 53 additions & 0 deletions
53
...n/java/com/microsoft/azure/management/sql/v2017_03_01_preview/SensitivityLabelSource.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,53 @@ | ||
/** | ||
* 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.sql.v2017_03_01_preview; | ||
|
||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import com.fasterxml.jackson.annotation.JsonValue; | ||
|
||
/** | ||
* Defines values for SensitivityLabelSource. | ||
*/ | ||
public enum SensitivityLabelSource { | ||
/** Enum value current. */ | ||
CURRENT("current"), | ||
|
||
/** Enum value recommended. */ | ||
RECOMMENDED("recommended"); | ||
|
||
/** The actual serialized value for a SensitivityLabelSource instance. */ | ||
private String value; | ||
|
||
SensitivityLabelSource(String value) { | ||
this.value = value; | ||
} | ||
|
||
/** | ||
* Parses a serialized value to a SensitivityLabelSource instance. | ||
* | ||
* @param value the serialized value to parse. | ||
* @return the parsed SensitivityLabelSource object, or null if unable to parse. | ||
*/ | ||
@JsonCreator | ||
public static SensitivityLabelSource fromString(String value) { | ||
SensitivityLabelSource[] items = SensitivityLabelSource.values(); | ||
for (SensitivityLabelSource item : items) { | ||
if (item.toString().equalsIgnoreCase(value)) { | ||
return item; | ||
} | ||
} | ||
return null; | ||
} | ||
|
||
@JsonValue | ||
@Override | ||
public String toString() { | ||
return this.value; | ||
} | ||
} |
Oops, something went wrong.