Skip to content

Commit

Permalink
.NET SDK Resource Provider:'ContainerService' (#5611)
Browse files Browse the repository at this point in the history
REST Spec PR 'Azure/azure-rest-api-specs#5491'
REST Spec PR Author 'JackQuincy'
REST Spec PR Last commit
  • Loading branch information
adxsdknet authored and dsgouda committed Apr 2, 2019
1 parent f10dd5b commit d84f7ac
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,14 @@ public OpenShiftManagedClusterAADIdentityProvider()
/// provider.</param>
/// <param name="tenantId">The tenantId associated with the
/// provider.</param>
public OpenShiftManagedClusterAADIdentityProvider(string clientId = default(string), string secret = default(string), string tenantId = default(string))
/// <param name="customerAdminGroupId">The groupId to be granted
/// cluster admin role.</param>
public OpenShiftManagedClusterAADIdentityProvider(string clientId = default(string), string secret = default(string), string tenantId = default(string), string customerAdminGroupId = default(string))
{
ClientId = clientId;
Secret = secret;
TenantId = tenantId;
CustomerAdminGroupId = customerAdminGroupId;
CustomInit();
}

Expand All @@ -69,5 +72,11 @@ public OpenShiftManagedClusterAADIdentityProvider()
[JsonProperty(PropertyName = "tenantId")]
public string TenantId { get; set; }

/// <summary>
/// Gets or sets the groupId to be granted cluster admin role.
/// </summary>
[JsonProperty(PropertyName = "customerAdminGroupId")]
public string CustomerAdminGroupId { get; set; }

}
}

0 comments on commit d84f7ac

Please sign in to comment.