private HostnameConfigurationResponse(
            Outputs.CertificateInformationResponse certificate,

            string?certificatePassword,

            bool?defaultSslBinding,

            string?encodedCertificate,

            string hostName,

            string?keyVaultId,

            bool?negotiateClientCertificate,

            string type)
        {
            Certificate                = certificate;
            CertificatePassword        = certificatePassword;
            DefaultSslBinding          = defaultSslBinding;
            EncodedCertificate         = encodedCertificate;
            HostName                   = hostName;
            KeyVaultId                 = keyVaultId;
            NegotiateClientCertificate = negotiateClientCertificate;
            Type = type;
        }
        private HostnameConfigurationResponse(
            Outputs.CertificateInformationResponse certificate,

            string hostname,

            string type)
        {
            Certificate = certificate;
            Hostname    = hostname;
            Type        = type;
        }
Exemplo n.º 3
0
        private CertificateConfigurationResponse(
            Outputs.CertificateInformationResponse certificate,

            string?certificatePassword,

            string?encodedCertificate,

            string storeName)
        {
            Certificate         = certificate;
            CertificatePassword = certificatePassword;
            EncodedCertificate  = encodedCertificate;
            StoreName           = storeName;
        }