Show / Hide Table of Contents

Class ServicePrincipalArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ServicePrincipalArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.AzureAD
Assembly: Pulumi.AzureAD.dll
Syntax
public sealed class ServicePrincipalArgs : ResourceArgs

Constructors

View Source

ServicePrincipalArgs()

Declaration
public ServicePrincipalArgs()

Properties

View Source

ApplicationId

The ID of the Azure AD Application for which to create a Service Principal.

Declaration
public Input<string> ApplicationId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

AppRoleAssignmentRequired

Does this Service Principal require an AppRoleAssignment to a user or group before Azure AD will issue a user or access token to the application? Defaults to false.

Declaration
public Input<bool> AppRoleAssignmentRequired { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Oauth2Permissions

A collection of OAuth 2.0 permissions exposed by the associated application. Each permission is covered by a oauth2_permission block as documented below.

Declaration
public InputList<ServicePrincipalOauth2PermissionArgs> Oauth2Permissions { get; set; }
Property Value
Type Description
InputList<ServicePrincipalOauth2PermissionArgs>
View Source

Tags

A list of tags to apply to the Service Principal.

Declaration
public InputList<string> Tags { get; set; }
Property Value
Type Description
InputList<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.