openapi

package
v0.0.0-...-987a61a Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 21, 2022 License: Apache-2.0 Imports: 22 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// ContextBasicAuth takes BasicAuth as authentication for the request.
	ContextBasicAuth = contextKey("basic")

	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

	// ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
	ContextHttpSignatureAuth = contextKey("httpsignature")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type APIClient

type APIClient struct {
	DefaultApi *DefaultApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Devtron Labs API v1.0.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type ApiOrchestratorAppListGetRequest

type ApiOrchestratorAppListGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorAppListGetRequest) ClusterIds

cluster ids

func (ApiOrchestratorAppListGetRequest) EnvironmentIds

func (r ApiOrchestratorAppListGetRequest) EnvironmentIds(environmentIds []int32) ApiOrchestratorAppListGetRequest

environment ids

func (ApiOrchestratorAppListGetRequest) Execute

func (ApiOrchestratorAppListGetRequest) Offset

offser

func (ApiOrchestratorAppListGetRequest) ProjectIds

project ids

func (ApiOrchestratorAppListGetRequest) Size

size

func (ApiOrchestratorAppListGetRequest) SortBy

sortBy

func (ApiOrchestratorAppListGetRequest) SortOrder

sortOrder

type ApiOrchestratorAppStoreInstalledAppsGetRequest

type ApiOrchestratorAppStoreInstalledAppsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorAppStoreInstalledAppsGetRequest) AppStoreName

app store name

func (ApiOrchestratorAppStoreInstalledAppsGetRequest) ChartRepoIds

size

func (ApiOrchestratorAppStoreInstalledAppsGetRequest) ClusterIds

cluster ids

func (ApiOrchestratorAppStoreInstalledAppsGetRequest) EnvIds

environment ids

func (ApiOrchestratorAppStoreInstalledAppsGetRequest) Execute

func (ApiOrchestratorAppStoreInstalledAppsGetRequest) Offset

offser

func (ApiOrchestratorAppStoreInstalledAppsGetRequest) OnlyDeprecated

deprecated flag

func (ApiOrchestratorAppStoreInstalledAppsGetRequest) Size

size

func (ApiOrchestratorAppStoreInstalledAppsGetRequest) SortBy

app name

type ApiOrchestratorApplicationClusterEnvDetailsGetRequest

type ApiOrchestratorApplicationClusterEnvDetailsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorApplicationClusterEnvDetailsGetRequest) Execute

type ApiOrchestratorApplicationDeleteDeleteRequest

type ApiOrchestratorApplicationDeleteDeleteRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorApplicationDeleteDeleteRequest) AppId

application Id

func (ApiOrchestratorApplicationDeleteDeleteRequest) Execute

type ApiOrchestratorApplicationDeploymentDetailGetRequest

type ApiOrchestratorApplicationDeploymentDetailGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorApplicationDeploymentDetailGetRequest) AppId

project ids

func (ApiOrchestratorApplicationDeploymentDetailGetRequest) Execute

func (ApiOrchestratorApplicationDeploymentDetailGetRequest) Version

deployment version

type ApiOrchestratorApplicationDeploymentHistoryGetRequest

type ApiOrchestratorApplicationDeploymentHistoryGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorApplicationDeploymentHistoryGetRequest) AppId

project ids

func (ApiOrchestratorApplicationDeploymentHistoryGetRequest) Execute

type ApiOrchestratorApplicationDesiredManifestGetRequest

type ApiOrchestratorApplicationDesiredManifestGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorApplicationDesiredManifestGetRequest) DesiredManifestRequest

func (ApiOrchestratorApplicationDesiredManifestGetRequest) Execute

type ApiOrchestratorApplicationHibernatePostRequest

type ApiOrchestratorApplicationHibernatePostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorApplicationHibernatePostRequest) Execute

func (ApiOrchestratorApplicationHibernatePostRequest) HibernateRequest

type ApiOrchestratorApplicationPostRequest

type ApiOrchestratorApplicationPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorApplicationPostRequest) Execute

func (ApiOrchestratorApplicationPostRequest) HelmAppListRequest

json as request body

type ApiOrchestratorApplicationReleaseInfoGetRequest

type ApiOrchestratorApplicationReleaseInfoGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorApplicationReleaseInfoGetRequest) AppId

project ids

func (ApiOrchestratorApplicationReleaseInfoGetRequest) Execute

type ApiOrchestratorApplicationUnhibernatePostRequest

type ApiOrchestratorApplicationUnhibernatePostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorApplicationUnhibernatePostRequest) Execute

func (ApiOrchestratorApplicationUnhibernatePostRequest) HibernateRequest

type ApiOrchestratorApplicationUpdatePutRequest

type ApiOrchestratorApplicationUpdatePutRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorApplicationUpdatePutRequest) Execute

func (ApiOrchestratorApplicationUpdatePutRequest) UpdateReleaseRequest

type ApiOrchestratorApplicationUpdateWithChartLinkingPutRequest

type ApiOrchestratorApplicationUpdateWithChartLinkingPutRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorApplicationUpdateWithChartLinkingPutRequest) Execute

func (ApiOrchestratorApplicationUpdateWithChartLinkingPutRequest) UpdateReleaseWithChartLinkingRequest

type AppEnvironmentDetail

type AppEnvironmentDetail struct {
	// name of the environemnt
	EnvironmentName *string `json:"environmentName,omitempty"`
	// id in which app is deployed
	EnvironmentId *int32 `json:"environmentId,omitempty"`
	// namespace corresponding to the environemnt
	Namespace *string `json:"namespace,omitempty"`
	// if given environemnt is marked as production or not, nullable
	IsPrduction *bool `json:"isPrduction,omitempty"`
	// cluster corresponding to the environemt where application is deployed
	ClusterName *string `json:"clusterName,omitempty"`
	// clusterId corresponding to the environemt where application is deployed
	ClusterId *int32 `json:"clusterId,omitempty"`
}

AppEnvironmentDetail struct for AppEnvironmentDetail

func NewAppEnvironmentDetail

func NewAppEnvironmentDetail() *AppEnvironmentDetail

NewAppEnvironmentDetail instantiates a new AppEnvironmentDetail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAppEnvironmentDetailWithDefaults

func NewAppEnvironmentDetailWithDefaults() *AppEnvironmentDetail

NewAppEnvironmentDetailWithDefaults instantiates a new AppEnvironmentDetail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AppEnvironmentDetail) GetClusterId

func (o *AppEnvironmentDetail) GetClusterId() int32

GetClusterId returns the ClusterId field value if set, zero value otherwise.

func (*AppEnvironmentDetail) GetClusterIdOk

func (o *AppEnvironmentDetail) GetClusterIdOk() (*int32, bool)

GetClusterIdOk returns a tuple with the ClusterId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppEnvironmentDetail) GetClusterName

func (o *AppEnvironmentDetail) GetClusterName() string

GetClusterName returns the ClusterName field value if set, zero value otherwise.

func (*AppEnvironmentDetail) GetClusterNameOk

func (o *AppEnvironmentDetail) GetClusterNameOk() (*string, bool)

GetClusterNameOk returns a tuple with the ClusterName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppEnvironmentDetail) GetEnvironmentId

func (o *AppEnvironmentDetail) GetEnvironmentId() int32

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*AppEnvironmentDetail) GetEnvironmentIdOk

func (o *AppEnvironmentDetail) GetEnvironmentIdOk() (*int32, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppEnvironmentDetail) GetEnvironmentName

func (o *AppEnvironmentDetail) GetEnvironmentName() string

GetEnvironmentName returns the EnvironmentName field value if set, zero value otherwise.

func (*AppEnvironmentDetail) GetEnvironmentNameOk

func (o *AppEnvironmentDetail) GetEnvironmentNameOk() (*string, bool)

GetEnvironmentNameOk returns a tuple with the EnvironmentName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppEnvironmentDetail) GetIsPrduction

func (o *AppEnvironmentDetail) GetIsPrduction() bool

GetIsPrduction returns the IsPrduction field value if set, zero value otherwise.

func (*AppEnvironmentDetail) GetIsPrductionOk

func (o *AppEnvironmentDetail) GetIsPrductionOk() (*bool, bool)

GetIsPrductionOk returns a tuple with the IsPrduction field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppEnvironmentDetail) GetNamespace

func (o *AppEnvironmentDetail) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*AppEnvironmentDetail) GetNamespaceOk

func (o *AppEnvironmentDetail) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppEnvironmentDetail) HasClusterId

func (o *AppEnvironmentDetail) HasClusterId() bool

HasClusterId returns a boolean if a field has been set.

func (*AppEnvironmentDetail) HasClusterName

func (o *AppEnvironmentDetail) HasClusterName() bool

HasClusterName returns a boolean if a field has been set.

func (*AppEnvironmentDetail) HasEnvironmentId

func (o *AppEnvironmentDetail) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*AppEnvironmentDetail) HasEnvironmentName

func (o *AppEnvironmentDetail) HasEnvironmentName() bool

HasEnvironmentName returns a boolean if a field has been set.

func (*AppEnvironmentDetail) HasIsPrduction

func (o *AppEnvironmentDetail) HasIsPrduction() bool

HasIsPrduction returns a boolean if a field has been set.

func (*AppEnvironmentDetail) HasNamespace

func (o *AppEnvironmentDetail) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (AppEnvironmentDetail) MarshalJSON

func (o AppEnvironmentDetail) MarshalJSON() ([]byte, error)

func (*AppEnvironmentDetail) SetClusterId

func (o *AppEnvironmentDetail) SetClusterId(v int32)

SetClusterId gets a reference to the given int32 and assigns it to the ClusterId field.

func (*AppEnvironmentDetail) SetClusterName

func (o *AppEnvironmentDetail) SetClusterName(v string)

SetClusterName gets a reference to the given string and assigns it to the ClusterName field.

func (*AppEnvironmentDetail) SetEnvironmentId

func (o *AppEnvironmentDetail) SetEnvironmentId(v int32)

SetEnvironmentId gets a reference to the given int32 and assigns it to the EnvironmentId field.

func (*AppEnvironmentDetail) SetEnvironmentName

func (o *AppEnvironmentDetail) SetEnvironmentName(v string)

SetEnvironmentName gets a reference to the given string and assigns it to the EnvironmentName field.

func (*AppEnvironmentDetail) SetIsPrduction

func (o *AppEnvironmentDetail) SetIsPrduction(v bool)

SetIsPrduction gets a reference to the given bool and assigns it to the IsPrduction field.

func (*AppEnvironmentDetail) SetNamespace

func (o *AppEnvironmentDetail) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

type AppEnvironmentDetailAllOf

type AppEnvironmentDetailAllOf struct {
	// cluster corresponding to the environemt where application is deployed
	ClusterName *string `json:"clusterName,omitempty"`
	// clusterId corresponding to the environemt where application is deployed
	ClusterId *int32 `json:"clusterId,omitempty"`
}

AppEnvironmentDetailAllOf struct for AppEnvironmentDetailAllOf

func NewAppEnvironmentDetailAllOf

func NewAppEnvironmentDetailAllOf() *AppEnvironmentDetailAllOf

NewAppEnvironmentDetailAllOf instantiates a new AppEnvironmentDetailAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAppEnvironmentDetailAllOfWithDefaults

func NewAppEnvironmentDetailAllOfWithDefaults() *AppEnvironmentDetailAllOf

NewAppEnvironmentDetailAllOfWithDefaults instantiates a new AppEnvironmentDetailAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AppEnvironmentDetailAllOf) GetClusterId

func (o *AppEnvironmentDetailAllOf) GetClusterId() int32

GetClusterId returns the ClusterId field value if set, zero value otherwise.

func (*AppEnvironmentDetailAllOf) GetClusterIdOk

func (o *AppEnvironmentDetailAllOf) GetClusterIdOk() (*int32, bool)

GetClusterIdOk returns a tuple with the ClusterId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppEnvironmentDetailAllOf) GetClusterName

func (o *AppEnvironmentDetailAllOf) GetClusterName() string

GetClusterName returns the ClusterName field value if set, zero value otherwise.

func (*AppEnvironmentDetailAllOf) GetClusterNameOk

func (o *AppEnvironmentDetailAllOf) GetClusterNameOk() (*string, bool)

GetClusterNameOk returns a tuple with the ClusterName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppEnvironmentDetailAllOf) HasClusterId

func (o *AppEnvironmentDetailAllOf) HasClusterId() bool

HasClusterId returns a boolean if a field has been set.

func (*AppEnvironmentDetailAllOf) HasClusterName

func (o *AppEnvironmentDetailAllOf) HasClusterName() bool

HasClusterName returns a boolean if a field has been set.

func (AppEnvironmentDetailAllOf) MarshalJSON

func (o AppEnvironmentDetailAllOf) MarshalJSON() ([]byte, error)

func (*AppEnvironmentDetailAllOf) SetClusterId

func (o *AppEnvironmentDetailAllOf) SetClusterId(v int32)

SetClusterId gets a reference to the given int32 and assigns it to the ClusterId field.

func (*AppEnvironmentDetailAllOf) SetClusterName

func (o *AppEnvironmentDetailAllOf) SetClusterName(v string)

SetClusterName gets a reference to the given string and assigns it to the ClusterName field.

type AppList

type AppList struct {
	// clusters to which result corresponds
	ClusterIds *[]int32 `json:"clusterIds,omitempty"`
	// application type inside the array
	ApplicationType *string `json:"applicationType,omitempty"`
	// if data fetch for that cluster produced error
	Errored *bool `json:"errored,omitempty"`
	// error msg if client failed to fetch
	ErrorMsg *string `json:"errorMsg,omitempty"`
	// all helm app list, EA+ devtronapp
	HelmApps *[]HelmApp `json:"helmApps,omitempty"`
	// all helm app list, EA+ devtronapp
	DevtronApps *[]DevtronApp `json:"devtronApps,omitempty"`
}

AppList struct for AppList

func NewAppList

func NewAppList() *AppList

NewAppList instantiates a new AppList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAppListWithDefaults

func NewAppListWithDefaults() *AppList

NewAppListWithDefaults instantiates a new AppList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AppList) GetApplicationType

func (o *AppList) GetApplicationType() string

GetApplicationType returns the ApplicationType field value if set, zero value otherwise.

func (*AppList) GetApplicationTypeOk

func (o *AppList) GetApplicationTypeOk() (*string, bool)

GetApplicationTypeOk returns a tuple with the ApplicationType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppList) GetClusterIds

func (o *AppList) GetClusterIds() []int32

GetClusterIds returns the ClusterIds field value if set, zero value otherwise.

func (*AppList) GetClusterIdsOk

func (o *AppList) GetClusterIdsOk() (*[]int32, bool)

GetClusterIdsOk returns a tuple with the ClusterIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppList) GetDevtronApps

func (o *AppList) GetDevtronApps() []DevtronApp

GetDevtronApps returns the DevtronApps field value if set, zero value otherwise.

func (*AppList) GetDevtronAppsOk

func (o *AppList) GetDevtronAppsOk() (*[]DevtronApp, bool)

GetDevtronAppsOk returns a tuple with the DevtronApps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppList) GetErrorMsg

func (o *AppList) GetErrorMsg() string

GetErrorMsg returns the ErrorMsg field value if set, zero value otherwise.

func (*AppList) GetErrorMsgOk

func (o *AppList) GetErrorMsgOk() (*string, bool)

GetErrorMsgOk returns a tuple with the ErrorMsg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppList) GetErrored

func (o *AppList) GetErrored() bool

GetErrored returns the Errored field value if set, zero value otherwise.

func (*AppList) GetErroredOk

func (o *AppList) GetErroredOk() (*bool, bool)

GetErroredOk returns a tuple with the Errored field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppList) GetHelmApps

func (o *AppList) GetHelmApps() []HelmApp

GetHelmApps returns the HelmApps field value if set, zero value otherwise.

func (*AppList) GetHelmAppsOk

func (o *AppList) GetHelmAppsOk() (*[]HelmApp, bool)

GetHelmAppsOk returns a tuple with the HelmApps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppList) HasApplicationType

func (o *AppList) HasApplicationType() bool

HasApplicationType returns a boolean if a field has been set.

func (*AppList) HasClusterIds

func (o *AppList) HasClusterIds() bool

HasClusterIds returns a boolean if a field has been set.

func (*AppList) HasDevtronApps

func (o *AppList) HasDevtronApps() bool

HasDevtronApps returns a boolean if a field has been set.

func (*AppList) HasErrorMsg

func (o *AppList) HasErrorMsg() bool

HasErrorMsg returns a boolean if a field has been set.

func (*AppList) HasErrored

func (o *AppList) HasErrored() bool

HasErrored returns a boolean if a field has been set.

func (*AppList) HasHelmApps

func (o *AppList) HasHelmApps() bool

HasHelmApps returns a boolean if a field has been set.

func (AppList) MarshalJSON

func (o AppList) MarshalJSON() ([]byte, error)

func (*AppList) SetApplicationType

func (o *AppList) SetApplicationType(v string)

SetApplicationType gets a reference to the given string and assigns it to the ApplicationType field.

func (*AppList) SetClusterIds

func (o *AppList) SetClusterIds(v []int32)

SetClusterIds gets a reference to the given []int32 and assigns it to the ClusterIds field.

func (*AppList) SetDevtronApps

func (o *AppList) SetDevtronApps(v []DevtronApp)

SetDevtronApps gets a reference to the given []DevtronApp and assigns it to the DevtronApps field.

func (*AppList) SetErrorMsg

func (o *AppList) SetErrorMsg(v string)

SetErrorMsg gets a reference to the given string and assigns it to the ErrorMsg field.

func (*AppList) SetErrored

func (o *AppList) SetErrored(v bool)

SetErrored gets a reference to the given bool and assigns it to the Errored field.

func (*AppList) SetHelmApps

func (o *AppList) SetHelmApps(v []HelmApp)

SetHelmApps gets a reference to the given []HelmApp and assigns it to the HelmApps field.

type AppListRequest

type AppListRequest struct {
	// project ids
	ProjectIds *[]int64 `json:"projectIds,omitempty"`
	// cluster ids
	ClusterIds *[]int64 `json:"clusterIds,omitempty"`
	// namespace ID
	Namespaces *[]string `json:"namespaces,omitempty"`
	// environemnt ids
	EnvironmentIds *[]int64 `json:"environmentIds,omitempty"`
}

AppListRequest struct for AppListRequest

func NewAppListRequest

func NewAppListRequest() *AppListRequest

NewAppListRequest instantiates a new AppListRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAppListRequestWithDefaults

func NewAppListRequestWithDefaults() *AppListRequest

NewAppListRequestWithDefaults instantiates a new AppListRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AppListRequest) GetClusterIds

func (o *AppListRequest) GetClusterIds() []int64

GetClusterIds returns the ClusterIds field value if set, zero value otherwise.

func (*AppListRequest) GetClusterIdsOk

func (o *AppListRequest) GetClusterIdsOk() (*[]int64, bool)

GetClusterIdsOk returns a tuple with the ClusterIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppListRequest) GetEnvironmentIds

func (o *AppListRequest) GetEnvironmentIds() []int64

GetEnvironmentIds returns the EnvironmentIds field value if set, zero value otherwise.

func (*AppListRequest) GetEnvironmentIdsOk

func (o *AppListRequest) GetEnvironmentIdsOk() (*[]int64, bool)

GetEnvironmentIdsOk returns a tuple with the EnvironmentIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppListRequest) GetNamespaces

func (o *AppListRequest) GetNamespaces() []string

GetNamespaces returns the Namespaces field value if set, zero value otherwise.

func (*AppListRequest) GetNamespacesOk

func (o *AppListRequest) GetNamespacesOk() (*[]string, bool)

GetNamespacesOk returns a tuple with the Namespaces field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppListRequest) GetProjectIds

func (o *AppListRequest) GetProjectIds() []int64

GetProjectIds returns the ProjectIds field value if set, zero value otherwise.

func (*AppListRequest) GetProjectIdsOk

func (o *AppListRequest) GetProjectIdsOk() (*[]int64, bool)

GetProjectIdsOk returns a tuple with the ProjectIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppListRequest) HasClusterIds

func (o *AppListRequest) HasClusterIds() bool

HasClusterIds returns a boolean if a field has been set.

func (*AppListRequest) HasEnvironmentIds

func (o *AppListRequest) HasEnvironmentIds() bool

HasEnvironmentIds returns a boolean if a field has been set.

func (*AppListRequest) HasNamespaces

func (o *AppListRequest) HasNamespaces() bool

HasNamespaces returns a boolean if a field has been set.

func (*AppListRequest) HasProjectIds

func (o *AppListRequest) HasProjectIds() bool

HasProjectIds returns a boolean if a field has been set.

func (AppListRequest) MarshalJSON

func (o AppListRequest) MarshalJSON() ([]byte, error)

func (*AppListRequest) SetClusterIds

func (o *AppListRequest) SetClusterIds(v []int64)

SetClusterIds gets a reference to the given []int64 and assigns it to the ClusterIds field.

func (*AppListRequest) SetEnvironmentIds

func (o *AppListRequest) SetEnvironmentIds(v []int64)

SetEnvironmentIds gets a reference to the given []int64 and assigns it to the EnvironmentIds field.

func (*AppListRequest) SetNamespaces

func (o *AppListRequest) SetNamespaces(v []string)

SetNamespaces gets a reference to the given []string and assigns it to the Namespaces field.

func (*AppListRequest) SetProjectIds

func (o *AppListRequest) SetProjectIds(v []int64)

SetProjectIds gets a reference to the given []int64 and assigns it to the ProjectIds field.

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type ChartMetadata

type ChartMetadata struct {
	// name of the chart
	ChartName *string `json:"chartName,omitempty"`
	// version of the helm chart
	ChartVersion *string `json:"chartVersion,omitempty"`
	// chart home
	Home *string `json:"home,omitempty"`
	// source of the helm chart
	Sources *[]string `json:"sources,omitempty"`
	// description of the helm chart
	Description *string `json:"description,omitempty"`
}

ChartMetadata struct for ChartMetadata

func NewChartMetadata

func NewChartMetadata() *ChartMetadata

NewChartMetadata instantiates a new ChartMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewChartMetadataWithDefaults

func NewChartMetadataWithDefaults() *ChartMetadata

NewChartMetadataWithDefaults instantiates a new ChartMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ChartMetadata) GetChartName

func (o *ChartMetadata) GetChartName() string

GetChartName returns the ChartName field value if set, zero value otherwise.

func (*ChartMetadata) GetChartNameOk

func (o *ChartMetadata) GetChartNameOk() (*string, bool)

GetChartNameOk returns a tuple with the ChartName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ChartMetadata) GetChartVersion

func (o *ChartMetadata) GetChartVersion() string

GetChartVersion returns the ChartVersion field value if set, zero value otherwise.

func (*ChartMetadata) GetChartVersionOk

func (o *ChartMetadata) GetChartVersionOk() (*string, bool)

GetChartVersionOk returns a tuple with the ChartVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ChartMetadata) GetDescription

func (o *ChartMetadata) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ChartMetadata) GetDescriptionOk

func (o *ChartMetadata) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ChartMetadata) GetHome

func (o *ChartMetadata) GetHome() string

GetHome returns the Home field value if set, zero value otherwise.

func (*ChartMetadata) GetHomeOk

func (o *ChartMetadata) GetHomeOk() (*string, bool)

GetHomeOk returns a tuple with the Home field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ChartMetadata) GetSources

func (o *ChartMetadata) GetSources() []string

GetSources returns the Sources field value if set, zero value otherwise.

func (*ChartMetadata) GetSourcesOk

func (o *ChartMetadata) GetSourcesOk() (*[]string, bool)

GetSourcesOk returns a tuple with the Sources field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ChartMetadata) HasChartName

func (o *ChartMetadata) HasChartName() bool

HasChartName returns a boolean if a field has been set.

func (*ChartMetadata) HasChartVersion

func (o *ChartMetadata) HasChartVersion() bool

HasChartVersion returns a boolean if a field has been set.

func (*ChartMetadata) HasDescription

func (o *ChartMetadata) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ChartMetadata) HasHome

func (o *ChartMetadata) HasHome() bool

HasHome returns a boolean if a field has been set.

func (*ChartMetadata) HasSources

func (o *ChartMetadata) HasSources() bool

HasSources returns a boolean if a field has been set.

func (ChartMetadata) MarshalJSON

func (o ChartMetadata) MarshalJSON() ([]byte, error)

func (*ChartMetadata) SetChartName

func (o *ChartMetadata) SetChartName(v string)

SetChartName gets a reference to the given string and assigns it to the ChartName field.

func (*ChartMetadata) SetChartVersion

func (o *ChartMetadata) SetChartVersion(v string)

SetChartVersion gets a reference to the given string and assigns it to the ChartVersion field.

func (*ChartMetadata) SetDescription

func (o *ChartMetadata) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ChartMetadata) SetHome

func (o *ChartMetadata) SetHome(v string)

SetHome gets a reference to the given string and assigns it to the Home field.

func (*ChartMetadata) SetSources

func (o *ChartMetadata) SetSources(v []string)

SetSources gets a reference to the given []string and assigns it to the Sources field.

type ClusterEnvironmentDetail

type ClusterEnvironmentDetail struct {
	// name of the cluster
	ClusterName *string `json:"clusterName,omitempty"`
	// id of the cluster
	ClusterID *int32 `json:"clusterID,omitempty"`
	// environments in that cluster
	Environments *[]EnvironmentDetail `json:"environments,omitempty"`
}

ClusterEnvironmentDetail struct for ClusterEnvironmentDetail

func NewClusterEnvironmentDetail

func NewClusterEnvironmentDetail() *ClusterEnvironmentDetail

NewClusterEnvironmentDetail instantiates a new ClusterEnvironmentDetail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewClusterEnvironmentDetailWithDefaults

func NewClusterEnvironmentDetailWithDefaults() *ClusterEnvironmentDetail

NewClusterEnvironmentDetailWithDefaults instantiates a new ClusterEnvironmentDetail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ClusterEnvironmentDetail) GetClusterID

func (o *ClusterEnvironmentDetail) GetClusterID() int32

GetClusterID returns the ClusterID field value if set, zero value otherwise.

func (*ClusterEnvironmentDetail) GetClusterIDOk

func (o *ClusterEnvironmentDetail) GetClusterIDOk() (*int32, bool)

GetClusterIDOk returns a tuple with the ClusterID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ClusterEnvironmentDetail) GetClusterName

func (o *ClusterEnvironmentDetail) GetClusterName() string

GetClusterName returns the ClusterName field value if set, zero value otherwise.

func (*ClusterEnvironmentDetail) GetClusterNameOk

func (o *ClusterEnvironmentDetail) GetClusterNameOk() (*string, bool)

GetClusterNameOk returns a tuple with the ClusterName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ClusterEnvironmentDetail) GetEnvironments

func (o *ClusterEnvironmentDetail) GetEnvironments() []EnvironmentDetail

GetEnvironments returns the Environments field value if set, zero value otherwise.

func (*ClusterEnvironmentDetail) GetEnvironmentsOk

func (o *ClusterEnvironmentDetail) GetEnvironmentsOk() (*[]EnvironmentDetail, bool)

GetEnvironmentsOk returns a tuple with the Environments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ClusterEnvironmentDetail) HasClusterID

func (o *ClusterEnvironmentDetail) HasClusterID() bool

HasClusterID returns a boolean if a field has been set.

func (*ClusterEnvironmentDetail) HasClusterName

func (o *ClusterEnvironmentDetail) HasClusterName() bool

HasClusterName returns a boolean if a field has been set.

func (*ClusterEnvironmentDetail) HasEnvironments

func (o *ClusterEnvironmentDetail) HasEnvironments() bool

HasEnvironments returns a boolean if a field has been set.

func (ClusterEnvironmentDetail) MarshalJSON

func (o ClusterEnvironmentDetail) MarshalJSON() ([]byte, error)

func (*ClusterEnvironmentDetail) SetClusterID

func (o *ClusterEnvironmentDetail) SetClusterID(v int32)

SetClusterID gets a reference to the given int32 and assigns it to the ClusterID field.

func (*ClusterEnvironmentDetail) SetClusterName

func (o *ClusterEnvironmentDetail) SetClusterName(v string)

SetClusterName gets a reference to the given string and assigns it to the ClusterName field.

func (*ClusterEnvironmentDetail) SetEnvironments

func (o *ClusterEnvironmentDetail) SetEnvironments(v []EnvironmentDetail)

SetEnvironments gets a reference to the given []EnvironmentDetail and assigns it to the Environments field.

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type DefaultApiService

type DefaultApiService service

DefaultApiService DefaultApi service

func (*DefaultApiService) OrchestratorAppListGet

func (a *DefaultApiService) OrchestratorAppListGet(ctx _context.Context) ApiOrchestratorAppListGetRequest

OrchestratorAppListGet Method for OrchestratorAppListGet

this api gives all template-cron-job applications.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorAppListGetRequest

func (*DefaultApiService) OrchestratorAppListGetExecute

func (a *DefaultApiService) OrchestratorAppListGetExecute(r ApiOrchestratorAppListGetRequest) (AppList, *_nethttp.Response, error)

Execute executes the request

@return AppList

func (*DefaultApiService) OrchestratorAppStoreInstalledAppsGet

func (a *DefaultApiService) OrchestratorAppStoreInstalledAppsGet(ctx _context.Context) ApiOrchestratorAppStoreInstalledAppsGetRequest

OrchestratorAppStoreInstalledAppsGet Method for OrchestratorAppStoreInstalledAppsGet

this api gives all chart-store applications.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorAppStoreInstalledAppsGetRequest

func (*DefaultApiService) OrchestratorAppStoreInstalledAppsGetExecute

func (a *DefaultApiService) OrchestratorAppStoreInstalledAppsGetExecute(r ApiOrchestratorAppStoreInstalledAppsGetRequest) (AppList, *_nethttp.Response, error)

Execute executes the request

@return AppList

func (*DefaultApiService) OrchestratorApplicationClusterEnvDetailsGet

func (a *DefaultApiService) OrchestratorApplicationClusterEnvDetailsGet(ctx _context.Context) ApiOrchestratorApplicationClusterEnvDetailsGetRequest

OrchestratorApplicationClusterEnvDetailsGet Method for OrchestratorApplicationClusterEnvDetailsGet

returns cluster environment namespace mappings

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorApplicationClusterEnvDetailsGetRequest

func (*DefaultApiService) OrchestratorApplicationClusterEnvDetailsGetExecute

func (a *DefaultApiService) OrchestratorApplicationClusterEnvDetailsGetExecute(r ApiOrchestratorApplicationClusterEnvDetailsGetRequest) ([]ClusterEnvironmentDetail, *_nethttp.Response, error)

Execute executes the request

@return []ClusterEnvironmentDetail

func (*DefaultApiService) OrchestratorApplicationDeleteDelete

func (a *DefaultApiService) OrchestratorApplicationDeleteDelete(ctx _context.Context) ApiOrchestratorApplicationDeleteDeleteRequest

OrchestratorApplicationDeleteDelete Method for OrchestratorApplicationDeleteDelete

delete application

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorApplicationDeleteDeleteRequest

func (*DefaultApiService) OrchestratorApplicationDeleteDeleteExecute

Execute executes the request

@return UninstallReleaseResponse

func (*DefaultApiService) OrchestratorApplicationDeploymentDetailGet

func (a *DefaultApiService) OrchestratorApplicationDeploymentDetailGet(ctx _context.Context) ApiOrchestratorApplicationDeploymentDetailGetRequest

OrchestratorApplicationDeploymentDetailGet Method for OrchestratorApplicationDeploymentDetailGet

deployment details of helm app

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorApplicationDeploymentDetailGetRequest

func (*DefaultApiService) OrchestratorApplicationDeploymentDetailGetExecute

Execute executes the request

@return HelmAppDeploymentManifestDetail

func (*DefaultApiService) OrchestratorApplicationDeploymentHistoryGet

func (a *DefaultApiService) OrchestratorApplicationDeploymentHistoryGet(ctx _context.Context) ApiOrchestratorApplicationDeploymentHistoryGetRequest

OrchestratorApplicationDeploymentHistoryGet Method for OrchestratorApplicationDeploymentHistoryGet

deployment history of helm app

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorApplicationDeploymentHistoryGetRequest

func (*DefaultApiService) OrchestratorApplicationDeploymentHistoryGetExecute

func (a *DefaultApiService) OrchestratorApplicationDeploymentHistoryGetExecute(r ApiOrchestratorApplicationDeploymentHistoryGetRequest) ([]HelmAppDeploymentDetail, *_nethttp.Response, error)

Execute executes the request

@return []HelmAppDeploymentDetail

func (*DefaultApiService) OrchestratorApplicationDesiredManifestGet

func (a *DefaultApiService) OrchestratorApplicationDesiredManifestGet(ctx _context.Context) ApiOrchestratorApplicationDesiredManifestGetRequest

OrchestratorApplicationDesiredManifestGet Method for OrchestratorApplicationDesiredManifestGet

get desired manifest for an object

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorApplicationDesiredManifestGetRequest

func (*DefaultApiService) OrchestratorApplicationDesiredManifestGetExecute

func (a *DefaultApiService) OrchestratorApplicationDesiredManifestGetExecute(r ApiOrchestratorApplicationDesiredManifestGetRequest) ([]DesiredManifestResponse, *_nethttp.Response, error)

Execute executes the request

@return []DesiredManifestResponse

func (*DefaultApiService) OrchestratorApplicationHibernatePost

func (a *DefaultApiService) OrchestratorApplicationHibernatePost(ctx _context.Context) ApiOrchestratorApplicationHibernatePostRequest

OrchestratorApplicationHibernatePost Method for OrchestratorApplicationHibernatePost

hibernate the app

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorApplicationHibernatePostRequest

func (*DefaultApiService) OrchestratorApplicationHibernatePostExecute

func (a *DefaultApiService) OrchestratorApplicationHibernatePostExecute(r ApiOrchestratorApplicationHibernatePostRequest) ([]HibernateStatus, *_nethttp.Response, error)

Execute executes the request

@return []HibernateStatus

func (*DefaultApiService) OrchestratorApplicationPost

func (a *DefaultApiService) OrchestratorApplicationPost(ctx _context.Context) ApiOrchestratorApplicationPostRequest

OrchestratorApplicationPost Method for OrchestratorApplicationPost

this api gives all external application+ template-cron-job helm chart applications.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorApplicationPostRequest

func (*DefaultApiService) OrchestratorApplicationPostExecute

func (a *DefaultApiService) OrchestratorApplicationPostExecute(r ApiOrchestratorApplicationPostRequest) (AppList, *_nethttp.Response, error)

Execute executes the request

@return AppList

func (*DefaultApiService) OrchestratorApplicationReleaseInfoGet

func (a *DefaultApiService) OrchestratorApplicationReleaseInfoGet(ctx _context.Context) ApiOrchestratorApplicationReleaseInfoGetRequest

OrchestratorApplicationReleaseInfoGet Method for OrchestratorApplicationReleaseInfoGet

deployment values.yaml/release-info

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorApplicationReleaseInfoGetRequest

func (*DefaultApiService) OrchestratorApplicationReleaseInfoGetExecute

Execute executes the request

@return ReleaseAndInstalledAppInfo

func (*DefaultApiService) OrchestratorApplicationUnhibernatePost

func (a *DefaultApiService) OrchestratorApplicationUnhibernatePost(ctx _context.Context) ApiOrchestratorApplicationUnhibernatePostRequest

OrchestratorApplicationUnhibernatePost Method for OrchestratorApplicationUnhibernatePost

un hibernate the app

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorApplicationUnhibernatePostRequest

func (*DefaultApiService) OrchestratorApplicationUnhibernatePostExecute

func (a *DefaultApiService) OrchestratorApplicationUnhibernatePostExecute(r ApiOrchestratorApplicationUnhibernatePostRequest) ([]HibernateStatus, *_nethttp.Response, error)

Execute executes the request

@return []HibernateStatus

func (*DefaultApiService) OrchestratorApplicationUpdatePut

func (a *DefaultApiService) OrchestratorApplicationUpdatePut(ctx _context.Context) ApiOrchestratorApplicationUpdatePutRequest

OrchestratorApplicationUpdatePut Method for OrchestratorApplicationUpdatePut

update the application

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorApplicationUpdatePutRequest

func (*DefaultApiService) OrchestratorApplicationUpdatePutExecute

Execute executes the request

@return []UpdateReleaseResponse

func (*DefaultApiService) OrchestratorApplicationUpdateWithChartLinkingPut

func (a *DefaultApiService) OrchestratorApplicationUpdateWithChartLinkingPut(ctx _context.Context) ApiOrchestratorApplicationUpdateWithChartLinkingPutRequest

OrchestratorApplicationUpdateWithChartLinkingPut Method for OrchestratorApplicationUpdateWithChartLinkingPut

update the application with chartstore linking

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorApplicationUpdateWithChartLinkingPutRequest

func (*DefaultApiService) OrchestratorApplicationUpdateWithChartLinkingPutExecute

func (a *DefaultApiService) OrchestratorApplicationUpdateWithChartLinkingPutExecute(r ApiOrchestratorApplicationUpdateWithChartLinkingPutRequest) (UpdateReleaseResponse, *_nethttp.Response, error)

Execute executes the request

@return UpdateReleaseResponse

type DesiredManifestRequest

type DesiredManifestRequest struct {
	// helm app id
	AppId    *string             `json:"appId,omitempty"`
	Resource *ResourceIdentifier `json:"resource,omitempty"`
}

DesiredManifestRequest struct for DesiredManifestRequest

func NewDesiredManifestRequest

func NewDesiredManifestRequest() *DesiredManifestRequest

NewDesiredManifestRequest instantiates a new DesiredManifestRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDesiredManifestRequestWithDefaults

func NewDesiredManifestRequestWithDefaults() *DesiredManifestRequest

NewDesiredManifestRequestWithDefaults instantiates a new DesiredManifestRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DesiredManifestRequest) GetAppId

func (o *DesiredManifestRequest) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*DesiredManifestRequest) GetAppIdOk

func (o *DesiredManifestRequest) GetAppIdOk() (*string, bool)

GetAppIdOk returns a tuple with the AppId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DesiredManifestRequest) GetResource

func (o *DesiredManifestRequest) GetResource() ResourceIdentifier

GetResource returns the Resource field value if set, zero value otherwise.

func (*DesiredManifestRequest) GetResourceOk

func (o *DesiredManifestRequest) GetResourceOk() (*ResourceIdentifier, bool)

GetResourceOk returns a tuple with the Resource field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DesiredManifestRequest) HasAppId

func (o *DesiredManifestRequest) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*DesiredManifestRequest) HasResource

func (o *DesiredManifestRequest) HasResource() bool

HasResource returns a boolean if a field has been set.

func (DesiredManifestRequest) MarshalJSON

func (o DesiredManifestRequest) MarshalJSON() ([]byte, error)

func (*DesiredManifestRequest) SetAppId

func (o *DesiredManifestRequest) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*DesiredManifestRequest) SetResource

func (o *DesiredManifestRequest) SetResource(v ResourceIdentifier)

SetResource gets a reference to the given ResourceIdentifier and assigns it to the Resource field.

type DesiredManifestResponse

type DesiredManifestResponse struct {
	// desired manifest
	Manifest *string `json:"manifest,omitempty"`
}

DesiredManifestResponse struct for DesiredManifestResponse

func NewDesiredManifestResponse

func NewDesiredManifestResponse() *DesiredManifestResponse

NewDesiredManifestResponse instantiates a new DesiredManifestResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDesiredManifestResponseWithDefaults

func NewDesiredManifestResponseWithDefaults() *DesiredManifestResponse

NewDesiredManifestResponseWithDefaults instantiates a new DesiredManifestResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DesiredManifestResponse) GetManifest

func (o *DesiredManifestResponse) GetManifest() string

GetManifest returns the Manifest field value if set, zero value otherwise.

func (*DesiredManifestResponse) GetManifestOk

func (o *DesiredManifestResponse) GetManifestOk() (*string, bool)

GetManifestOk returns a tuple with the Manifest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DesiredManifestResponse) HasManifest

func (o *DesiredManifestResponse) HasManifest() bool

HasManifest returns a boolean if a field has been set.

func (DesiredManifestResponse) MarshalJSON

func (o DesiredManifestResponse) MarshalJSON() ([]byte, error)

func (*DesiredManifestResponse) SetManifest

func (o *DesiredManifestResponse) SetManifest(v string)

SetManifest gets a reference to the given string and assigns it to the Manifest field.

type DevtronApp

type DevtronApp struct {
	// name of the helm application/helm release name
	AppName *string `json:"appName,omitempty"`
	// unique identifier for app
	AppId *string `json:"appId,omitempty"`
	// unique identifier for the project
	ProjectId          *int32                  `json:"projectId,omitempty"`
	EnvironmentDetails *[]AppEnvironmentDetail `json:"environmentDetails,omitempty"`
}

DevtronApp struct for DevtronApp

func NewDevtronApp

func NewDevtronApp() *DevtronApp

NewDevtronApp instantiates a new DevtronApp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDevtronAppWithDefaults

func NewDevtronAppWithDefaults() *DevtronApp

NewDevtronAppWithDefaults instantiates a new DevtronApp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DevtronApp) GetAppId

func (o *DevtronApp) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*DevtronApp) GetAppIdOk

func (o *DevtronApp) GetAppIdOk() (*string, bool)

GetAppIdOk returns a tuple with the AppId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DevtronApp) GetAppName

func (o *DevtronApp) GetAppName() string

GetAppName returns the AppName field value if set, zero value otherwise.

func (*DevtronApp) GetAppNameOk

func (o *DevtronApp) GetAppNameOk() (*string, bool)

GetAppNameOk returns a tuple with the AppName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DevtronApp) GetEnvironmentDetails

func (o *DevtronApp) GetEnvironmentDetails() []AppEnvironmentDetail

GetEnvironmentDetails returns the EnvironmentDetails field value if set, zero value otherwise.

func (*DevtronApp) GetEnvironmentDetailsOk

func (o *DevtronApp) GetEnvironmentDetailsOk() (*[]AppEnvironmentDetail, bool)

GetEnvironmentDetailsOk returns a tuple with the EnvironmentDetails field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DevtronApp) GetProjectId

func (o *DevtronApp) GetProjectId() int32

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*DevtronApp) GetProjectIdOk

func (o *DevtronApp) GetProjectIdOk() (*int32, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DevtronApp) HasAppId

func (o *DevtronApp) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*DevtronApp) HasAppName

func (o *DevtronApp) HasAppName() bool

HasAppName returns a boolean if a field has been set.

func (*DevtronApp) HasEnvironmentDetails

func (o *DevtronApp) HasEnvironmentDetails() bool

HasEnvironmentDetails returns a boolean if a field has been set.

func (*DevtronApp) HasProjectId

func (o *DevtronApp) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (DevtronApp) MarshalJSON

func (o DevtronApp) MarshalJSON() ([]byte, error)

func (*DevtronApp) SetAppId

func (o *DevtronApp) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*DevtronApp) SetAppName

func (o *DevtronApp) SetAppName(v string)

SetAppName gets a reference to the given string and assigns it to the AppName field.

func (*DevtronApp) SetEnvironmentDetails

func (o *DevtronApp) SetEnvironmentDetails(v []AppEnvironmentDetail)

SetEnvironmentDetails gets a reference to the given []AppEnvironmentDetail and assigns it to the EnvironmentDetails field.

func (*DevtronApp) SetProjectId

func (o *DevtronApp) SetProjectId(v int32)

SetProjectId gets a reference to the given int32 and assigns it to the ProjectId field.

type EnvironmentDetail

type EnvironmentDetail struct {
	// name of the environemnt
	EnvironmentName *string `json:"environmentName,omitempty"`
	// id in which app is deployed
	EnvironmentId *int32 `json:"environmentId,omitempty"`
	// namespace corresponding to the environemnt
	Namespace *string `json:"namespace,omitempty"`
	// if given environemnt is marked as production or not, nullable
	IsPrduction *bool `json:"isPrduction,omitempty"`
}

EnvironmentDetail struct for EnvironmentDetail

func NewEnvironmentDetail

func NewEnvironmentDetail() *EnvironmentDetail

NewEnvironmentDetail instantiates a new EnvironmentDetail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEnvironmentDetailWithDefaults

func NewEnvironmentDetailWithDefaults() *EnvironmentDetail

NewEnvironmentDetailWithDefaults instantiates a new EnvironmentDetail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EnvironmentDetail) GetEnvironmentId

func (o *EnvironmentDetail) GetEnvironmentId() int32

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*EnvironmentDetail) GetEnvironmentIdOk

func (o *EnvironmentDetail) GetEnvironmentIdOk() (*int32, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentDetail) GetEnvironmentName

func (o *EnvironmentDetail) GetEnvironmentName() string

GetEnvironmentName returns the EnvironmentName field value if set, zero value otherwise.

func (*EnvironmentDetail) GetEnvironmentNameOk

func (o *EnvironmentDetail) GetEnvironmentNameOk() (*string, bool)

GetEnvironmentNameOk returns a tuple with the EnvironmentName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentDetail) GetIsPrduction

func (o *EnvironmentDetail) GetIsPrduction() bool

GetIsPrduction returns the IsPrduction field value if set, zero value otherwise.

func (*EnvironmentDetail) GetIsPrductionOk

func (o *EnvironmentDetail) GetIsPrductionOk() (*bool, bool)

GetIsPrductionOk returns a tuple with the IsPrduction field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentDetail) GetNamespace

func (o *EnvironmentDetail) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*EnvironmentDetail) GetNamespaceOk

func (o *EnvironmentDetail) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentDetail) HasEnvironmentId

func (o *EnvironmentDetail) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*EnvironmentDetail) HasEnvironmentName

func (o *EnvironmentDetail) HasEnvironmentName() bool

HasEnvironmentName returns a boolean if a field has been set.

func (*EnvironmentDetail) HasIsPrduction

func (o *EnvironmentDetail) HasIsPrduction() bool

HasIsPrduction returns a boolean if a field has been set.

func (*EnvironmentDetail) HasNamespace

func (o *EnvironmentDetail) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (EnvironmentDetail) MarshalJSON

func (o EnvironmentDetail) MarshalJSON() ([]byte, error)

func (*EnvironmentDetail) SetEnvironmentId

func (o *EnvironmentDetail) SetEnvironmentId(v int32)

SetEnvironmentId gets a reference to the given int32 and assigns it to the EnvironmentId field.

func (*EnvironmentDetail) SetEnvironmentName

func (o *EnvironmentDetail) SetEnvironmentName(v string)

SetEnvironmentName gets a reference to the given string and assigns it to the EnvironmentName field.

func (*EnvironmentDetail) SetIsPrduction

func (o *EnvironmentDetail) SetIsPrduction(v bool)

SetIsPrduction gets a reference to the given bool and assigns it to the IsPrduction field.

func (*EnvironmentDetail) SetNamespace

func (o *EnvironmentDetail) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type HelmApp

type HelmApp struct {
	// time when this application was last deployed/updated
	LastDeployedAt *time.Time `json:"lastDeployedAt,omitempty"`
	// name of the helm application/helm release name
	AppName *string `json:"appName,omitempty"`
	// unique identifier for app
	AppId *string `json:"appId,omitempty"`
	// name of the chart
	ChartName *string `json:"chartName,omitempty"`
	// url/location of the chart icon
	ChartAvatar *string `json:"chartAvatar,omitempty"`
	// unique identifier for the project, APP with no project will have id `0`
	ProjectId *int32 `json:"projectId,omitempty"`
	// chart version
	ChartVersion      *string               `json:"chartVersion,omitempty"`
	EnvironmentDetail *AppEnvironmentDetail `json:"environmentDetail,omitempty"`
}

HelmApp struct for HelmApp

func NewHelmApp

func NewHelmApp() *HelmApp

NewHelmApp instantiates a new HelmApp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewHelmAppWithDefaults

func NewHelmAppWithDefaults() *HelmApp

NewHelmAppWithDefaults instantiates a new HelmApp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*HelmApp) GetAppId

func (o *HelmApp) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*HelmApp) GetAppIdOk

func (o *HelmApp) GetAppIdOk() (*string, bool)

GetAppIdOk returns a tuple with the AppId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HelmApp) GetAppName

func (o *HelmApp) GetAppName() string

GetAppName returns the AppName field value if set, zero value otherwise.

func (*HelmApp) GetAppNameOk

func (o *HelmApp) GetAppNameOk() (*string, bool)

GetAppNameOk returns a tuple with the AppName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HelmApp) GetChartAvatar

func (o *HelmApp) GetChartAvatar() string

GetChartAvatar returns the ChartAvatar field value if set, zero value otherwise.

func (*HelmApp) GetChartAvatarOk

func (o *HelmApp) GetChartAvatarOk() (*string, bool)

GetChartAvatarOk returns a tuple with the ChartAvatar field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HelmApp) GetChartName

func (o *HelmApp) GetChartName() string

GetChartName returns the ChartName field value if set, zero value otherwise.

func (*HelmApp) GetChartNameOk

func (o *HelmApp) GetChartNameOk() (*string, bool)

GetChartNameOk returns a tuple with the ChartName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HelmApp) GetChartVersion

func (o *HelmApp) GetChartVersion() string

GetChartVersion returns the ChartVersion field value if set, zero value otherwise.

func (*HelmApp) GetChartVersionOk

func (o *HelmApp) GetChartVersionOk() (*string, bool)

GetChartVersionOk returns a tuple with the ChartVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HelmApp) GetEnvironmentDetail

func (o *HelmApp) GetEnvironmentDetail() AppEnvironmentDetail

GetEnvironmentDetail returns the EnvironmentDetail field value if set, zero value otherwise.

func (*HelmApp) GetEnvironmentDetailOk

func (o *HelmApp) GetEnvironmentDetailOk() (*AppEnvironmentDetail, bool)

GetEnvironmentDetailOk returns a tuple with the EnvironmentDetail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HelmApp) GetLastDeployedAt

func (o *HelmApp) GetLastDeployedAt() time.Time

GetLastDeployedAt returns the LastDeployedAt field value if set, zero value otherwise.

func (*HelmApp) GetLastDeployedAtOk

func (o *HelmApp) GetLastDeployedAtOk() (*time.Time, bool)

GetLastDeployedAtOk returns a tuple with the LastDeployedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HelmApp) GetProjectId

func (o *HelmApp) GetProjectId() int32

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*HelmApp) GetProjectIdOk

func (o *HelmApp) GetProjectIdOk() (*int32, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HelmApp) HasAppId

func (o *HelmApp) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*HelmApp) HasAppName

func (o *HelmApp) HasAppName() bool

HasAppName returns a boolean if a field has been set.

func (*HelmApp) HasChartAvatar

func (o *HelmApp) HasChartAvatar() bool

HasChartAvatar returns a boolean if a field has been set.

func (*HelmApp) HasChartName

func (o *HelmApp) HasChartName() bool

HasChartName returns a boolean if a field has been set.

func (*HelmApp) HasChartVersion

func (o *HelmApp) HasChartVersion() bool

HasChartVersion returns a boolean if a field has been set.

func (*HelmApp) HasEnvironmentDetail

func (o *HelmApp) HasEnvironmentDetail() bool

HasEnvironmentDetail returns a boolean if a field has been set.

func (*HelmApp) HasLastDeployedAt

func (o *HelmApp) HasLastDeployedAt() bool

HasLastDeployedAt returns a boolean if a field has been set.

func (*HelmApp) HasProjectId

func (o *HelmApp) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (HelmApp) MarshalJSON

func (o HelmApp) MarshalJSON() ([]byte, error)

func (*HelmApp) SetAppId

func (o *HelmApp) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*HelmApp) SetAppName

func (o *HelmApp) SetAppName(v string)

SetAppName gets a reference to the given string and assigns it to the AppName field.

func (*HelmApp) SetChartAvatar

func (o *HelmApp) SetChartAvatar(v string)

SetChartAvatar gets a reference to the given string and assigns it to the ChartAvatar field.

func (*HelmApp) SetChartName

func (o *HelmApp) SetChartName(v string)

SetChartName gets a reference to the given string and assigns it to the ChartName field.

func (*HelmApp) SetChartVersion

func (o *HelmApp) SetChartVersion(v string)

SetChartVersion gets a reference to the given string and assigns it to the ChartVersion field.

func (*HelmApp) SetEnvironmentDetail

func (o *HelmApp) SetEnvironmentDetail(v AppEnvironmentDetail)

SetEnvironmentDetail gets a reference to the given AppEnvironmentDetail and assigns it to the EnvironmentDetail field.

func (*HelmApp) SetLastDeployedAt

func (o *HelmApp) SetLastDeployedAt(v time.Time)

SetLastDeployedAt gets a reference to the given time.Time and assigns it to the LastDeployedAt field.

func (*HelmApp) SetProjectId

func (o *HelmApp) SetProjectId(v int32)

SetProjectId gets a reference to the given int32 and assigns it to the ProjectId field.

type HelmAppDeploymentDetail

type HelmAppDeploymentDetail struct {
	ChartMetadata *ChartMetadata `json:"chartMetadata,omitempty"`
	// docker images presrnt insise the chart
	DockerImages *[]string `json:"dockerImages,omitempty"`
	// deployment version of the helm chart
	Version    *int       `json:"version,omitempty"`
	DeployedAt *time.Time `json:"deployedAt,omitempty"`
}

HelmAppDeploymentDetail struct for HelmAppDeploymentDetail

func NewHelmAppDeploymentDetail

func NewHelmAppDeploymentDetail() *HelmAppDeploymentDetail

NewHelmAppDeploymentDetail instantiates a new HelmAppDeploymentDetail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewHelmAppDeploymentDetailWithDefaults

func NewHelmAppDeploymentDetailWithDefaults() *HelmAppDeploymentDetail

NewHelmAppDeploymentDetailWithDefaults instantiates a new HelmAppDeploymentDetail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*HelmAppDeploymentDetail) GetChartMetadata

func (o *HelmAppDeploymentDetail) GetChartMetadata() ChartMetadata

GetChartMetadata returns the ChartMetadata field value if set, zero value otherwise.

func (*HelmAppDeploymentDetail) GetChartMetadataOk

func (o *HelmAppDeploymentDetail) GetChartMetadataOk() (*ChartMetadata, bool)

GetChartMetadataOk returns a tuple with the ChartMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HelmAppDeploymentDetail) GetDeployedAt

func (o *HelmAppDeploymentDetail) GetDeployedAt() time.Time

GetDeployedAt returns the DeployedAt field value if set, zero value otherwise.

func (*HelmAppDeploymentDetail) GetDeployedAtOk

func (o *HelmAppDeploymentDetail) GetDeployedAtOk() (*time.Time, bool)

GetDeployedAtOk returns a tuple with the DeployedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HelmAppDeploymentDetail) GetDockerImages

func (o *HelmAppDeploymentDetail) GetDockerImages() []string

GetDockerImages returns the DockerImages field value if set, zero value otherwise.

func (*HelmAppDeploymentDetail) GetDockerImagesOk

func (o *HelmAppDeploymentDetail) GetDockerImagesOk() (*[]string, bool)

GetDockerImagesOk returns a tuple with the DockerImages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HelmAppDeploymentDetail) GetVersion

func (o *HelmAppDeploymentDetail) GetVersion() int

GetVersion returns the Version field value if set, zero value otherwise.

func (*HelmAppDeploymentDetail) GetVersionOk

func (o *HelmAppDeploymentDetail) GetVersionOk() (*int, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HelmAppDeploymentDetail) HasChartMetadata

func (o *HelmAppDeploymentDetail) HasChartMetadata() bool

HasChartMetadata returns a boolean if a field has been set.

func (*HelmAppDeploymentDetail) HasDeployedAt

func (o *HelmAppDeploymentDetail) HasDeployedAt() bool

HasDeployedAt returns a boolean if a field has been set.

func (*HelmAppDeploymentDetail) HasDockerImages

func (o *HelmAppDeploymentDetail) HasDockerImages() bool

HasDockerImages returns a boolean if a field has been set.

func (*HelmAppDeploymentDetail) HasVersion

func (o *HelmAppDeploymentDetail) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (HelmAppDeploymentDetail) MarshalJSON

func (o HelmAppDeploymentDetail) MarshalJSON() ([]byte, error)

func (*HelmAppDeploymentDetail) SetChartMetadata

func (o *HelmAppDeploymentDetail) SetChartMetadata(v ChartMetadata)

SetChartMetadata gets a reference to the given ChartMetadata and assigns it to the ChartMetadata field.

func (*HelmAppDeploymentDetail) SetDeployedAt

func (o *HelmAppDeploymentDetail) SetDeployedAt(v time.Time)

SetDeployedAt gets a reference to the given time.Time and assigns it to the DeployedAt field.

func (*HelmAppDeploymentDetail) SetDockerImages

func (o *HelmAppDeploymentDetail) SetDockerImages(v []string)

SetDockerImages gets a reference to the given []string and assigns it to the DockerImages field.

func (*HelmAppDeploymentDetail) SetVersion

func (o *HelmAppDeploymentDetail) SetVersion(v int)

SetVersion gets a reference to the given int and assigns it to the Version field.

type HelmAppDeploymentManifestDetail

type HelmAppDeploymentManifestDetail struct {
	// manifest of deployment
	Manifest *string `json:"manifest,omitempty"`
	// values YAML of deployment
	ValuesYaml *string `json:"valuesYaml,omitempty"`
}

HelmAppDeploymentManifestDetail struct for HelmAppDeploymentManifestDetail

func NewHelmAppDeploymentManifestDetail

func NewHelmAppDeploymentManifestDetail() *HelmAppDeploymentManifestDetail

NewHelmAppDeploymentManifestDetail instantiates a new HelmAppDeploymentManifestDetail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewHelmAppDeploymentManifestDetailWithDefaults

func NewHelmAppDeploymentManifestDetailWithDefaults() *HelmAppDeploymentManifestDetail

NewHelmAppDeploymentManifestDetailWithDefaults instantiates a new HelmAppDeploymentManifestDetail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*HelmAppDeploymentManifestDetail) GetManifest

func (o *HelmAppDeploymentManifestDetail) GetManifest() string

GetManifest returns the Manifest field value if set, zero value otherwise.

func (*HelmAppDeploymentManifestDetail) GetManifestOk

func (o *HelmAppDeploymentManifestDetail) GetManifestOk() (*string, bool)

GetManifestOk returns a tuple with the Manifest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HelmAppDeploymentManifestDetail) GetValuesYaml

func (o *HelmAppDeploymentManifestDetail) GetValuesYaml() string

GetValuesYaml returns the ValuesYaml field value if set, zero value otherwise.

func (*HelmAppDeploymentManifestDetail) GetValuesYamlOk

func (o *HelmAppDeploymentManifestDetail) GetValuesYamlOk() (*string, bool)

GetValuesYamlOk returns a tuple with the ValuesYaml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HelmAppDeploymentManifestDetail) HasManifest

func (o *HelmAppDeploymentManifestDetail) HasManifest() bool

HasManifest returns a boolean if a field has been set.

func (*HelmAppDeploymentManifestDetail) HasValuesYaml

func (o *HelmAppDeploymentManifestDetail) HasValuesYaml() bool

HasValuesYaml returns a boolean if a field has been set.

func (HelmAppDeploymentManifestDetail) MarshalJSON

func (o HelmAppDeploymentManifestDetail) MarshalJSON() ([]byte, error)

func (*HelmAppDeploymentManifestDetail) SetManifest

func (o *HelmAppDeploymentManifestDetail) SetManifest(v string)

SetManifest gets a reference to the given string and assigns it to the Manifest field.

func (*HelmAppDeploymentManifestDetail) SetValuesYaml

func (o *HelmAppDeploymentManifestDetail) SetValuesYaml(v string)

SetValuesYaml gets a reference to the given string and assigns it to the ValuesYaml field.

type HelmAppListRequest

type HelmAppListRequest struct {
	// cluster ids
	ClusterIds *[]int64 `json:"clusterIds,omitempty"`
}

HelmAppListRequest struct for HelmAppListRequest

func NewHelmAppListRequest

func NewHelmAppListRequest() *HelmAppListRequest

NewHelmAppListRequest instantiates a new HelmAppListRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewHelmAppListRequestWithDefaults

func NewHelmAppListRequestWithDefaults() *HelmAppListRequest

NewHelmAppListRequestWithDefaults instantiates a new HelmAppListRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*HelmAppListRequest) GetClusterIds

func (o *HelmAppListRequest) GetClusterIds() []int64

GetClusterIds returns the ClusterIds field value if set, zero value otherwise.

func (*HelmAppListRequest) GetClusterIdsOk

func (o *HelmAppListRequest) GetClusterIdsOk() (*[]int64, bool)

GetClusterIdsOk returns a tuple with the ClusterIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HelmAppListRequest) HasClusterIds

func (o *HelmAppListRequest) HasClusterIds() bool

HasClusterIds returns a boolean if a field has been set.

func (HelmAppListRequest) MarshalJSON

func (o HelmAppListRequest) MarshalJSON() ([]byte, error)

func (*HelmAppListRequest) SetClusterIds

func (o *HelmAppListRequest) SetClusterIds(v []int64)

SetClusterIds gets a reference to the given []int64 and assigns it to the ClusterIds field.

type HibernateRequest

type HibernateRequest struct {
	// helm app id
	AppId     *string                  `json:"appId,omitempty"`
	Resources *[]HibernateTargetObject `json:"resources,omitempty"`
}

HibernateRequest struct for HibernateRequest

func NewHibernateRequest

func NewHibernateRequest() *HibernateRequest

NewHibernateRequest instantiates a new HibernateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewHibernateRequestWithDefaults

func NewHibernateRequestWithDefaults() *HibernateRequest

NewHibernateRequestWithDefaults instantiates a new HibernateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*HibernateRequest) GetAppId

func (o *HibernateRequest) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*HibernateRequest) GetAppIdOk

func (o *HibernateRequest) GetAppIdOk() (*string, bool)

GetAppIdOk returns a tuple with the AppId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HibernateRequest) GetResources

func (o *HibernateRequest) GetResources() []HibernateTargetObject

GetResources returns the Resources field value if set, zero value otherwise.

func (*HibernateRequest) GetResourcesOk

func (o *HibernateRequest) GetResourcesOk() (*[]HibernateTargetObject, bool)

GetResourcesOk returns a tuple with the Resources field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HibernateRequest) HasAppId

func (o *HibernateRequest) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*HibernateRequest) HasResources

func (o *HibernateRequest) HasResources() bool

HasResources returns a boolean if a field has been set.

func (HibernateRequest) MarshalJSON

func (o HibernateRequest) MarshalJSON() ([]byte, error)

func (*HibernateRequest) SetAppId

func (o *HibernateRequest) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*HibernateRequest) SetResources

func (o *HibernateRequest) SetResources(v []HibernateTargetObject)

SetResources gets a reference to the given []HibernateTargetObject and assigns it to the Resources field.

type HibernateStatus

type HibernateStatus struct {
	// operation was success or not
	Success *bool `json:"success,omitempty"`
	// failure cause, empty is success
	ErrorMessage *string                `json:"errorMessage,omitempty"`
	TargetObject *HibernateTargetObject `json:"targetObject,omitempty"`
}

HibernateStatus struct for HibernateStatus

func NewHibernateStatus

func NewHibernateStatus() *HibernateStatus

NewHibernateStatus instantiates a new HibernateStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewHibernateStatusWithDefaults

func NewHibernateStatusWithDefaults() *HibernateStatus

NewHibernateStatusWithDefaults instantiates a new HibernateStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*HibernateStatus) GetErrorMessage

func (o *HibernateStatus) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value if set, zero value otherwise.

func (*HibernateStatus) GetErrorMessageOk

func (o *HibernateStatus) GetErrorMessageOk() (*string, bool)

GetErrorMessageOk returns a tuple with the ErrorMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HibernateStatus) GetSuccess

func (o *HibernateStatus) GetSuccess() bool

GetSuccess returns the Success field value if set, zero value otherwise.

func (*HibernateStatus) GetSuccessOk

func (o *HibernateStatus) GetSuccessOk() (*bool, bool)

GetSuccessOk returns a tuple with the Success field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HibernateStatus) GetTargetObject

func (o *HibernateStatus) GetTargetObject() HibernateTargetObject

GetTargetObject returns the TargetObject field value if set, zero value otherwise.

func (*HibernateStatus) GetTargetObjectOk

func (o *HibernateStatus) GetTargetObjectOk() (*HibernateTargetObject, bool)

GetTargetObjectOk returns a tuple with the TargetObject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HibernateStatus) HasErrorMessage

func (o *HibernateStatus) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (*HibernateStatus) HasSuccess

func (o *HibernateStatus) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (*HibernateStatus) HasTargetObject

func (o *HibernateStatus) HasTargetObject() bool

HasTargetObject returns a boolean if a field has been set.

func (HibernateStatus) MarshalJSON

func (o HibernateStatus) MarshalJSON() ([]byte, error)

func (*HibernateStatus) SetErrorMessage

func (o *HibernateStatus) SetErrorMessage(v string)

SetErrorMessage gets a reference to the given string and assigns it to the ErrorMessage field.

func (*HibernateStatus) SetSuccess

func (o *HibernateStatus) SetSuccess(v bool)

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (*HibernateStatus) SetTargetObject

func (o *HibernateStatus) SetTargetObject(v HibernateTargetObject)

SetTargetObject gets a reference to the given HibernateTargetObject and assigns it to the TargetObject field.

type HibernateTargetObject

type HibernateTargetObject struct {
	// k8s resource group
	Group *string `json:"group,omitempty"`
	// k8s resource kind
	Kind *string `json:"kind,omitempty"`
	// k8s resource version
	Version *string `json:"version,omitempty"`
	// k8s resource name
	Name *string `json:"name,omitempty"`
	// k8s resource ns
	Namespace *string `json:"namespace,omitempty"`
}

HibernateTargetObject struct for HibernateTargetObject

func NewHibernateTargetObject

func NewHibernateTargetObject() *HibernateTargetObject

NewHibernateTargetObject instantiates a new HibernateTargetObject object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewHibernateTargetObjectWithDefaults

func NewHibernateTargetObjectWithDefaults() *HibernateTargetObject

NewHibernateTargetObjectWithDefaults instantiates a new HibernateTargetObject object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*HibernateTargetObject) GetGroup

func (o *HibernateTargetObject) GetGroup() string

GetGroup returns the Group field value if set, zero value otherwise.

func (*HibernateTargetObject) GetGroupOk

func (o *HibernateTargetObject) GetGroupOk() (*string, bool)

GetGroupOk returns a tuple with the Group field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HibernateTargetObject) GetKind

func (o *HibernateTargetObject) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*HibernateTargetObject) GetKindOk

func (o *HibernateTargetObject) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HibernateTargetObject) GetName

func (o *HibernateTargetObject) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*HibernateTargetObject) GetNameOk

func (o *HibernateTargetObject) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HibernateTargetObject) GetNamespace

func (o *HibernateTargetObject) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*HibernateTargetObject) GetNamespaceOk

func (o *HibernateTargetObject) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HibernateTargetObject) GetVersion

func (o *HibernateTargetObject) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*HibernateTargetObject) GetVersionOk

func (o *HibernateTargetObject) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HibernateTargetObject) HasGroup

func (o *HibernateTargetObject) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (*HibernateTargetObject) HasKind

func (o *HibernateTargetObject) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*HibernateTargetObject) HasName

func (o *HibernateTargetObject) HasName() bool

HasName returns a boolean if a field has been set.

func (*HibernateTargetObject) HasNamespace

func (o *HibernateTargetObject) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*HibernateTargetObject) HasVersion

func (o *HibernateTargetObject) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (HibernateTargetObject) MarshalJSON

func (o HibernateTargetObject) MarshalJSON() ([]byte, error)

func (*HibernateTargetObject) SetGroup

func (o *HibernateTargetObject) SetGroup(v string)

SetGroup gets a reference to the given string and assigns it to the Group field.

func (*HibernateTargetObject) SetKind

func (o *HibernateTargetObject) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*HibernateTargetObject) SetName

func (o *HibernateTargetObject) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*HibernateTargetObject) SetNamespace

func (o *HibernateTargetObject) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*HibernateTargetObject) SetVersion

func (o *HibernateTargetObject) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type InstalledAppInfo

type InstalledAppInfo struct {
	// appId
	AppId *int32 `json:"appId,omitempty"`
	// installedAppId
	InstalledAppId *int32 `json:"installedAppId,omitempty"`
	// environment Name
	EnvironmentName *string `json:"environmentName,omitempty"`
	// EA_ONLY/FULL
	AppOfferingMode *string `json:"appOfferingMode,omitempty"`
	// App store chart Id
	AppStoreChartId *float32 `json:"appStoreChartId,omitempty"`
	// App store installed app version Id
	InstalledAppVersionId *float32 `json:"installedAppVersionId,omitempty"`
	// Cluster Id
	ClusterId *float32 `json:"clusterId,omitempty"`
	// Environment Id
	EnvironmentId *float32 `json:"environmentId,omitempty"`
}

InstalledAppInfo struct for InstalledAppInfo

func NewInstalledAppInfo

func NewInstalledAppInfo() *InstalledAppInfo

NewInstalledAppInfo instantiates a new InstalledAppInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInstalledAppInfoWithDefaults

func NewInstalledAppInfoWithDefaults() *InstalledAppInfo

NewInstalledAppInfoWithDefaults instantiates a new InstalledAppInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InstalledAppInfo) GetAppId

func (o *InstalledAppInfo) GetAppId() int32

GetAppId returns the AppId field value if set, zero value otherwise.

func (*InstalledAppInfo) GetAppIdOk

func (o *InstalledAppInfo) GetAppIdOk() (*int32, bool)

GetAppIdOk returns a tuple with the AppId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstalledAppInfo) GetAppOfferingMode

func (o *InstalledAppInfo) GetAppOfferingMode() string

GetAppOfferingMode returns the AppOfferingMode field value if set, zero value otherwise.

func (*InstalledAppInfo) GetAppOfferingModeOk

func (o *InstalledAppInfo) GetAppOfferingModeOk() (*string, bool)

GetAppOfferingModeOk returns a tuple with the AppOfferingMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstalledAppInfo) GetAppStoreChartId

func (o *InstalledAppInfo) GetAppStoreChartId() float32

GetAppStoreChartId returns the AppStoreChartId field value if set, zero value otherwise.

func (*InstalledAppInfo) GetAppStoreChartIdOk

func (o *InstalledAppInfo) GetAppStoreChartIdOk() (*float32, bool)

GetAppStoreChartIdOk returns a tuple with the AppStoreChartId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstalledAppInfo) GetClusterId

func (o *InstalledAppInfo) GetClusterId() float32

GetClusterId returns the ClusterId field value if set, zero value otherwise.

func (*InstalledAppInfo) GetClusterIdOk

func (o *InstalledAppInfo) GetClusterIdOk() (*float32, bool)

GetClusterIdOk returns a tuple with the ClusterId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstalledAppInfo) GetEnvironmentId

func (o *InstalledAppInfo) GetEnvironmentId() float32

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*InstalledAppInfo) GetEnvironmentIdOk

func (o *InstalledAppInfo) GetEnvironmentIdOk() (*float32, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstalledAppInfo) GetEnvironmentName

func (o *InstalledAppInfo) GetEnvironmentName() string

GetEnvironmentName returns the EnvironmentName field value if set, zero value otherwise.

func (*InstalledAppInfo) GetEnvironmentNameOk

func (o *InstalledAppInfo) GetEnvironmentNameOk() (*string, bool)

GetEnvironmentNameOk returns a tuple with the EnvironmentName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstalledAppInfo) GetInstalledAppId

func (o *InstalledAppInfo) GetInstalledAppId() int32

GetInstalledAppId returns the InstalledAppId field value if set, zero value otherwise.

func (*InstalledAppInfo) GetInstalledAppIdOk

func (o *InstalledAppInfo) GetInstalledAppIdOk() (*int32, bool)

GetInstalledAppIdOk returns a tuple with the InstalledAppId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstalledAppInfo) GetInstalledAppVersionId

func (o *InstalledAppInfo) GetInstalledAppVersionId() float32

GetInstalledAppVersionId returns the InstalledAppVersionId field value if set, zero value otherwise.

func (*InstalledAppInfo) GetInstalledAppVersionIdOk

func (o *InstalledAppInfo) GetInstalledAppVersionIdOk() (*float32, bool)

GetInstalledAppVersionIdOk returns a tuple with the InstalledAppVersionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstalledAppInfo) HasAppId

func (o *InstalledAppInfo) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*InstalledAppInfo) HasAppOfferingMode

func (o *InstalledAppInfo) HasAppOfferingMode() bool

HasAppOfferingMode returns a boolean if a field has been set.

func (*InstalledAppInfo) HasAppStoreChartId

func (o *InstalledAppInfo) HasAppStoreChartId() bool

HasAppStoreChartId returns a boolean if a field has been set.

func (*InstalledAppInfo) HasClusterId

func (o *InstalledAppInfo) HasClusterId() bool

HasClusterId returns a boolean if a field has been set.

func (*InstalledAppInfo) HasEnvironmentId

func (o *InstalledAppInfo) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*InstalledAppInfo) HasEnvironmentName

func (o *InstalledAppInfo) HasEnvironmentName() bool

HasEnvironmentName returns a boolean if a field has been set.

func (*InstalledAppInfo) HasInstalledAppId

func (o *InstalledAppInfo) HasInstalledAppId() bool

HasInstalledAppId returns a boolean if a field has been set.

func (*InstalledAppInfo) HasInstalledAppVersionId

func (o *InstalledAppInfo) HasInstalledAppVersionId() bool

HasInstalledAppVersionId returns a boolean if a field has been set.

func (InstalledAppInfo) MarshalJSON

func (o InstalledAppInfo) MarshalJSON() ([]byte, error)

func (*InstalledAppInfo) SetAppId

func (o *InstalledAppInfo) SetAppId(v int32)

SetAppId gets a reference to the given int32 and assigns it to the AppId field.

func (*InstalledAppInfo) SetAppOfferingMode

func (o *InstalledAppInfo) SetAppOfferingMode(v string)

SetAppOfferingMode gets a reference to the given string and assigns it to the AppOfferingMode field.

func (*InstalledAppInfo) SetAppStoreChartId

func (o *InstalledAppInfo) SetAppStoreChartId(v float32)

SetAppStoreChartId gets a reference to the given float32 and assigns it to the AppStoreChartId field.

func (*InstalledAppInfo) SetClusterId

func (o *InstalledAppInfo) SetClusterId(v float32)

SetClusterId gets a reference to the given float32 and assigns it to the ClusterId field.

func (*InstalledAppInfo) SetEnvironmentId

func (o *InstalledAppInfo) SetEnvironmentId(v float32)

SetEnvironmentId gets a reference to the given float32 and assigns it to the EnvironmentId field.

func (*InstalledAppInfo) SetEnvironmentName

func (o *InstalledAppInfo) SetEnvironmentName(v string)

SetEnvironmentName gets a reference to the given string and assigns it to the EnvironmentName field.

func (*InstalledAppInfo) SetInstalledAppId

func (o *InstalledAppInfo) SetInstalledAppId(v int32)

SetInstalledAppId gets a reference to the given int32 and assigns it to the InstalledAppId field.

func (*InstalledAppInfo) SetInstalledAppVersionId

func (o *InstalledAppInfo) SetInstalledAppVersionId(v float32)

SetInstalledAppVersionId gets a reference to the given float32 and assigns it to the InstalledAppVersionId field.

type NullableAppEnvironmentDetail

type NullableAppEnvironmentDetail struct {
	// contains filtered or unexported fields
}

func NewNullableAppEnvironmentDetail

func NewNullableAppEnvironmentDetail(val *AppEnvironmentDetail) *NullableAppEnvironmentDetail

func (NullableAppEnvironmentDetail) Get

func (NullableAppEnvironmentDetail) IsSet

func (NullableAppEnvironmentDetail) MarshalJSON

func (v NullableAppEnvironmentDetail) MarshalJSON() ([]byte, error)

func (*NullableAppEnvironmentDetail) Set

func (*NullableAppEnvironmentDetail) UnmarshalJSON

func (v *NullableAppEnvironmentDetail) UnmarshalJSON(src []byte) error

func (*NullableAppEnvironmentDetail) Unset

func (v *NullableAppEnvironmentDetail) Unset()

type NullableAppEnvironmentDetailAllOf

type NullableAppEnvironmentDetailAllOf struct {
	// contains filtered or unexported fields
}

func (NullableAppEnvironmentDetailAllOf) Get

func (NullableAppEnvironmentDetailAllOf) IsSet

func (NullableAppEnvironmentDetailAllOf) MarshalJSON

func (v NullableAppEnvironmentDetailAllOf) MarshalJSON() ([]byte, error)

func (*NullableAppEnvironmentDetailAllOf) Set

func (*NullableAppEnvironmentDetailAllOf) UnmarshalJSON

func (v *NullableAppEnvironmentDetailAllOf) UnmarshalJSON(src []byte) error

func (*NullableAppEnvironmentDetailAllOf) Unset

type NullableAppList

type NullableAppList struct {
	// contains filtered or unexported fields
}

func NewNullableAppList

func NewNullableAppList(val *AppList) *NullableAppList

func (NullableAppList) Get

func (v NullableAppList) Get() *AppList

func (NullableAppList) IsSet

func (v NullableAppList) IsSet() bool

func (NullableAppList) MarshalJSON

func (v NullableAppList) MarshalJSON() ([]byte, error)

func (*NullableAppList) Set

func (v *NullableAppList) Set(val *AppList)

func (*NullableAppList) UnmarshalJSON

func (v *NullableAppList) UnmarshalJSON(src []byte) error

func (*NullableAppList) Unset

func (v *NullableAppList) Unset()

type NullableAppListRequest

type NullableAppListRequest struct {
	// contains filtered or unexported fields
}

func NewNullableAppListRequest

func NewNullableAppListRequest(val *AppListRequest) *NullableAppListRequest

func (NullableAppListRequest) Get

func (NullableAppListRequest) IsSet

func (v NullableAppListRequest) IsSet() bool

func (NullableAppListRequest) MarshalJSON

func (v NullableAppListRequest) MarshalJSON() ([]byte, error)

func (*NullableAppListRequest) Set

func (*NullableAppListRequest) UnmarshalJSON

func (v *NullableAppListRequest) UnmarshalJSON(src []byte) error

func (*NullableAppListRequest) Unset

func (v *NullableAppListRequest) Unset()

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableChartMetadata

type NullableChartMetadata struct {
	// contains filtered or unexported fields
}

func NewNullableChartMetadata

func NewNullableChartMetadata(val *ChartMetadata) *NullableChartMetadata

func (NullableChartMetadata) Get

func (NullableChartMetadata) IsSet

func (v NullableChartMetadata) IsSet() bool

func (NullableChartMetadata) MarshalJSON

func (v NullableChartMetadata) MarshalJSON() ([]byte, error)

func (*NullableChartMetadata) Set

func (v *NullableChartMetadata) Set(val *ChartMetadata)

func (*NullableChartMetadata) UnmarshalJSON

func (v *NullableChartMetadata) UnmarshalJSON(src []byte) error

func (*NullableChartMetadata) Unset

func (v *NullableChartMetadata) Unset()

type NullableClusterEnvironmentDetail

type NullableClusterEnvironmentDetail struct {
	// contains filtered or unexported fields
}

func (NullableClusterEnvironmentDetail) Get

func (NullableClusterEnvironmentDetail) IsSet

func (NullableClusterEnvironmentDetail) MarshalJSON

func (v NullableClusterEnvironmentDetail) MarshalJSON() ([]byte, error)

func (*NullableClusterEnvironmentDetail) Set

func (*NullableClusterEnvironmentDetail) UnmarshalJSON

func (v *NullableClusterEnvironmentDetail) UnmarshalJSON(src []byte) error

func (*NullableClusterEnvironmentDetail) Unset

type NullableDesiredManifestRequest

type NullableDesiredManifestRequest struct {
	// contains filtered or unexported fields
}

func (NullableDesiredManifestRequest) Get

func (NullableDesiredManifestRequest) IsSet

func (NullableDesiredManifestRequest) MarshalJSON

func (v NullableDesiredManifestRequest) MarshalJSON() ([]byte, error)

func (*NullableDesiredManifestRequest) Set

func (*NullableDesiredManifestRequest) UnmarshalJSON

func (v *NullableDesiredManifestRequest) UnmarshalJSON(src []byte) error

func (*NullableDesiredManifestRequest) Unset

func (v *NullableDesiredManifestRequest) Unset()

type NullableDesiredManifestResponse

type NullableDesiredManifestResponse struct {
	// contains filtered or unexported fields
}

func (NullableDesiredManifestResponse) Get

func (NullableDesiredManifestResponse) IsSet

func (NullableDesiredManifestResponse) MarshalJSON

func (v NullableDesiredManifestResponse) MarshalJSON() ([]byte, error)

func (*NullableDesiredManifestResponse) Set

func (*NullableDesiredManifestResponse) UnmarshalJSON

func (v *NullableDesiredManifestResponse) UnmarshalJSON(src []byte) error

func (*NullableDesiredManifestResponse) Unset

type NullableDevtronApp

type NullableDevtronApp struct {
	// contains filtered or unexported fields
}

func NewNullableDevtronApp

func NewNullableDevtronApp(val *DevtronApp) *NullableDevtronApp

func (NullableDevtronApp) Get

func (v NullableDevtronApp) Get() *DevtronApp

func (NullableDevtronApp) IsSet

func (v NullableDevtronApp) IsSet() bool

func (NullableDevtronApp) MarshalJSON

func (v NullableDevtronApp) MarshalJSON() ([]byte, error)

func (*NullableDevtronApp) Set

func (v *NullableDevtronApp) Set(val *DevtronApp)

func (*NullableDevtronApp) UnmarshalJSON

func (v *NullableDevtronApp) UnmarshalJSON(src []byte) error

func (*NullableDevtronApp) Unset

func (v *NullableDevtronApp) Unset()

type NullableEnvironmentDetail

type NullableEnvironmentDetail struct {
	// contains filtered or unexported fields
}

func NewNullableEnvironmentDetail

func NewNullableEnvironmentDetail(val *EnvironmentDetail) *NullableEnvironmentDetail

func (NullableEnvironmentDetail) Get

func (NullableEnvironmentDetail) IsSet

func (v NullableEnvironmentDetail) IsSet() bool

func (NullableEnvironmentDetail) MarshalJSON

func (v NullableEnvironmentDetail) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentDetail) Set

func (*NullableEnvironmentDetail) UnmarshalJSON

func (v *NullableEnvironmentDetail) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentDetail) Unset

func (v *NullableEnvironmentDetail) Unset()

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableHelmApp

type NullableHelmApp struct {
	// contains filtered or unexported fields
}

func NewNullableHelmApp

func NewNullableHelmApp(val *HelmApp) *NullableHelmApp

func (NullableHelmApp) Get

func (v NullableHelmApp) Get() *HelmApp

func (NullableHelmApp) IsSet

func (v NullableHelmApp) IsSet() bool

func (NullableHelmApp) MarshalJSON

func (v NullableHelmApp) MarshalJSON() ([]byte, error)

func (*NullableHelmApp) Set

func (v *NullableHelmApp) Set(val *HelmApp)

func (*NullableHelmApp) UnmarshalJSON

func (v *NullableHelmApp) UnmarshalJSON(src []byte) error

func (*NullableHelmApp) Unset

func (v *NullableHelmApp) Unset()

type NullableHelmAppDeploymentDetail

type NullableHelmAppDeploymentDetail struct {
	// contains filtered or unexported fields
}

func (NullableHelmAppDeploymentDetail) Get

func (NullableHelmAppDeploymentDetail) IsSet

func (NullableHelmAppDeploymentDetail) MarshalJSON

func (v NullableHelmAppDeploymentDetail) MarshalJSON() ([]byte, error)

func (*NullableHelmAppDeploymentDetail) Set

func (*NullableHelmAppDeploymentDetail) UnmarshalJSON

func (v *NullableHelmAppDeploymentDetail) UnmarshalJSON(src []byte) error

func (*NullableHelmAppDeploymentDetail) Unset

type NullableHelmAppDeploymentManifestDetail

type NullableHelmAppDeploymentManifestDetail struct {
	// contains filtered or unexported fields
}

func (NullableHelmAppDeploymentManifestDetail) Get

func (NullableHelmAppDeploymentManifestDetail) IsSet

func (NullableHelmAppDeploymentManifestDetail) MarshalJSON

func (v NullableHelmAppDeploymentManifestDetail) MarshalJSON() ([]byte, error)

func (*NullableHelmAppDeploymentManifestDetail) Set

func (*NullableHelmAppDeploymentManifestDetail) UnmarshalJSON

func (v *NullableHelmAppDeploymentManifestDetail) UnmarshalJSON(src []byte) error

func (*NullableHelmAppDeploymentManifestDetail) Unset

type NullableHelmAppListRequest

type NullableHelmAppListRequest struct {
	// contains filtered or unexported fields
}

func NewNullableHelmAppListRequest

func NewNullableHelmAppListRequest(val *HelmAppListRequest) *NullableHelmAppListRequest

func (NullableHelmAppListRequest) Get

func (NullableHelmAppListRequest) IsSet

func (v NullableHelmAppListRequest) IsSet() bool

func (NullableHelmAppListRequest) MarshalJSON

func (v NullableHelmAppListRequest) MarshalJSON() ([]byte, error)

func (*NullableHelmAppListRequest) Set

func (*NullableHelmAppListRequest) UnmarshalJSON

func (v *NullableHelmAppListRequest) UnmarshalJSON(src []byte) error

func (*NullableHelmAppListRequest) Unset

func (v *NullableHelmAppListRequest) Unset()

type NullableHibernateRequest

type NullableHibernateRequest struct {
	// contains filtered or unexported fields
}

func NewNullableHibernateRequest

func NewNullableHibernateRequest(val *HibernateRequest) *NullableHibernateRequest

func (NullableHibernateRequest) Get

func (NullableHibernateRequest) IsSet

func (v NullableHibernateRequest) IsSet() bool

func (NullableHibernateRequest) MarshalJSON

func (v NullableHibernateRequest) MarshalJSON() ([]byte, error)

func (*NullableHibernateRequest) Set

func (*NullableHibernateRequest) UnmarshalJSON

func (v *NullableHibernateRequest) UnmarshalJSON(src []byte) error

func (*NullableHibernateRequest) Unset

func (v *NullableHibernateRequest) Unset()

type NullableHibernateStatus

type NullableHibernateStatus struct {
	// contains filtered or unexported fields
}

func NewNullableHibernateStatus

func NewNullableHibernateStatus(val *HibernateStatus) *NullableHibernateStatus

func (NullableHibernateStatus) Get

func (NullableHibernateStatus) IsSet

func (v NullableHibernateStatus) IsSet() bool

func (NullableHibernateStatus) MarshalJSON

func (v NullableHibernateStatus) MarshalJSON() ([]byte, error)

func (*NullableHibernateStatus) Set

func (*NullableHibernateStatus) UnmarshalJSON

func (v *NullableHibernateStatus) UnmarshalJSON(src []byte) error

func (*NullableHibernateStatus) Unset

func (v *NullableHibernateStatus) Unset()

type NullableHibernateTargetObject

type NullableHibernateTargetObject struct {
	// contains filtered or unexported fields
}

func (NullableHibernateTargetObject) Get

func (NullableHibernateTargetObject) IsSet

func (NullableHibernateTargetObject) MarshalJSON

func (v NullableHibernateTargetObject) MarshalJSON() ([]byte, error)

func (*NullableHibernateTargetObject) Set

func (*NullableHibernateTargetObject) UnmarshalJSON

func (v *NullableHibernateTargetObject) UnmarshalJSON(src []byte) error

func (*NullableHibernateTargetObject) Unset

func (v *NullableHibernateTargetObject) Unset()

type NullableInstalledAppInfo

type NullableInstalledAppInfo struct {
	// contains filtered or unexported fields
}

func NewNullableInstalledAppInfo

func NewNullableInstalledAppInfo(val *InstalledAppInfo) *NullableInstalledAppInfo

func (NullableInstalledAppInfo) Get

func (NullableInstalledAppInfo) IsSet

func (v NullableInstalledAppInfo) IsSet() bool

func (NullableInstalledAppInfo) MarshalJSON

func (v NullableInstalledAppInfo) MarshalJSON() ([]byte, error)

func (*NullableInstalledAppInfo) Set

func (*NullableInstalledAppInfo) UnmarshalJSON

func (v *NullableInstalledAppInfo) UnmarshalJSON(src []byte) error

func (*NullableInstalledAppInfo) Unset

func (v *NullableInstalledAppInfo) Unset()

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableReleaseAndInstalledAppInfo

type NullableReleaseAndInstalledAppInfo struct {
	// contains filtered or unexported fields
}

func (NullableReleaseAndInstalledAppInfo) Get

func (NullableReleaseAndInstalledAppInfo) IsSet

func (NullableReleaseAndInstalledAppInfo) MarshalJSON

func (v NullableReleaseAndInstalledAppInfo) MarshalJSON() ([]byte, error)

func (*NullableReleaseAndInstalledAppInfo) Set

func (*NullableReleaseAndInstalledAppInfo) UnmarshalJSON

func (v *NullableReleaseAndInstalledAppInfo) UnmarshalJSON(src []byte) error

func (*NullableReleaseAndInstalledAppInfo) Unset

type NullableReleaseInfo

type NullableReleaseInfo struct {
	// contains filtered or unexported fields
}

func NewNullableReleaseInfo

func NewNullableReleaseInfo(val *ReleaseInfo) *NullableReleaseInfo

func (NullableReleaseInfo) Get

func (NullableReleaseInfo) IsSet

func (v NullableReleaseInfo) IsSet() bool

func (NullableReleaseInfo) MarshalJSON

func (v NullableReleaseInfo) MarshalJSON() ([]byte, error)

func (*NullableReleaseInfo) Set

func (v *NullableReleaseInfo) Set(val *ReleaseInfo)

func (*NullableReleaseInfo) UnmarshalJSON

func (v *NullableReleaseInfo) UnmarshalJSON(src []byte) error

func (*NullableReleaseInfo) Unset

func (v *NullableReleaseInfo) Unset()

type NullableResourceIdentifier

type NullableResourceIdentifier struct {
	// contains filtered or unexported fields
}

func NewNullableResourceIdentifier

func NewNullableResourceIdentifier(val *ResourceIdentifier) *NullableResourceIdentifier

func (NullableResourceIdentifier) Get

func (NullableResourceIdentifier) IsSet

func (v NullableResourceIdentifier) IsSet() bool

func (NullableResourceIdentifier) MarshalJSON

func (v NullableResourceIdentifier) MarshalJSON() ([]byte, error)

func (*NullableResourceIdentifier) Set

func (*NullableResourceIdentifier) UnmarshalJSON

func (v *NullableResourceIdentifier) UnmarshalJSON(src []byte) error

func (*NullableResourceIdentifier) Unset

func (v *NullableResourceIdentifier) Unset()

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableUninstallReleaseResponse

type NullableUninstallReleaseResponse struct {
	// contains filtered or unexported fields
}

func (NullableUninstallReleaseResponse) Get

func (NullableUninstallReleaseResponse) IsSet

func (NullableUninstallReleaseResponse) MarshalJSON

func (v NullableUninstallReleaseResponse) MarshalJSON() ([]byte, error)

func (*NullableUninstallReleaseResponse) Set

func (*NullableUninstallReleaseResponse) UnmarshalJSON

func (v *NullableUninstallReleaseResponse) UnmarshalJSON(src []byte) error

func (*NullableUninstallReleaseResponse) Unset

type NullableUpdateReleaseRequest

type NullableUpdateReleaseRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateReleaseRequest

func NewNullableUpdateReleaseRequest(val *UpdateReleaseRequest) *NullableUpdateReleaseRequest

func (NullableUpdateReleaseRequest) Get

func (NullableUpdateReleaseRequest) IsSet

func (NullableUpdateReleaseRequest) MarshalJSON

func (v NullableUpdateReleaseRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateReleaseRequest) Set

func (*NullableUpdateReleaseRequest) UnmarshalJSON

func (v *NullableUpdateReleaseRequest) UnmarshalJSON(src []byte) error

func (*NullableUpdateReleaseRequest) Unset

func (v *NullableUpdateReleaseRequest) Unset()

type NullableUpdateReleaseResponse

type NullableUpdateReleaseResponse struct {
	// contains filtered or unexported fields
}

func (NullableUpdateReleaseResponse) Get

func (NullableUpdateReleaseResponse) IsSet

func (NullableUpdateReleaseResponse) MarshalJSON

func (v NullableUpdateReleaseResponse) MarshalJSON() ([]byte, error)

func (*NullableUpdateReleaseResponse) Set

func (*NullableUpdateReleaseResponse) UnmarshalJSON

func (v *NullableUpdateReleaseResponse) UnmarshalJSON(src []byte) error

func (*NullableUpdateReleaseResponse) Unset

func (v *NullableUpdateReleaseResponse) Unset()

type NullableUpdateReleaseWithChartLinkingRequest

type NullableUpdateReleaseWithChartLinkingRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdateReleaseWithChartLinkingRequest) Get

func (NullableUpdateReleaseWithChartLinkingRequest) IsSet

func (NullableUpdateReleaseWithChartLinkingRequest) MarshalJSON

func (*NullableUpdateReleaseWithChartLinkingRequest) Set

func (*NullableUpdateReleaseWithChartLinkingRequest) UnmarshalJSON

func (*NullableUpdateReleaseWithChartLinkingRequest) Unset

type ReleaseAndInstalledAppInfo

type ReleaseAndInstalledAppInfo struct {
	ReleaseInfo      *ReleaseInfo      `json:"releaseInfo,omitempty"`
	InstalledAppInfo *InstalledAppInfo `json:"installedAppInfo,omitempty"`
}

ReleaseAndInstalledAppInfo struct for ReleaseAndInstalledAppInfo

func NewReleaseAndInstalledAppInfo

func NewReleaseAndInstalledAppInfo() *ReleaseAndInstalledAppInfo

NewReleaseAndInstalledAppInfo instantiates a new ReleaseAndInstalledAppInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseAndInstalledAppInfoWithDefaults

func NewReleaseAndInstalledAppInfoWithDefaults() *ReleaseAndInstalledAppInfo

NewReleaseAndInstalledAppInfoWithDefaults instantiates a new ReleaseAndInstalledAppInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseAndInstalledAppInfo) GetInstalledAppInfo

func (o *ReleaseAndInstalledAppInfo) GetInstalledAppInfo() InstalledAppInfo

GetInstalledAppInfo returns the InstalledAppInfo field value if set, zero value otherwise.

func (*ReleaseAndInstalledAppInfo) GetInstalledAppInfoOk

func (o *ReleaseAndInstalledAppInfo) GetInstalledAppInfoOk() (*InstalledAppInfo, bool)

GetInstalledAppInfoOk returns a tuple with the InstalledAppInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseAndInstalledAppInfo) GetReleaseInfo

func (o *ReleaseAndInstalledAppInfo) GetReleaseInfo() ReleaseInfo

GetReleaseInfo returns the ReleaseInfo field value if set, zero value otherwise.

func (*ReleaseAndInstalledAppInfo) GetReleaseInfoOk

func (o *ReleaseAndInstalledAppInfo) GetReleaseInfoOk() (*ReleaseInfo, bool)

GetReleaseInfoOk returns a tuple with the ReleaseInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseAndInstalledAppInfo) HasInstalledAppInfo

func (o *ReleaseAndInstalledAppInfo) HasInstalledAppInfo() bool

HasInstalledAppInfo returns a boolean if a field has been set.

func (*ReleaseAndInstalledAppInfo) HasReleaseInfo

func (o *ReleaseAndInstalledAppInfo) HasReleaseInfo() bool

HasReleaseInfo returns a boolean if a field has been set.

func (ReleaseAndInstalledAppInfo) MarshalJSON

func (o ReleaseAndInstalledAppInfo) MarshalJSON() ([]byte, error)

func (*ReleaseAndInstalledAppInfo) SetInstalledAppInfo

func (o *ReleaseAndInstalledAppInfo) SetInstalledAppInfo(v InstalledAppInfo)

SetInstalledAppInfo gets a reference to the given InstalledAppInfo and assigns it to the InstalledAppInfo field.

func (*ReleaseAndInstalledAppInfo) SetReleaseInfo

func (o *ReleaseAndInstalledAppInfo) SetReleaseInfo(v ReleaseInfo)

SetReleaseInfo gets a reference to the given ReleaseInfo and assigns it to the ReleaseInfo field.

type ReleaseInfo

type ReleaseInfo struct {
	DeployedAppDetail *HelmApp `json:"deployedAppDetail,omitempty"`
	// default chat values
	DefaultValues *string `json:"defaultValues,omitempty"`
	// overrides passed by user
	OverrideValues *string `json:"overrideValues,omitempty"`
	// merged values
	MergedValues *string `json:"mergedValues,omitempty"`
	// readme of the chart
	Readme *string `json:"readme,omitempty"`
}

ReleaseInfo struct for ReleaseInfo

func NewReleaseInfo

func NewReleaseInfo() *ReleaseInfo

NewReleaseInfo instantiates a new ReleaseInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseInfoWithDefaults

func NewReleaseInfoWithDefaults() *ReleaseInfo

NewReleaseInfoWithDefaults instantiates a new ReleaseInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseInfo) GetDefaultValues

func (o *ReleaseInfo) GetDefaultValues() string

GetDefaultValues returns the DefaultValues field value if set, zero value otherwise.

func (*ReleaseInfo) GetDefaultValuesOk

func (o *ReleaseInfo) GetDefaultValuesOk() (*string, bool)

GetDefaultValuesOk returns a tuple with the DefaultValues field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseInfo) GetDeployedAppDetail

func (o *ReleaseInfo) GetDeployedAppDetail() HelmApp

GetDeployedAppDetail returns the DeployedAppDetail field value if set, zero value otherwise.

func (*ReleaseInfo) GetDeployedAppDetailOk

func (o *ReleaseInfo) GetDeployedAppDetailOk() (*HelmApp, bool)

GetDeployedAppDetailOk returns a tuple with the DeployedAppDetail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseInfo) GetMergedValues

func (o *ReleaseInfo) GetMergedValues() string

GetMergedValues returns the MergedValues field value if set, zero value otherwise.

func (*ReleaseInfo) GetMergedValuesOk

func (o *ReleaseInfo) GetMergedValuesOk() (*string, bool)

GetMergedValuesOk returns a tuple with the MergedValues field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseInfo) GetOverrideValues

func (o *ReleaseInfo) GetOverrideValues() string

GetOverrideValues returns the OverrideValues field value if set, zero value otherwise.

func (*ReleaseInfo) GetOverrideValuesOk

func (o *ReleaseInfo) GetOverrideValuesOk() (*string, bool)

GetOverrideValuesOk returns a tuple with the OverrideValues field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseInfo) GetReadme

func (o *ReleaseInfo) GetReadme() string

GetReadme returns the Readme field value if set, zero value otherwise.

func (*ReleaseInfo) GetReadmeOk

func (o *ReleaseInfo) GetReadmeOk() (*string, bool)

GetReadmeOk returns a tuple with the Readme field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseInfo) HasDefaultValues

func (o *ReleaseInfo) HasDefaultValues() bool

HasDefaultValues returns a boolean if a field has been set.

func (*ReleaseInfo) HasDeployedAppDetail

func (o *ReleaseInfo) HasDeployedAppDetail() bool

HasDeployedAppDetail returns a boolean if a field has been set.

func (*ReleaseInfo) HasMergedValues

func (o *ReleaseInfo) HasMergedValues() bool

HasMergedValues returns a boolean if a field has been set.

func (*ReleaseInfo) HasOverrideValues

func (o *ReleaseInfo) HasOverrideValues() bool

HasOverrideValues returns a boolean if a field has been set.

func (*ReleaseInfo) HasReadme

func (o *ReleaseInfo) HasReadme() bool

HasReadme returns a boolean if a field has been set.

func (ReleaseInfo) MarshalJSON

func (o ReleaseInfo) MarshalJSON() ([]byte, error)

func (*ReleaseInfo) SetDefaultValues

func (o *ReleaseInfo) SetDefaultValues(v string)

SetDefaultValues gets a reference to the given string and assigns it to the DefaultValues field.

func (*ReleaseInfo) SetDeployedAppDetail

func (o *ReleaseInfo) SetDeployedAppDetail(v HelmApp)

SetDeployedAppDetail gets a reference to the given HelmApp and assigns it to the DeployedAppDetail field.

func (*ReleaseInfo) SetMergedValues

func (o *ReleaseInfo) SetMergedValues(v string)

SetMergedValues gets a reference to the given string and assigns it to the MergedValues field.

func (*ReleaseInfo) SetOverrideValues

func (o *ReleaseInfo) SetOverrideValues(v string)

SetOverrideValues gets a reference to the given string and assigns it to the OverrideValues field.

func (*ReleaseInfo) SetReadme

func (o *ReleaseInfo) SetReadme(v string)

SetReadme gets a reference to the given string and assigns it to the Readme field.

type ResourceIdentifier

type ResourceIdentifier struct {
	// k8s resource group
	Group *string `json:"group,omitempty"`
	// k8s resource kind
	Kind *string `json:"kind,omitempty"`
	// k8s resource version
	Version *string `json:"version,omitempty"`
	// k8s resource name
	Name *string `json:"name,omitempty"`
	// k8s resource ns
	Namespace *string `json:"namespace,omitempty"`
}

ResourceIdentifier struct for ResourceIdentifier

func NewResourceIdentifier

func NewResourceIdentifier() *ResourceIdentifier

NewResourceIdentifier instantiates a new ResourceIdentifier object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResourceIdentifierWithDefaults

func NewResourceIdentifierWithDefaults() *ResourceIdentifier

NewResourceIdentifierWithDefaults instantiates a new ResourceIdentifier object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ResourceIdentifier) GetGroup

func (o *ResourceIdentifier) GetGroup() string

GetGroup returns the Group field value if set, zero value otherwise.

func (*ResourceIdentifier) GetGroupOk

func (o *ResourceIdentifier) GetGroupOk() (*string, bool)

GetGroupOk returns a tuple with the Group field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceIdentifier) GetKind

func (o *ResourceIdentifier) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*ResourceIdentifier) GetKindOk

func (o *ResourceIdentifier) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceIdentifier) GetName

func (o *ResourceIdentifier) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ResourceIdentifier) GetNameOk

func (o *ResourceIdentifier) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceIdentifier) GetNamespace

func (o *ResourceIdentifier) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*ResourceIdentifier) GetNamespaceOk

func (o *ResourceIdentifier) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceIdentifier) GetVersion

func (o *ResourceIdentifier) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*ResourceIdentifier) GetVersionOk

func (o *ResourceIdentifier) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceIdentifier) HasGroup

func (o *ResourceIdentifier) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (*ResourceIdentifier) HasKind

func (o *ResourceIdentifier) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*ResourceIdentifier) HasName

func (o *ResourceIdentifier) HasName() bool

HasName returns a boolean if a field has been set.

func (*ResourceIdentifier) HasNamespace

func (o *ResourceIdentifier) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*ResourceIdentifier) HasVersion

func (o *ResourceIdentifier) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (ResourceIdentifier) MarshalJSON

func (o ResourceIdentifier) MarshalJSON() ([]byte, error)

func (*ResourceIdentifier) SetGroup

func (o *ResourceIdentifier) SetGroup(v string)

SetGroup gets a reference to the given string and assigns it to the Group field.

func (*ResourceIdentifier) SetKind

func (o *ResourceIdentifier) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*ResourceIdentifier) SetName

func (o *ResourceIdentifier) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ResourceIdentifier) SetNamespace

func (o *ResourceIdentifier) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*ResourceIdentifier) SetVersion

func (o *ResourceIdentifier) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type UninstallReleaseResponse

type UninstallReleaseResponse struct {
	// success or failure
	Success *bool `json:"success,omitempty"`
}

UninstallReleaseResponse struct for UninstallReleaseResponse

func NewUninstallReleaseResponse

func NewUninstallReleaseResponse() *UninstallReleaseResponse

NewUninstallReleaseResponse instantiates a new UninstallReleaseResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUninstallReleaseResponseWithDefaults

func NewUninstallReleaseResponseWithDefaults() *UninstallReleaseResponse

NewUninstallReleaseResponseWithDefaults instantiates a new UninstallReleaseResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UninstallReleaseResponse) GetSuccess

func (o *UninstallReleaseResponse) GetSuccess() bool

GetSuccess returns the Success field value if set, zero value otherwise.

func (*UninstallReleaseResponse) GetSuccessOk

func (o *UninstallReleaseResponse) GetSuccessOk() (*bool, bool)

GetSuccessOk returns a tuple with the Success field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UninstallReleaseResponse) HasSuccess

func (o *UninstallReleaseResponse) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (UninstallReleaseResponse) MarshalJSON

func (o UninstallReleaseResponse) MarshalJSON() ([]byte, error)

func (*UninstallReleaseResponse) SetSuccess

func (o *UninstallReleaseResponse) SetSuccess(v bool)

SetSuccess gets a reference to the given bool and assigns it to the Success field.

type UpdateReleaseRequest

type UpdateReleaseRequest struct {
	// helm app id
	AppId *string `json:"appId,omitempty"`
	// updated values yaml string
	ValuesYaml *string `json:"valuesYaml,omitempty"`
}

UpdateReleaseRequest struct for UpdateReleaseRequest

func NewUpdateReleaseRequest

func NewUpdateReleaseRequest() *UpdateReleaseRequest

NewUpdateReleaseRequest instantiates a new UpdateReleaseRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateReleaseRequestWithDefaults

func NewUpdateReleaseRequestWithDefaults() *UpdateReleaseRequest

NewUpdateReleaseRequestWithDefaults instantiates a new UpdateReleaseRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateReleaseRequest) GetAppId

func (o *UpdateReleaseRequest) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*UpdateReleaseRequest) GetAppIdOk

func (o *UpdateReleaseRequest) GetAppIdOk() (*string, bool)

GetAppIdOk returns a tuple with the AppId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateReleaseRequest) GetValuesYaml

func (o *UpdateReleaseRequest) GetValuesYaml() string

GetValuesYaml returns the ValuesYaml field value if set, zero value otherwise.

func (*UpdateReleaseRequest) GetValuesYamlOk

func (o *UpdateReleaseRequest) GetValuesYamlOk() (*string, bool)

GetValuesYamlOk returns a tuple with the ValuesYaml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateReleaseRequest) HasAppId

func (o *UpdateReleaseRequest) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*UpdateReleaseRequest) HasValuesYaml

func (o *UpdateReleaseRequest) HasValuesYaml() bool

HasValuesYaml returns a boolean if a field has been set.

func (UpdateReleaseRequest) MarshalJSON

func (o UpdateReleaseRequest) MarshalJSON() ([]byte, error)

func (*UpdateReleaseRequest) SetAppId

func (o *UpdateReleaseRequest) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*UpdateReleaseRequest) SetValuesYaml

func (o *UpdateReleaseRequest) SetValuesYaml(v string)

SetValuesYaml gets a reference to the given string and assigns it to the ValuesYaml field.

type UpdateReleaseResponse

type UpdateReleaseResponse struct {
	// success or failure
	Success *bool `json:"success,omitempty"`
}

UpdateReleaseResponse struct for UpdateReleaseResponse

func NewUpdateReleaseResponse

func NewUpdateReleaseResponse() *UpdateReleaseResponse

NewUpdateReleaseResponse instantiates a new UpdateReleaseResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateReleaseResponseWithDefaults

func NewUpdateReleaseResponseWithDefaults() *UpdateReleaseResponse

NewUpdateReleaseResponseWithDefaults instantiates a new UpdateReleaseResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateReleaseResponse) GetSuccess

func (o *UpdateReleaseResponse) GetSuccess() bool

GetSuccess returns the Success field value if set, zero value otherwise.

func (*UpdateReleaseResponse) GetSuccessOk

func (o *UpdateReleaseResponse) GetSuccessOk() (*bool, bool)

GetSuccessOk returns a tuple with the Success field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateReleaseResponse) HasSuccess

func (o *UpdateReleaseResponse) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (UpdateReleaseResponse) MarshalJSON

func (o UpdateReleaseResponse) MarshalJSON() ([]byte, error)

func (*UpdateReleaseResponse) SetSuccess

func (o *UpdateReleaseResponse) SetSuccess(v bool)

SetSuccess gets a reference to the given bool and assigns it to the Success field.

type UpdateReleaseWithChartLinkingRequest

type UpdateReleaseWithChartLinkingRequest struct {
	// helm app id
	AppId *string `json:"appId,omitempty"`
	// updated values yaml string
	ValuesYaml *string `json:"valuesYaml,omitempty"`
	// app store application version Id
	AppStoreApplicationVersionId *float32 `json:"appStoreApplicationVersionId,omitempty"`
	// Reference value Id of selected chart values
	ReferenceValueId *float32 `json:"referenceValueId,omitempty"`
	// Reference value Kind of selected chart values \"oneof=DEFAULT TEMPLATE DEPLOYED EXISTING\" (can be null)
	ReferenceValueKind *string `json:"referenceValueKind,omitempty"`
}

UpdateReleaseWithChartLinkingRequest struct for UpdateReleaseWithChartLinkingRequest

func NewUpdateReleaseWithChartLinkingRequest

func NewUpdateReleaseWithChartLinkingRequest() *UpdateReleaseWithChartLinkingRequest

NewUpdateReleaseWithChartLinkingRequest instantiates a new UpdateReleaseWithChartLinkingRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateReleaseWithChartLinkingRequestWithDefaults

func NewUpdateReleaseWithChartLinkingRequestWithDefaults() *UpdateReleaseWithChartLinkingRequest

NewUpdateReleaseWithChartLinkingRequestWithDefaults instantiates a new UpdateReleaseWithChartLinkingRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateReleaseWithChartLinkingRequest) GetAppId

GetAppId returns the AppId field value if set, zero value otherwise.

func (*UpdateReleaseWithChartLinkingRequest) GetAppIdOk

func (o *UpdateReleaseWithChartLinkingRequest) GetAppIdOk() (*string, bool)

GetAppIdOk returns a tuple with the AppId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateReleaseWithChartLinkingRequest) GetAppStoreApplicationVersionId

func (o *UpdateReleaseWithChartLinkingRequest) GetAppStoreApplicationVersionId() float32

GetAppStoreApplicationVersionId returns the AppStoreApplicationVersionId field value if set, zero value otherwise.

func (*UpdateReleaseWithChartLinkingRequest) GetAppStoreApplicationVersionIdOk

func (o *UpdateReleaseWithChartLinkingRequest) GetAppStoreApplicationVersionIdOk() (*float32, bool)

GetAppStoreApplicationVersionIdOk returns a tuple with the AppStoreApplicationVersionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateReleaseWithChartLinkingRequest) GetReferenceValueId

func (o *UpdateReleaseWithChartLinkingRequest) GetReferenceValueId() float32

GetReferenceValueId returns the ReferenceValueId field value if set, zero value otherwise.

func (*UpdateReleaseWithChartLinkingRequest) GetReferenceValueIdOk

func (o *UpdateReleaseWithChartLinkingRequest) GetReferenceValueIdOk() (*float32, bool)

GetReferenceValueIdOk returns a tuple with the ReferenceValueId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateReleaseWithChartLinkingRequest) GetReferenceValueKind

func (o *UpdateReleaseWithChartLinkingRequest) GetReferenceValueKind() string

GetReferenceValueKind returns the ReferenceValueKind field value if set, zero value otherwise.

func (*UpdateReleaseWithChartLinkingRequest) GetReferenceValueKindOk

func (o *UpdateReleaseWithChartLinkingRequest) GetReferenceValueKindOk() (*string, bool)

GetReferenceValueKindOk returns a tuple with the ReferenceValueKind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateReleaseWithChartLinkingRequest) GetValuesYaml

func (o *UpdateReleaseWithChartLinkingRequest) GetValuesYaml() string

GetValuesYaml returns the ValuesYaml field value if set, zero value otherwise.

func (*UpdateReleaseWithChartLinkingRequest) GetValuesYamlOk

func (o *UpdateReleaseWithChartLinkingRequest) GetValuesYamlOk() (*string, bool)

GetValuesYamlOk returns a tuple with the ValuesYaml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateReleaseWithChartLinkingRequest) HasAppId

HasAppId returns a boolean if a field has been set.

func (*UpdateReleaseWithChartLinkingRequest) HasAppStoreApplicationVersionId

func (o *UpdateReleaseWithChartLinkingRequest) HasAppStoreApplicationVersionId() bool

HasAppStoreApplicationVersionId returns a boolean if a field has been set.

func (*UpdateReleaseWithChartLinkingRequest) HasReferenceValueId

func (o *UpdateReleaseWithChartLinkingRequest) HasReferenceValueId() bool

HasReferenceValueId returns a boolean if a field has been set.

func (*UpdateReleaseWithChartLinkingRequest) HasReferenceValueKind

func (o *UpdateReleaseWithChartLinkingRequest) HasReferenceValueKind() bool

HasReferenceValueKind returns a boolean if a field has been set.

func (*UpdateReleaseWithChartLinkingRequest) HasValuesYaml

func (o *UpdateReleaseWithChartLinkingRequest) HasValuesYaml() bool

HasValuesYaml returns a boolean if a field has been set.

func (UpdateReleaseWithChartLinkingRequest) MarshalJSON

func (o UpdateReleaseWithChartLinkingRequest) MarshalJSON() ([]byte, error)

func (*UpdateReleaseWithChartLinkingRequest) SetAppId

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*UpdateReleaseWithChartLinkingRequest) SetAppStoreApplicationVersionId

func (o *UpdateReleaseWithChartLinkingRequest) SetAppStoreApplicationVersionId(v float32)

SetAppStoreApplicationVersionId gets a reference to the given float32 and assigns it to the AppStoreApplicationVersionId field.

func (*UpdateReleaseWithChartLinkingRequest) SetReferenceValueId

func (o *UpdateReleaseWithChartLinkingRequest) SetReferenceValueId(v float32)

SetReferenceValueId gets a reference to the given float32 and assigns it to the ReferenceValueId field.

func (*UpdateReleaseWithChartLinkingRequest) SetReferenceValueKind

func (o *UpdateReleaseWithChartLinkingRequest) SetReferenceValueKind(v string)

SetReferenceValueKind gets a reference to the given string and assigns it to the ReferenceValueKind field.

func (*UpdateReleaseWithChartLinkingRequest) SetValuesYaml

func (o *UpdateReleaseWithChartLinkingRequest) SetValuesYaml(v string)

SetValuesYaml gets a reference to the given string and assigns it to the ValuesYaml field.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL