Documentation ¶
Index ¶
- type Client
- func (c *Client) Create(ctx context.Context, arg *ngrok.SSHCertificateAuthorityCreate) (*ngrok.SSHCertificateAuthority, error)
- func (c *Client) Delete(ctx context.Context, id string) error
- func (c *Client) Get(ctx context.Context, id string) (*ngrok.SSHCertificateAuthority, error)
- func (c *Client) List(paging *ngrok.Paging) *Iter
- func (c *Client) Update(ctx context.Context, arg *ngrok.SSHCertificateAuthorityUpdate) (*ngrok.SSHCertificateAuthority, error)
- type Iter
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
func (*Client) Create ¶
func (c *Client) Create(ctx context.Context, arg *ngrok.SSHCertificateAuthorityCreate) (*ngrok.SSHCertificateAuthority, error)
Create a new SSH Certificate Authority
https://ngrok.com/docs/api#api-ssh-certificate-authorities-create
func (*Client) Delete ¶
Delete an SSH Certificate Authority
https://ngrok.com/docs/api#api-ssh-certificate-authorities-delete
func (*Client) Get ¶
Get detailed information about an SSH Certficate Authority
https://ngrok.com/docs/api#api-ssh-certificate-authorities-get
func (*Client) List ¶
List all SSH Certificate Authorities on this account
https://ngrok.com/docs/api#api-ssh-certificate-authorities-list
type Iter ¶
type Iter struct {
// contains filtered or unexported fields
}
Iter allows the caller to iterate through a list of values while automatically fetching new pages worth of values from the API.
func (*Iter) Err ¶
If Next() returned false because an error was encountered while fetching the next value Err() will return that error. A caller should always check Err() after Next() returns false.