Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Certificate ¶
type Certificate struct { ID string `json:"id"` Name string `json:"name"` Description string `json:"description"` Domain string `json:"domain"` Certificate string `json:"certificate"` PrivateKey string `json:"private_key"` CreateTime string `json:"create_time"` UpdateTime string `json:"update_time"` }
type CreateResponse struct { TenantId string `json:"tenant_id"` Id string `json:"id"` Name string `json:"name"` Description string `json:"description"` Domain string `json:"domain"` Certificate string `json:"certificate"` PrivateKey string `json:"private_key"` CreateTime string `json:"create_time"` UpdateTime string `json:"update_time"` }
type CreateOpts ¶
type CreateOpts struct { Name string `json:"name,omitempty"` Description string `json:"description,omitempty"` Domain string `json:"domain,omitempty"` Certificate string `json:"certificate" required:"true"` PrivateKey string `json:"private_key" required:"true"` }
CreateOpts is the common options struct used in this package's Create operation.
func (CreateOpts) ToCertificateCreateMap ¶
func (opts CreateOpts) ToCertificateCreateMap() (map[string]interface{}, error)
ToCertificateCreateMap casts a CreateOpts struct to a map.
type CreateOptsBuilder ¶
CreateOptsBuilder is the interface options structs have to satisfy in order to be used in the main Create operation in this package. Since many extensions decorate or modify the common logic, it is useful for them to satisfy a basic interface in order for them to be used.
type CreateResult ¶
type CreateResult struct {
// contains filtered or unexported fields
}
func Create ¶
func Create(c *golangsdk.ServiceClient, opts CreateOptsBuilder) (r CreateResult)
Create is an operation which provisions a new loadbalancer based on the configuration defined in the CreateOpts struct. Once the request is validated and progress has started on the provisioning process, a CreateResult will be returned.
Users with an admin role can create loadbalancers on behalf of other tenants by specifying a TenantID attribute different than their own.
func (CreateResult) Extract ¶
func (r CreateResult) Extract() (*Certificate, error)
type DeleteResult ¶
type DeleteResult struct {
golangsdk.ErrResult
}
DeleteResult represents the result of a delete operation.
func Delete ¶
func Delete(c *golangsdk.ServiceClient, id string) (r DeleteResult)
Delete will permanently delete a particular Certificate based on its unique ID.
type GetResult ¶
type GetResult struct { ID string golangsdk.Result }
GetResult represents the result of a get operation.
func (GetResult) Extract ¶
func (r GetResult) Extract() (*Certificate, error)
type UpdateOpts ¶
type UpdateOpts struct { Name string `json:"name,omitempty"` Description string `json:"description,omitempty"` }
UpdateOpts is the common options struct used in this package's Update operation.
func (UpdateOpts) IsNeedUpdate ¶
func (opts UpdateOpts) IsNeedUpdate() (bool, error)
func (UpdateOpts) ToCertificateUpdateMap ¶
func (opts UpdateOpts) ToCertificateUpdateMap() (map[string]interface{}, error)
ToCertificateUpdateMap casts a UpdateOpts struct to a map.
type UpdateOptsBuilder ¶
UpdateOptsBuilder is the interface options structs have to satisfy in order to be used in the main Update operation in this package. Since many extensions decorate or modify the common logic, it is useful for them to satisfy a basic interface in order for them to be used.
type UpdateResult ¶
type UpdateResult struct {
// contains filtered or unexported fields
}
func Update ¶
func Update(c *golangsdk.ServiceClient, id string, opts UpdateOpts) (r UpdateResult)
Update is an operation which modifies the attributes of the specified Certificate.
func (UpdateResult) Extract ¶
func (r UpdateResult) Extract() (*Certificate, error)