Show / Hide Table of Contents

Class UIPasswordInformation

Information about the UIPassword, which is a text password that enables a user to sign in to the Console, the user interface for interacting with Oracle Cloud Infrastructure.
For more information about user credentials, see User Credentials.

Inheritance
object
UIPasswordInformation
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentityService.Models
Assembly: OCI.DotNetSDK.Identity.dll
Syntax
public class UIPasswordInformation

Properties

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public UIPasswordInformation.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
UIPasswordInformation.LifecycleStateEnum?

The password's current state. After creating a password, make sure its lifecycleState changes from CREATING to ACTIVE before using it.

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

Date and time the password was created, in the format defined by RFC3339.
Example: 2016-08-25T21:10:29.600Z

UserId

Declaration
[JsonProperty(PropertyName = "userId")]
public string UserId { get; set; }
Property Value
Type Description
string

The OCID of the user.

In this article
Back to top