Show / Hide Table of Contents

Class UpdateAutonomousDatabaseWalletDetails

Details to update an Autonomous Database wallet.

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

Properties

GracePeriod

Declaration
[JsonProperty(PropertyName = "gracePeriod")]
public int? GracePeriod { get; set; }
Property Value
Type Description
int?

The number of hours that the old wallet can be used after it has been rotated. The old wallet will no longer be valid after the number of hours in the wallet rotation grace period has passed. During the grace period, both the old wallet and the current wallet can be used.

ShouldRotate

Declaration
[JsonProperty(PropertyName = "shouldRotate")]
public bool? ShouldRotate { get; set; }
Property Value
Type Description
bool?

Indicates whether to rotate the wallet or not. If false, the wallet will not be rotated. The default is false.

In this article
Back to top