Show / Hide Table of Contents

Class SwiftPassword

Deprecated. Use {@link AuthToken} instead.
Swift is the OpenStack object storage service. A SwiftPassword is an Oracle-provided password for using a Swift client with the Object Storage Service. This password is associated with the user's Console login. Swift passwords never expire. A user can have up to two Swift passwords at a time.
Note: The password is always an Oracle-generated string; you can't change it to a string of your choice.
For more information, see Managing User Credentials.

Inheritance
System.Object
SwiftPassword
Namespace: Oci.IdentityService.Models
Assembly: OCI.DotNetSDK.Identity.dll
Syntax
public class SwiftPassword : object

Properties

Description

Declaration
public string Description { get; set; }
Property Value
Type Description
System.String

The description you assign to the Swift password. Does not have to be unique, and it's changeable.

ExpiresOn

Declaration
public System.Nullable<System.DateTime> ExpiresOn { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

Date and time when this password will expire, in the format defined by RFC3339. Null if it never expires.
Example: 2016-08-25T21:10:29.600Z

Id

Declaration
public string Id { get; set; }
Property Value
Type Description
System.String

The OCID of the Swift password.

InactiveStatus

Declaration
public System.Nullable<long> InactiveStatus { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

The detailed status of INACTIVE lifecycleState.

LifecycleState

Declaration
public System.Nullable<SwiftPassword.LifecycleStateEnum> LifecycleState { get; set; }
Property Value
Type Description
System.Nullable<SwiftPassword.LifecycleStateEnum>

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

Password

Declaration
public string Password { get; set; }
Property Value
Type Description
System.String

The Swift password. The value is available only in the response for CreateSwiftPassword, and not for ListSwiftPasswords or UpdateSwiftPassword.

TimeCreated

Declaration
public System.Nullable<System.DateTime> TimeCreated { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

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

UserId

Declaration
public string UserId { get; set; }
Property Value
Type Description
System.String

The OCID of the user the password belongs to.

In This Article
Back to top