Show / Hide Table of Contents

Class GenerateAutonomousDatabaseWalletDetails

Details to create and download an Oracle Autonomous Database wallet.

Inheritance
object
GenerateAutonomousDatabaseWalletDetails
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 GenerateAutonomousDatabaseWalletDetails

Properties

GenerateType

Declaration
[JsonProperty(PropertyName = "generateType")]
[JsonConverter(typeof(StringEnumConverter))]
public GenerateAutonomousDatabaseWalletDetails.GenerateTypeEnum? GenerateType { get; set; }
Property Value
Type Description
GenerateAutonomousDatabaseWalletDetails.GenerateTypeEnum?

The type of wallet to generate.
Serverless instance usage:

  • SINGLE - used to generate a wallet for a single database
  • ALL - used to generate wallet for all databases in the region
    Dedicated Exadata infrastructure usage: Value must be NULL if attribute is used.

IsRegional

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

True when requesting regional connection strings in PDB connect info, applicable to cross-region DG only.

Password

Declaration
[Required(ErrorMessage = "Password is required.")]
[JsonProperty(PropertyName = "password")]
public string Password { get; set; }
Property Value
Type Description
string

The password to encrypt the keys inside the wallet. The password must be at least 8 characters long and must include at least 1 letter and either 1 numeric character or 1 special character.

Remarks

Required

In this article
Back to top