github.com/Venafi/vcert/v5@v5.10.2/pkg/venafi/cloud/connectorSSH.go (about)

     1  package cloud
     2  
     3  import "github.com/Venafi/vcert/v5/pkg/certificate"
     4  
     5  func (c *Connector) RetrieveSshConfig(_ *certificate.SshCaTemplateRequest) (*certificate.SshConfig, error) {
     6  	panic("operation is not supported yet")
     7  }
     8  
     9  func (c *Connector) RetrieveSSHCertificate(_ *certificate.SshCertRequest) (response *certificate.SshCertificateObject, err error) {
    10  	panic("operation is not supported yet")
    11  }
    12  
    13  func (c *Connector) RequestSSHCertificate(_ *certificate.SshCertRequest) (response *certificate.SshCertificateObject, err error) {
    14  	panic("operation is not supported yet")
    15  }
    16  
    17  func (c *Connector) RetrieveAvailableSSHTemplates() (response []certificate.SshAvaliableTemplate, err error) {
    18  	panic("operation is not supported yet")
    19  }