-
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.
HDInsight: regenerate package-2018-06-preview (#6705)
- Loading branch information
1 parent
778c292
commit 59fc5f2
Showing
6 changed files
with
169 additions
and
5 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
69 changes: 69 additions & 0 deletions
69
...in/java/com/microsoft/azure/management/hdinsight/v2018_06_01_preview/ClientGroupInfo.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,69 @@ | ||
/** | ||
* 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.hdinsight.v2018_06_01_preview; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** | ||
* The information of AAD security group. | ||
*/ | ||
public class ClientGroupInfo { | ||
/** | ||
* The AAD security group name. | ||
*/ | ||
@JsonProperty(value = "groupName") | ||
private String groupName; | ||
|
||
/** | ||
* The AAD security group id. | ||
*/ | ||
@JsonProperty(value = "groupId") | ||
private String groupId; | ||
|
||
/** | ||
* Get the AAD security group name. | ||
* | ||
* @return the groupName value | ||
*/ | ||
public String groupName() { | ||
return this.groupName; | ||
} | ||
|
||
/** | ||
* Set the AAD security group name. | ||
* | ||
* @param groupName the groupName value to set | ||
* @return the ClientGroupInfo object itself. | ||
*/ | ||
public ClientGroupInfo withGroupName(String groupName) { | ||
this.groupName = groupName; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get the AAD security group id. | ||
* | ||
* @return the groupId value | ||
*/ | ||
public String groupId() { | ||
return this.groupId; | ||
} | ||
|
||
/** | ||
* Set the AAD security group id. | ||
* | ||
* @param groupId the groupId value to set | ||
* @return the ClientGroupInfo object itself. | ||
*/ | ||
public ClientGroupInfo withGroupId(String groupId) { | ||
this.groupId = groupId; | ||
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
44 changes: 44 additions & 0 deletions
44
...ava/com/microsoft/azure/management/hdinsight/v2018_06_01_preview/KafkaRestProperties.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.hdinsight.v2018_06_01_preview; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** | ||
* The kafka rest proxy configuration which contains AAD security group | ||
* information. | ||
*/ | ||
public class KafkaRestProperties { | ||
/** | ||
* The information of AAD security group. | ||
*/ | ||
@JsonProperty(value = "clientGroupInfo") | ||
private ClientGroupInfo clientGroupInfo; | ||
|
||
/** | ||
* Get the information of AAD security group. | ||
* | ||
* @return the clientGroupInfo value | ||
*/ | ||
public ClientGroupInfo clientGroupInfo() { | ||
return this.clientGroupInfo; | ||
} | ||
|
||
/** | ||
* Set the information of AAD security group. | ||
* | ||
* @param clientGroupInfo the clientGroupInfo value to set | ||
* @return the KafkaRestProperties object itself. | ||
*/ | ||
public KafkaRestProperties withClientGroupInfo(ClientGroupInfo clientGroupInfo) { | ||
this.clientGroupInfo = clientGroupInfo; | ||
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