Show / Hide Table of Contents

    Class TdeCertificate

    A TDE certificate that can be uploaded into a server.

    Inheritance
    Object
    Resource
    ProxyResource
    TdeCertificate
    Inherited Members
    Resource.Id
    Resource.Name
    Resource.Type
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Sql.dll
    Syntax
    [Microsoft.Rest.Serialization.JsonTransformation]
    public class TdeCertificate : Microsoft.Azure.Management.Sql.Models.ProxyResource

    Constructors

    TdeCertificate()

    Initializes a new instance of the TdeCertificate class.

    Declaration
    public TdeCertificate ();

    TdeCertificate(String, String, String, String, String)

    Initializes a new instance of the TdeCertificate class.

    Declaration
    public TdeCertificate (string privateBlob, string id = null, string name = null, string type = null, string certPassword = null);
    Parameters
    String privateBlob

    The base64 encoded certificate private blob.

    String id

    Resource ID.

    String name

    Resource name.

    String type

    Resource type.

    String certPassword

    The certificate password.

    Properties

    CertPassword

    Gets or sets the certificate password.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="properties.certPassword")]
    public string CertPassword { get; set; }
    Property Value
    String

    PrivateBlob

    Gets or sets the base64 encoded certificate private blob.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="properties.privateBlob")]
    public string PrivateBlob { get; set; }
    Property Value
    String

    Methods

    Validate()

    Validate the object.

    Declaration
    public virtual void Validate ();
    Exceptions
    ValidationException

    Thrown if validation fails

    Back to top Azure SDK for Net