-
Notifications
You must be signed in to change notification settings - Fork 4k
[HDInsight] Update api version to 2025-01-15-preview #27837
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
cbbf936
add cmd: Set-AzHDInsightGatewaySettings ; Get-AzHDInsightClusterGatew…
v-yukunli eb3b5ce
update HDInsight.csproj
v-yukunli 62abc3a
update HDInsight.csproj
v-yukunli 5dbb7c3
update test
v-yukunli 59fb028
update test
v-yukunli 9c3da94
update test
v-yukunli 50748d3
update test
v-yukunli 305ee7e
update sessionRecords
v-yukunli ae54404
Merge branch 'Azure:main' into hdi-ps-sdk-2025-01-15
2258093686 24646c9
change command
v-yukunli dab854c
change NewAzureCmd ,SetGatewayCmd
v-yukunli 7ea2ce3
run test
v-yukunli 72fab04
update entra user parameter
v-yukunli 3032d57
playback test
v-yukunli 257a2bd
update test
v-yukunli abda54b
update help
v-yukunli 8fe4226
update test , help
v-yukunli ef9bffa
update test
v-yukunli 895c55d
update help and Set-AzHDInsightGatewayCredential Output
v-yukunli 4a63537
New-AzHDInsightCluster add wasb+msi
v-yukunli 5c0721e
update test
v-yukunli ba05848
update common.ps1
v-yukunli f038737
update changeLog,help,sessionRecords
v-yukunli 7877ac5
update changeLog
v-yukunli f04e891
update changeLog
v-yukunli a009047
change AzureHDInsightGatewaySettings
v-yukunli 83c0b48
add package System.IdentityModel.Tokens.Jwt
v-yukunli bbedd6c
update HDInsight.csproj
v-yukunli b851ee8
add System.IdentityModel.Tokens.Jwt to code
v-yukunli 52c37e3
update csproj
v-yukunli 8f2cb53
remove Microsoft.Graph
v-yukunli ec9a846
remove space
v-yukunli aaa7b73
update ClusterConfigurationUtils
v-yukunli 612a82b
update GetHDInsightGatewayEntraUser
v-yukunli e12ca99
update GetHDInsightGatewayEntraUser
v-yukunli 013b2fa
update TestCreateEntraCluster.json
v-yukunli e72babd
Modify sensitive information
v-yukunli 64882ec
Modify sensitive information
v-yukunli d916082
update EntraUserIdentity parameter type
v-yukunli 2eb3c68
update help
v-yukunli 5112bf3
update help,ClusterConfigurationUtils.cs
v-yukunli 297c401
update help
v-yukunli cbc8861
update help
v-yukunli 0472956
update ClusterConfigurationUtils
v-yukunli 0b0d74d
update help
v-yukunli File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
72 changes: 72 additions & 0 deletions
72
src/HDInsight/HDInsight.Management.Sdk/Generated/Models/EntraUserInfo.cs
This file contains hidden or 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,72 @@ | ||
// 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. | ||
// Changes may cause incorrect behavior and will be lost if the code is regenerated. | ||
|
||
namespace Microsoft.Azure.Management.HDInsight.Models | ||
{ | ||
using System.Linq; | ||
|
||
/// <summary> | ||
/// Details of an Entra user for gateway access. | ||
/// </summary> | ||
public partial class EntraUserInfo | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the EntraUserInfo class. | ||
/// </summary> | ||
public EntraUserInfo() | ||
{ | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the EntraUserInfo class. | ||
/// </summary> | ||
|
||
/// <param name="objectId">The unique object ID of the Entra user or client ID of the enterprise | ||
/// applications. | ||
/// </param> | ||
|
||
/// <param name="displayName">The display name of the Entra user. | ||
/// </param> | ||
|
||
/// <param name="upn">The User Principal Name (UPN) of the Entra user. It may be empty in certain | ||
/// cases, such as for enterprise applications. | ||
/// </param> | ||
public EntraUserInfo(string objectId = default(string), string displayName = default(string), string upn = default(string)) | ||
|
||
{ | ||
this.ObjectId = objectId; | ||
this.DisplayName = displayName; | ||
this.Upn = upn; | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// An initialization method that performs custom operations like setting defaults | ||
/// </summary> | ||
partial void CustomInit(); | ||
|
||
|
||
/// <summary> | ||
/// Gets or sets the unique object ID of the Entra user or client ID of the | ||
/// enterprise applications. | ||
/// </summary> | ||
[Newtonsoft.Json.JsonProperty(PropertyName = "objectId")] | ||
public string ObjectId {get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the display name of the Entra user. | ||
/// </summary> | ||
[Newtonsoft.Json.JsonProperty(PropertyName = "displayName")] | ||
public string DisplayName {get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the User Principal Name (UPN) of the Entra user. It may be | ||
/// empty in certain cases, such as for enterprise applications. | ||
/// </summary> | ||
[Newtonsoft.Json.JsonProperty(PropertyName = "upn")] | ||
public string Upn {get; set; } | ||
} | ||
} |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.