|
| 1 | +// ---------------------------------------------------------------------------------- |
| 2 | +// |
| 3 | +// Copyright Microsoft Corporation |
| 4 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +// you may not use this file except in compliance with the License. |
| 6 | +// You may obtain a copy of the License at |
| 7 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// Unless required by applicable law or agreed to in writing, software |
| 9 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | +// See the License for the specific language governing permissions and |
| 12 | +// limitations under the License. |
| 13 | +// ---------------------------------------------------------------------------------- |
| 14 | + |
| 15 | +namespace Microsoft.Azure.Commands.Aks.Models |
| 16 | +{ |
| 17 | + /// <summary> |
| 18 | + /// Identity for the managed cluster. |
| 19 | + /// </summary> |
| 20 | + public class PSManagedClusterPropertiesIdentityProfile |
| 21 | + { |
| 22 | + // |
| 23 | + // Summary: |
| 24 | + // Initializes a new instance of the UserAssignedIdentity class. |
| 25 | + // |
| 26 | + // Parameters: |
| 27 | + // resourceId: |
| 28 | + // The resource id of the user assigned identity. |
| 29 | + // |
| 30 | + // clientId: |
| 31 | + // The client id of the user assigned identity. |
| 32 | + // |
| 33 | + // objectId: |
| 34 | + // The object id of the user assigned identity. |
| 35 | + public PSManagedClusterPropertiesIdentityProfile(string resourceId = null, string clientId = null, string objectId = null) |
| 36 | + { |
| 37 | + ResourceId = resourceId; |
| 38 | + ClientId = clientId; |
| 39 | + ObjectId = objectId; |
| 40 | + } |
| 41 | + |
| 42 | + // |
| 43 | + // Summary: |
| 44 | + // Gets or sets the resource id of the user assigned identity. |
| 45 | + public string ResourceId { get; set; } |
| 46 | + // |
| 47 | + // Summary: |
| 48 | + // Gets or sets the client id of the user assigned identity. |
| 49 | + public string ClientId { get; set; } |
| 50 | + // |
| 51 | + // Summary: |
| 52 | + // Gets or sets the object id of the user assigned identity. |
| 53 | + public string ObjectId { get; set; } |
| 54 | + } |
| 55 | +} |
0 commit comments