Show / Hide Table of Contents

Class UserArgs

Inheritance
System.Object
InputArgs
ResourceArgs
UserArgs
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.Datadog
Assembly: Pulumi.Datadog.dll
Syntax
public sealed class UserArgs : ResourceArgs

Constructors

View Source

UserArgs()

Declaration
public UserArgs()

Properties

View Source

AccessRole

Role description for user. Can be st (standard user), adm (admin user) or ro (read-only user). Default is st.

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

Disabled

Whether the user is disabled

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

Email

Email address for user

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

Handle

The user handle, must be a valid email.

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

IsAdmin

(Optional) Whether the user is an administrator. Warning: the corresponding query parameter is ignored by the Datadog API, thus the argument would always trigger an execution plan.

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

Name

Name for user

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

Role

Role description for user. Warning: the corresponding query parameter is ignored by the Datadog API, thus the argument would always trigger an execution plan.

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