Show / Hide Table of Contents

Class ServicePrincipalPasswordArgs

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

Constructors

View Source

ServicePrincipalPasswordArgs()

Declaration
public ServicePrincipalPasswordArgs()

Properties

View Source

EndDate

The End Date which the Password is valid until, formatted as a RFC3339 date string (e.g. 2018-01-01T01:02:03Z). Changing this field forces a new resource to be created.

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

EndDateRelative

A relative duration for which the Password is valid until, for example 240h (10 days) or 2400h30m. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". Changing this field forces a new resource to be created.

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

KeyId

A GUID used to uniquely identify this Key. If not specified a GUID will be created. Changing this field forces a new resource to be created.

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

ServicePrincipalId

The ID of the Service Principal for which this password should be created. Changing this field forces a new resource to be created.

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

StartDate

The Start Date which the Password is valid from, formatted as a RFC3339 date string (e.g. 2018-01-01T01:02:03Z). If this isn't specified, the current date is used. Changing this field forces a new resource to be created.

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

Value

The Password for this Service Principal.

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