class Google::Apis::SqladminV1::ImportContext::BakImportOptions::EncryptionOptions

Attributes

cert_path[RW]

Path to the Certificate (.cer) in Cloud Storage, in the form **gs://bucketName/ fileName**. The instance must have write permissions to the bucket and read access to the file. Corresponds to the JSON property `certPath` @return [String]

pvk_password[RW]

Password that encrypts the private key Corresponds to the JSON property `pvkPassword` @return [String]

pvk_path[RW]

Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form **gs:/ /bucketName/fileName**. The instance must have write permissions to the bucket and read access to the file. Corresponds to the JSON property `pvkPath` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sqladmin_v1/classes.rb, line 1570
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/sqladmin_v1/classes.rb, line 1575
def update!(**args)
  @cert_path = args[:cert_path] if args.key?(:cert_path)
  @pvk_password = args[:pvk_password] if args.key?(:pvk_password)
  @pvk_path = args[:pvk_path] if args.key?(:pvk_path)
end