-
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.
- Loading branch information
SDK Automation
committed
Jun 8, 2020
1 parent
c11a386
commit 19dda9b
Showing
6 changed files
with
117 additions
and
6 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
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
48 changes: 48 additions & 0 deletions
48
...rosoft/azure/management/managedapplications/v2019_07_01/UserAssignedResourceIdentity.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,48 @@ | ||
/** | ||
* 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.managedapplications.v2019_07_01; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** | ||
* Represents the user assigned identity that is contained within the | ||
* UserAssignedIdentities dictionary on ResourceIdentity. | ||
*/ | ||
public class UserAssignedResourceIdentity { | ||
/** | ||
* The principal id of user assigned identity. | ||
*/ | ||
@JsonProperty(value = "principalId", access = JsonProperty.Access.WRITE_ONLY) | ||
private String principalId; | ||
|
||
/** | ||
* The tenant id of user assigned identity. | ||
*/ | ||
@JsonProperty(value = "tenantId", access = JsonProperty.Access.WRITE_ONLY) | ||
private String tenantId; | ||
|
||
/** | ||
* Get the principal id of user assigned identity. | ||
* | ||
* @return the principalId value | ||
*/ | ||
public String principalId() { | ||
return this.principalId; | ||
} | ||
|
||
/** | ||
* Get the tenant id of user assigned identity. | ||
* | ||
* @return the tenantId value | ||
*/ | ||
public String tenantId() { | ||
return this.tenantId; | ||
} | ||
|
||
} |
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