class PaloAlto::XML::Config::Panorama::CertificateProfile::Entry

Public Instance Methods

CA() click to toggle source
# File lib/palo_alto/config.rb, line 3661
def CA
        if @create_children
                @subclasses['CA'] ||= CA.new(parent_instance: self, create_children: @create_children)
        else
                CA.new(parent_instance: self)
        end
end
_section() click to toggle source
# File lib/palo_alto/config.rb, line 3531
def _section
        :'entry'
end
block_expired_cert() click to toggle source

whether to block a session if cert. status is expired

# File lib/palo_alto/config.rb, line 3823
def block_expired_cert
        prop_get('block-expired-cert')
end
block_expired_cert=(val) click to toggle source

whether to block a session if cert. status is expired

# File lib/palo_alto/config.rb, line 3827
def block_expired_cert=(val)
        prop_set('block-expired-cert', val)
end
block_timeout_cert() click to toggle source

whether to block a session if cert. status can't be retrieved within timeout

# File lib/palo_alto/config.rb, line 3807
def block_timeout_cert
        prop_get('block-timeout-cert')
end
block_timeout_cert=(val) click to toggle source

whether to block a session if cert. status can't be retrieved within timeout

# File lib/palo_alto/config.rb, line 3811
def block_timeout_cert=(val)
        prop_set('block-timeout-cert', val)
end
block_unauthenticated_cert() click to toggle source

whether to block session if the certificate was not issued to the authenticating device

# File lib/palo_alto/config.rb, line 3815
def block_unauthenticated_cert
        prop_get('block-unauthenticated-cert')
end
block_unauthenticated_cert=(val) click to toggle source

whether to block session if the certificate was not issued to the authenticating device

# File lib/palo_alto/config.rb, line 3819
def block_unauthenticated_cert=(val)
        prop_set('block-unauthenticated-cert', val)
end
block_unknown_cert() click to toggle source

whether to block a session if cert. status is unknown

# File lib/palo_alto/config.rb, line 3799
def block_unknown_cert
        prop_get('block-unknown-cert')
end
block_unknown_cert=(val) click to toggle source

whether to block a session if cert. status is unknown

# File lib/palo_alto/config.rb, line 3803
def block_unknown_cert=(val)
        prop_set('block-unknown-cert', val)
end
cert_status_timeout() click to toggle source

set cert status query timeout value in seconds

# File lib/palo_alto/config.rb, line 3791
def cert_status_timeout
        prop_get('cert-status-timeout')
end
cert_status_timeout=(val) click to toggle source

set cert status query timeout value in seconds

# File lib/palo_alto/config.rb, line 3795
def cert_status_timeout=(val)
        prop_set('cert-status-timeout', val)
end
crl_receive_timeout() click to toggle source

set CRL receive timeout value in seconds

# File lib/palo_alto/config.rb, line 3767
def crl_receive_timeout
        prop_get('crl-receive-timeout')
end
crl_receive_timeout=(val) click to toggle source

set CRL receive timeout value in seconds

# File lib/palo_alto/config.rb, line 3771
def crl_receive_timeout=(val)
        prop_set('crl-receive-timeout', val)
end
domain() click to toggle source

alphanumeric string [ 0-9a-zA-Z._-]

# File lib/palo_alto/config.rb, line 3747
def domain
        prop_get('domain')
end
domain=(val) click to toggle source

alphanumeric string [ 0-9a-zA-Z._-]

# File lib/palo_alto/config.rb, line 3751
def domain=(val)
        prop_set('domain', val)
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 3528
def has_multiple_values?
        false
end
name() click to toggle source

Profile name

# File lib/palo_alto/config.rb, line 3743
def name
        prop_get('@name')
end
ocsp_exclude_nonce() click to toggle source

whether to exclude nonce extension for OCSP requests

# File lib/palo_alto/config.rb, line 3783
def ocsp_exclude_nonce
        prop_get('ocsp-exclude-nonce')
end
ocsp_exclude_nonce=(val) click to toggle source

whether to exclude nonce extension for OCSP requests

# File lib/palo_alto/config.rb, line 3787
def ocsp_exclude_nonce=(val)
        prop_set('ocsp-exclude-nonce', val)
end
ocsp_receive_timeout() click to toggle source

set OCSP receive timeout value in seconds

# File lib/palo_alto/config.rb, line 3775
def ocsp_receive_timeout
        prop_get('ocsp-receive-timeout')
end
ocsp_receive_timeout=(val) click to toggle source

set OCSP receive timeout value in seconds

# File lib/palo_alto/config.rb, line 3779
def ocsp_receive_timeout=(val)
        prop_set('ocsp-receive-timeout', val)
end
use_crl() click to toggle source
# File lib/palo_alto/config.rb, line 3754
def use_crl
        prop_get('use-crl')
end
use_crl=(val) click to toggle source
# File lib/palo_alto/config.rb, line 3757
def use_crl=(val)
        prop_set('use-crl', val)
end
use_ocsp() click to toggle source
# File lib/palo_alto/config.rb, line 3760
def use_ocsp
        prop_get('use-ocsp')
end
use_ocsp=(val) click to toggle source
# File lib/palo_alto/config.rb, line 3763
def use_ocsp=(val)
        prop_set('use-ocsp', val)
end
username_field() click to toggle source
# File lib/palo_alto/config.rb, line 3568
def username_field
        if @create_children
                @subclasses['username-field'] ||= UsernameField.new(parent_instance: self, create_children: @create_children)
        else
                UsernameField.new(parent_instance: self)
        end
end