Documentation ¶
Index ¶
- func CCEServiceURL(client *golangsdk.ServiceClient, cluster_id string, parts ...string) string
- func GetStructNestedField(v *Addon, field string, structDriller []string) string
- type Addon
- type CreateAnnotations
- type CreateMetadata
- type CreateOpts
- type CreateOptsBuilder
- type CreateResult
- type DeleteResult
- type FilterStruct
- type GetResult
- type ListAddon
- type ListOpts
- type ListResult
- type MetaData
- type RequestSpec
- type Spec
- type Status
- type SupportVersions
- type UpdataResult
- type UpdateAnnotations
- type UpdateMetadata
- type UpdateOpts
- type UpdateOptsBuilder
- type UpdateResult
- type Values
- type Versions
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CCEServiceURL ¶
func CCEServiceURL(client *golangsdk.ServiceClient, cluster_id string, parts ...string) string
Types ¶
type Addon ¶
type Addon struct { // API type, fixed value Addon Kind string `json:"kind"` // API version, fixed value v3 ApiVersion string `json:"apiVersion"` // Metadata of an Addon Metadata MetaData `json:"metadata"` // Specifications of an Addon Spec Spec `json:"spec"` // Status of an Addon Status Status `json:"status"` }
func FilterAddons ¶
type CreateAnnotations ¶
type CreateAnnotations struct {
AddonInstallType string `json:"addon.install/type" required:"true"`
}
type CreateMetadata ¶
type CreateMetadata struct {
Anno CreateAnnotations `json:"annotations" required:"true"`
}
type CreateOpts ¶
type CreateOpts struct { // API type, fixed value Addon Kind string `json:"kind" required:"true"` // API version, fixed value v3 ApiVersion string `json:"apiVersion" required:"true"` // Metadata required to create an addon Metadata CreateMetadata `json:"metadata" required:"true"` // specifications to create an addon Spec RequestSpec `json:"spec" required:"true"` }
CreateOpts contains all the values needed to create a new addon
func (CreateOpts) ToAddonCreateMap ¶
func (opts CreateOpts) ToAddonCreateMap() (map[string]interface{}, error)
ToAddonCreateMap builds a create request body from CreateOpts.
type CreateOptsBuilder ¶
CreateOptsBuilder allows extensions to add additional parameters to the Create request.
type CreateResult ¶
type CreateResult struct {
// contains filtered or unexported fields
}
CreateResult represents the result of a create operation. Call its Extract method to interpret it as an Addon.
func Create ¶
func Create(c *golangsdk.ServiceClient, opts CreateOptsBuilder, cluster_id string) (r CreateResult)
Create accepts a CreateOpts struct and uses the values to create a new addon.
func (CreateResult) ExtractAddon ¶
ExtractAddon is a function that accepts a ListOpts struct, which allows you to filter and sort the returned collection for greater efficiency.
type DeleteResult ¶
DeleteResult represents the result of a delete operation. Call its ExtractErr method to determine if the request succeeded or failed.
func Delete ¶
func Delete(c *golangsdk.ServiceClient, id, cluster_id string) (r DeleteResult)
Delete will permanently delete a particular addon based on its unique ID.
type FilterStruct ¶
type GetResult ¶
type GetResult struct {
// contains filtered or unexported fields
}
GetResult represents the result of a get operation. Call its Extract method to interpret it as an Addon.
func Get ¶
func Get(c *golangsdk.ServiceClient, id, cluster_id string) (r GetResult)
Get retrieves a particular addon based on its unique ID.
func (GetResult) ExtractAddon ¶
ExtractAddon is a function that accepts a ListOpts struct, which allows you to filter and sort the returned collection for greater efficiency.
type ListOpts ¶
type ListOpts struct { AddonTemplateName string `json:"addonTemplateName"` Uid string `json:"uid"` Version string `json:"version"` Status string `json:"status"` }
ListOpts allows the filtering of list data using given parameters.
type ListResult ¶
type ListResult struct {
// contains filtered or unexported fields
}
ListResult represents the result of a list operation. Call its ExtractAddon method to interpret it as a Addon.
func (ListResult) ExtractAddon ¶
ExtractAddon is a function that accepts a ListOpts struct, which allows you to filter and sort the returned collection for greater efficiency.
type MetaData ¶
type MetaData struct { // Addon unique name Name string `json:"name"` // Addon unique Id Id string `json:"uid"` // Addon tag, key/value pair format Labels map[string]string `json:"lables"` // Addon annotation, key/value pair format Annotations map[string]string `json:"annotaions"` }
Metadata required to create an addon
type RequestSpec ¶
type RequestSpec struct { // For the addon version. Version string `json:"version,omitempty"` // Cluster ID. ClusterID string `json:"clusterID" required:"true"` // Addon Template Name. AddonTemplateName string `json:"addonTemplateName" required:"true"` // Addon Parameters Values Values `json:"values" required:"true"` }
Specifications to create an addon
type Spec ¶
type Spec struct { // For the addon version. Version string `json:"version"` // Cluster ID. ClusterID string `json:"clusterID"` // Addon Template Name. AddonTemplateName string `json:"addonTemplateName"` // Addon Template Type. AddonTemplateType string `json:"addonTemplateType"` // Addon Template Labels. AddonTemplateLables []string `json:"addonTemplateLables"` // Addon Description. Description string `json:"description"` // Addon Parameters Values Values `json:"values"` }
Specifications to create an addon
type Status ¶
type Status struct { //The state of the addon Status string `json:"status"` //Reasons for the addon to become current Reason string `json:"reason"` //Error Message Message string `json:"message"` //The target versions of the addon TargetVersions []string `json:"targetVersions"` //Current version of the addon CurrentVersion Versions `json:"currentVersion"` }
type SupportVersions ¶
type UpdataResult ¶
type UpdataResult struct {
// contains filtered or unexported fields
}
UpdateResult represents the result of an update operation. Call its Extract method to interpret it as an Addon.
func (UpdataResult) ExtractAddon ¶
ExtractAddon is a function that accepts a ListOpts struct, which allows you to filter and sort the returned collection for greater efficiency.
type UpdateAnnotations ¶
type UpdateAnnotations struct {
AddonUpgradeType string `json:"addon.upgrade/type" required:"true"`
}
type UpdateMetadata ¶
type UpdateMetadata struct {
Anno UpdateAnnotations `json:"annotations" required:"true"`
}
type UpdateOpts ¶
type UpdateOpts struct { // API type, fixed value Addon Kind string `json:"kind" required:"true"` // API version, fixed value v3 ApiVersion string `json:"apiVersion" required:"true"` // Metadata required to create an addon Metadata UpdateMetadata `json:"metadata" required:"true"` // specifications to create an addon Spec RequestSpec `json:"spec" required:"true"` }
func (UpdateOpts) ToAddonUpdateMap ¶
func (opts UpdateOpts) ToAddonUpdateMap() (map[string]interface{}, error)
ToAddonUpdateMap builds a update request body from UpdateOpts.
type UpdateOptsBuilder ¶
UpdateOptsBuilder allows extensions to add additional parameters to the Update request.
type UpdateResult ¶
type UpdateResult struct {
// contains filtered or unexported fields
}
UpdateResult represents the result of a create operation. Call its Extract method to interpret it as an Addon.
func Update ¶
func Update(c *golangsdk.ServiceClient, opts UpdateOptsBuilder, id, cluster_id string) (r UpdateResult)
Update accepts a UpdateOpts struct and uses the values to update the addon.
func (UpdateResult) ExtractAddon ¶
ExtractAddon is a function that accepts a ListOpts struct, which allows you to filter and sort the returned collection for greater efficiency.
type Versions ¶
type Versions struct { // Version of the addon Version string `json:"version"` // The installing param of the addon Input map[string]interface{} `json:"input"` // Wether it is a stable version Stable bool `json:"stable"` // Translate information Translate map[string]interface{} `json:"translate"` // Supported versions SupportVersions []SupportVersions `json:"supportVersions"` }