Show / Hide Table of Contents

Class ServicePrincipalState

Inheritance
System.Object
InputArgs
ResourceArgs
ServicePrincipalState
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 ServicePrincipalState : ResourceArgs

Constructors

View Source

ServicePrincipalState()

Declaration
public ServicePrincipalState()

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

DisplayName

The Display Name of the Azure Active Directory Application associated with this Service Principal.

Declaration
public Input<string> DisplayName { get; set; }
Property Value
Type Description
Input<System.String>
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<ServicePrincipalOauth2PermissionGetArgs> Oauth2Permissions { get; set; }
Property Value
Type Description
InputList<ServicePrincipalOauth2PermissionGetArgs>
View Source

ObjectId

The Service Principal's Object ID.

Declaration
public Input<string> ObjectId { get; set; }
Property Value
Type Description
Input<System.String>
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.