 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
- type Client
- func (c *Client) Create(ctx context.Context, req CreateRequest) error
- func (c *Client) Delete(ctx context.Context, req DeleteRequest) error
- func (c *Client) Find(ctx context.Context, req FindRequest) (map[string]interface{}, error)
- func (c *Client) Index(ctx context.Context, req IndexRequest) ([]map[string]interface{}, error)
- func (c *Client) Update(ctx context.Context, req UpdateRequest) error
 
- type CreateRequest
- type DeleteRequest
- type FindRequest
- type HTTPClient
- type IndexRequest
- type Type
- type UpdateRequest
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 New ¶
func New(c HTTPClient) *Client
func (*Client) Create ¶
func (c *Client) Create(ctx context.Context, req CreateRequest) error
Create Create a new sdn vnet object.
func (*Client) Delete ¶
func (c *Client) Delete(ctx context.Context, req DeleteRequest) error
Delete Delete sdn vnet object configuration.
type CreateRequest ¶
type CreateRequest struct {
	Vnet string `url:"vnet" json:"vnet"` // The SDN vnet object identifier.
	Zone string `url:"zone" json:"zone"` // zone id
	// The following parameters are optional
	Alias     *string       `url:"alias,omitempty" json:"alias,omitempty"`         // alias name of the vnet
	Tag       *int          `url:"tag,omitempty" json:"tag,omitempty"`             // vlan or vxlan id
	Type      *Type         `url:"type,omitempty" json:"type,omitempty"`           // Type
	Vlanaware *util.PVEBool `url:"vlanaware,omitempty" json:"vlanaware,omitempty"` // Allow vm VLANs to pass through this vnet.
}
    type DeleteRequest ¶
type DeleteRequest struct {
	Vnet string `url:"vnet" json:"vnet"` // The SDN vnet object identifier.
}
    type FindRequest ¶
type FindRequest struct {
	Vnet string `url:"vnet" json:"vnet"` // The SDN vnet object identifier.
	// The following parameters are optional
	Pending *util.PVEBool `url:"pending,omitempty" json:"pending,omitempty"` // Display pending config.
	Running *util.PVEBool `url:"running,omitempty" json:"running,omitempty"` // Display running config.
}
    type HTTPClient ¶
type IndexRequest ¶
type UpdateRequest ¶
type UpdateRequest struct {
	Vnet string `url:"vnet" json:"vnet"` // The SDN vnet object identifier.
	// The following parameters are optional
	Alias     *string       `url:"alias,omitempty" json:"alias,omitempty"`         // alias name of the vnet
	Delete    *string       `url:"delete,omitempty" json:"delete,omitempty"`       // A list of settings you want to delete.
	Digest    *string       `url:"digest,omitempty" json:"digest,omitempty"`       // Prevent changes if current configuration file has different SHA1 digest. This can be used to prevent concurrent modifications.
	Tag       *int          `url:"tag,omitempty" json:"tag,omitempty"`             // vlan or vxlan id
	Vlanaware *util.PVEBool `url:"vlanaware,omitempty" json:"vlanaware,omitempty"` // Allow vm VLANs to pass through this vnet.
	Zone      *string       `url:"zone,omitempty" json:"zone,omitempty"`           // zone id
}
     Click to show internal directories. 
   Click to hide internal directories.