api

package
v0.0.0-...-80edec6 Latest Latest
Warning

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

Go to latest
Published: Mar 10, 2023 License: Apache-2.0 Imports: 21 Imported by: 0

README ¶

Go API client for api

Description of all APIs

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: version not set
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import api "github.com/eschercloudai/argocd-client-go/pkg/api"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), api.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), api.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), api.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), api.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to http://localhost

Class Method HTTP request Description
AccountServiceApi AccountServiceCanI Get /api/v1/account/can-i/{resource}/{action}/{subresource} CanI checks if the current account has permission to perform an action
AccountServiceApi AccountServiceCreateToken Post /api/v1/account/{name}/token CreateToken creates a token
AccountServiceApi AccountServiceDeleteToken Delete /api/v1/account/{name}/token/{id} DeleteToken deletes a token
AccountServiceApi AccountServiceGetAccount Get /api/v1/account/{name} GetAccount returns an account
AccountServiceApi AccountServiceListAccounts Get /api/v1/account ListAccounts returns the list of accounts
AccountServiceApi AccountServiceUpdatePassword Put /api/v1/account/password UpdatePassword updates an account's password to a new value
ApplicationServiceApi ApplicationServiceCreate Post /api/v1/applications Create creates an application
ApplicationServiceApi ApplicationServiceDelete Delete /api/v1/applications/{name} Delete deletes an application
ApplicationServiceApi ApplicationServiceDeleteResource Delete /api/v1/applications/{name}/resource DeleteResource deletes a single application resource
ApplicationServiceApi ApplicationServiceGet Get /api/v1/applications/{name} Get returns an application by name
ApplicationServiceApi ApplicationServiceGetApplicationSyncWindows Get /api/v1/applications/{name}/syncwindows Get returns sync windows of the application
ApplicationServiceApi ApplicationServiceGetManifests Get /api/v1/applications/{name}/manifests GetManifests returns application manifests
ApplicationServiceApi ApplicationServiceGetManifestsWithFiles Post /api/v1/applications/manifestsWithFiles GetManifestsWithFiles returns application manifests using provided files to generate them
ApplicationServiceApi ApplicationServiceGetResource Get /api/v1/applications/{name}/resource GetResource returns single application resource
ApplicationServiceApi ApplicationServiceList Get /api/v1/applications List returns list of applications
ApplicationServiceApi ApplicationServiceListResourceActions Get /api/v1/applications/{name}/resource/actions ListResourceActions returns list of resource actions
ApplicationServiceApi ApplicationServiceListResourceEvents Get /api/v1/applications/{name}/events ListResourceEvents returns a list of event resources
ApplicationServiceApi ApplicationServiceManagedResources Get /api/v1/applications/{applicationName}/managed-resources ManagedResources returns list of managed resources
ApplicationServiceApi ApplicationServicePatch Patch /api/v1/applications/{name} Patch patch an application
ApplicationServiceApi ApplicationServicePatchResource Post /api/v1/applications/{name}/resource PatchResource patch single application resource
ApplicationServiceApi ApplicationServicePodLogs Get /api/v1/applications/{name}/pods/{podName}/logs PodLogs returns stream of log entries for the specified pod. Pod
ApplicationServiceApi ApplicationServicePodLogs2 Get /api/v1/applications/{name}/logs PodLogs returns stream of log entries for the specified pod. Pod
ApplicationServiceApi ApplicationServiceResourceTree Get /api/v1/applications/{applicationName}/resource-tree ResourceTree returns resource tree
ApplicationServiceApi ApplicationServiceRevisionMetadata Get /api/v1/applications/{name}/revisions/{revision}/metadata Get the meta-data (author, date, tags, message) for a specific revision of the application
ApplicationServiceApi ApplicationServiceRollback Post /api/v1/applications/{name}/rollback Rollback syncs an application to its target state
ApplicationServiceApi ApplicationServiceRunResourceAction Post /api/v1/applications/{name}/resource/actions RunResourceAction run resource action
ApplicationServiceApi ApplicationServiceSync Post /api/v1/applications/{name}/sync Sync syncs an application to its target state
ApplicationServiceApi ApplicationServiceTerminateOperation Delete /api/v1/applications/{name}/operation TerminateOperation terminates the currently running operation
ApplicationServiceApi ApplicationServiceUpdate Put /api/v1/applications/{application.metadata.name} Update updates an application
ApplicationServiceApi ApplicationServiceUpdateSpec Put /api/v1/applications/{name}/spec UpdateSpec updates an application spec
ApplicationServiceApi ApplicationServiceWatch Get /api/v1/stream/applications Watch returns stream of application change events
ApplicationServiceApi ApplicationServiceWatchResourceTree Get /api/v1/stream/applications/{applicationName}/resource-tree Watch returns stream of application resource tree
ApplicationSetServiceApi ApplicationSetServiceCreate Post /api/v1/applicationsets Create creates an applicationset
ApplicationSetServiceApi ApplicationSetServiceDelete Delete /api/v1/applicationsets/{name} Delete deletes an application set
ApplicationSetServiceApi ApplicationSetServiceGet Get /api/v1/applicationsets/{name} Get returns an applicationset by name
ApplicationSetServiceApi ApplicationSetServiceList Get /api/v1/applicationsets List returns list of applicationset
CertificateServiceApi CertificateServiceCreateCertificate Post /api/v1/certificates Creates repository certificates on the server
CertificateServiceApi CertificateServiceDeleteCertificate Delete /api/v1/certificates Delete the certificates that match the RepositoryCertificateQuery
CertificateServiceApi CertificateServiceListCertificates Get /api/v1/certificates List all available repository certificates
ClusterServiceApi ClusterServiceCreate Post /api/v1/clusters Create creates a cluster
ClusterServiceApi ClusterServiceDelete Delete /api/v1/clusters/{id.value} Delete deletes a cluster
ClusterServiceApi ClusterServiceGet Get /api/v1/clusters/{id.value} Get returns a cluster by server address
ClusterServiceApi ClusterServiceInvalidateCache Post /api/v1/clusters/{id.value}/invalidate-cache InvalidateCache invalidates cluster cache
ClusterServiceApi ClusterServiceList Get /api/v1/clusters List returns list of clusters
ClusterServiceApi ClusterServiceRotateAuth Post /api/v1/clusters/{id.value}/rotate-auth RotateAuth rotates the bearer token used for a cluster
ClusterServiceApi ClusterServiceUpdate Put /api/v1/clusters/{id.value} Update updates a cluster
GPGKeyServiceApi GPGKeyServiceCreate Post /api/v1/gpgkeys Create one or more GPG public keys in the server's configuration
GPGKeyServiceApi GPGKeyServiceDelete Delete /api/v1/gpgkeys Delete specified GPG public key from the server's configuration
GPGKeyServiceApi GPGKeyServiceGet Get /api/v1/gpgkeys/{keyID} Get information about specified GPG public key from the server
GPGKeyServiceApi GPGKeyServiceList Get /api/v1/gpgkeys List all available repository certificates
NotificationServiceApi NotificationServiceListServices Get /api/v1/notifications/services List returns list of services
NotificationServiceApi NotificationServiceListTemplates Get /api/v1/notifications/templates List returns list of templates
NotificationServiceApi NotificationServiceListTriggers Get /api/v1/notifications/triggers List returns list of triggers
ProjectServiceApi ProjectServiceCreate Post /api/v1/projects Create a new project
ProjectServiceApi ProjectServiceCreateToken Post /api/v1/projects/{project}/roles/{role}/token Create a new project token
ProjectServiceApi ProjectServiceDelete Delete /api/v1/projects/{name} Delete deletes a project
ProjectServiceApi ProjectServiceDeleteToken Delete /api/v1/projects/{project}/roles/{role}/token/{iat} Delete a new project token
ProjectServiceApi ProjectServiceGet Get /api/v1/projects/{name} Get returns a project by name
ProjectServiceApi ProjectServiceGetDetailedProject Get /api/v1/projects/{name}/detailed GetDetailedProject returns a project that include project, global project and scoped resources by name
ProjectServiceApi ProjectServiceGetGlobalProjects Get /api/v1/projects/{name}/globalprojects Get returns a virtual project by name
ProjectServiceApi ProjectServiceGetSyncWindowsState Get /api/v1/projects/{name}/syncwindows GetSchedulesState returns true if there are any active sync syncWindows
ProjectServiceApi ProjectServiceList Get /api/v1/projects List returns list of projects
ProjectServiceApi ProjectServiceListEvents Get /api/v1/projects/{name}/events ListEvents returns a list of project events
ProjectServiceApi ProjectServiceUpdate Put /api/v1/projects/{project.metadata.name} Update updates a project
RepoCredsServiceApi RepoCredsServiceCreateRepositoryCredentials Post /api/v1/repocreds CreateRepositoryCredentials creates a new repository credential set
RepoCredsServiceApi RepoCredsServiceDeleteRepositoryCredentials Delete /api/v1/repocreds/{url} DeleteRepositoryCredentials deletes a repository credential set from the configuration
RepoCredsServiceApi RepoCredsServiceListRepositoryCredentials Get /api/v1/repocreds ListRepositoryCredentials gets a list of all configured repository credential sets
RepoCredsServiceApi RepoCredsServiceUpdateRepositoryCredentials Put /api/v1/repocreds/{creds.url} UpdateRepositoryCredentials updates a repository credential set
RepositoryServiceApi RepositoryServiceCreateRepository Post /api/v1/repositories CreateRepository creates a new repository configuration
RepositoryServiceApi RepositoryServiceDeleteRepository Delete /api/v1/repositories/{repo} DeleteRepository deletes a repository from the configuration
RepositoryServiceApi RepositoryServiceGet Get /api/v1/repositories/{repo} Get returns a repository or its credentials
RepositoryServiceApi RepositoryServiceGetAppDetails Post /api/v1/repositories/{source.repoURL}/appdetails GetAppDetails returns application details by given path
RepositoryServiceApi RepositoryServiceGetHelmCharts Get /api/v1/repositories/{repo}/helmcharts GetHelmCharts returns list of helm charts in the specified repository
RepositoryServiceApi RepositoryServiceListApps Get /api/v1/repositories/{repo}/apps ListApps returns list of apps in the repo
RepositoryServiceApi RepositoryServiceListRefs Get /api/v1/repositories/{repo}/refs
RepositoryServiceApi RepositoryServiceListRepositories Get /api/v1/repositories ListRepositories gets a list of all configured repositories
RepositoryServiceApi RepositoryServiceUpdateRepository Put /api/v1/repositories/{repo.repo} UpdateRepository updates a repository configuration
RepositoryServiceApi RepositoryServiceValidateAccess Post /api/v1/repositories/{repo}/validate ValidateAccess validates access to a repository with given parameters
SessionServiceApi SessionServiceCreate Post /api/v1/session Create a new JWT for authentication and set a cookie if using HTTP
SessionServiceApi SessionServiceDelete Delete /api/v1/session Delete an existing JWT cookie if using HTTP
SessionServiceApi SessionServiceGetUserInfo Get /api/v1/session/userinfo Get the current user's info
SettingsServiceApi SettingsServiceGet Get /api/v1/settings Get returns Argo CD settings
VersionServiceApi VersionServiceVersion Get /api/version Version returns version information of the API server

Documentation For Models

Documentation For Authorization

Endpoints do not require authorization.

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

Documentation ¶

Index ¶

Constants ¶

This section is empty.

Variables ¶

View Source
var (
	// 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 {
	AccountServiceApi *AccountServiceApiService

	ApplicationServiceApi *ApplicationServiceApiService

	ApplicationSetServiceApi *ApplicationSetServiceApiService

	CertificateServiceApi *CertificateServiceApiService

	ClusterServiceApi *ClusterServiceApiService

	GPGKeyServiceApi *GPGKeyServiceApiService

	NotificationServiceApi *NotificationServiceApiService

	ProjectServiceApi *ProjectServiceApiService

	RepoCredsServiceApi *RepoCredsServiceApiService

	RepositoryServiceApi *RepositoryServiceApiService

	SessionServiceApi *SessionServiceApiService

	SettingsServiceApi *SettingsServiceApiService

	VersionServiceApi *VersionServiceApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Consolidate Services API vversion not set 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 AccountAccount ¶

type AccountAccount struct {
	Capabilities []string       `json:"capabilities,omitempty"`
	Enabled      *bool          `json:"enabled,omitempty"`
	Name         *string        `json:"name,omitempty"`
	Tokens       []AccountToken `json:"tokens,omitempty"`
}

AccountAccount struct for AccountAccount

func NewAccountAccount ¶

func NewAccountAccount() *AccountAccount

NewAccountAccount instantiates a new AccountAccount 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 NewAccountAccountWithDefaults ¶

func NewAccountAccountWithDefaults() *AccountAccount

NewAccountAccountWithDefaults instantiates a new AccountAccount 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 (*AccountAccount) GetCapabilities ¶

func (o *AccountAccount) GetCapabilities() []string

GetCapabilities returns the Capabilities field value if set, zero value otherwise.

func (*AccountAccount) GetCapabilitiesOk ¶

func (o *AccountAccount) GetCapabilitiesOk() ([]string, bool)

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

func (*AccountAccount) GetEnabled ¶

func (o *AccountAccount) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*AccountAccount) GetEnabledOk ¶

func (o *AccountAccount) GetEnabledOk() (*bool, bool)

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

func (*AccountAccount) GetName ¶

func (o *AccountAccount) GetName() string

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

func (*AccountAccount) GetNameOk ¶

func (o *AccountAccount) 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 (*AccountAccount) GetTokens ¶

func (o *AccountAccount) GetTokens() []AccountToken

GetTokens returns the Tokens field value if set, zero value otherwise.

func (*AccountAccount) GetTokensOk ¶

func (o *AccountAccount) GetTokensOk() ([]AccountToken, bool)

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

func (*AccountAccount) HasCapabilities ¶

func (o *AccountAccount) HasCapabilities() bool

HasCapabilities returns a boolean if a field has been set.

func (*AccountAccount) HasEnabled ¶

func (o *AccountAccount) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*AccountAccount) HasName ¶

func (o *AccountAccount) HasName() bool

HasName returns a boolean if a field has been set.

func (*AccountAccount) HasTokens ¶

func (o *AccountAccount) HasTokens() bool

HasTokens returns a boolean if a field has been set.

func (AccountAccount) MarshalJSON ¶

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

func (*AccountAccount) SetCapabilities ¶

func (o *AccountAccount) SetCapabilities(v []string)

SetCapabilities gets a reference to the given []string and assigns it to the Capabilities field.

func (*AccountAccount) SetEnabled ¶

func (o *AccountAccount) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*AccountAccount) SetName ¶

func (o *AccountAccount) SetName(v string)

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

func (*AccountAccount) SetTokens ¶

func (o *AccountAccount) SetTokens(v []AccountToken)

SetTokens gets a reference to the given []AccountToken and assigns it to the Tokens field.

func (AccountAccount) ToMap ¶

func (o AccountAccount) ToMap() (map[string]interface{}, error)

type AccountAccountsList ¶

type AccountAccountsList struct {
	Items []AccountAccount `json:"items,omitempty"`
}

AccountAccountsList struct for AccountAccountsList

func NewAccountAccountsList ¶

func NewAccountAccountsList() *AccountAccountsList

NewAccountAccountsList instantiates a new AccountAccountsList 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 NewAccountAccountsListWithDefaults ¶

func NewAccountAccountsListWithDefaults() *AccountAccountsList

NewAccountAccountsListWithDefaults instantiates a new AccountAccountsList 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 (*AccountAccountsList) GetItems ¶

func (o *AccountAccountsList) GetItems() []AccountAccount

GetItems returns the Items field value if set, zero value otherwise.

func (*AccountAccountsList) GetItemsOk ¶

func (o *AccountAccountsList) GetItemsOk() ([]AccountAccount, bool)

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

func (*AccountAccountsList) HasItems ¶

func (o *AccountAccountsList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (AccountAccountsList) MarshalJSON ¶

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

func (*AccountAccountsList) SetItems ¶

func (o *AccountAccountsList) SetItems(v []AccountAccount)

SetItems gets a reference to the given []AccountAccount and assigns it to the Items field.

func (AccountAccountsList) ToMap ¶

func (o AccountAccountsList) ToMap() (map[string]interface{}, error)

type AccountCanIResponse ¶

type AccountCanIResponse struct {
	Value *string `json:"value,omitempty"`
}

AccountCanIResponse struct for AccountCanIResponse

func NewAccountCanIResponse ¶

func NewAccountCanIResponse() *AccountCanIResponse

NewAccountCanIResponse instantiates a new AccountCanIResponse 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 NewAccountCanIResponseWithDefaults ¶

func NewAccountCanIResponseWithDefaults() *AccountCanIResponse

NewAccountCanIResponseWithDefaults instantiates a new AccountCanIResponse 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 (*AccountCanIResponse) GetValue ¶

func (o *AccountCanIResponse) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*AccountCanIResponse) GetValueOk ¶

func (o *AccountCanIResponse) GetValueOk() (*string, bool)

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

func (*AccountCanIResponse) HasValue ¶

func (o *AccountCanIResponse) HasValue() bool

HasValue returns a boolean if a field has been set.

func (AccountCanIResponse) MarshalJSON ¶

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

func (*AccountCanIResponse) SetValue ¶

func (o *AccountCanIResponse) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (AccountCanIResponse) ToMap ¶

func (o AccountCanIResponse) ToMap() (map[string]interface{}, error)

type AccountCreateTokenRequest ¶

type AccountCreateTokenRequest struct {
	ExpiresIn *string `json:"expiresIn,omitempty"`
	Id        *string `json:"id,omitempty"`
	Name      *string `json:"name,omitempty"`
}

AccountCreateTokenRequest struct for AccountCreateTokenRequest

func NewAccountCreateTokenRequest ¶

func NewAccountCreateTokenRequest() *AccountCreateTokenRequest

NewAccountCreateTokenRequest instantiates a new AccountCreateTokenRequest 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 NewAccountCreateTokenRequestWithDefaults ¶

func NewAccountCreateTokenRequestWithDefaults() *AccountCreateTokenRequest

NewAccountCreateTokenRequestWithDefaults instantiates a new AccountCreateTokenRequest 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 (*AccountCreateTokenRequest) GetExpiresIn ¶

func (o *AccountCreateTokenRequest) GetExpiresIn() string

GetExpiresIn returns the ExpiresIn field value if set, zero value otherwise.

func (*AccountCreateTokenRequest) GetExpiresInOk ¶

func (o *AccountCreateTokenRequest) GetExpiresInOk() (*string, bool)

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

func (*AccountCreateTokenRequest) GetId ¶

func (o *AccountCreateTokenRequest) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*AccountCreateTokenRequest) GetIdOk ¶

func (o *AccountCreateTokenRequest) GetIdOk() (*string, bool)

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

func (*AccountCreateTokenRequest) GetName ¶

func (o *AccountCreateTokenRequest) GetName() string

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

func (*AccountCreateTokenRequest) GetNameOk ¶

func (o *AccountCreateTokenRequest) 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 (*AccountCreateTokenRequest) HasExpiresIn ¶

func (o *AccountCreateTokenRequest) HasExpiresIn() bool

HasExpiresIn returns a boolean if a field has been set.

func (*AccountCreateTokenRequest) HasId ¶

func (o *AccountCreateTokenRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*AccountCreateTokenRequest) HasName ¶

func (o *AccountCreateTokenRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (AccountCreateTokenRequest) MarshalJSON ¶

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

func (*AccountCreateTokenRequest) SetExpiresIn ¶

func (o *AccountCreateTokenRequest) SetExpiresIn(v string)

SetExpiresIn gets a reference to the given string and assigns it to the ExpiresIn field.

func (*AccountCreateTokenRequest) SetId ¶

func (o *AccountCreateTokenRequest) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*AccountCreateTokenRequest) SetName ¶

func (o *AccountCreateTokenRequest) SetName(v string)

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

func (AccountCreateTokenRequest) ToMap ¶

func (o AccountCreateTokenRequest) ToMap() (map[string]interface{}, error)

type AccountCreateTokenResponse ¶

type AccountCreateTokenResponse struct {
	Token *string `json:"token,omitempty"`
}

AccountCreateTokenResponse struct for AccountCreateTokenResponse

func NewAccountCreateTokenResponse ¶

func NewAccountCreateTokenResponse() *AccountCreateTokenResponse

NewAccountCreateTokenResponse instantiates a new AccountCreateTokenResponse 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 NewAccountCreateTokenResponseWithDefaults ¶

func NewAccountCreateTokenResponseWithDefaults() *AccountCreateTokenResponse

NewAccountCreateTokenResponseWithDefaults instantiates a new AccountCreateTokenResponse 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 (*AccountCreateTokenResponse) GetToken ¶

func (o *AccountCreateTokenResponse) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*AccountCreateTokenResponse) GetTokenOk ¶

func (o *AccountCreateTokenResponse) GetTokenOk() (*string, bool)

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

func (*AccountCreateTokenResponse) HasToken ¶

func (o *AccountCreateTokenResponse) HasToken() bool

HasToken returns a boolean if a field has been set.

func (AccountCreateTokenResponse) MarshalJSON ¶

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

func (*AccountCreateTokenResponse) SetToken ¶

func (o *AccountCreateTokenResponse) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

func (AccountCreateTokenResponse) ToMap ¶

func (o AccountCreateTokenResponse) ToMap() (map[string]interface{}, error)

type AccountServiceApiService ¶

type AccountServiceApiService service

AccountServiceApiService AccountServiceApi service

func (*AccountServiceApiService) AccountServiceCanI ¶

func (a *AccountServiceApiService) AccountServiceCanI(ctx context.Context, resource string, action string, subresource string) ApiAccountServiceCanIRequest

AccountServiceCanI CanI checks if the current account has permission to perform an action

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

func (*AccountServiceApiService) AccountServiceCanIExecute ¶

Execute executes the request

@return AccountCanIResponse

func (*AccountServiceApiService) AccountServiceCreateToken ¶

func (a *AccountServiceApiService) AccountServiceCreateToken(ctx context.Context, name string) ApiAccountServiceCreateTokenRequest

AccountServiceCreateToken CreateToken creates a token

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

func (*AccountServiceApiService) AccountServiceCreateTokenExecute ¶

Execute executes the request

@return AccountCreateTokenResponse

func (*AccountServiceApiService) AccountServiceDeleteToken ¶

func (a *AccountServiceApiService) AccountServiceDeleteToken(ctx context.Context, name string, id string) ApiAccountServiceDeleteTokenRequest

AccountServiceDeleteToken DeleteToken deletes a token

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

func (*AccountServiceApiService) AccountServiceDeleteTokenExecute ¶

func (a *AccountServiceApiService) AccountServiceDeleteTokenExecute(r ApiAccountServiceDeleteTokenRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*AccountServiceApiService) AccountServiceGetAccount ¶

func (a *AccountServiceApiService) AccountServiceGetAccount(ctx context.Context, name string) ApiAccountServiceGetAccountRequest

AccountServiceGetAccount GetAccount returns an account

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

func (*AccountServiceApiService) AccountServiceGetAccountExecute ¶

Execute executes the request

@return AccountAccount

func (*AccountServiceApiService) AccountServiceListAccounts ¶

AccountServiceListAccounts ListAccounts returns the list of accounts

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

func (*AccountServiceApiService) AccountServiceListAccountsExecute ¶

Execute executes the request

@return AccountAccountsList

func (*AccountServiceApiService) AccountServiceUpdatePassword ¶

AccountServiceUpdatePassword UpdatePassword updates an account's password to a new value

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

func (*AccountServiceApiService) AccountServiceUpdatePasswordExecute ¶

func (a *AccountServiceApiService) AccountServiceUpdatePasswordExecute(r ApiAccountServiceUpdatePasswordRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

type AccountToken ¶

type AccountToken struct {
	ExpiresAt *string `json:"expiresAt,omitempty"`
	Id        *string `json:"id,omitempty"`
	IssuedAt  *string `json:"issuedAt,omitempty"`
}

AccountToken struct for AccountToken

func NewAccountToken ¶

func NewAccountToken() *AccountToken

NewAccountToken instantiates a new AccountToken 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 NewAccountTokenWithDefaults ¶

func NewAccountTokenWithDefaults() *AccountToken

NewAccountTokenWithDefaults instantiates a new AccountToken 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 (*AccountToken) GetExpiresAt ¶

func (o *AccountToken) GetExpiresAt() string

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*AccountToken) GetExpiresAtOk ¶

func (o *AccountToken) GetExpiresAtOk() (*string, bool)

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

func (*AccountToken) GetId ¶

func (o *AccountToken) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*AccountToken) GetIdOk ¶

func (o *AccountToken) GetIdOk() (*string, bool)

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

func (*AccountToken) GetIssuedAt ¶

func (o *AccountToken) GetIssuedAt() string

GetIssuedAt returns the IssuedAt field value if set, zero value otherwise.

func (*AccountToken) GetIssuedAtOk ¶

func (o *AccountToken) GetIssuedAtOk() (*string, bool)

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

func (*AccountToken) HasExpiresAt ¶

func (o *AccountToken) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*AccountToken) HasId ¶

func (o *AccountToken) HasId() bool

HasId returns a boolean if a field has been set.

func (*AccountToken) HasIssuedAt ¶

func (o *AccountToken) HasIssuedAt() bool

HasIssuedAt returns a boolean if a field has been set.

func (AccountToken) MarshalJSON ¶

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

func (*AccountToken) SetExpiresAt ¶

func (o *AccountToken) SetExpiresAt(v string)

SetExpiresAt gets a reference to the given string and assigns it to the ExpiresAt field.

func (*AccountToken) SetId ¶

func (o *AccountToken) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*AccountToken) SetIssuedAt ¶

func (o *AccountToken) SetIssuedAt(v string)

SetIssuedAt gets a reference to the given string and assigns it to the IssuedAt field.

func (AccountToken) ToMap ¶

func (o AccountToken) ToMap() (map[string]interface{}, error)

type AccountUpdatePasswordRequest ¶

type AccountUpdatePasswordRequest struct {
	CurrentPassword *string `json:"currentPassword,omitempty"`
	Name            *string `json:"name,omitempty"`
	NewPassword     *string `json:"newPassword,omitempty"`
}

AccountUpdatePasswordRequest struct for AccountUpdatePasswordRequest

func NewAccountUpdatePasswordRequest ¶

func NewAccountUpdatePasswordRequest() *AccountUpdatePasswordRequest

NewAccountUpdatePasswordRequest instantiates a new AccountUpdatePasswordRequest 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 NewAccountUpdatePasswordRequestWithDefaults ¶

func NewAccountUpdatePasswordRequestWithDefaults() *AccountUpdatePasswordRequest

NewAccountUpdatePasswordRequestWithDefaults instantiates a new AccountUpdatePasswordRequest 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 (*AccountUpdatePasswordRequest) GetCurrentPassword ¶

func (o *AccountUpdatePasswordRequest) GetCurrentPassword() string

GetCurrentPassword returns the CurrentPassword field value if set, zero value otherwise.

func (*AccountUpdatePasswordRequest) GetCurrentPasswordOk ¶

func (o *AccountUpdatePasswordRequest) GetCurrentPasswordOk() (*string, bool)

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

func (*AccountUpdatePasswordRequest) GetName ¶

func (o *AccountUpdatePasswordRequest) GetName() string

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

func (*AccountUpdatePasswordRequest) GetNameOk ¶

func (o *AccountUpdatePasswordRequest) 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 (*AccountUpdatePasswordRequest) GetNewPassword ¶

func (o *AccountUpdatePasswordRequest) GetNewPassword() string

GetNewPassword returns the NewPassword field value if set, zero value otherwise.

func (*AccountUpdatePasswordRequest) GetNewPasswordOk ¶

func (o *AccountUpdatePasswordRequest) GetNewPasswordOk() (*string, bool)

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

func (*AccountUpdatePasswordRequest) HasCurrentPassword ¶

func (o *AccountUpdatePasswordRequest) HasCurrentPassword() bool

HasCurrentPassword returns a boolean if a field has been set.

func (*AccountUpdatePasswordRequest) HasName ¶

func (o *AccountUpdatePasswordRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (*AccountUpdatePasswordRequest) HasNewPassword ¶

func (o *AccountUpdatePasswordRequest) HasNewPassword() bool

HasNewPassword returns a boolean if a field has been set.

func (AccountUpdatePasswordRequest) MarshalJSON ¶

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

func (*AccountUpdatePasswordRequest) SetCurrentPassword ¶

func (o *AccountUpdatePasswordRequest) SetCurrentPassword(v string)

SetCurrentPassword gets a reference to the given string and assigns it to the CurrentPassword field.

func (*AccountUpdatePasswordRequest) SetName ¶

func (o *AccountUpdatePasswordRequest) SetName(v string)

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

func (*AccountUpdatePasswordRequest) SetNewPassword ¶

func (o *AccountUpdatePasswordRequest) SetNewPassword(v string)

SetNewPassword gets a reference to the given string and assigns it to the NewPassword field.

func (AccountUpdatePasswordRequest) ToMap ¶

func (o AccountUpdatePasswordRequest) ToMap() (map[string]interface{}, error)

type ApiAccountServiceCanIRequest ¶

type ApiAccountServiceCanIRequest struct {
	ApiService *AccountServiceApiService
	// contains filtered or unexported fields
}

func (ApiAccountServiceCanIRequest) Execute ¶

type ApiAccountServiceCreateTokenRequest ¶

type ApiAccountServiceCreateTokenRequest struct {
	ApiService *AccountServiceApiService
	// contains filtered or unexported fields
}

func (ApiAccountServiceCreateTokenRequest) Body ¶

func (ApiAccountServiceCreateTokenRequest) Execute ¶

type ApiAccountServiceDeleteTokenRequest ¶

type ApiAccountServiceDeleteTokenRequest struct {
	ApiService *AccountServiceApiService
	// contains filtered or unexported fields
}

func (ApiAccountServiceDeleteTokenRequest) Execute ¶

func (r ApiAccountServiceDeleteTokenRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiAccountServiceGetAccountRequest ¶

type ApiAccountServiceGetAccountRequest struct {
	ApiService *AccountServiceApiService
	// contains filtered or unexported fields
}

func (ApiAccountServiceGetAccountRequest) Execute ¶

type ApiAccountServiceListAccountsRequest ¶

type ApiAccountServiceListAccountsRequest struct {
	ApiService *AccountServiceApiService
	// contains filtered or unexported fields
}

func (ApiAccountServiceListAccountsRequest) Execute ¶

type ApiAccountServiceUpdatePasswordRequest ¶

type ApiAccountServiceUpdatePasswordRequest struct {
	ApiService *AccountServiceApiService
	// contains filtered or unexported fields
}

func (ApiAccountServiceUpdatePasswordRequest) Execute ¶

func (r ApiAccountServiceUpdatePasswordRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiApplicationServiceCreateRequest ¶

type ApiApplicationServiceCreateRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceCreateRequest) Body ¶

func (ApiApplicationServiceCreateRequest) Execute ¶

func (ApiApplicationServiceCreateRequest) Upsert ¶

func (ApiApplicationServiceCreateRequest) Validate ¶

type ApiApplicationServiceDeleteRequest ¶

type ApiApplicationServiceDeleteRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceDeleteRequest) AppNamespace ¶

func (ApiApplicationServiceDeleteRequest) Cascade ¶

func (ApiApplicationServiceDeleteRequest) Execute ¶

func (r ApiApplicationServiceDeleteRequest) Execute() (map[string]interface{}, *http.Response, error)

func (ApiApplicationServiceDeleteRequest) PropagationPolicy ¶

func (r ApiApplicationServiceDeleteRequest) PropagationPolicy(propagationPolicy string) ApiApplicationServiceDeleteRequest

type ApiApplicationServiceDeleteResourceRequest ¶

type ApiApplicationServiceDeleteResourceRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceDeleteResourceRequest) AppNamespace ¶

func (ApiApplicationServiceDeleteResourceRequest) Execute ¶

func (r ApiApplicationServiceDeleteResourceRequest) Execute() (map[string]interface{}, *http.Response, error)

func (ApiApplicationServiceDeleteResourceRequest) Force ¶

func (ApiApplicationServiceDeleteResourceRequest) Group ¶

func (ApiApplicationServiceDeleteResourceRequest) Kind ¶

func (ApiApplicationServiceDeleteResourceRequest) Namespace ¶

func (ApiApplicationServiceDeleteResourceRequest) Orphan ¶

func (ApiApplicationServiceDeleteResourceRequest) ResourceName ¶

func (ApiApplicationServiceDeleteResourceRequest) Version ¶

type ApiApplicationServiceGetApplicationSyncWindowsRequest ¶

type ApiApplicationServiceGetApplicationSyncWindowsRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceGetApplicationSyncWindowsRequest) AppNamespace ¶

func (ApiApplicationServiceGetApplicationSyncWindowsRequest) Execute ¶

type ApiApplicationServiceGetManifestsRequest ¶

type ApiApplicationServiceGetManifestsRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceGetManifestsRequest) AppNamespace ¶

func (ApiApplicationServiceGetManifestsRequest) Execute ¶

func (ApiApplicationServiceGetManifestsRequest) Revision ¶

type ApiApplicationServiceGetManifestsWithFilesRequest ¶

type ApiApplicationServiceGetManifestsWithFilesRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceGetManifestsWithFilesRequest) Execute ¶

type ApiApplicationServiceGetRequest ¶

type ApiApplicationServiceGetRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceGetRequest) AppNamespace ¶

the application's namespace.

func (ApiApplicationServiceGetRequest) Execute ¶

func (ApiApplicationServiceGetRequest) Projects ¶

the project names to restrict returned list applications.

func (ApiApplicationServiceGetRequest) Refresh ¶

forces application reconciliation if set to true.

func (ApiApplicationServiceGetRequest) Repo ¶

the repoURL to restrict returned list applications.

func (ApiApplicationServiceGetRequest) ResourceVersion ¶

func (r ApiApplicationServiceGetRequest) ResourceVersion(resourceVersion string) ApiApplicationServiceGetRequest

when specified with a watch call, shows changes that occur after that particular version of a resource.

func (ApiApplicationServiceGetRequest) Selector ¶

the selector to restrict returned list to applications only with matched labels.

type ApiApplicationServiceGetResourceRequest ¶

type ApiApplicationServiceGetResourceRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceGetResourceRequest) AppNamespace ¶

func (ApiApplicationServiceGetResourceRequest) Execute ¶

func (ApiApplicationServiceGetResourceRequest) Group ¶

func (ApiApplicationServiceGetResourceRequest) Kind ¶

func (ApiApplicationServiceGetResourceRequest) Namespace ¶

func (ApiApplicationServiceGetResourceRequest) ResourceName ¶

func (ApiApplicationServiceGetResourceRequest) Version ¶

type ApiApplicationServiceListRequest ¶

type ApiApplicationServiceListRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceListRequest) AppNamespace ¶

the application's namespace.

func (ApiApplicationServiceListRequest) Execute ¶

func (ApiApplicationServiceListRequest) Name ¶

the application's name.

func (ApiApplicationServiceListRequest) Projects ¶

the project names to restrict returned list applications.

func (ApiApplicationServiceListRequest) Refresh ¶

forces application reconciliation if set to true.

func (ApiApplicationServiceListRequest) Repo ¶

the repoURL to restrict returned list applications.

func (ApiApplicationServiceListRequest) ResourceVersion ¶

when specified with a watch call, shows changes that occur after that particular version of a resource.

func (ApiApplicationServiceListRequest) Selector ¶

the selector to restrict returned list to applications only with matched labels.

type ApiApplicationServiceListResourceActionsRequest ¶

type ApiApplicationServiceListResourceActionsRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceListResourceActionsRequest) AppNamespace ¶

func (ApiApplicationServiceListResourceActionsRequest) Execute ¶

func (ApiApplicationServiceListResourceActionsRequest) Group ¶

func (ApiApplicationServiceListResourceActionsRequest) Kind ¶

func (ApiApplicationServiceListResourceActionsRequest) Namespace ¶

func (ApiApplicationServiceListResourceActionsRequest) ResourceName ¶

func (ApiApplicationServiceListResourceActionsRequest) Version ¶

type ApiApplicationServiceListResourceEventsRequest ¶

type ApiApplicationServiceListResourceEventsRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceListResourceEventsRequest) AppNamespace ¶

func (ApiApplicationServiceListResourceEventsRequest) Execute ¶

func (ApiApplicationServiceListResourceEventsRequest) ResourceName ¶

func (ApiApplicationServiceListResourceEventsRequest) ResourceNamespace ¶

func (ApiApplicationServiceListResourceEventsRequest) ResourceUID ¶

type ApiApplicationServiceManagedResourcesRequest ¶

type ApiApplicationServiceManagedResourcesRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceManagedResourcesRequest) AppNamespace ¶

func (ApiApplicationServiceManagedResourcesRequest) Execute ¶

func (ApiApplicationServiceManagedResourcesRequest) Group ¶

func (ApiApplicationServiceManagedResourcesRequest) Kind ¶

func (ApiApplicationServiceManagedResourcesRequest) Name ¶

func (ApiApplicationServiceManagedResourcesRequest) Namespace ¶

func (ApiApplicationServiceManagedResourcesRequest) Version ¶

type ApiApplicationServicePatchRequest ¶

type ApiApplicationServicePatchRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServicePatchRequest) Execute ¶

type ApiApplicationServicePatchResourceRequest ¶

type ApiApplicationServicePatchResourceRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServicePatchResourceRequest) AppNamespace ¶

func (ApiApplicationServicePatchResourceRequest) Body ¶

func (ApiApplicationServicePatchResourceRequest) Execute ¶

func (ApiApplicationServicePatchResourceRequest) Group ¶

func (ApiApplicationServicePatchResourceRequest) Kind ¶

func (ApiApplicationServicePatchResourceRequest) Namespace ¶

func (ApiApplicationServicePatchResourceRequest) PatchType ¶

func (ApiApplicationServicePatchResourceRequest) ResourceName ¶

func (ApiApplicationServicePatchResourceRequest) Version ¶

type ApiApplicationServicePodLogs2Request ¶

type ApiApplicationServicePodLogs2Request struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServicePodLogs2Request) AppNamespace ¶

func (ApiApplicationServicePodLogs2Request) Container ¶

func (ApiApplicationServicePodLogs2Request) Execute ¶

func (ApiApplicationServicePodLogs2Request) Filter ¶

func (ApiApplicationServicePodLogs2Request) Follow ¶

func (ApiApplicationServicePodLogs2Request) Group ¶

func (ApiApplicationServicePodLogs2Request) Kind ¶

func (ApiApplicationServicePodLogs2Request) Namespace ¶

func (ApiApplicationServicePodLogs2Request) PodName ¶

func (ApiApplicationServicePodLogs2Request) Previous ¶

func (ApiApplicationServicePodLogs2Request) ResourceName ¶

func (ApiApplicationServicePodLogs2Request) SinceSeconds ¶

func (ApiApplicationServicePodLogs2Request) SinceTimeNanos ¶

Non-negative fractions of a second at nanosecond resolution. Negative second values with fractions must still have non-negative nanos values that count forward in time. Must be from 0 to 999,999,999 inclusive. This field may be limited in precision depending on context.

func (ApiApplicationServicePodLogs2Request) SinceTimeSeconds ¶

Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive.

func (ApiApplicationServicePodLogs2Request) TailLines ¶

func (ApiApplicationServicePodLogs2Request) UntilTime ¶

type ApiApplicationServicePodLogsRequest ¶

type ApiApplicationServicePodLogsRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServicePodLogsRequest) AppNamespace ¶

func (ApiApplicationServicePodLogsRequest) Container ¶

func (ApiApplicationServicePodLogsRequest) Execute ¶

func (ApiApplicationServicePodLogsRequest) Filter ¶

func (ApiApplicationServicePodLogsRequest) Follow ¶

func (ApiApplicationServicePodLogsRequest) Group ¶

func (ApiApplicationServicePodLogsRequest) Kind ¶

func (ApiApplicationServicePodLogsRequest) Namespace ¶

func (ApiApplicationServicePodLogsRequest) Previous ¶

func (ApiApplicationServicePodLogsRequest) ResourceName ¶

func (ApiApplicationServicePodLogsRequest) SinceSeconds ¶

func (ApiApplicationServicePodLogsRequest) SinceTimeNanos ¶

Non-negative fractions of a second at nanosecond resolution. Negative second values with fractions must still have non-negative nanos values that count forward in time. Must be from 0 to 999,999,999 inclusive. This field may be limited in precision depending on context.

func (ApiApplicationServicePodLogsRequest) SinceTimeSeconds ¶

Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive.

func (ApiApplicationServicePodLogsRequest) TailLines ¶

func (ApiApplicationServicePodLogsRequest) UntilTime ¶

type ApiApplicationServiceResourceTreeRequest ¶

type ApiApplicationServiceResourceTreeRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceResourceTreeRequest) AppNamespace ¶

func (ApiApplicationServiceResourceTreeRequest) Execute ¶

func (ApiApplicationServiceResourceTreeRequest) Group ¶

func (ApiApplicationServiceResourceTreeRequest) Kind ¶

func (ApiApplicationServiceResourceTreeRequest) Name ¶

func (ApiApplicationServiceResourceTreeRequest) Namespace ¶

func (ApiApplicationServiceResourceTreeRequest) Version ¶

type ApiApplicationServiceRevisionMetadataRequest ¶

type ApiApplicationServiceRevisionMetadataRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceRevisionMetadataRequest) AppNamespace ¶

the application's namespace.

func (ApiApplicationServiceRevisionMetadataRequest) Execute ¶

type ApiApplicationServiceRollbackRequest ¶

type ApiApplicationServiceRollbackRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceRollbackRequest) Execute ¶

type ApiApplicationServiceRunResourceActionRequest ¶

type ApiApplicationServiceRunResourceActionRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceRunResourceActionRequest) AppNamespace ¶

func (ApiApplicationServiceRunResourceActionRequest) Body ¶

func (ApiApplicationServiceRunResourceActionRequest) Execute ¶

func (r ApiApplicationServiceRunResourceActionRequest) Execute() (map[string]interface{}, *http.Response, error)

func (ApiApplicationServiceRunResourceActionRequest) Group ¶

func (ApiApplicationServiceRunResourceActionRequest) Kind ¶

func (ApiApplicationServiceRunResourceActionRequest) Namespace ¶

func (ApiApplicationServiceRunResourceActionRequest) ResourceName ¶

func (ApiApplicationServiceRunResourceActionRequest) Version ¶

type ApiApplicationServiceSyncRequest ¶

type ApiApplicationServiceSyncRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceSyncRequest) Execute ¶

type ApiApplicationServiceTerminateOperationRequest ¶

type ApiApplicationServiceTerminateOperationRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceTerminateOperationRequest) AppNamespace ¶

func (ApiApplicationServiceTerminateOperationRequest) Execute ¶

func (r ApiApplicationServiceTerminateOperationRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiApplicationServiceUpdateRequest ¶

type ApiApplicationServiceUpdateRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceUpdateRequest) Body ¶

func (ApiApplicationServiceUpdateRequest) Execute ¶

func (ApiApplicationServiceUpdateRequest) Validate ¶

type ApiApplicationServiceUpdateSpecRequest ¶

type ApiApplicationServiceUpdateSpecRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceUpdateSpecRequest) AppNamespace ¶

func (ApiApplicationServiceUpdateSpecRequest) Body ¶

func (ApiApplicationServiceUpdateSpecRequest) Execute ¶

func (ApiApplicationServiceUpdateSpecRequest) Validate ¶

type ApiApplicationServiceWatchRequest ¶

type ApiApplicationServiceWatchRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceWatchRequest) AppNamespace ¶

the application's namespace.

func (ApiApplicationServiceWatchRequest) Execute ¶

func (ApiApplicationServiceWatchRequest) Name ¶

the application's name.

func (ApiApplicationServiceWatchRequest) Projects ¶

the project names to restrict returned list applications.

func (ApiApplicationServiceWatchRequest) Refresh ¶

forces application reconciliation if set to true.

func (ApiApplicationServiceWatchRequest) Repo ¶

the repoURL to restrict returned list applications.

func (ApiApplicationServiceWatchRequest) ResourceVersion ¶

when specified with a watch call, shows changes that occur after that particular version of a resource.

func (ApiApplicationServiceWatchRequest) Selector ¶

the selector to restrict returned list to applications only with matched labels.

type ApiApplicationServiceWatchResourceTreeRequest ¶

type ApiApplicationServiceWatchResourceTreeRequest struct {
	ApiService *ApplicationServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationServiceWatchResourceTreeRequest) AppNamespace ¶

func (ApiApplicationServiceWatchResourceTreeRequest) Execute ¶

func (ApiApplicationServiceWatchResourceTreeRequest) Group ¶

func (ApiApplicationServiceWatchResourceTreeRequest) Kind ¶

func (ApiApplicationServiceWatchResourceTreeRequest) Name ¶

func (ApiApplicationServiceWatchResourceTreeRequest) Namespace ¶

func (ApiApplicationServiceWatchResourceTreeRequest) Version ¶

type ApiApplicationSetServiceCreateRequest ¶

type ApiApplicationSetServiceCreateRequest struct {
	ApiService *ApplicationSetServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationSetServiceCreateRequest) Body ¶

func (ApiApplicationSetServiceCreateRequest) Execute ¶

func (ApiApplicationSetServiceCreateRequest) Upsert ¶

type ApiApplicationSetServiceDeleteRequest ¶

type ApiApplicationSetServiceDeleteRequest struct {
	ApiService *ApplicationSetServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationSetServiceDeleteRequest) Execute ¶

type ApiApplicationSetServiceGetRequest ¶

type ApiApplicationSetServiceGetRequest struct {
	ApiService *ApplicationSetServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationSetServiceGetRequest) Execute ¶

type ApiApplicationSetServiceListRequest ¶

type ApiApplicationSetServiceListRequest struct {
	ApiService *ApplicationSetServiceApiService
	// contains filtered or unexported fields
}

func (ApiApplicationSetServiceListRequest) Execute ¶

func (ApiApplicationSetServiceListRequest) Projects ¶

the project names to restrict returned list applicationsets.

func (ApiApplicationSetServiceListRequest) Selector ¶

the selector to restrict returned list to applications only with matched labels.

type ApiCertificateServiceCreateCertificateRequest ¶

type ApiCertificateServiceCreateCertificateRequest struct {
	ApiService *CertificateServiceApiService
	// contains filtered or unexported fields
}

func (ApiCertificateServiceCreateCertificateRequest) Body ¶

List of certificates to be created

func (ApiCertificateServiceCreateCertificateRequest) Execute ¶

func (ApiCertificateServiceCreateCertificateRequest) Upsert ¶

Whether to upsert already existing certificates.

type ApiCertificateServiceDeleteCertificateRequest ¶

type ApiCertificateServiceDeleteCertificateRequest struct {
	ApiService *CertificateServiceApiService
	// contains filtered or unexported fields
}

func (ApiCertificateServiceDeleteCertificateRequest) CertSubType ¶

The sub type of the certificate to match (protocol dependent, usually only used for ssh certs).

func (ApiCertificateServiceDeleteCertificateRequest) CertType ¶

The type of the certificate to match (ssh or https).

func (ApiCertificateServiceDeleteCertificateRequest) Execute ¶

func (ApiCertificateServiceDeleteCertificateRequest) HostNamePattern ¶

A file-glob pattern (not regular expression) the host name has to match.

type ApiCertificateServiceListCertificatesRequest ¶

type ApiCertificateServiceListCertificatesRequest struct {
	ApiService *CertificateServiceApiService
	// contains filtered or unexported fields
}

func (ApiCertificateServiceListCertificatesRequest) CertSubType ¶

The sub type of the certificate to match (protocol dependent, usually only used for ssh certs).

func (ApiCertificateServiceListCertificatesRequest) CertType ¶

The type of the certificate to match (ssh or https).

func (ApiCertificateServiceListCertificatesRequest) Execute ¶

func (ApiCertificateServiceListCertificatesRequest) HostNamePattern ¶

A file-glob pattern (not regular expression) the host name has to match.

type ApiClusterServiceCreateRequest ¶

type ApiClusterServiceCreateRequest struct {
	ApiService *ClusterServiceApiService
	// contains filtered or unexported fields
}

func (ApiClusterServiceCreateRequest) Body ¶

func (ApiClusterServiceCreateRequest) Execute ¶

func (ApiClusterServiceCreateRequest) Upsert ¶

type ApiClusterServiceDeleteRequest ¶

type ApiClusterServiceDeleteRequest struct {
	ApiService *ClusterServiceApiService
	// contains filtered or unexported fields
}

func (ApiClusterServiceDeleteRequest) Execute ¶

func (r ApiClusterServiceDeleteRequest) Execute() (map[string]interface{}, *http.Response, error)

func (ApiClusterServiceDeleteRequest) IdType ¶

type is the type of the specified cluster identifier ( \"server\" - default, \"name\" ).

func (ApiClusterServiceDeleteRequest) Name ¶

func (ApiClusterServiceDeleteRequest) Server ¶

type ApiClusterServiceGetRequest ¶

type ApiClusterServiceGetRequest struct {
	ApiService *ClusterServiceApiService
	// contains filtered or unexported fields
}

func (ApiClusterServiceGetRequest) Execute ¶

func (ApiClusterServiceGetRequest) IdType ¶

type is the type of the specified cluster identifier ( \"server\" - default, \"name\" ).

func (ApiClusterServiceGetRequest) Name ¶

func (ApiClusterServiceGetRequest) Server ¶

type ApiClusterServiceInvalidateCacheRequest ¶

type ApiClusterServiceInvalidateCacheRequest struct {
	ApiService *ClusterServiceApiService
	// contains filtered or unexported fields
}

func (ApiClusterServiceInvalidateCacheRequest) Execute ¶

type ApiClusterServiceListRequest ¶

type ApiClusterServiceListRequest struct {
	ApiService *ClusterServiceApiService
	// contains filtered or unexported fields
}

func (ApiClusterServiceListRequest) Execute ¶

func (ApiClusterServiceListRequest) IdType ¶

type is the type of the specified cluster identifier ( \"server\" - default, \"name\" ).

func (ApiClusterServiceListRequest) IdValue ¶

value holds the cluster server URL or cluster name.

func (ApiClusterServiceListRequest) Name ¶

func (ApiClusterServiceListRequest) Server ¶

type ApiClusterServiceRotateAuthRequest ¶

type ApiClusterServiceRotateAuthRequest struct {
	ApiService *ClusterServiceApiService
	// contains filtered or unexported fields
}

func (ApiClusterServiceRotateAuthRequest) Execute ¶

func (r ApiClusterServiceRotateAuthRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiClusterServiceUpdateRequest ¶

type ApiClusterServiceUpdateRequest struct {
	ApiService *ClusterServiceApiService
	// contains filtered or unexported fields
}

func (ApiClusterServiceUpdateRequest) Body ¶

func (ApiClusterServiceUpdateRequest) Execute ¶

func (ApiClusterServiceUpdateRequest) IdType ¶

type is the type of the specified cluster identifier ( \"server\" - default, \"name\" ).

func (ApiClusterServiceUpdateRequest) UpdatedFields ¶

func (r ApiClusterServiceUpdateRequest) UpdatedFields(updatedFields []string) ApiClusterServiceUpdateRequest

type ApiGPGKeyServiceCreateRequest ¶

type ApiGPGKeyServiceCreateRequest struct {
	ApiService *GPGKeyServiceApiService
	// contains filtered or unexported fields
}

func (ApiGPGKeyServiceCreateRequest) Body ¶

Raw key data of the GPG key(s) to create

func (ApiGPGKeyServiceCreateRequest) Execute ¶

func (ApiGPGKeyServiceCreateRequest) Upsert ¶

Whether to upsert already existing public keys.

type ApiGPGKeyServiceDeleteRequest ¶

type ApiGPGKeyServiceDeleteRequest struct {
	ApiService *GPGKeyServiceApiService
	// contains filtered or unexported fields
}

func (ApiGPGKeyServiceDeleteRequest) Execute ¶

func (r ApiGPGKeyServiceDeleteRequest) Execute() (map[string]interface{}, *http.Response, error)

func (ApiGPGKeyServiceDeleteRequest) KeyID ¶

The GPG key ID to query for.

type ApiGPGKeyServiceGetRequest ¶

type ApiGPGKeyServiceGetRequest struct {
	ApiService *GPGKeyServiceApiService
	// contains filtered or unexported fields
}

func (ApiGPGKeyServiceGetRequest) Execute ¶

type ApiGPGKeyServiceListRequest ¶

type ApiGPGKeyServiceListRequest struct {
	ApiService *GPGKeyServiceApiService
	// contains filtered or unexported fields
}

func (ApiGPGKeyServiceListRequest) Execute ¶

func (ApiGPGKeyServiceListRequest) KeyID ¶

The GPG key ID to query for.

type ApiNotificationServiceListServicesRequest ¶

type ApiNotificationServiceListServicesRequest struct {
	ApiService *NotificationServiceApiService
	// contains filtered or unexported fields
}

func (ApiNotificationServiceListServicesRequest) Execute ¶

type ApiNotificationServiceListTemplatesRequest ¶

type ApiNotificationServiceListTemplatesRequest struct {
	ApiService *NotificationServiceApiService
	// contains filtered or unexported fields
}

func (ApiNotificationServiceListTemplatesRequest) Execute ¶

type ApiNotificationServiceListTriggersRequest ¶

type ApiNotificationServiceListTriggersRequest struct {
	ApiService *NotificationServiceApiService
	// contains filtered or unexported fields
}

func (ApiNotificationServiceListTriggersRequest) Execute ¶

type ApiProjectServiceCreateRequest ¶

type ApiProjectServiceCreateRequest struct {
	ApiService *ProjectServiceApiService
	// contains filtered or unexported fields
}

func (ApiProjectServiceCreateRequest) Body ¶

func (ApiProjectServiceCreateRequest) Execute ¶

type ApiProjectServiceCreateTokenRequest ¶

type ApiProjectServiceCreateTokenRequest struct {
	ApiService *ProjectServiceApiService
	// contains filtered or unexported fields
}

func (ApiProjectServiceCreateTokenRequest) Execute ¶

type ApiProjectServiceDeleteRequest ¶

type ApiProjectServiceDeleteRequest struct {
	ApiService *ProjectServiceApiService
	// contains filtered or unexported fields
}

func (ApiProjectServiceDeleteRequest) Execute ¶

func (r ApiProjectServiceDeleteRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiProjectServiceDeleteTokenRequest ¶

type ApiProjectServiceDeleteTokenRequest struct {
	ApiService *ProjectServiceApiService
	// contains filtered or unexported fields
}

func (ApiProjectServiceDeleteTokenRequest) Execute ¶

func (r ApiProjectServiceDeleteTokenRequest) Execute() (map[string]interface{}, *http.Response, error)

func (ApiProjectServiceDeleteTokenRequest) Id ¶

type ApiProjectServiceGetDetailedProjectRequest ¶

type ApiProjectServiceGetDetailedProjectRequest struct {
	ApiService *ProjectServiceApiService
	// contains filtered or unexported fields
}

func (ApiProjectServiceGetDetailedProjectRequest) Execute ¶

type ApiProjectServiceGetGlobalProjectsRequest ¶

type ApiProjectServiceGetGlobalProjectsRequest struct {
	ApiService *ProjectServiceApiService
	// contains filtered or unexported fields
}

func (ApiProjectServiceGetGlobalProjectsRequest) Execute ¶

type ApiProjectServiceGetRequest ¶

type ApiProjectServiceGetRequest struct {
	ApiService *ProjectServiceApiService
	// contains filtered or unexported fields
}

func (ApiProjectServiceGetRequest) Execute ¶

type ApiProjectServiceGetSyncWindowsStateRequest ¶

type ApiProjectServiceGetSyncWindowsStateRequest struct {
	ApiService *ProjectServiceApiService
	// contains filtered or unexported fields
}

func (ApiProjectServiceGetSyncWindowsStateRequest) Execute ¶

type ApiProjectServiceListEventsRequest ¶

type ApiProjectServiceListEventsRequest struct {
	ApiService *ProjectServiceApiService
	// contains filtered or unexported fields
}

func (ApiProjectServiceListEventsRequest) Execute ¶

type ApiProjectServiceListRequest ¶

type ApiProjectServiceListRequest struct {
	ApiService *ProjectServiceApiService
	// contains filtered or unexported fields
}

func (ApiProjectServiceListRequest) Execute ¶

func (ApiProjectServiceListRequest) Name ¶

type ApiProjectServiceUpdateRequest ¶

type ApiProjectServiceUpdateRequest struct {
	ApiService *ProjectServiceApiService
	// contains filtered or unexported fields
}

func (ApiProjectServiceUpdateRequest) Body ¶

func (ApiProjectServiceUpdateRequest) Execute ¶

type ApiRepoCredsServiceCreateRepositoryCredentialsRequest ¶

type ApiRepoCredsServiceCreateRepositoryCredentialsRequest struct {
	ApiService *RepoCredsServiceApiService
	// contains filtered or unexported fields
}

func (ApiRepoCredsServiceCreateRepositoryCredentialsRequest) Body ¶

Repository definition

func (ApiRepoCredsServiceCreateRepositoryCredentialsRequest) Execute ¶

func (ApiRepoCredsServiceCreateRepositoryCredentialsRequest) Upsert ¶

Whether to create in upsert mode.

type ApiRepoCredsServiceDeleteRepositoryCredentialsRequest ¶

type ApiRepoCredsServiceDeleteRepositoryCredentialsRequest struct {
	ApiService *RepoCredsServiceApiService
	// contains filtered or unexported fields
}

func (ApiRepoCredsServiceDeleteRepositoryCredentialsRequest) Execute ¶

type ApiRepoCredsServiceListRepositoryCredentialsRequest ¶

type ApiRepoCredsServiceListRepositoryCredentialsRequest struct {
	ApiService *RepoCredsServiceApiService
	// contains filtered or unexported fields
}

func (ApiRepoCredsServiceListRepositoryCredentialsRequest) Execute ¶

func (ApiRepoCredsServiceListRepositoryCredentialsRequest) Url ¶

Repo URL for query.

type ApiRepoCredsServiceUpdateRepositoryCredentialsRequest ¶

type ApiRepoCredsServiceUpdateRepositoryCredentialsRequest struct {
	ApiService *RepoCredsServiceApiService
	// contains filtered or unexported fields
}

func (ApiRepoCredsServiceUpdateRepositoryCredentialsRequest) Execute ¶

type ApiRepositoryServiceCreateRepositoryRequest ¶

type ApiRepositoryServiceCreateRepositoryRequest struct {
	ApiService *RepositoryServiceApiService
	// contains filtered or unexported fields
}

func (ApiRepositoryServiceCreateRepositoryRequest) Body ¶

Repository definition

func (ApiRepositoryServiceCreateRepositoryRequest) CredsOnly ¶

Whether to operate on credential set instead of repository.

func (ApiRepositoryServiceCreateRepositoryRequest) Execute ¶

func (ApiRepositoryServiceCreateRepositoryRequest) Upsert ¶

Whether to create in upsert mode.

type ApiRepositoryServiceDeleteRepositoryRequest ¶

type ApiRepositoryServiceDeleteRepositoryRequest struct {
	ApiService *RepositoryServiceApiService
	// contains filtered or unexported fields
}

func (ApiRepositoryServiceDeleteRepositoryRequest) Execute ¶

func (r ApiRepositoryServiceDeleteRepositoryRequest) Execute() (map[string]interface{}, *http.Response, error)

func (ApiRepositoryServiceDeleteRepositoryRequest) ForceRefresh ¶

Whether to force a cache refresh on repo's connection state.

type ApiRepositoryServiceGetAppDetailsRequest ¶

type ApiRepositoryServiceGetAppDetailsRequest struct {
	ApiService *RepositoryServiceApiService
	// contains filtered or unexported fields
}

func (ApiRepositoryServiceGetAppDetailsRequest) Execute ¶

type ApiRepositoryServiceGetHelmChartsRequest ¶

type ApiRepositoryServiceGetHelmChartsRequest struct {
	ApiService *RepositoryServiceApiService
	// contains filtered or unexported fields
}

func (ApiRepositoryServiceGetHelmChartsRequest) Execute ¶

func (ApiRepositoryServiceGetHelmChartsRequest) ForceRefresh ¶

Whether to force a cache refresh on repo's connection state.

type ApiRepositoryServiceGetRequest ¶

type ApiRepositoryServiceGetRequest struct {
	ApiService *RepositoryServiceApiService
	// contains filtered or unexported fields
}

func (ApiRepositoryServiceGetRequest) Execute ¶

func (ApiRepositoryServiceGetRequest) ForceRefresh ¶

Whether to force a cache refresh on repo's connection state.

type ApiRepositoryServiceListAppsRequest ¶

type ApiRepositoryServiceListAppsRequest struct {
	ApiService *RepositoryServiceApiService
	// contains filtered or unexported fields
}

func (ApiRepositoryServiceListAppsRequest) AppName ¶

func (ApiRepositoryServiceListAppsRequest) AppProject ¶

func (ApiRepositoryServiceListAppsRequest) Execute ¶

func (ApiRepositoryServiceListAppsRequest) Revision ¶

type ApiRepositoryServiceListRefsRequest ¶

type ApiRepositoryServiceListRefsRequest struct {
	ApiService *RepositoryServiceApiService
	// contains filtered or unexported fields
}

func (ApiRepositoryServiceListRefsRequest) Execute ¶

func (ApiRepositoryServiceListRefsRequest) ForceRefresh ¶

Whether to force a cache refresh on repo's connection state.

type ApiRepositoryServiceListRepositoriesRequest ¶

type ApiRepositoryServiceListRepositoriesRequest struct {
	ApiService *RepositoryServiceApiService
	// contains filtered or unexported fields
}

func (ApiRepositoryServiceListRepositoriesRequest) Execute ¶

func (ApiRepositoryServiceListRepositoriesRequest) ForceRefresh ¶

Whether to force a cache refresh on repo's connection state.

func (ApiRepositoryServiceListRepositoriesRequest) Repo ¶

Repo URL for query.

type ApiRepositoryServiceUpdateRepositoryRequest ¶

type ApiRepositoryServiceUpdateRepositoryRequest struct {
	ApiService *RepositoryServiceApiService
	// contains filtered or unexported fields
}

func (ApiRepositoryServiceUpdateRepositoryRequest) Body ¶

func (ApiRepositoryServiceUpdateRepositoryRequest) Execute ¶

type ApiRepositoryServiceValidateAccessRequest ¶

type ApiRepositoryServiceValidateAccessRequest struct {
	ApiService *RepositoryServiceApiService
	// contains filtered or unexported fields
}

func (ApiRepositoryServiceValidateAccessRequest) Body ¶

The URL to the repo

func (ApiRepositoryServiceValidateAccessRequest) EnableOci ¶

Whether helm-oci support should be enabled for this repo.

func (ApiRepositoryServiceValidateAccessRequest) Execute ¶

func (r ApiRepositoryServiceValidateAccessRequest) Execute() (map[string]interface{}, *http.Response, error)

func (ApiRepositoryServiceValidateAccessRequest) GithubAppEnterpriseBaseUrl ¶

func (r ApiRepositoryServiceValidateAccessRequest) GithubAppEnterpriseBaseUrl(githubAppEnterpriseBaseUrl string) ApiRepositoryServiceValidateAccessRequest

Github App Enterprise base url if empty will default to https://api.github.com.

func (ApiRepositoryServiceValidateAccessRequest) GithubAppID ¶

Github App ID of the app used to access the repo.

func (ApiRepositoryServiceValidateAccessRequest) GithubAppInstallationID ¶

func (r ApiRepositoryServiceValidateAccessRequest) GithubAppInstallationID(githubAppInstallationID string) ApiRepositoryServiceValidateAccessRequest

Github App Installation ID of the installed GitHub App.

func (ApiRepositoryServiceValidateAccessRequest) GithubAppPrivateKey ¶

Github App Private Key PEM data.

func (ApiRepositoryServiceValidateAccessRequest) Insecure ¶

Whether to skip certificate or host key validation.

func (ApiRepositoryServiceValidateAccessRequest) Name ¶

The name of the repo.

func (ApiRepositoryServiceValidateAccessRequest) Password ¶

Password for accessing repo.

func (ApiRepositoryServiceValidateAccessRequest) Project ¶

Reference between project and repository that allow you automatically to be added as item inside SourceRepos project entity.

func (ApiRepositoryServiceValidateAccessRequest) Proxy ¶

HTTP/HTTPS proxy to access the repository.

func (ApiRepositoryServiceValidateAccessRequest) SshPrivateKey ¶

Private key data for accessing SSH repository.

func (ApiRepositoryServiceValidateAccessRequest) TlsClientCertData ¶

TLS client cert data for accessing HTTPS repository.

func (ApiRepositoryServiceValidateAccessRequest) TlsClientCertKey ¶

TLS client cert key for accessing HTTPS repository.

func (ApiRepositoryServiceValidateAccessRequest) Type_ ¶

The type of the repo.

func (ApiRepositoryServiceValidateAccessRequest) Username ¶

Username for accessing repo.

type ApiSessionServiceCreateRequest ¶

type ApiSessionServiceCreateRequest struct {
	ApiService *SessionServiceApiService
	// contains filtered or unexported fields
}

func (ApiSessionServiceCreateRequest) Body ¶

func (ApiSessionServiceCreateRequest) Execute ¶

type ApiSessionServiceDeleteRequest ¶

type ApiSessionServiceDeleteRequest struct {
	ApiService *SessionServiceApiService
	// contains filtered or unexported fields
}

func (ApiSessionServiceDeleteRequest) Execute ¶

type ApiSessionServiceGetUserInfoRequest ¶

type ApiSessionServiceGetUserInfoRequest struct {
	ApiService *SessionServiceApiService
	// contains filtered or unexported fields
}

func (ApiSessionServiceGetUserInfoRequest) Execute ¶

type ApiSettingsServiceGetRequest ¶

type ApiSettingsServiceGetRequest struct {
	ApiService *SettingsServiceApiService
	// contains filtered or unexported fields
}

func (ApiSettingsServiceGetRequest) Execute ¶

type ApiVersionServiceVersionRequest ¶

type ApiVersionServiceVersionRequest struct {
	ApiService *VersionServiceApiService
	// contains filtered or unexported fields
}

func (ApiVersionServiceVersionRequest) Execute ¶

type ApplicationApplicationManifestQueryWithFiles ¶

type ApplicationApplicationManifestQueryWithFiles struct {
	AppNamespace *string `json:"appNamespace,omitempty"`
	Checksum     *string `json:"checksum,omitempty"`
	Name         *string `json:"name,omitempty"`
}

ApplicationApplicationManifestQueryWithFiles struct for ApplicationApplicationManifestQueryWithFiles

func NewApplicationApplicationManifestQueryWithFiles ¶

func NewApplicationApplicationManifestQueryWithFiles() *ApplicationApplicationManifestQueryWithFiles

NewApplicationApplicationManifestQueryWithFiles instantiates a new ApplicationApplicationManifestQueryWithFiles 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 NewApplicationApplicationManifestQueryWithFilesWithDefaults ¶

func NewApplicationApplicationManifestQueryWithFilesWithDefaults() *ApplicationApplicationManifestQueryWithFiles

NewApplicationApplicationManifestQueryWithFilesWithDefaults instantiates a new ApplicationApplicationManifestQueryWithFiles 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 (*ApplicationApplicationManifestQueryWithFiles) GetAppNamespace ¶

GetAppNamespace returns the AppNamespace field value if set, zero value otherwise.

func (*ApplicationApplicationManifestQueryWithFiles) GetAppNamespaceOk ¶

func (o *ApplicationApplicationManifestQueryWithFiles) GetAppNamespaceOk() (*string, bool)

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

func (*ApplicationApplicationManifestQueryWithFiles) GetChecksum ¶

GetChecksum returns the Checksum field value if set, zero value otherwise.

func (*ApplicationApplicationManifestQueryWithFiles) GetChecksumOk ¶

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

func (*ApplicationApplicationManifestQueryWithFiles) GetName ¶

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

func (*ApplicationApplicationManifestQueryWithFiles) GetNameOk ¶

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 (*ApplicationApplicationManifestQueryWithFiles) HasAppNamespace ¶

HasAppNamespace returns a boolean if a field has been set.

func (*ApplicationApplicationManifestQueryWithFiles) HasChecksum ¶

HasChecksum returns a boolean if a field has been set.

func (*ApplicationApplicationManifestQueryWithFiles) HasName ¶

HasName returns a boolean if a field has been set.

func (ApplicationApplicationManifestQueryWithFiles) MarshalJSON ¶

func (*ApplicationApplicationManifestQueryWithFiles) SetAppNamespace ¶

SetAppNamespace gets a reference to the given string and assigns it to the AppNamespace field.

func (*ApplicationApplicationManifestQueryWithFiles) SetChecksum ¶

SetChecksum gets a reference to the given string and assigns it to the Checksum field.

func (*ApplicationApplicationManifestQueryWithFiles) SetName ¶

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

func (ApplicationApplicationManifestQueryWithFiles) ToMap ¶

func (o ApplicationApplicationManifestQueryWithFiles) ToMap() (map[string]interface{}, error)

type ApplicationApplicationManifestQueryWithFilesWrapper ¶

type ApplicationApplicationManifestQueryWithFilesWrapper struct {
	Chunk *ApplicationFileChunk                         `json:"chunk,omitempty"`
	Query *ApplicationApplicationManifestQueryWithFiles `json:"query,omitempty"`
}

ApplicationApplicationManifestQueryWithFilesWrapper struct for ApplicationApplicationManifestQueryWithFilesWrapper

func NewApplicationApplicationManifestQueryWithFilesWrapper ¶

func NewApplicationApplicationManifestQueryWithFilesWrapper() *ApplicationApplicationManifestQueryWithFilesWrapper

NewApplicationApplicationManifestQueryWithFilesWrapper instantiates a new ApplicationApplicationManifestQueryWithFilesWrapper 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 NewApplicationApplicationManifestQueryWithFilesWrapperWithDefaults ¶

func NewApplicationApplicationManifestQueryWithFilesWrapperWithDefaults() *ApplicationApplicationManifestQueryWithFilesWrapper

NewApplicationApplicationManifestQueryWithFilesWrapperWithDefaults instantiates a new ApplicationApplicationManifestQueryWithFilesWrapper 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 (*ApplicationApplicationManifestQueryWithFilesWrapper) GetChunk ¶

GetChunk returns the Chunk field value if set, zero value otherwise.

func (*ApplicationApplicationManifestQueryWithFilesWrapper) GetChunkOk ¶

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

func (*ApplicationApplicationManifestQueryWithFilesWrapper) GetQuery ¶

GetQuery returns the Query field value if set, zero value otherwise.

func (*ApplicationApplicationManifestQueryWithFilesWrapper) GetQueryOk ¶

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

func (*ApplicationApplicationManifestQueryWithFilesWrapper) HasChunk ¶

HasChunk returns a boolean if a field has been set.

func (*ApplicationApplicationManifestQueryWithFilesWrapper) HasQuery ¶

HasQuery returns a boolean if a field has been set.

func (ApplicationApplicationManifestQueryWithFilesWrapper) MarshalJSON ¶

func (*ApplicationApplicationManifestQueryWithFilesWrapper) SetChunk ¶

SetChunk gets a reference to the given ApplicationFileChunk and assigns it to the Chunk field.

func (*ApplicationApplicationManifestQueryWithFilesWrapper) SetQuery ¶

SetQuery gets a reference to the given ApplicationApplicationManifestQueryWithFiles and assigns it to the Query field.

func (ApplicationApplicationManifestQueryWithFilesWrapper) ToMap ¶

type ApplicationApplicationPatchRequest ¶

type ApplicationApplicationPatchRequest struct {
	AppNamespace *string `json:"appNamespace,omitempty"`
	Name         *string `json:"name,omitempty"`
	Patch        *string `json:"patch,omitempty"`
	PatchType    *string `json:"patchType,omitempty"`
}

ApplicationApplicationPatchRequest struct for ApplicationApplicationPatchRequest

func NewApplicationApplicationPatchRequest ¶

func NewApplicationApplicationPatchRequest() *ApplicationApplicationPatchRequest

NewApplicationApplicationPatchRequest instantiates a new ApplicationApplicationPatchRequest 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 NewApplicationApplicationPatchRequestWithDefaults ¶

func NewApplicationApplicationPatchRequestWithDefaults() *ApplicationApplicationPatchRequest

NewApplicationApplicationPatchRequestWithDefaults instantiates a new ApplicationApplicationPatchRequest 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 (*ApplicationApplicationPatchRequest) GetAppNamespace ¶

func (o *ApplicationApplicationPatchRequest) GetAppNamespace() string

GetAppNamespace returns the AppNamespace field value if set, zero value otherwise.

func (*ApplicationApplicationPatchRequest) GetAppNamespaceOk ¶

func (o *ApplicationApplicationPatchRequest) GetAppNamespaceOk() (*string, bool)

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

func (*ApplicationApplicationPatchRequest) GetName ¶

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

func (*ApplicationApplicationPatchRequest) GetNameOk ¶

func (o *ApplicationApplicationPatchRequest) 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 (*ApplicationApplicationPatchRequest) GetPatch ¶

GetPatch returns the Patch field value if set, zero value otherwise.

func (*ApplicationApplicationPatchRequest) GetPatchOk ¶

func (o *ApplicationApplicationPatchRequest) GetPatchOk() (*string, bool)

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

func (*ApplicationApplicationPatchRequest) GetPatchType ¶

func (o *ApplicationApplicationPatchRequest) GetPatchType() string

GetPatchType returns the PatchType field value if set, zero value otherwise.

func (*ApplicationApplicationPatchRequest) GetPatchTypeOk ¶

func (o *ApplicationApplicationPatchRequest) GetPatchTypeOk() (*string, bool)

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

func (*ApplicationApplicationPatchRequest) HasAppNamespace ¶

func (o *ApplicationApplicationPatchRequest) HasAppNamespace() bool

HasAppNamespace returns a boolean if a field has been set.

func (*ApplicationApplicationPatchRequest) HasName ¶

HasName returns a boolean if a field has been set.

func (*ApplicationApplicationPatchRequest) HasPatch ¶

HasPatch returns a boolean if a field has been set.

func (*ApplicationApplicationPatchRequest) HasPatchType ¶

func (o *ApplicationApplicationPatchRequest) HasPatchType() bool

HasPatchType returns a boolean if a field has been set.

func (ApplicationApplicationPatchRequest) MarshalJSON ¶

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

func (*ApplicationApplicationPatchRequest) SetAppNamespace ¶

func (o *ApplicationApplicationPatchRequest) SetAppNamespace(v string)

SetAppNamespace gets a reference to the given string and assigns it to the AppNamespace field.

func (*ApplicationApplicationPatchRequest) SetName ¶

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

func (*ApplicationApplicationPatchRequest) SetPatch ¶

SetPatch gets a reference to the given string and assigns it to the Patch field.

func (*ApplicationApplicationPatchRequest) SetPatchType ¶

func (o *ApplicationApplicationPatchRequest) SetPatchType(v string)

SetPatchType gets a reference to the given string and assigns it to the PatchType field.

func (ApplicationApplicationPatchRequest) ToMap ¶

func (o ApplicationApplicationPatchRequest) ToMap() (map[string]interface{}, error)

type ApplicationApplicationResourceResponse ¶

type ApplicationApplicationResourceResponse struct {
	Manifest *string `json:"manifest,omitempty"`
}

ApplicationApplicationResourceResponse struct for ApplicationApplicationResourceResponse

func NewApplicationApplicationResourceResponse ¶

func NewApplicationApplicationResourceResponse() *ApplicationApplicationResourceResponse

NewApplicationApplicationResourceResponse instantiates a new ApplicationApplicationResourceResponse 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 NewApplicationApplicationResourceResponseWithDefaults ¶

func NewApplicationApplicationResourceResponseWithDefaults() *ApplicationApplicationResourceResponse

NewApplicationApplicationResourceResponseWithDefaults instantiates a new ApplicationApplicationResourceResponse 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 (*ApplicationApplicationResourceResponse) GetManifest ¶

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

func (*ApplicationApplicationResourceResponse) GetManifestOk ¶

func (o *ApplicationApplicationResourceResponse) 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 (*ApplicationApplicationResourceResponse) HasManifest ¶

HasManifest returns a boolean if a field has been set.

func (ApplicationApplicationResourceResponse) MarshalJSON ¶

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

func (*ApplicationApplicationResourceResponse) SetManifest ¶

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

func (ApplicationApplicationResourceResponse) ToMap ¶

func (o ApplicationApplicationResourceResponse) ToMap() (map[string]interface{}, error)

type ApplicationApplicationRollbackRequest ¶

type ApplicationApplicationRollbackRequest struct {
	AppNamespace *string `json:"appNamespace,omitempty"`
	DryRun       *bool   `json:"dryRun,omitempty"`
	Id           *string `json:"id,omitempty"`
	Name         *string `json:"name,omitempty"`
	Prune        *bool   `json:"prune,omitempty"`
}

ApplicationApplicationRollbackRequest struct for ApplicationApplicationRollbackRequest

func NewApplicationApplicationRollbackRequest ¶

func NewApplicationApplicationRollbackRequest() *ApplicationApplicationRollbackRequest

NewApplicationApplicationRollbackRequest instantiates a new ApplicationApplicationRollbackRequest 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 NewApplicationApplicationRollbackRequestWithDefaults ¶

func NewApplicationApplicationRollbackRequestWithDefaults() *ApplicationApplicationRollbackRequest

NewApplicationApplicationRollbackRequestWithDefaults instantiates a new ApplicationApplicationRollbackRequest 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 (*ApplicationApplicationRollbackRequest) GetAppNamespace ¶

func (o *ApplicationApplicationRollbackRequest) GetAppNamespace() string

GetAppNamespace returns the AppNamespace field value if set, zero value otherwise.

func (*ApplicationApplicationRollbackRequest) GetAppNamespaceOk ¶

func (o *ApplicationApplicationRollbackRequest) GetAppNamespaceOk() (*string, bool)

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

func (*ApplicationApplicationRollbackRequest) GetDryRun ¶

GetDryRun returns the DryRun field value if set, zero value otherwise.

func (*ApplicationApplicationRollbackRequest) GetDryRunOk ¶

func (o *ApplicationApplicationRollbackRequest) GetDryRunOk() (*bool, bool)

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

func (*ApplicationApplicationRollbackRequest) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ApplicationApplicationRollbackRequest) GetIdOk ¶

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

func (*ApplicationApplicationRollbackRequest) GetName ¶

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

func (*ApplicationApplicationRollbackRequest) GetNameOk ¶

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 (*ApplicationApplicationRollbackRequest) GetPrune ¶

GetPrune returns the Prune field value if set, zero value otherwise.

func (*ApplicationApplicationRollbackRequest) GetPruneOk ¶

func (o *ApplicationApplicationRollbackRequest) GetPruneOk() (*bool, bool)

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

func (*ApplicationApplicationRollbackRequest) HasAppNamespace ¶

func (o *ApplicationApplicationRollbackRequest) HasAppNamespace() bool

HasAppNamespace returns a boolean if a field has been set.

func (*ApplicationApplicationRollbackRequest) HasDryRun ¶

HasDryRun returns a boolean if a field has been set.

func (*ApplicationApplicationRollbackRequest) HasId ¶

HasId returns a boolean if a field has been set.

func (*ApplicationApplicationRollbackRequest) HasName ¶

HasName returns a boolean if a field has been set.

func (*ApplicationApplicationRollbackRequest) HasPrune ¶

HasPrune returns a boolean if a field has been set.

func (ApplicationApplicationRollbackRequest) MarshalJSON ¶

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

func (*ApplicationApplicationRollbackRequest) SetAppNamespace ¶

func (o *ApplicationApplicationRollbackRequest) SetAppNamespace(v string)

SetAppNamespace gets a reference to the given string and assigns it to the AppNamespace field.

func (*ApplicationApplicationRollbackRequest) SetDryRun ¶

SetDryRun gets a reference to the given bool and assigns it to the DryRun field.

func (*ApplicationApplicationRollbackRequest) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*ApplicationApplicationRollbackRequest) SetName ¶

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

func (*ApplicationApplicationRollbackRequest) SetPrune ¶

SetPrune gets a reference to the given bool and assigns it to the Prune field.

func (ApplicationApplicationRollbackRequest) ToMap ¶

func (o ApplicationApplicationRollbackRequest) ToMap() (map[string]interface{}, error)

type ApplicationApplicationSyncRequest ¶

type ApplicationApplicationSyncRequest struct {
	AppNamespace  *string                         `json:"appNamespace,omitempty"`
	DryRun        *bool                           `json:"dryRun,omitempty"`
	Infos         []V1alpha1Info                  `json:"infos,omitempty"`
	Manifests     []string                        `json:"manifests,omitempty"`
	Name          *string                         `json:"name,omitempty"`
	Prune         *bool                           `json:"prune,omitempty"`
	Resources     []V1alpha1SyncOperationResource `json:"resources,omitempty"`
	RetryStrategy *V1alpha1RetryStrategy          `json:"retryStrategy,omitempty"`
	Revision      *string                         `json:"revision,omitempty"`
	Strategy      *V1alpha1SyncStrategy           `json:"strategy,omitempty"`
	SyncOptions   *ApplicationSyncOptions         `json:"syncOptions,omitempty"`
}

ApplicationApplicationSyncRequest struct for ApplicationApplicationSyncRequest

func NewApplicationApplicationSyncRequest ¶

func NewApplicationApplicationSyncRequest() *ApplicationApplicationSyncRequest

NewApplicationApplicationSyncRequest instantiates a new ApplicationApplicationSyncRequest 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 NewApplicationApplicationSyncRequestWithDefaults ¶

func NewApplicationApplicationSyncRequestWithDefaults() *ApplicationApplicationSyncRequest

NewApplicationApplicationSyncRequestWithDefaults instantiates a new ApplicationApplicationSyncRequest 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 (*ApplicationApplicationSyncRequest) GetAppNamespace ¶

func (o *ApplicationApplicationSyncRequest) GetAppNamespace() string

GetAppNamespace returns the AppNamespace field value if set, zero value otherwise.

func (*ApplicationApplicationSyncRequest) GetAppNamespaceOk ¶

func (o *ApplicationApplicationSyncRequest) GetAppNamespaceOk() (*string, bool)

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

func (*ApplicationApplicationSyncRequest) GetDryRun ¶

func (o *ApplicationApplicationSyncRequest) GetDryRun() bool

GetDryRun returns the DryRun field value if set, zero value otherwise.

func (*ApplicationApplicationSyncRequest) GetDryRunOk ¶

func (o *ApplicationApplicationSyncRequest) GetDryRunOk() (*bool, bool)

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

func (*ApplicationApplicationSyncRequest) GetInfos ¶

GetInfos returns the Infos field value if set, zero value otherwise.

func (*ApplicationApplicationSyncRequest) GetInfosOk ¶

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

func (*ApplicationApplicationSyncRequest) GetManifests ¶

func (o *ApplicationApplicationSyncRequest) GetManifests() []string

GetManifests returns the Manifests field value if set, zero value otherwise.

func (*ApplicationApplicationSyncRequest) GetManifestsOk ¶

func (o *ApplicationApplicationSyncRequest) GetManifestsOk() ([]string, bool)

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

func (*ApplicationApplicationSyncRequest) GetName ¶

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

func (*ApplicationApplicationSyncRequest) GetNameOk ¶

func (o *ApplicationApplicationSyncRequest) 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 (*ApplicationApplicationSyncRequest) GetPrune ¶

GetPrune returns the Prune field value if set, zero value otherwise.

func (*ApplicationApplicationSyncRequest) GetPruneOk ¶

func (o *ApplicationApplicationSyncRequest) GetPruneOk() (*bool, bool)

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

func (*ApplicationApplicationSyncRequest) GetResources ¶

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

func (*ApplicationApplicationSyncRequest) GetResourcesOk ¶

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 (*ApplicationApplicationSyncRequest) GetRetryStrategy ¶

GetRetryStrategy returns the RetryStrategy field value if set, zero value otherwise.

func (*ApplicationApplicationSyncRequest) GetRetryStrategyOk ¶

func (o *ApplicationApplicationSyncRequest) GetRetryStrategyOk() (*V1alpha1RetryStrategy, bool)

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

func (*ApplicationApplicationSyncRequest) GetRevision ¶

func (o *ApplicationApplicationSyncRequest) GetRevision() string

GetRevision returns the Revision field value if set, zero value otherwise.

func (*ApplicationApplicationSyncRequest) GetRevisionOk ¶

func (o *ApplicationApplicationSyncRequest) GetRevisionOk() (*string, bool)

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

func (*ApplicationApplicationSyncRequest) GetStrategy ¶

GetStrategy returns the Strategy field value if set, zero value otherwise.

func (*ApplicationApplicationSyncRequest) GetStrategyOk ¶

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

func (*ApplicationApplicationSyncRequest) GetSyncOptions ¶

GetSyncOptions returns the SyncOptions field value if set, zero value otherwise.

func (*ApplicationApplicationSyncRequest) GetSyncOptionsOk ¶

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

func (*ApplicationApplicationSyncRequest) HasAppNamespace ¶

func (o *ApplicationApplicationSyncRequest) HasAppNamespace() bool

HasAppNamespace returns a boolean if a field has been set.

func (*ApplicationApplicationSyncRequest) HasDryRun ¶

func (o *ApplicationApplicationSyncRequest) HasDryRun() bool

HasDryRun returns a boolean if a field has been set.

func (*ApplicationApplicationSyncRequest) HasInfos ¶

HasInfos returns a boolean if a field has been set.

func (*ApplicationApplicationSyncRequest) HasManifests ¶

func (o *ApplicationApplicationSyncRequest) HasManifests() bool

HasManifests returns a boolean if a field has been set.

func (*ApplicationApplicationSyncRequest) HasName ¶

HasName returns a boolean if a field has been set.

func (*ApplicationApplicationSyncRequest) HasPrune ¶

HasPrune returns a boolean if a field has been set.

func (*ApplicationApplicationSyncRequest) HasResources ¶

func (o *ApplicationApplicationSyncRequest) HasResources() bool

HasResources returns a boolean if a field has been set.

func (*ApplicationApplicationSyncRequest) HasRetryStrategy ¶

func (o *ApplicationApplicationSyncRequest) HasRetryStrategy() bool

HasRetryStrategy returns a boolean if a field has been set.

func (*ApplicationApplicationSyncRequest) HasRevision ¶

func (o *ApplicationApplicationSyncRequest) HasRevision() bool

HasRevision returns a boolean if a field has been set.

func (*ApplicationApplicationSyncRequest) HasStrategy ¶

func (o *ApplicationApplicationSyncRequest) HasStrategy() bool

HasStrategy returns a boolean if a field has been set.

func (*ApplicationApplicationSyncRequest) HasSyncOptions ¶

func (o *ApplicationApplicationSyncRequest) HasSyncOptions() bool

HasSyncOptions returns a boolean if a field has been set.

func (ApplicationApplicationSyncRequest) MarshalJSON ¶

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

func (*ApplicationApplicationSyncRequest) SetAppNamespace ¶

func (o *ApplicationApplicationSyncRequest) SetAppNamespace(v string)

SetAppNamespace gets a reference to the given string and assigns it to the AppNamespace field.

func (*ApplicationApplicationSyncRequest) SetDryRun ¶

func (o *ApplicationApplicationSyncRequest) SetDryRun(v bool)

SetDryRun gets a reference to the given bool and assigns it to the DryRun field.

func (*ApplicationApplicationSyncRequest) SetInfos ¶

SetInfos gets a reference to the given []V1alpha1Info and assigns it to the Infos field.

func (*ApplicationApplicationSyncRequest) SetManifests ¶

func (o *ApplicationApplicationSyncRequest) SetManifests(v []string)

SetManifests gets a reference to the given []string and assigns it to the Manifests field.

func (*ApplicationApplicationSyncRequest) SetName ¶

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

func (*ApplicationApplicationSyncRequest) SetPrune ¶

func (o *ApplicationApplicationSyncRequest) SetPrune(v bool)

SetPrune gets a reference to the given bool and assigns it to the Prune field.

func (*ApplicationApplicationSyncRequest) SetResources ¶

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

func (*ApplicationApplicationSyncRequest) SetRetryStrategy ¶

SetRetryStrategy gets a reference to the given V1alpha1RetryStrategy and assigns it to the RetryStrategy field.

func (*ApplicationApplicationSyncRequest) SetRevision ¶

func (o *ApplicationApplicationSyncRequest) SetRevision(v string)

SetRevision gets a reference to the given string and assigns it to the Revision field.

func (*ApplicationApplicationSyncRequest) SetStrategy ¶

SetStrategy gets a reference to the given V1alpha1SyncStrategy and assigns it to the Strategy field.

func (*ApplicationApplicationSyncRequest) SetSyncOptions ¶

SetSyncOptions gets a reference to the given ApplicationSyncOptions and assigns it to the SyncOptions field.

func (ApplicationApplicationSyncRequest) ToMap ¶

func (o ApplicationApplicationSyncRequest) ToMap() (map[string]interface{}, error)

type ApplicationApplicationSyncWindow ¶

type ApplicationApplicationSyncWindow struct {
	Duration   *string `json:"duration,omitempty"`
	Kind       *string `json:"kind,omitempty"`
	ManualSync *bool   `json:"manualSync,omitempty"`
	Schedule   *string `json:"schedule,omitempty"`
}

ApplicationApplicationSyncWindow struct for ApplicationApplicationSyncWindow

func NewApplicationApplicationSyncWindow ¶

func NewApplicationApplicationSyncWindow() *ApplicationApplicationSyncWindow

NewApplicationApplicationSyncWindow instantiates a new ApplicationApplicationSyncWindow 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 NewApplicationApplicationSyncWindowWithDefaults ¶

func NewApplicationApplicationSyncWindowWithDefaults() *ApplicationApplicationSyncWindow

NewApplicationApplicationSyncWindowWithDefaults instantiates a new ApplicationApplicationSyncWindow 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 (*ApplicationApplicationSyncWindow) GetDuration ¶

func (o *ApplicationApplicationSyncWindow) GetDuration() string

GetDuration returns the Duration field value if set, zero value otherwise.

func (*ApplicationApplicationSyncWindow) GetDurationOk ¶

func (o *ApplicationApplicationSyncWindow) GetDurationOk() (*string, bool)

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

func (*ApplicationApplicationSyncWindow) GetKind ¶

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

func (*ApplicationApplicationSyncWindow) GetKindOk ¶

func (o *ApplicationApplicationSyncWindow) 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 (*ApplicationApplicationSyncWindow) GetManualSync ¶

func (o *ApplicationApplicationSyncWindow) GetManualSync() bool

GetManualSync returns the ManualSync field value if set, zero value otherwise.

func (*ApplicationApplicationSyncWindow) GetManualSyncOk ¶

func (o *ApplicationApplicationSyncWindow) GetManualSyncOk() (*bool, bool)

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

func (*ApplicationApplicationSyncWindow) GetSchedule ¶

func (o *ApplicationApplicationSyncWindow) GetSchedule() string

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*ApplicationApplicationSyncWindow) GetScheduleOk ¶

func (o *ApplicationApplicationSyncWindow) GetScheduleOk() (*string, bool)

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

func (*ApplicationApplicationSyncWindow) HasDuration ¶

func (o *ApplicationApplicationSyncWindow) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*ApplicationApplicationSyncWindow) HasKind ¶

HasKind returns a boolean if a field has been set.

func (*ApplicationApplicationSyncWindow) HasManualSync ¶

func (o *ApplicationApplicationSyncWindow) HasManualSync() bool

HasManualSync returns a boolean if a field has been set.

func (*ApplicationApplicationSyncWindow) HasSchedule ¶

func (o *ApplicationApplicationSyncWindow) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (ApplicationApplicationSyncWindow) MarshalJSON ¶

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

func (*ApplicationApplicationSyncWindow) SetDuration ¶

func (o *ApplicationApplicationSyncWindow) SetDuration(v string)

SetDuration gets a reference to the given string and assigns it to the Duration field.

func (*ApplicationApplicationSyncWindow) SetKind ¶

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

func (*ApplicationApplicationSyncWindow) SetManualSync ¶

func (o *ApplicationApplicationSyncWindow) SetManualSync(v bool)

SetManualSync gets a reference to the given bool and assigns it to the ManualSync field.

func (*ApplicationApplicationSyncWindow) SetSchedule ¶

func (o *ApplicationApplicationSyncWindow) SetSchedule(v string)

SetSchedule gets a reference to the given string and assigns it to the Schedule field.

func (ApplicationApplicationSyncWindow) ToMap ¶

func (o ApplicationApplicationSyncWindow) ToMap() (map[string]interface{}, error)

type ApplicationApplicationSyncWindowsResponse ¶

type ApplicationApplicationSyncWindowsResponse struct {
	ActiveWindows   []ApplicationApplicationSyncWindow `json:"activeWindows,omitempty"`
	AssignedWindows []ApplicationApplicationSyncWindow `json:"assignedWindows,omitempty"`
	CanSync         *bool                              `json:"canSync,omitempty"`
}

ApplicationApplicationSyncWindowsResponse struct for ApplicationApplicationSyncWindowsResponse

func NewApplicationApplicationSyncWindowsResponse ¶

func NewApplicationApplicationSyncWindowsResponse() *ApplicationApplicationSyncWindowsResponse

NewApplicationApplicationSyncWindowsResponse instantiates a new ApplicationApplicationSyncWindowsResponse 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 NewApplicationApplicationSyncWindowsResponseWithDefaults ¶

func NewApplicationApplicationSyncWindowsResponseWithDefaults() *ApplicationApplicationSyncWindowsResponse

NewApplicationApplicationSyncWindowsResponseWithDefaults instantiates a new ApplicationApplicationSyncWindowsResponse 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 (*ApplicationApplicationSyncWindowsResponse) GetActiveWindows ¶

GetActiveWindows returns the ActiveWindows field value if set, zero value otherwise.

func (*ApplicationApplicationSyncWindowsResponse) GetActiveWindowsOk ¶

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

func (*ApplicationApplicationSyncWindowsResponse) GetAssignedWindows ¶

GetAssignedWindows returns the AssignedWindows field value if set, zero value otherwise.

func (*ApplicationApplicationSyncWindowsResponse) GetAssignedWindowsOk ¶

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

func (*ApplicationApplicationSyncWindowsResponse) GetCanSync ¶

GetCanSync returns the CanSync field value if set, zero value otherwise.

func (*ApplicationApplicationSyncWindowsResponse) GetCanSyncOk ¶

func (o *ApplicationApplicationSyncWindowsResponse) GetCanSyncOk() (*bool, bool)

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

func (*ApplicationApplicationSyncWindowsResponse) HasActiveWindows ¶

func (o *ApplicationApplicationSyncWindowsResponse) HasActiveWindows() bool

HasActiveWindows returns a boolean if a field has been set.

func (*ApplicationApplicationSyncWindowsResponse) HasAssignedWindows ¶

func (o *ApplicationApplicationSyncWindowsResponse) HasAssignedWindows() bool

HasAssignedWindows returns a boolean if a field has been set.

func (*ApplicationApplicationSyncWindowsResponse) HasCanSync ¶

HasCanSync returns a boolean if a field has been set.

func (ApplicationApplicationSyncWindowsResponse) MarshalJSON ¶

func (*ApplicationApplicationSyncWindowsResponse) SetActiveWindows ¶

SetActiveWindows gets a reference to the given []ApplicationApplicationSyncWindow and assigns it to the ActiveWindows field.

func (*ApplicationApplicationSyncWindowsResponse) SetAssignedWindows ¶

SetAssignedWindows gets a reference to the given []ApplicationApplicationSyncWindow and assigns it to the AssignedWindows field.

func (*ApplicationApplicationSyncWindowsResponse) SetCanSync ¶

SetCanSync gets a reference to the given bool and assigns it to the CanSync field.

func (ApplicationApplicationSyncWindowsResponse) ToMap ¶

func (o ApplicationApplicationSyncWindowsResponse) ToMap() (map[string]interface{}, error)

type ApplicationFileChunk ¶

type ApplicationFileChunk struct {
	Chunk *string `json:"chunk,omitempty"`
}

ApplicationFileChunk struct for ApplicationFileChunk

func NewApplicationFileChunk ¶

func NewApplicationFileChunk() *ApplicationFileChunk

NewApplicationFileChunk instantiates a new ApplicationFileChunk 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 NewApplicationFileChunkWithDefaults ¶

func NewApplicationFileChunkWithDefaults() *ApplicationFileChunk

NewApplicationFileChunkWithDefaults instantiates a new ApplicationFileChunk 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 (*ApplicationFileChunk) GetChunk ¶

func (o *ApplicationFileChunk) GetChunk() string

GetChunk returns the Chunk field value if set, zero value otherwise.

func (*ApplicationFileChunk) GetChunkOk ¶

func (o *ApplicationFileChunk) GetChunkOk() (*string, bool)

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

func (*ApplicationFileChunk) HasChunk ¶

func (o *ApplicationFileChunk) HasChunk() bool

HasChunk returns a boolean if a field has been set.

func (ApplicationFileChunk) MarshalJSON ¶

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

func (*ApplicationFileChunk) SetChunk ¶

func (o *ApplicationFileChunk) SetChunk(v string)

SetChunk gets a reference to the given string and assigns it to the Chunk field.

func (ApplicationFileChunk) ToMap ¶

func (o ApplicationFileChunk) ToMap() (map[string]interface{}, error)

type ApplicationLogEntry ¶

type ApplicationLogEntry struct {
	Content      *string `json:"content,omitempty"`
	Last         *bool   `json:"last,omitempty"`
	PodName      *string `json:"podName,omitempty"`
	TimeStamp    *string `json:"timeStamp,omitempty"`
	TimeStampStr *string `json:"timeStampStr,omitempty"`
}

ApplicationLogEntry struct for ApplicationLogEntry

func NewApplicationLogEntry ¶

func NewApplicationLogEntry() *ApplicationLogEntry

NewApplicationLogEntry instantiates a new ApplicationLogEntry 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 NewApplicationLogEntryWithDefaults ¶

func NewApplicationLogEntryWithDefaults() *ApplicationLogEntry

NewApplicationLogEntryWithDefaults instantiates a new ApplicationLogEntry 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 (*ApplicationLogEntry) GetContent ¶

func (o *ApplicationLogEntry) GetContent() string

GetContent returns the Content field value if set, zero value otherwise.

func (*ApplicationLogEntry) GetContentOk ¶

func (o *ApplicationLogEntry) GetContentOk() (*string, bool)

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

func (*ApplicationLogEntry) GetLast ¶

func (o *ApplicationLogEntry) GetLast() bool

GetLast returns the Last field value if set, zero value otherwise.

func (*ApplicationLogEntry) GetLastOk ¶

func (o *ApplicationLogEntry) GetLastOk() (*bool, bool)

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

func (*ApplicationLogEntry) GetPodName ¶

func (o *ApplicationLogEntry) GetPodName() string

GetPodName returns the PodName field value if set, zero value otherwise.

func (*ApplicationLogEntry) GetPodNameOk ¶

func (o *ApplicationLogEntry) GetPodNameOk() (*string, bool)

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

func (*ApplicationLogEntry) GetTimeStamp ¶

func (o *ApplicationLogEntry) GetTimeStamp() string

GetTimeStamp returns the TimeStamp field value if set, zero value otherwise.

func (*ApplicationLogEntry) GetTimeStampOk ¶

func (o *ApplicationLogEntry) GetTimeStampOk() (*string, bool)

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

func (*ApplicationLogEntry) GetTimeStampStr ¶

func (o *ApplicationLogEntry) GetTimeStampStr() string

GetTimeStampStr returns the TimeStampStr field value if set, zero value otherwise.

func (*ApplicationLogEntry) GetTimeStampStrOk ¶

func (o *ApplicationLogEntry) GetTimeStampStrOk() (*string, bool)

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

func (*ApplicationLogEntry) HasContent ¶

func (o *ApplicationLogEntry) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*ApplicationLogEntry) HasLast ¶

func (o *ApplicationLogEntry) HasLast() bool

HasLast returns a boolean if a field has been set.

func (*ApplicationLogEntry) HasPodName ¶

func (o *ApplicationLogEntry) HasPodName() bool

HasPodName returns a boolean if a field has been set.

func (*ApplicationLogEntry) HasTimeStamp ¶

func (o *ApplicationLogEntry) HasTimeStamp() bool

HasTimeStamp returns a boolean if a field has been set.

func (*ApplicationLogEntry) HasTimeStampStr ¶

func (o *ApplicationLogEntry) HasTimeStampStr() bool

HasTimeStampStr returns a boolean if a field has been set.

func (ApplicationLogEntry) MarshalJSON ¶

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

func (*ApplicationLogEntry) SetContent ¶

func (o *ApplicationLogEntry) SetContent(v string)

SetContent gets a reference to the given string and assigns it to the Content field.

func (*ApplicationLogEntry) SetLast ¶

func (o *ApplicationLogEntry) SetLast(v bool)

SetLast gets a reference to the given bool and assigns it to the Last field.

func (*ApplicationLogEntry) SetPodName ¶

func (o *ApplicationLogEntry) SetPodName(v string)

SetPodName gets a reference to the given string and assigns it to the PodName field.

func (*ApplicationLogEntry) SetTimeStamp ¶

func (o *ApplicationLogEntry) SetTimeStamp(v string)

SetTimeStamp gets a reference to the given string and assigns it to the TimeStamp field.

func (*ApplicationLogEntry) SetTimeStampStr ¶

func (o *ApplicationLogEntry) SetTimeStampStr(v string)

SetTimeStampStr gets a reference to the given string and assigns it to the TimeStampStr field.

func (ApplicationLogEntry) ToMap ¶

func (o ApplicationLogEntry) ToMap() (map[string]interface{}, error)

type ApplicationManagedResourcesResponse ¶

type ApplicationManagedResourcesResponse struct {
	Items []V1alpha1ResourceDiff `json:"items,omitempty"`
}

ApplicationManagedResourcesResponse struct for ApplicationManagedResourcesResponse

func NewApplicationManagedResourcesResponse ¶

func NewApplicationManagedResourcesResponse() *ApplicationManagedResourcesResponse

NewApplicationManagedResourcesResponse instantiates a new ApplicationManagedResourcesResponse 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 NewApplicationManagedResourcesResponseWithDefaults ¶

func NewApplicationManagedResourcesResponseWithDefaults() *ApplicationManagedResourcesResponse

NewApplicationManagedResourcesResponseWithDefaults instantiates a new ApplicationManagedResourcesResponse 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 (*ApplicationManagedResourcesResponse) GetItems ¶

GetItems returns the Items field value if set, zero value otherwise.

func (*ApplicationManagedResourcesResponse) GetItemsOk ¶

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

func (*ApplicationManagedResourcesResponse) HasItems ¶

HasItems returns a boolean if a field has been set.

func (ApplicationManagedResourcesResponse) MarshalJSON ¶

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

func (*ApplicationManagedResourcesResponse) SetItems ¶

SetItems gets a reference to the given []V1alpha1ResourceDiff and assigns it to the Items field.

func (ApplicationManagedResourcesResponse) ToMap ¶

func (o ApplicationManagedResourcesResponse) ToMap() (map[string]interface{}, error)

type ApplicationResourceActionsListResponse ¶

type ApplicationResourceActionsListResponse struct {
	Actions []V1alpha1ResourceAction `json:"actions,omitempty"`
}

ApplicationResourceActionsListResponse struct for ApplicationResourceActionsListResponse

func NewApplicationResourceActionsListResponse ¶

func NewApplicationResourceActionsListResponse() *ApplicationResourceActionsListResponse

NewApplicationResourceActionsListResponse instantiates a new ApplicationResourceActionsListResponse 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 NewApplicationResourceActionsListResponseWithDefaults ¶

func NewApplicationResourceActionsListResponseWithDefaults() *ApplicationResourceActionsListResponse

NewApplicationResourceActionsListResponseWithDefaults instantiates a new ApplicationResourceActionsListResponse 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 (*ApplicationResourceActionsListResponse) GetActions ¶

GetActions returns the Actions field value if set, zero value otherwise.

func (*ApplicationResourceActionsListResponse) GetActionsOk ¶

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

func (*ApplicationResourceActionsListResponse) HasActions ¶

HasActions returns a boolean if a field has been set.

func (ApplicationResourceActionsListResponse) MarshalJSON ¶

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

func (*ApplicationResourceActionsListResponse) SetActions ¶

SetActions gets a reference to the given []V1alpha1ResourceAction and assigns it to the Actions field.

func (ApplicationResourceActionsListResponse) ToMap ¶

func (o ApplicationResourceActionsListResponse) ToMap() (map[string]interface{}, error)

type ApplicationServiceApiService ¶

type ApplicationServiceApiService service

ApplicationServiceApiService ApplicationServiceApi service

func (*ApplicationServiceApiService) ApplicationServiceCreate ¶

ApplicationServiceCreate Create creates an application

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

func (*ApplicationServiceApiService) ApplicationServiceCreateExecute ¶

Execute executes the request

@return V1alpha1Application

func (*ApplicationServiceApiService) ApplicationServiceDelete ¶

ApplicationServiceDelete Delete deletes an application

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

func (*ApplicationServiceApiService) ApplicationServiceDeleteExecute ¶

func (a *ApplicationServiceApiService) ApplicationServiceDeleteExecute(r ApiApplicationServiceDeleteRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ApplicationServiceApiService) ApplicationServiceDeleteResource ¶

func (a *ApplicationServiceApiService) ApplicationServiceDeleteResource(ctx context.Context, name string) ApiApplicationServiceDeleteResourceRequest

ApplicationServiceDeleteResource DeleteResource deletes a single application resource

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

func (*ApplicationServiceApiService) ApplicationServiceDeleteResourceExecute ¶

func (a *ApplicationServiceApiService) ApplicationServiceDeleteResourceExecute(r ApiApplicationServiceDeleteResourceRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ApplicationServiceApiService) ApplicationServiceGet ¶

ApplicationServiceGet Get returns an application by name

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param name the application's name
@return ApiApplicationServiceGetRequest

func (*ApplicationServiceApiService) ApplicationServiceGetApplicationSyncWindows ¶

func (a *ApplicationServiceApiService) ApplicationServiceGetApplicationSyncWindows(ctx context.Context, name string) ApiApplicationServiceGetApplicationSyncWindowsRequest

ApplicationServiceGetApplicationSyncWindows Get returns sync windows of the application

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

func (*ApplicationServiceApiService) ApplicationServiceGetApplicationSyncWindowsExecute ¶

Execute executes the request

@return ApplicationApplicationSyncWindowsResponse

func (*ApplicationServiceApiService) ApplicationServiceGetExecute ¶

Execute executes the request

@return V1alpha1Application

func (*ApplicationServiceApiService) ApplicationServiceGetManifests ¶

ApplicationServiceGetManifests GetManifests returns application manifests

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

func (*ApplicationServiceApiService) ApplicationServiceGetManifestsExecute ¶

Execute executes the request

@return RepositoryManifestResponse

func (*ApplicationServiceApiService) ApplicationServiceGetManifestsWithFiles ¶

ApplicationServiceGetManifestsWithFiles GetManifestsWithFiles returns application manifests using provided files to generate them

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

func (*ApplicationServiceApiService) ApplicationServiceGetManifestsWithFilesExecute ¶

Execute executes the request

@return RepositoryManifestResponse

func (*ApplicationServiceApiService) ApplicationServiceGetResource ¶

ApplicationServiceGetResource GetResource returns single application resource

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

func (*ApplicationServiceApiService) ApplicationServiceGetResourceExecute ¶

Execute executes the request

@return ApplicationApplicationResourceResponse

func (*ApplicationServiceApiService) ApplicationServiceList ¶

ApplicationServiceList List returns list of applications

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

func (*ApplicationServiceApiService) ApplicationServiceListExecute ¶

Execute executes the request

@return V1alpha1ApplicationList

func (*ApplicationServiceApiService) ApplicationServiceListResourceActions ¶

func (a *ApplicationServiceApiService) ApplicationServiceListResourceActions(ctx context.Context, name string) ApiApplicationServiceListResourceActionsRequest

ApplicationServiceListResourceActions ListResourceActions returns list of resource actions

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

func (*ApplicationServiceApiService) ApplicationServiceListResourceActionsExecute ¶

Execute executes the request

@return ApplicationResourceActionsListResponse

func (*ApplicationServiceApiService) ApplicationServiceListResourceEvents ¶

func (a *ApplicationServiceApiService) ApplicationServiceListResourceEvents(ctx context.Context, name string) ApiApplicationServiceListResourceEventsRequest

ApplicationServiceListResourceEvents ListResourceEvents returns a list of event resources

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

func (*ApplicationServiceApiService) ApplicationServiceListResourceEventsExecute ¶

func (a *ApplicationServiceApiService) ApplicationServiceListResourceEventsExecute(r ApiApplicationServiceListResourceEventsRequest) (*V1EventList, *http.Response, error)

Execute executes the request

@return V1EventList

func (*ApplicationServiceApiService) ApplicationServiceManagedResources ¶

func (a *ApplicationServiceApiService) ApplicationServiceManagedResources(ctx context.Context, applicationName string) ApiApplicationServiceManagedResourcesRequest

ApplicationServiceManagedResources ManagedResources returns list of managed resources

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

func (*ApplicationServiceApiService) ApplicationServiceManagedResourcesExecute ¶

Execute executes the request

@return ApplicationManagedResourcesResponse

func (*ApplicationServiceApiService) ApplicationServicePatch ¶

ApplicationServicePatch Patch patch an application

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

func (*ApplicationServiceApiService) ApplicationServicePatchExecute ¶

Execute executes the request

@return V1alpha1Application

func (*ApplicationServiceApiService) ApplicationServicePatchResource ¶

ApplicationServicePatchResource PatchResource patch single application resource

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

func (*ApplicationServiceApiService) ApplicationServicePatchResourceExecute ¶

Execute executes the request

@return ApplicationApplicationResourceResponse

func (*ApplicationServiceApiService) ApplicationServicePodLogs ¶

func (a *ApplicationServiceApiService) ApplicationServicePodLogs(ctx context.Context, name string, podName string) ApiApplicationServicePodLogsRequest

ApplicationServicePodLogs PodLogs returns stream of log entries for the specified pod. Pod

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

func (*ApplicationServiceApiService) ApplicationServicePodLogs2 ¶

ApplicationServicePodLogs2 PodLogs returns stream of log entries for the specified pod. Pod

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

func (*ApplicationServiceApiService) ApplicationServicePodLogs2Execute ¶

Execute executes the request

@return StreamResultOfApplicationLogEntry

func (*ApplicationServiceApiService) ApplicationServicePodLogsExecute ¶

Execute executes the request

@return StreamResultOfApplicationLogEntry

func (*ApplicationServiceApiService) ApplicationServiceResourceTree ¶

func (a *ApplicationServiceApiService) ApplicationServiceResourceTree(ctx context.Context, applicationName string) ApiApplicationServiceResourceTreeRequest

ApplicationServiceResourceTree ResourceTree returns resource tree

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

func (*ApplicationServiceApiService) ApplicationServiceResourceTreeExecute ¶

Execute executes the request

@return V1alpha1ApplicationTree

func (*ApplicationServiceApiService) ApplicationServiceRevisionMetadata ¶

func (a *ApplicationServiceApiService) ApplicationServiceRevisionMetadata(ctx context.Context, name string, revision string) ApiApplicationServiceRevisionMetadataRequest

ApplicationServiceRevisionMetadata Get the meta-data (author, date, tags, message) for a specific revision of the application

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param name the application's name
@param revision the revision of the app
@return ApiApplicationServiceRevisionMetadataRequest

func (*ApplicationServiceApiService) ApplicationServiceRevisionMetadataExecute ¶

Execute executes the request

@return V1alpha1RevisionMetadata

func (*ApplicationServiceApiService) ApplicationServiceRollback ¶

ApplicationServiceRollback Rollback syncs an application to its target state

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

func (*ApplicationServiceApiService) ApplicationServiceRollbackExecute ¶

Execute executes the request

@return V1alpha1Application

func (*ApplicationServiceApiService) ApplicationServiceRunResourceAction ¶

func (a *ApplicationServiceApiService) ApplicationServiceRunResourceAction(ctx context.Context, name string) ApiApplicationServiceRunResourceActionRequest

ApplicationServiceRunResourceAction RunResourceAction run resource action

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

func (*ApplicationServiceApiService) ApplicationServiceRunResourceActionExecute ¶

func (a *ApplicationServiceApiService) ApplicationServiceRunResourceActionExecute(r ApiApplicationServiceRunResourceActionRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ApplicationServiceApiService) ApplicationServiceSync ¶

ApplicationServiceSync Sync syncs an application to its target state

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

func (*ApplicationServiceApiService) ApplicationServiceSyncExecute ¶

Execute executes the request

@return V1alpha1Application

func (*ApplicationServiceApiService) ApplicationServiceTerminateOperation ¶

func (a *ApplicationServiceApiService) ApplicationServiceTerminateOperation(ctx context.Context, name string) ApiApplicationServiceTerminateOperationRequest

ApplicationServiceTerminateOperation TerminateOperation terminates the currently running operation

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

func (*ApplicationServiceApiService) ApplicationServiceTerminateOperationExecute ¶

func (a *ApplicationServiceApiService) ApplicationServiceTerminateOperationExecute(r ApiApplicationServiceTerminateOperationRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ApplicationServiceApiService) ApplicationServiceUpdate ¶

func (a *ApplicationServiceApiService) ApplicationServiceUpdate(ctx context.Context, applicationMetadataName string) ApiApplicationServiceUpdateRequest

ApplicationServiceUpdate Update updates an application

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param applicationMetadataName Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names +optional
@return ApiApplicationServiceUpdateRequest

func (*ApplicationServiceApiService) ApplicationServiceUpdateExecute ¶

Execute executes the request

@return V1alpha1Application

func (*ApplicationServiceApiService) ApplicationServiceUpdateSpec ¶

ApplicationServiceUpdateSpec UpdateSpec updates an application spec

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

func (*ApplicationServiceApiService) ApplicationServiceUpdateSpecExecute ¶

Execute executes the request

@return V1alpha1ApplicationSpec

func (*ApplicationServiceApiService) ApplicationServiceWatch ¶

ApplicationServiceWatch Watch returns stream of application change events

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

func (*ApplicationServiceApiService) ApplicationServiceWatchExecute ¶

Execute executes the request

@return StreamResultOfV1alpha1ApplicationWatchEvent

func (*ApplicationServiceApiService) ApplicationServiceWatchResourceTree ¶

func (a *ApplicationServiceApiService) ApplicationServiceWatchResourceTree(ctx context.Context, applicationName string) ApiApplicationServiceWatchResourceTreeRequest

ApplicationServiceWatchResourceTree Watch returns stream of application resource tree

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

func (*ApplicationServiceApiService) ApplicationServiceWatchResourceTreeExecute ¶

Execute executes the request

@return StreamResultOfV1alpha1ApplicationTree

type ApplicationSetServiceApiService ¶

type ApplicationSetServiceApiService service

ApplicationSetServiceApiService ApplicationSetServiceApi service

func (*ApplicationSetServiceApiService) ApplicationSetServiceCreate ¶

ApplicationSetServiceCreate Create creates an applicationset

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

func (*ApplicationSetServiceApiService) ApplicationSetServiceCreateExecute ¶

Execute executes the request

@return V1alpha1ApplicationSet

func (*ApplicationSetServiceApiService) ApplicationSetServiceDelete ¶

ApplicationSetServiceDelete Delete deletes an application set

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

func (*ApplicationSetServiceApiService) ApplicationSetServiceDeleteExecute ¶

Execute executes the request

@return ApplicationsetApplicationSetResponse

func (*ApplicationSetServiceApiService) ApplicationSetServiceGet ¶

ApplicationSetServiceGet Get returns an applicationset by name

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param name the applicationsets's name
@return ApiApplicationSetServiceGetRequest

func (*ApplicationSetServiceApiService) ApplicationSetServiceGetExecute ¶

Execute executes the request

@return V1alpha1ApplicationSet

func (*ApplicationSetServiceApiService) ApplicationSetServiceList ¶

ApplicationSetServiceList List returns list of applicationset

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

func (*ApplicationSetServiceApiService) ApplicationSetServiceListExecute ¶

Execute executes the request

@return V1alpha1ApplicationSetList

type ApplicationSyncOptions ¶

type ApplicationSyncOptions struct {
	Items []string `json:"items,omitempty"`
}

ApplicationSyncOptions struct for ApplicationSyncOptions

func NewApplicationSyncOptions ¶

func NewApplicationSyncOptions() *ApplicationSyncOptions

NewApplicationSyncOptions instantiates a new ApplicationSyncOptions 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 NewApplicationSyncOptionsWithDefaults ¶

func NewApplicationSyncOptionsWithDefaults() *ApplicationSyncOptions

NewApplicationSyncOptionsWithDefaults instantiates a new ApplicationSyncOptions 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 (*ApplicationSyncOptions) GetItems ¶

func (o *ApplicationSyncOptions) GetItems() []string

GetItems returns the Items field value if set, zero value otherwise.

func (*ApplicationSyncOptions) GetItemsOk ¶

func (o *ApplicationSyncOptions) GetItemsOk() ([]string, bool)

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

func (*ApplicationSyncOptions) HasItems ¶

func (o *ApplicationSyncOptions) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ApplicationSyncOptions) MarshalJSON ¶

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

func (*ApplicationSyncOptions) SetItems ¶

func (o *ApplicationSyncOptions) SetItems(v []string)

SetItems gets a reference to the given []string and assigns it to the Items field.

func (ApplicationSyncOptions) ToMap ¶

func (o ApplicationSyncOptions) ToMap() (map[string]interface{}, error)

type ApplicationsetApplicationSetResponse ¶

type ApplicationsetApplicationSetResponse struct {
	Applicationset *V1alpha1ApplicationSet `json:"applicationset,omitempty"`
	Project        *string                 `json:"project,omitempty"`
}

ApplicationsetApplicationSetResponse struct for ApplicationsetApplicationSetResponse

func NewApplicationsetApplicationSetResponse ¶

func NewApplicationsetApplicationSetResponse() *ApplicationsetApplicationSetResponse

NewApplicationsetApplicationSetResponse instantiates a new ApplicationsetApplicationSetResponse 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 NewApplicationsetApplicationSetResponseWithDefaults ¶

func NewApplicationsetApplicationSetResponseWithDefaults() *ApplicationsetApplicationSetResponse

NewApplicationsetApplicationSetResponseWithDefaults instantiates a new ApplicationsetApplicationSetResponse 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 (*ApplicationsetApplicationSetResponse) GetApplicationset ¶

GetApplicationset returns the Applicationset field value if set, zero value otherwise.

func (*ApplicationsetApplicationSetResponse) GetApplicationsetOk ¶

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

func (*ApplicationsetApplicationSetResponse) GetProject ¶

GetProject returns the Project field value if set, zero value otherwise.

func (*ApplicationsetApplicationSetResponse) GetProjectOk ¶

func (o *ApplicationsetApplicationSetResponse) GetProjectOk() (*string, bool)

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

func (*ApplicationsetApplicationSetResponse) HasApplicationset ¶

func (o *ApplicationsetApplicationSetResponse) HasApplicationset() bool

HasApplicationset returns a boolean if a field has been set.

func (*ApplicationsetApplicationSetResponse) HasProject ¶

HasProject returns a boolean if a field has been set.

func (ApplicationsetApplicationSetResponse) MarshalJSON ¶

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

func (*ApplicationsetApplicationSetResponse) SetApplicationset ¶

SetApplicationset gets a reference to the given V1alpha1ApplicationSet and assigns it to the Applicationset field.

func (*ApplicationsetApplicationSetResponse) SetProject ¶

SetProject gets a reference to the given string and assigns it to the Project field.

func (ApplicationsetApplicationSetResponse) ToMap ¶

func (o ApplicationsetApplicationSetResponse) ToMap() (map[string]interface{}, error)

type Applicationv1alpha1EnvEntry ¶

type Applicationv1alpha1EnvEntry struct {
	Name  *string `json:"name,omitempty"`
	Value *string `json:"value,omitempty"`
}

Applicationv1alpha1EnvEntry struct for Applicationv1alpha1EnvEntry

func NewApplicationv1alpha1EnvEntry ¶

func NewApplicationv1alpha1EnvEntry() *Applicationv1alpha1EnvEntry

NewApplicationv1alpha1EnvEntry instantiates a new Applicationv1alpha1EnvEntry 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 NewApplicationv1alpha1EnvEntryWithDefaults ¶

func NewApplicationv1alpha1EnvEntryWithDefaults() *Applicationv1alpha1EnvEntry

NewApplicationv1alpha1EnvEntryWithDefaults instantiates a new Applicationv1alpha1EnvEntry 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 (*Applicationv1alpha1EnvEntry) GetName ¶

func (o *Applicationv1alpha1EnvEntry) GetName() string

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

func (*Applicationv1alpha1EnvEntry) GetNameOk ¶

func (o *Applicationv1alpha1EnvEntry) 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 (*Applicationv1alpha1EnvEntry) GetValue ¶

func (o *Applicationv1alpha1EnvEntry) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*Applicationv1alpha1EnvEntry) GetValueOk ¶

func (o *Applicationv1alpha1EnvEntry) GetValueOk() (*string, bool)

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

func (*Applicationv1alpha1EnvEntry) HasName ¶

func (o *Applicationv1alpha1EnvEntry) HasName() bool

HasName returns a boolean if a field has been set.

func (*Applicationv1alpha1EnvEntry) HasValue ¶

func (o *Applicationv1alpha1EnvEntry) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Applicationv1alpha1EnvEntry) MarshalJSON ¶

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

func (*Applicationv1alpha1EnvEntry) SetName ¶

func (o *Applicationv1alpha1EnvEntry) SetName(v string)

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

func (*Applicationv1alpha1EnvEntry) SetValue ¶

func (o *Applicationv1alpha1EnvEntry) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (Applicationv1alpha1EnvEntry) ToMap ¶

func (o Applicationv1alpha1EnvEntry) ToMap() (map[string]interface{}, error)

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 CertificateServiceApiService ¶

type CertificateServiceApiService service

CertificateServiceApiService CertificateServiceApi service

func (*CertificateServiceApiService) CertificateServiceCreateCertificate ¶

CertificateServiceCreateCertificate Creates repository certificates on the server

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

func (*CertificateServiceApiService) CertificateServiceCreateCertificateExecute ¶

Execute executes the request

@return V1alpha1RepositoryCertificateList

func (*CertificateServiceApiService) CertificateServiceDeleteCertificate ¶

CertificateServiceDeleteCertificate Delete the certificates that match the RepositoryCertificateQuery

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

func (*CertificateServiceApiService) CertificateServiceDeleteCertificateExecute ¶

Execute executes the request

@return V1alpha1RepositoryCertificateList

func (*CertificateServiceApiService) CertificateServiceListCertificates ¶

CertificateServiceListCertificates List all available repository certificates

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

func (*CertificateServiceApiService) CertificateServiceListCertificatesExecute ¶

Execute executes the request

@return V1alpha1RepositoryCertificateList

type ClusterClusterID ¶

type ClusterClusterID struct {
	Type  *string `json:"type,omitempty"`
	Value *string `json:"value,omitempty"`
}

ClusterClusterID struct for ClusterClusterID

func NewClusterClusterID ¶

func NewClusterClusterID() *ClusterClusterID

NewClusterClusterID instantiates a new ClusterClusterID 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 NewClusterClusterIDWithDefaults ¶

func NewClusterClusterIDWithDefaults() *ClusterClusterID

NewClusterClusterIDWithDefaults instantiates a new ClusterClusterID 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 (*ClusterClusterID) GetType ¶

func (o *ClusterClusterID) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ClusterClusterID) GetTypeOk ¶

func (o *ClusterClusterID) GetTypeOk() (*string, bool)

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

func (*ClusterClusterID) GetValue ¶

func (o *ClusterClusterID) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ClusterClusterID) GetValueOk ¶

func (o *ClusterClusterID) GetValueOk() (*string, bool)

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

func (*ClusterClusterID) HasType ¶

func (o *ClusterClusterID) HasType() bool

HasType returns a boolean if a field has been set.

func (*ClusterClusterID) HasValue ¶

func (o *ClusterClusterID) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ClusterClusterID) MarshalJSON ¶

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

func (*ClusterClusterID) SetType ¶

func (o *ClusterClusterID) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*ClusterClusterID) SetValue ¶

func (o *ClusterClusterID) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (ClusterClusterID) ToMap ¶

func (o ClusterClusterID) ToMap() (map[string]interface{}, error)

type ClusterConnector ¶

type ClusterConnector struct {
	Name *string `json:"name,omitempty"`
	Type *string `json:"type,omitempty"`
}

ClusterConnector struct for ClusterConnector

func NewClusterConnector ¶

func NewClusterConnector() *ClusterConnector

NewClusterConnector instantiates a new ClusterConnector 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 NewClusterConnectorWithDefaults ¶

func NewClusterConnectorWithDefaults() *ClusterConnector

NewClusterConnectorWithDefaults instantiates a new ClusterConnector 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 (*ClusterConnector) GetName ¶

func (o *ClusterConnector) GetName() string

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

func (*ClusterConnector) GetNameOk ¶

func (o *ClusterConnector) 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 (*ClusterConnector) GetType ¶

func (o *ClusterConnector) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ClusterConnector) GetTypeOk ¶

func (o *ClusterConnector) GetTypeOk() (*string, bool)

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

func (*ClusterConnector) HasName ¶

func (o *ClusterConnector) HasName() bool

HasName returns a boolean if a field has been set.

func (*ClusterConnector) HasType ¶

func (o *ClusterConnector) HasType() bool

HasType returns a boolean if a field has been set.

func (ClusterConnector) MarshalJSON ¶

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

func (*ClusterConnector) SetName ¶

func (o *ClusterConnector) SetName(v string)

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

func (*ClusterConnector) SetType ¶

func (o *ClusterConnector) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ClusterConnector) ToMap ¶

func (o ClusterConnector) ToMap() (map[string]interface{}, error)

type ClusterDexConfig ¶

type ClusterDexConfig struct {
	Connectors []ClusterConnector `json:"connectors,omitempty"`
}

ClusterDexConfig struct for ClusterDexConfig

func NewClusterDexConfig ¶

func NewClusterDexConfig() *ClusterDexConfig

NewClusterDexConfig instantiates a new ClusterDexConfig 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 NewClusterDexConfigWithDefaults ¶

func NewClusterDexConfigWithDefaults() *ClusterDexConfig

NewClusterDexConfigWithDefaults instantiates a new ClusterDexConfig 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 (*ClusterDexConfig) GetConnectors ¶

func (o *ClusterDexConfig) GetConnectors() []ClusterConnector

GetConnectors returns the Connectors field value if set, zero value otherwise.

func (*ClusterDexConfig) GetConnectorsOk ¶

func (o *ClusterDexConfig) GetConnectorsOk() ([]ClusterConnector, bool)

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

func (*ClusterDexConfig) HasConnectors ¶

func (o *ClusterDexConfig) HasConnectors() bool

HasConnectors returns a boolean if a field has been set.

func (ClusterDexConfig) MarshalJSON ¶

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

func (*ClusterDexConfig) SetConnectors ¶

func (o *ClusterDexConfig) SetConnectors(v []ClusterConnector)

SetConnectors gets a reference to the given []ClusterConnector and assigns it to the Connectors field.

func (ClusterDexConfig) ToMap ¶

func (o ClusterDexConfig) ToMap() (map[string]interface{}, error)

type ClusterGoogleAnalyticsConfig ¶

type ClusterGoogleAnalyticsConfig struct {
	AnonymizeUsers *bool   `json:"anonymizeUsers,omitempty"`
	TrackingID     *string `json:"trackingID,omitempty"`
}

ClusterGoogleAnalyticsConfig struct for ClusterGoogleAnalyticsConfig

func NewClusterGoogleAnalyticsConfig ¶

func NewClusterGoogleAnalyticsConfig() *ClusterGoogleAnalyticsConfig

NewClusterGoogleAnalyticsConfig instantiates a new ClusterGoogleAnalyticsConfig 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 NewClusterGoogleAnalyticsConfigWithDefaults ¶

func NewClusterGoogleAnalyticsConfigWithDefaults() *ClusterGoogleAnalyticsConfig

NewClusterGoogleAnalyticsConfigWithDefaults instantiates a new ClusterGoogleAnalyticsConfig 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 (*ClusterGoogleAnalyticsConfig) GetAnonymizeUsers ¶

func (o *ClusterGoogleAnalyticsConfig) GetAnonymizeUsers() bool

GetAnonymizeUsers returns the AnonymizeUsers field value if set, zero value otherwise.

func (*ClusterGoogleAnalyticsConfig) GetAnonymizeUsersOk ¶

func (o *ClusterGoogleAnalyticsConfig) GetAnonymizeUsersOk() (*bool, bool)

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

func (*ClusterGoogleAnalyticsConfig) GetTrackingID ¶

func (o *ClusterGoogleAnalyticsConfig) GetTrackingID() string

GetTrackingID returns the TrackingID field value if set, zero value otherwise.

func (*ClusterGoogleAnalyticsConfig) GetTrackingIDOk ¶

func (o *ClusterGoogleAnalyticsConfig) GetTrackingIDOk() (*string, bool)

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

func (*ClusterGoogleAnalyticsConfig) HasAnonymizeUsers ¶

func (o *ClusterGoogleAnalyticsConfig) HasAnonymizeUsers() bool

HasAnonymizeUsers returns a boolean if a field has been set.

func (*ClusterGoogleAnalyticsConfig) HasTrackingID ¶

func (o *ClusterGoogleAnalyticsConfig) HasTrackingID() bool

HasTrackingID returns a boolean if a field has been set.

func (ClusterGoogleAnalyticsConfig) MarshalJSON ¶

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

func (*ClusterGoogleAnalyticsConfig) SetAnonymizeUsers ¶

func (o *ClusterGoogleAnalyticsConfig) SetAnonymizeUsers(v bool)

SetAnonymizeUsers gets a reference to the given bool and assigns it to the AnonymizeUsers field.

func (*ClusterGoogleAnalyticsConfig) SetTrackingID ¶

func (o *ClusterGoogleAnalyticsConfig) SetTrackingID(v string)

SetTrackingID gets a reference to the given string and assigns it to the TrackingID field.

func (ClusterGoogleAnalyticsConfig) ToMap ¶

func (o ClusterGoogleAnalyticsConfig) ToMap() (map[string]interface{}, error)

type ClusterHelp ¶

type ClusterHelp struct {
	BinaryUrls *map[string]string `json:"binaryUrls,omitempty"`
	ChatText   *string            `json:"chatText,omitempty"`
	ChatUrl    *string            `json:"chatUrl,omitempty"`
}

ClusterHelp struct for ClusterHelp

func NewClusterHelp ¶

func NewClusterHelp() *ClusterHelp

NewClusterHelp instantiates a new ClusterHelp 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 NewClusterHelpWithDefaults ¶

func NewClusterHelpWithDefaults() *ClusterHelp

NewClusterHelpWithDefaults instantiates a new ClusterHelp 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 (*ClusterHelp) GetBinaryUrls ¶

func (o *ClusterHelp) GetBinaryUrls() map[string]string

GetBinaryUrls returns the BinaryUrls field value if set, zero value otherwise.

func (*ClusterHelp) GetBinaryUrlsOk ¶

func (o *ClusterHelp) GetBinaryUrlsOk() (*map[string]string, bool)

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

func (*ClusterHelp) GetChatText ¶

func (o *ClusterHelp) GetChatText() string

GetChatText returns the ChatText field value if set, zero value otherwise.

func (*ClusterHelp) GetChatTextOk ¶

func (o *ClusterHelp) GetChatTextOk() (*string, bool)

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

func (*ClusterHelp) GetChatUrl ¶

func (o *ClusterHelp) GetChatUrl() string

GetChatUrl returns the ChatUrl field value if set, zero value otherwise.

func (*ClusterHelp) GetChatUrlOk ¶

func (o *ClusterHelp) GetChatUrlOk() (*string, bool)

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

func (*ClusterHelp) HasBinaryUrls ¶

func (o *ClusterHelp) HasBinaryUrls() bool

HasBinaryUrls returns a boolean if a field has been set.

func (*ClusterHelp) HasChatText ¶

func (o *ClusterHelp) HasChatText() bool

HasChatText returns a boolean if a field has been set.

func (*ClusterHelp) HasChatUrl ¶

func (o *ClusterHelp) HasChatUrl() bool

HasChatUrl returns a boolean if a field has been set.

func (ClusterHelp) MarshalJSON ¶

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

func (*ClusterHelp) SetBinaryUrls ¶

func (o *ClusterHelp) SetBinaryUrls(v map[string]string)

SetBinaryUrls gets a reference to the given map[string]string and assigns it to the BinaryUrls field.

func (*ClusterHelp) SetChatText ¶

func (o *ClusterHelp) SetChatText(v string)

SetChatText gets a reference to the given string and assigns it to the ChatText field.

func (*ClusterHelp) SetChatUrl ¶

func (o *ClusterHelp) SetChatUrl(v string)

SetChatUrl gets a reference to the given string and assigns it to the ChatUrl field.

func (ClusterHelp) ToMap ¶

func (o ClusterHelp) ToMap() (map[string]interface{}, error)

type ClusterOIDCConfig ¶

type ClusterOIDCConfig struct {
	CliClientID   *string               `json:"cliClientID,omitempty"`
	ClientID      *string               `json:"clientID,omitempty"`
	IdTokenClaims *map[string]OidcClaim `json:"idTokenClaims,omitempty"`
	Issuer        *string               `json:"issuer,omitempty"`
	Name          *string               `json:"name,omitempty"`
	Scopes        []string              `json:"scopes,omitempty"`
}

ClusterOIDCConfig struct for ClusterOIDCConfig

func NewClusterOIDCConfig ¶

func NewClusterOIDCConfig() *ClusterOIDCConfig

NewClusterOIDCConfig instantiates a new ClusterOIDCConfig 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 NewClusterOIDCConfigWithDefaults ¶

func NewClusterOIDCConfigWithDefaults() *ClusterOIDCConfig

NewClusterOIDCConfigWithDefaults instantiates a new ClusterOIDCConfig 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 (*ClusterOIDCConfig) GetCliClientID ¶

func (o *ClusterOIDCConfig) GetCliClientID() string

GetCliClientID returns the CliClientID field value if set, zero value otherwise.

func (*ClusterOIDCConfig) GetCliClientIDOk ¶

func (o *ClusterOIDCConfig) GetCliClientIDOk() (*string, bool)

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

func (*ClusterOIDCConfig) GetClientID ¶

func (o *ClusterOIDCConfig) GetClientID() string

GetClientID returns the ClientID field value if set, zero value otherwise.

func (*ClusterOIDCConfig) GetClientIDOk ¶

func (o *ClusterOIDCConfig) GetClientIDOk() (*string, bool)

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

func (*ClusterOIDCConfig) GetIdTokenClaims ¶

func (o *ClusterOIDCConfig) GetIdTokenClaims() map[string]OidcClaim

GetIdTokenClaims returns the IdTokenClaims field value if set, zero value otherwise.

func (*ClusterOIDCConfig) GetIdTokenClaimsOk ¶

func (o *ClusterOIDCConfig) GetIdTokenClaimsOk() (*map[string]OidcClaim, bool)

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

func (*ClusterOIDCConfig) GetIssuer ¶

func (o *ClusterOIDCConfig) GetIssuer() string

GetIssuer returns the Issuer field value if set, zero value otherwise.

func (*ClusterOIDCConfig) GetIssuerOk ¶

func (o *ClusterOIDCConfig) GetIssuerOk() (*string, bool)

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

func (*ClusterOIDCConfig) GetName ¶

func (o *ClusterOIDCConfig) GetName() string

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

func (*ClusterOIDCConfig) GetNameOk ¶

func (o *ClusterOIDCConfig) 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 (*ClusterOIDCConfig) GetScopes ¶

func (o *ClusterOIDCConfig) GetScopes() []string

GetScopes returns the Scopes field value if set, zero value otherwise.

func (*ClusterOIDCConfig) GetScopesOk ¶

func (o *ClusterOIDCConfig) GetScopesOk() ([]string, bool)

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

func (*ClusterOIDCConfig) HasCliClientID ¶

func (o *ClusterOIDCConfig) HasCliClientID() bool

HasCliClientID returns a boolean if a field has been set.

func (*ClusterOIDCConfig) HasClientID ¶

func (o *ClusterOIDCConfig) HasClientID() bool

HasClientID returns a boolean if a field has been set.

func (*ClusterOIDCConfig) HasIdTokenClaims ¶

func (o *ClusterOIDCConfig) HasIdTokenClaims() bool

HasIdTokenClaims returns a boolean if a field has been set.

func (*ClusterOIDCConfig) HasIssuer ¶

func (o *ClusterOIDCConfig) HasIssuer() bool

HasIssuer returns a boolean if a field has been set.

func (*ClusterOIDCConfig) HasName ¶

func (o *ClusterOIDCConfig) HasName() bool

HasName returns a boolean if a field has been set.

func (*ClusterOIDCConfig) HasScopes ¶

func (o *ClusterOIDCConfig) HasScopes() bool

HasScopes returns a boolean if a field has been set.

func (ClusterOIDCConfig) MarshalJSON ¶

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

func (*ClusterOIDCConfig) SetCliClientID ¶

func (o *ClusterOIDCConfig) SetCliClientID(v string)

SetCliClientID gets a reference to the given string and assigns it to the CliClientID field.

func (*ClusterOIDCConfig) SetClientID ¶

func (o *ClusterOIDCConfig) SetClientID(v string)

SetClientID gets a reference to the given string and assigns it to the ClientID field.

func (*ClusterOIDCConfig) SetIdTokenClaims ¶

func (o *ClusterOIDCConfig) SetIdTokenClaims(v map[string]OidcClaim)

SetIdTokenClaims gets a reference to the given map[string]OidcClaim and assigns it to the IdTokenClaims field.

func (*ClusterOIDCConfig) SetIssuer ¶

func (o *ClusterOIDCConfig) SetIssuer(v string)

SetIssuer gets a reference to the given string and assigns it to the Issuer field.

func (*ClusterOIDCConfig) SetName ¶

func (o *ClusterOIDCConfig) SetName(v string)

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

func (*ClusterOIDCConfig) SetScopes ¶

func (o *ClusterOIDCConfig) SetScopes(v []string)

SetScopes gets a reference to the given []string and assigns it to the Scopes field.

func (ClusterOIDCConfig) ToMap ¶

func (o ClusterOIDCConfig) ToMap() (map[string]interface{}, error)

type ClusterPlugin ¶

type ClusterPlugin struct {
	Name *string `json:"name,omitempty"`
}

ClusterPlugin struct for ClusterPlugin

func NewClusterPlugin ¶

func NewClusterPlugin() *ClusterPlugin

NewClusterPlugin instantiates a new ClusterPlugin 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 NewClusterPluginWithDefaults ¶

func NewClusterPluginWithDefaults() *ClusterPlugin

NewClusterPluginWithDefaults instantiates a new ClusterPlugin 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 (*ClusterPlugin) GetName ¶

func (o *ClusterPlugin) GetName() string

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

func (*ClusterPlugin) GetNameOk ¶

func (o *ClusterPlugin) 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 (*ClusterPlugin) HasName ¶

func (o *ClusterPlugin) HasName() bool

HasName returns a boolean if a field has been set.

func (ClusterPlugin) MarshalJSON ¶

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

func (*ClusterPlugin) SetName ¶

func (o *ClusterPlugin) SetName(v string)

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

func (ClusterPlugin) ToMap ¶

func (o ClusterPlugin) ToMap() (map[string]interface{}, error)

type ClusterServiceApiService ¶

type ClusterServiceApiService service

ClusterServiceApiService ClusterServiceApi service

func (*ClusterServiceApiService) ClusterServiceCreate ¶

ClusterServiceCreate Create creates a cluster

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

func (*ClusterServiceApiService) ClusterServiceCreateExecute ¶

Execute executes the request

@return V1alpha1Cluster

func (*ClusterServiceApiService) ClusterServiceDelete ¶

func (a *ClusterServiceApiService) ClusterServiceDelete(ctx context.Context, idValue string) ApiClusterServiceDeleteRequest

ClusterServiceDelete Delete deletes a cluster

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param idValue value holds the cluster server URL or cluster name
@return ApiClusterServiceDeleteRequest

func (*ClusterServiceApiService) ClusterServiceDeleteExecute ¶

func (a *ClusterServiceApiService) ClusterServiceDeleteExecute(r ApiClusterServiceDeleteRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ClusterServiceApiService) ClusterServiceGet ¶

func (a *ClusterServiceApiService) ClusterServiceGet(ctx context.Context, idValue string) ApiClusterServiceGetRequest

ClusterServiceGet Get returns a cluster by server address

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param idValue value holds the cluster server URL or cluster name
@return ApiClusterServiceGetRequest

func (*ClusterServiceApiService) ClusterServiceGetExecute ¶

Execute executes the request

@return V1alpha1Cluster

func (*ClusterServiceApiService) ClusterServiceInvalidateCache ¶

func (a *ClusterServiceApiService) ClusterServiceInvalidateCache(ctx context.Context, idValue string) ApiClusterServiceInvalidateCacheRequest

ClusterServiceInvalidateCache InvalidateCache invalidates cluster cache

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param idValue value holds the cluster server URL or cluster name
@return ApiClusterServiceInvalidateCacheRequest

func (*ClusterServiceApiService) ClusterServiceInvalidateCacheExecute ¶

Execute executes the request

@return V1alpha1Cluster

func (*ClusterServiceApiService) ClusterServiceList ¶

ClusterServiceList List returns list of clusters

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

func (*ClusterServiceApiService) ClusterServiceListExecute ¶

Execute executes the request

@return V1alpha1ClusterList

func (*ClusterServiceApiService) ClusterServiceRotateAuth ¶

func (a *ClusterServiceApiService) ClusterServiceRotateAuth(ctx context.Context, idValue string) ApiClusterServiceRotateAuthRequest

ClusterServiceRotateAuth RotateAuth rotates the bearer token used for a cluster

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param idValue value holds the cluster server URL or cluster name
@return ApiClusterServiceRotateAuthRequest

func (*ClusterServiceApiService) ClusterServiceRotateAuthExecute ¶

func (a *ClusterServiceApiService) ClusterServiceRotateAuthExecute(r ApiClusterServiceRotateAuthRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ClusterServiceApiService) ClusterServiceUpdate ¶

func (a *ClusterServiceApiService) ClusterServiceUpdate(ctx context.Context, idValue string) ApiClusterServiceUpdateRequest

ClusterServiceUpdate Update updates a cluster

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param idValue value holds the cluster server URL or cluster name
@return ApiClusterServiceUpdateRequest

func (*ClusterServiceApiService) ClusterServiceUpdateExecute ¶

Execute executes the request

@return V1alpha1Cluster

type ClusterSettings ¶

type ClusterSettings struct {
	AppLabelKey               *string                              `json:"appLabelKey,omitempty"`
	AppsInAnyNamespaceEnabled *bool                                `json:"appsInAnyNamespaceEnabled,omitempty"`
	ConfigManagementPlugins   []V1alpha1ConfigManagementPlugin     `json:"configManagementPlugins,omitempty"`
	ControllerNamespace       *string                              `json:"controllerNamespace,omitempty"`
	DexConfig                 *ClusterDexConfig                    `json:"dexConfig,omitempty"`
	ExecEnabled               *bool                                `json:"execEnabled,omitempty"`
	GoogleAnalytics           *ClusterGoogleAnalyticsConfig        `json:"googleAnalytics,omitempty"`
	Help                      *ClusterHelp                         `json:"help,omitempty"`
	KustomizeOptions          *V1alpha1KustomizeOptions            `json:"kustomizeOptions,omitempty"`
	KustomizeVersions         []string                             `json:"kustomizeVersions,omitempty"`
	OidcConfig                *ClusterOIDCConfig                   `json:"oidcConfig,omitempty"`
	PasswordPattern           *string                              `json:"passwordPattern,omitempty"`
	Plugins                   []ClusterPlugin                      `json:"plugins,omitempty"`
	ResourceOverrides         *map[string]V1alpha1ResourceOverride `json:"resourceOverrides,omitempty"`
	StatusBadgeEnabled        *bool                                `json:"statusBadgeEnabled,omitempty"`
	StatusBadgeRootUrl        *string                              `json:"statusBadgeRootUrl,omitempty"`
	TrackingMethod            *string                              `json:"trackingMethod,omitempty"`
	UiBannerContent           *string                              `json:"uiBannerContent,omitempty"`
	UiBannerPermanent         *bool                                `json:"uiBannerPermanent,omitempty"`
	UiBannerPosition          *string                              `json:"uiBannerPosition,omitempty"`
	UiBannerURL               *string                              `json:"uiBannerURL,omitempty"`
	UiCssURL                  *string                              `json:"uiCssURL,omitempty"`
	Url                       *string                              `json:"url,omitempty"`
	UserLoginsDisabled        *bool                                `json:"userLoginsDisabled,omitempty"`
}

ClusterSettings struct for ClusterSettings

func NewClusterSettings ¶

func NewClusterSettings() *ClusterSettings

NewClusterSettings instantiates a new ClusterSettings 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 NewClusterSettingsWithDefaults ¶

func NewClusterSettingsWithDefaults() *ClusterSettings

NewClusterSettingsWithDefaults instantiates a new ClusterSettings 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 (*ClusterSettings) GetAppLabelKey ¶

func (o *ClusterSettings) GetAppLabelKey() string

GetAppLabelKey returns the AppLabelKey field value if set, zero value otherwise.

func (*ClusterSettings) GetAppLabelKeyOk ¶

func (o *ClusterSettings) GetAppLabelKeyOk() (*string, bool)

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

func (*ClusterSettings) GetAppsInAnyNamespaceEnabled ¶

func (o *ClusterSettings) GetAppsInAnyNamespaceEnabled() bool

GetAppsInAnyNamespaceEnabled returns the AppsInAnyNamespaceEnabled field value if set, zero value otherwise.

func (*ClusterSettings) GetAppsInAnyNamespaceEnabledOk ¶

func (o *ClusterSettings) GetAppsInAnyNamespaceEnabledOk() (*bool, bool)

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

func (*ClusterSettings) GetConfigManagementPlugins ¶

func (o *ClusterSettings) GetConfigManagementPlugins() []V1alpha1ConfigManagementPlugin

GetConfigManagementPlugins returns the ConfigManagementPlugins field value if set, zero value otherwise.

func (*ClusterSettings) GetConfigManagementPluginsOk ¶

func (o *ClusterSettings) GetConfigManagementPluginsOk() ([]V1alpha1ConfigManagementPlugin, bool)

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

func (*ClusterSettings) GetControllerNamespace ¶

func (o *ClusterSettings) GetControllerNamespace() string

GetControllerNamespace returns the ControllerNamespace field value if set, zero value otherwise.

func (*ClusterSettings) GetControllerNamespaceOk ¶

func (o *ClusterSettings) GetControllerNamespaceOk() (*string, bool)

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

func (*ClusterSettings) GetDexConfig ¶

func (o *ClusterSettings) GetDexConfig() ClusterDexConfig

GetDexConfig returns the DexConfig field value if set, zero value otherwise.

func (*ClusterSettings) GetDexConfigOk ¶

func (o *ClusterSettings) GetDexConfigOk() (*ClusterDexConfig, bool)

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

func (*ClusterSettings) GetExecEnabled ¶

func (o *ClusterSettings) GetExecEnabled() bool

GetExecEnabled returns the ExecEnabled field value if set, zero value otherwise.

func (*ClusterSettings) GetExecEnabledOk ¶

func (o *ClusterSettings) GetExecEnabledOk() (*bool, bool)

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

func (*ClusterSettings) GetGoogleAnalytics ¶

func (o *ClusterSettings) GetGoogleAnalytics() ClusterGoogleAnalyticsConfig

GetGoogleAnalytics returns the GoogleAnalytics field value if set, zero value otherwise.

func (*ClusterSettings) GetGoogleAnalyticsOk ¶

func (o *ClusterSettings) GetGoogleAnalyticsOk() (*ClusterGoogleAnalyticsConfig, bool)

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

func (*ClusterSettings) GetHelp ¶

func (o *ClusterSettings) GetHelp() ClusterHelp

GetHelp returns the Help field value if set, zero value otherwise.

func (*ClusterSettings) GetHelpOk ¶

func (o *ClusterSettings) GetHelpOk() (*ClusterHelp, bool)

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

func (*ClusterSettings) GetKustomizeOptions ¶

func (o *ClusterSettings) GetKustomizeOptions() V1alpha1KustomizeOptions

GetKustomizeOptions returns the KustomizeOptions field value if set, zero value otherwise.

func (*ClusterSettings) GetKustomizeOptionsOk ¶

func (o *ClusterSettings) GetKustomizeOptionsOk() (*V1alpha1KustomizeOptions, bool)

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

func (*ClusterSettings) GetKustomizeVersions ¶

func (o *ClusterSettings) GetKustomizeVersions() []string

GetKustomizeVersions returns the KustomizeVersions field value if set, zero value otherwise.

func (*ClusterSettings) GetKustomizeVersionsOk ¶

func (o *ClusterSettings) GetKustomizeVersionsOk() ([]string, bool)

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

func (*ClusterSettings) GetOidcConfig ¶

func (o *ClusterSettings) GetOidcConfig() ClusterOIDCConfig

GetOidcConfig returns the OidcConfig field value if set, zero value otherwise.

func (*ClusterSettings) GetOidcConfigOk ¶

func (o *ClusterSettings) GetOidcConfigOk() (*ClusterOIDCConfig, bool)

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

func (*ClusterSettings) GetPasswordPattern ¶

func (o *ClusterSettings) GetPasswordPattern() string

GetPasswordPattern returns the PasswordPattern field value if set, zero value otherwise.

func (*ClusterSettings) GetPasswordPatternOk ¶

func (o *ClusterSettings) GetPasswordPatternOk() (*string, bool)

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

func (*ClusterSettings) GetPlugins ¶

func (o *ClusterSettings) GetPlugins() []ClusterPlugin

GetPlugins returns the Plugins field value if set, zero value otherwise.

func (*ClusterSettings) GetPluginsOk ¶

func (o *ClusterSettings) GetPluginsOk() ([]ClusterPlugin, bool)

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

func (*ClusterSettings) GetResourceOverrides ¶

func (o *ClusterSettings) GetResourceOverrides() map[string]V1alpha1ResourceOverride

GetResourceOverrides returns the ResourceOverrides field value if set, zero value otherwise.

func (*ClusterSettings) GetResourceOverridesOk ¶

func (o *ClusterSettings) GetResourceOverridesOk() (*map[string]V1alpha1ResourceOverride, bool)

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

func (*ClusterSettings) GetStatusBadgeEnabled ¶

func (o *ClusterSettings) GetStatusBadgeEnabled() bool

GetStatusBadgeEnabled returns the StatusBadgeEnabled field value if set, zero value otherwise.

func (*ClusterSettings) GetStatusBadgeEnabledOk ¶

func (o *ClusterSettings) GetStatusBadgeEnabledOk() (*bool, bool)

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

func (*ClusterSettings) GetStatusBadgeRootUrl ¶

func (o *ClusterSettings) GetStatusBadgeRootUrl() string

GetStatusBadgeRootUrl returns the StatusBadgeRootUrl field value if set, zero value otherwise.

func (*ClusterSettings) GetStatusBadgeRootUrlOk ¶

func (o *ClusterSettings) GetStatusBadgeRootUrlOk() (*string, bool)

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

func (*ClusterSettings) GetTrackingMethod ¶

func (o *ClusterSettings) GetTrackingMethod() string

GetTrackingMethod returns the TrackingMethod field value if set, zero value otherwise.

func (*ClusterSettings) GetTrackingMethodOk ¶

func (o *ClusterSettings) GetTrackingMethodOk() (*string, bool)

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

func (*ClusterSettings) GetUiBannerContent ¶

func (o *ClusterSettings) GetUiBannerContent() string

GetUiBannerContent returns the UiBannerContent field value if set, zero value otherwise.

func (*ClusterSettings) GetUiBannerContentOk ¶

func (o *ClusterSettings) GetUiBannerContentOk() (*string, bool)

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

func (*ClusterSettings) GetUiBannerPermanent ¶

func (o *ClusterSettings) GetUiBannerPermanent() bool

GetUiBannerPermanent returns the UiBannerPermanent field value if set, zero value otherwise.

func (*ClusterSettings) GetUiBannerPermanentOk ¶

func (o *ClusterSettings) GetUiBannerPermanentOk() (*bool, bool)

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

func (*ClusterSettings) GetUiBannerPosition ¶

func (o *ClusterSettings) GetUiBannerPosition() string

GetUiBannerPosition returns the UiBannerPosition field value if set, zero value otherwise.

func (*ClusterSettings) GetUiBannerPositionOk ¶

func (o *ClusterSettings) GetUiBannerPositionOk() (*string, bool)

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

func (*ClusterSettings) GetUiBannerURL ¶

func (o *ClusterSettings) GetUiBannerURL() string

GetUiBannerURL returns the UiBannerURL field value if set, zero value otherwise.

func (*ClusterSettings) GetUiBannerURLOk ¶

func (o *ClusterSettings) GetUiBannerURLOk() (*string, bool)

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

func (*ClusterSettings) GetUiCssURL ¶

func (o *ClusterSettings) GetUiCssURL() string

GetUiCssURL returns the UiCssURL field value if set, zero value otherwise.

func (*ClusterSettings) GetUiCssURLOk ¶

func (o *ClusterSettings) GetUiCssURLOk() (*string, bool)

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

func (*ClusterSettings) GetUrl ¶

func (o *ClusterSettings) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*ClusterSettings) GetUrlOk ¶

func (o *ClusterSettings) GetUrlOk() (*string, bool)

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

func (*ClusterSettings) GetUserLoginsDisabled ¶

func (o *ClusterSettings) GetUserLoginsDisabled() bool

GetUserLoginsDisabled returns the UserLoginsDisabled field value if set, zero value otherwise.

func (*ClusterSettings) GetUserLoginsDisabledOk ¶

func (o *ClusterSettings) GetUserLoginsDisabledOk() (*bool, bool)

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

func (*ClusterSettings) HasAppLabelKey ¶

func (o *ClusterSettings) HasAppLabelKey() bool

HasAppLabelKey returns a boolean if a field has been set.

func (*ClusterSettings) HasAppsInAnyNamespaceEnabled ¶

func (o *ClusterSettings) HasAppsInAnyNamespaceEnabled() bool

HasAppsInAnyNamespaceEnabled returns a boolean if a field has been set.

func (*ClusterSettings) HasConfigManagementPlugins ¶

func (o *ClusterSettings) HasConfigManagementPlugins() bool

HasConfigManagementPlugins returns a boolean if a field has been set.

func (*ClusterSettings) HasControllerNamespace ¶

func (o *ClusterSettings) HasControllerNamespace() bool

HasControllerNamespace returns a boolean if a field has been set.

func (*ClusterSettings) HasDexConfig ¶

func (o *ClusterSettings) HasDexConfig() bool

HasDexConfig returns a boolean if a field has been set.

func (*ClusterSettings) HasExecEnabled ¶

func (o *ClusterSettings) HasExecEnabled() bool

HasExecEnabled returns a boolean if a field has been set.

func (*ClusterSettings) HasGoogleAnalytics ¶

func (o *ClusterSettings) HasGoogleAnalytics() bool

HasGoogleAnalytics returns a boolean if a field has been set.

func (*ClusterSettings) HasHelp ¶

func (o *ClusterSettings) HasHelp() bool

HasHelp returns a boolean if a field has been set.

func (*ClusterSettings) HasKustomizeOptions ¶

func (o *ClusterSettings) HasKustomizeOptions() bool

HasKustomizeOptions returns a boolean if a field has been set.

func (*ClusterSettings) HasKustomizeVersions ¶

func (o *ClusterSettings) HasKustomizeVersions() bool

HasKustomizeVersions returns a boolean if a field has been set.

func (*ClusterSettings) HasOidcConfig ¶

func (o *ClusterSettings) HasOidcConfig() bool

HasOidcConfig returns a boolean if a field has been set.

func (*ClusterSettings) HasPasswordPattern ¶

func (o *ClusterSettings) HasPasswordPattern() bool

HasPasswordPattern returns a boolean if a field has been set.

func (*ClusterSettings) HasPlugins ¶

func (o *ClusterSettings) HasPlugins() bool

HasPlugins returns a boolean if a field has been set.

func (*ClusterSettings) HasResourceOverrides ¶

func (o *ClusterSettings) HasResourceOverrides() bool

HasResourceOverrides returns a boolean if a field has been set.

func (*ClusterSettings) HasStatusBadgeEnabled ¶

func (o *ClusterSettings) HasStatusBadgeEnabled() bool

HasStatusBadgeEnabled returns a boolean if a field has been set.

func (*ClusterSettings) HasStatusBadgeRootUrl ¶

func (o *ClusterSettings) HasStatusBadgeRootUrl() bool

HasStatusBadgeRootUrl returns a boolean if a field has been set.

func (*ClusterSettings) HasTrackingMethod ¶

func (o *ClusterSettings) HasTrackingMethod() bool

HasTrackingMethod returns a boolean if a field has been set.

func (*ClusterSettings) HasUiBannerContent ¶

func (o *ClusterSettings) HasUiBannerContent() bool

HasUiBannerContent returns a boolean if a field has been set.

func (*ClusterSettings) HasUiBannerPermanent ¶

func (o *ClusterSettings) HasUiBannerPermanent() bool

HasUiBannerPermanent returns a boolean if a field has been set.

func (*ClusterSettings) HasUiBannerPosition ¶

func (o *ClusterSettings) HasUiBannerPosition() bool

HasUiBannerPosition returns a boolean if a field has been set.

func (*ClusterSettings) HasUiBannerURL ¶

func (o *ClusterSettings) HasUiBannerURL() bool

HasUiBannerURL returns a boolean if a field has been set.

func (*ClusterSettings) HasUiCssURL ¶

func (o *ClusterSettings) HasUiCssURL() bool

HasUiCssURL returns a boolean if a field has been set.

func (*ClusterSettings) HasUrl ¶

func (o *ClusterSettings) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*ClusterSettings) HasUserLoginsDisabled ¶

func (o *ClusterSettings) HasUserLoginsDisabled() bool

HasUserLoginsDisabled returns a boolean if a field has been set.

func (ClusterSettings) MarshalJSON ¶

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

func (*ClusterSettings) SetAppLabelKey ¶

func (o *ClusterSettings) SetAppLabelKey(v string)

SetAppLabelKey gets a reference to the given string and assigns it to the AppLabelKey field.

func (*ClusterSettings) SetAppsInAnyNamespaceEnabled ¶

func (o *ClusterSettings) SetAppsInAnyNamespaceEnabled(v bool)

SetAppsInAnyNamespaceEnabled gets a reference to the given bool and assigns it to the AppsInAnyNamespaceEnabled field.

func (*ClusterSettings) SetConfigManagementPlugins ¶

func (o *ClusterSettings) SetConfigManagementPlugins(v []V1alpha1ConfigManagementPlugin)

SetConfigManagementPlugins gets a reference to the given []V1alpha1ConfigManagementPlugin and assigns it to the ConfigManagementPlugins field.

func (*ClusterSettings) SetControllerNamespace ¶

func (o *ClusterSettings) SetControllerNamespace(v string)

SetControllerNamespace gets a reference to the given string and assigns it to the ControllerNamespace field.

func (*ClusterSettings) SetDexConfig ¶

func (o *ClusterSettings) SetDexConfig(v ClusterDexConfig)

SetDexConfig gets a reference to the given ClusterDexConfig and assigns it to the DexConfig field.

func (*ClusterSettings) SetExecEnabled ¶

func (o *ClusterSettings) SetExecEnabled(v bool)

SetExecEnabled gets a reference to the given bool and assigns it to the ExecEnabled field.

func (*ClusterSettings) SetGoogleAnalytics ¶

func (o *ClusterSettings) SetGoogleAnalytics(v ClusterGoogleAnalyticsConfig)

SetGoogleAnalytics gets a reference to the given ClusterGoogleAnalyticsConfig and assigns it to the GoogleAnalytics field.

func (*ClusterSettings) SetHelp ¶

func (o *ClusterSettings) SetHelp(v ClusterHelp)

SetHelp gets a reference to the given ClusterHelp and assigns it to the Help field.

func (*ClusterSettings) SetKustomizeOptions ¶

func (o *ClusterSettings) SetKustomizeOptions(v V1alpha1KustomizeOptions)

SetKustomizeOptions gets a reference to the given V1alpha1KustomizeOptions and assigns it to the KustomizeOptions field.

func (*ClusterSettings) SetKustomizeVersions ¶

func (o *ClusterSettings) SetKustomizeVersions(v []string)

SetKustomizeVersions gets a reference to the given []string and assigns it to the KustomizeVersions field.

func (*ClusterSettings) SetOidcConfig ¶

func (o *ClusterSettings) SetOidcConfig(v ClusterOIDCConfig)

SetOidcConfig gets a reference to the given ClusterOIDCConfig and assigns it to the OidcConfig field.

func (*ClusterSettings) SetPasswordPattern ¶

func (o *ClusterSettings) SetPasswordPattern(v string)

SetPasswordPattern gets a reference to the given string and assigns it to the PasswordPattern field.

func (*ClusterSettings) SetPlugins ¶

func (o *ClusterSettings) SetPlugins(v []ClusterPlugin)

SetPlugins gets a reference to the given []ClusterPlugin and assigns it to the Plugins field.

func (*ClusterSettings) SetResourceOverrides ¶

func (o *ClusterSettings) SetResourceOverrides(v map[string]V1alpha1ResourceOverride)

SetResourceOverrides gets a reference to the given map[string]V1alpha1ResourceOverride and assigns it to the ResourceOverrides field.

func (*ClusterSettings) SetStatusBadgeEnabled ¶

func (o *ClusterSettings) SetStatusBadgeEnabled(v bool)

SetStatusBadgeEnabled gets a reference to the given bool and assigns it to the StatusBadgeEnabled field.

func (*ClusterSettings) SetStatusBadgeRootUrl ¶

func (o *ClusterSettings) SetStatusBadgeRootUrl(v string)

SetStatusBadgeRootUrl gets a reference to the given string and assigns it to the StatusBadgeRootUrl field.

func (*ClusterSettings) SetTrackingMethod ¶

func (o *ClusterSettings) SetTrackingMethod(v string)

SetTrackingMethod gets a reference to the given string and assigns it to the TrackingMethod field.

func (*ClusterSettings) SetUiBannerContent ¶

func (o *ClusterSettings) SetUiBannerContent(v string)

SetUiBannerContent gets a reference to the given string and assigns it to the UiBannerContent field.

func (*ClusterSettings) SetUiBannerPermanent ¶

func (o *ClusterSettings) SetUiBannerPermanent(v bool)

SetUiBannerPermanent gets a reference to the given bool and assigns it to the UiBannerPermanent field.

func (*ClusterSettings) SetUiBannerPosition ¶

func (o *ClusterSettings) SetUiBannerPosition(v string)

SetUiBannerPosition gets a reference to the given string and assigns it to the UiBannerPosition field.

func (*ClusterSettings) SetUiBannerURL ¶

func (o *ClusterSettings) SetUiBannerURL(v string)

SetUiBannerURL gets a reference to the given string and assigns it to the UiBannerURL field.

func (*ClusterSettings) SetUiCssURL ¶

func (o *ClusterSettings) SetUiCssURL(v string)

SetUiCssURL gets a reference to the given string and assigns it to the UiCssURL field.

func (*ClusterSettings) SetUrl ¶

func (o *ClusterSettings) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*ClusterSettings) SetUserLoginsDisabled ¶

func (o *ClusterSettings) SetUserLoginsDisabled(v bool)

SetUserLoginsDisabled gets a reference to the given bool and assigns it to the UserLoginsDisabled field.

func (ClusterSettings) ToMap ¶

func (o ClusterSettings) ToMap() (map[string]interface{}, error)

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 GPGKeyServiceApiService ¶

type GPGKeyServiceApiService service

GPGKeyServiceApiService GPGKeyServiceApi service

func (*GPGKeyServiceApiService) GPGKeyServiceCreate ¶

GPGKeyServiceCreate Create one or more GPG public keys in the server's configuration

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

func (*GPGKeyServiceApiService) GPGKeyServiceCreateExecute ¶

Execute executes the request

@return GpgkeyGnuPGPublicKeyCreateResponse

func (*GPGKeyServiceApiService) GPGKeyServiceDelete ¶

GPGKeyServiceDelete Delete specified GPG public key from the server's configuration

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

func (*GPGKeyServiceApiService) GPGKeyServiceDeleteExecute ¶

func (a *GPGKeyServiceApiService) GPGKeyServiceDeleteExecute(r ApiGPGKeyServiceDeleteRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*GPGKeyServiceApiService) GPGKeyServiceGet ¶

GPGKeyServiceGet Get information about specified GPG public key from the server

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param keyID The GPG key ID to query for
@return ApiGPGKeyServiceGetRequest

func (*GPGKeyServiceApiService) GPGKeyServiceGetExecute ¶

Execute executes the request

@return V1alpha1GnuPGPublicKey

func (*GPGKeyServiceApiService) GPGKeyServiceList ¶

GPGKeyServiceList List all available repository certificates

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

func (*GPGKeyServiceApiService) GPGKeyServiceListExecute ¶

Execute executes the request

@return V1alpha1GnuPGPublicKeyList

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 GpgkeyGnuPGPublicKeyCreateResponse ¶

type GpgkeyGnuPGPublicKeyCreateResponse struct {
	Created *V1alpha1GnuPGPublicKeyList `json:"created,omitempty"`
	Skipped []string                    `json:"skipped,omitempty"`
}

GpgkeyGnuPGPublicKeyCreateResponse struct for GpgkeyGnuPGPublicKeyCreateResponse

func NewGpgkeyGnuPGPublicKeyCreateResponse ¶

func NewGpgkeyGnuPGPublicKeyCreateResponse() *GpgkeyGnuPGPublicKeyCreateResponse

NewGpgkeyGnuPGPublicKeyCreateResponse instantiates a new GpgkeyGnuPGPublicKeyCreateResponse 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 NewGpgkeyGnuPGPublicKeyCreateResponseWithDefaults ¶

func NewGpgkeyGnuPGPublicKeyCreateResponseWithDefaults() *GpgkeyGnuPGPublicKeyCreateResponse

NewGpgkeyGnuPGPublicKeyCreateResponseWithDefaults instantiates a new GpgkeyGnuPGPublicKeyCreateResponse 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 (*GpgkeyGnuPGPublicKeyCreateResponse) GetCreated ¶

GetCreated returns the Created field value if set, zero value otherwise.

func (*GpgkeyGnuPGPublicKeyCreateResponse) GetCreatedOk ¶

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

func (*GpgkeyGnuPGPublicKeyCreateResponse) GetSkipped ¶

func (o *GpgkeyGnuPGPublicKeyCreateResponse) GetSkipped() []string

GetSkipped returns the Skipped field value if set, zero value otherwise.

func (*GpgkeyGnuPGPublicKeyCreateResponse) GetSkippedOk ¶

func (o *GpgkeyGnuPGPublicKeyCreateResponse) GetSkippedOk() ([]string, bool)

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

func (*GpgkeyGnuPGPublicKeyCreateResponse) HasCreated ¶

func (o *GpgkeyGnuPGPublicKeyCreateResponse) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*GpgkeyGnuPGPublicKeyCreateResponse) HasSkipped ¶

func (o *GpgkeyGnuPGPublicKeyCreateResponse) HasSkipped() bool

HasSkipped returns a boolean if a field has been set.

func (GpgkeyGnuPGPublicKeyCreateResponse) MarshalJSON ¶

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

func (*GpgkeyGnuPGPublicKeyCreateResponse) SetCreated ¶

SetCreated gets a reference to the given V1alpha1GnuPGPublicKeyList and assigns it to the Created field.

func (*GpgkeyGnuPGPublicKeyCreateResponse) SetSkipped ¶

func (o *GpgkeyGnuPGPublicKeyCreateResponse) SetSkipped(v []string)

SetSkipped gets a reference to the given []string and assigns it to the Skipped field.

func (GpgkeyGnuPGPublicKeyCreateResponse) ToMap ¶

func (o GpgkeyGnuPGPublicKeyCreateResponse) ToMap() (map[string]interface{}, error)

type MappedNullable ¶

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type NotificationService ¶

type NotificationService struct {
	Name *string `json:"name,omitempty"`
}

NotificationService struct for NotificationService

func NewNotificationService ¶

func NewNotificationService() *NotificationService

NewNotificationService instantiates a new NotificationService 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 NewNotificationServiceWithDefaults ¶

func NewNotificationServiceWithDefaults() *NotificationService

NewNotificationServiceWithDefaults instantiates a new NotificationService 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 (*NotificationService) GetName ¶

func (o *NotificationService) GetName() string

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

func (*NotificationService) GetNameOk ¶

func (o *NotificationService) 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 (*NotificationService) HasName ¶

func (o *NotificationService) HasName() bool

HasName returns a boolean if a field has been set.

func (NotificationService) MarshalJSON ¶

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

func (*NotificationService) SetName ¶

func (o *NotificationService) SetName(v string)

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

func (NotificationService) ToMap ¶

func (o NotificationService) ToMap() (map[string]interface{}, error)

type NotificationServiceApiService ¶

type NotificationServiceApiService service

NotificationServiceApiService NotificationServiceApi service

func (*NotificationServiceApiService) NotificationServiceListServices ¶

NotificationServiceListServices List returns list of services

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

func (*NotificationServiceApiService) NotificationServiceListServicesExecute ¶

Execute executes the request

@return NotificationServiceList

func (*NotificationServiceApiService) NotificationServiceListTemplates ¶

NotificationServiceListTemplates List returns list of templates

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

func (*NotificationServiceApiService) NotificationServiceListTemplatesExecute ¶

Execute executes the request

@return NotificationTemplateList

func (*NotificationServiceApiService) NotificationServiceListTriggers ¶

NotificationServiceListTriggers List returns list of triggers

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

func (*NotificationServiceApiService) NotificationServiceListTriggersExecute ¶

Execute executes the request

@return NotificationTriggerList

type NotificationServiceList ¶

type NotificationServiceList struct {
	Items []NotificationService `json:"items,omitempty"`
}

NotificationServiceList struct for NotificationServiceList

func NewNotificationServiceList ¶

func NewNotificationServiceList() *NotificationServiceList

NewNotificationServiceList instantiates a new NotificationServiceList 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 NewNotificationServiceListWithDefaults ¶

func NewNotificationServiceListWithDefaults() *NotificationServiceList

NewNotificationServiceListWithDefaults instantiates a new NotificationServiceList 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 (*NotificationServiceList) GetItems ¶

GetItems returns the Items field value if set, zero value otherwise.

func (*NotificationServiceList) GetItemsOk ¶

func (o *NotificationServiceList) GetItemsOk() ([]NotificationService, bool)

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

func (*NotificationServiceList) HasItems ¶

func (o *NotificationServiceList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (NotificationServiceList) MarshalJSON ¶

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

func (*NotificationServiceList) SetItems ¶

SetItems gets a reference to the given []NotificationService and assigns it to the Items field.

func (NotificationServiceList) ToMap ¶

func (o NotificationServiceList) ToMap() (map[string]interface{}, error)

type NotificationTemplate ¶

type NotificationTemplate struct {
	Name *string `json:"name,omitempty"`
}

NotificationTemplate struct for NotificationTemplate

func NewNotificationTemplate ¶

func NewNotificationTemplate() *NotificationTemplate

NewNotificationTemplate instantiates a new NotificationTemplate 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 NewNotificationTemplateWithDefaults ¶

func NewNotificationTemplateWithDefaults() *NotificationTemplate

NewNotificationTemplateWithDefaults instantiates a new NotificationTemplate 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 (*NotificationTemplate) GetName ¶

func (o *NotificationTemplate) GetName() string

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

func (*NotificationTemplate) GetNameOk ¶

func (o *NotificationTemplate) 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 (*NotificationTemplate) HasName ¶

func (o *NotificationTemplate) HasName() bool

HasName returns a boolean if a field has been set.

func (NotificationTemplate) MarshalJSON ¶

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

func (*NotificationTemplate) SetName ¶

func (o *NotificationTemplate) SetName(v string)

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

func (NotificationTemplate) ToMap ¶

func (o NotificationTemplate) ToMap() (map[string]interface{}, error)

type NotificationTemplateList ¶

type NotificationTemplateList struct {
	Items []NotificationTemplate `json:"items,omitempty"`
}

NotificationTemplateList struct for NotificationTemplateList

func NewNotificationTemplateList ¶

func NewNotificationTemplateList() *NotificationTemplateList

NewNotificationTemplateList instantiates a new NotificationTemplateList 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 NewNotificationTemplateListWithDefaults ¶

func NewNotificationTemplateListWithDefaults() *NotificationTemplateList

NewNotificationTemplateListWithDefaults instantiates a new NotificationTemplateList 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 (*NotificationTemplateList) GetItems ¶

GetItems returns the Items field value if set, zero value otherwise.

func (*NotificationTemplateList) GetItemsOk ¶

func (o *NotificationTemplateList) GetItemsOk() ([]NotificationTemplate, bool)

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

func (*NotificationTemplateList) HasItems ¶

func (o *NotificationTemplateList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (NotificationTemplateList) MarshalJSON ¶

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

func (*NotificationTemplateList) SetItems ¶

SetItems gets a reference to the given []NotificationTemplate and assigns it to the Items field.

func (NotificationTemplateList) ToMap ¶

func (o NotificationTemplateList) ToMap() (map[string]interface{}, error)

type NotificationTrigger ¶

type NotificationTrigger struct {
	Name *string `json:"name,omitempty"`
}

NotificationTrigger struct for NotificationTrigger

func NewNotificationTrigger ¶

func NewNotificationTrigger() *NotificationTrigger

NewNotificationTrigger instantiates a new NotificationTrigger 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 NewNotificationTriggerWithDefaults ¶

func NewNotificationTriggerWithDefaults() *NotificationTrigger

NewNotificationTriggerWithDefaults instantiates a new NotificationTrigger 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 (*NotificationTrigger) GetName ¶

func (o *NotificationTrigger) GetName() string

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

func (*NotificationTrigger) GetNameOk ¶

func (o *NotificationTrigger) 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 (*NotificationTrigger) HasName ¶

func (o *NotificationTrigger) HasName() bool

HasName returns a boolean if a field has been set.

func (NotificationTrigger) MarshalJSON ¶

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

func (*NotificationTrigger) SetName ¶

func (o *NotificationTrigger) SetName(v string)

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

func (NotificationTrigger) ToMap ¶

func (o NotificationTrigger) ToMap() (map[string]interface{}, error)

type NotificationTriggerList ¶

type NotificationTriggerList struct {
	Items []NotificationTrigger `json:"items,omitempty"`
}

NotificationTriggerList struct for NotificationTriggerList

func NewNotificationTriggerList ¶

func NewNotificationTriggerList() *NotificationTriggerList

NewNotificationTriggerList instantiates a new NotificationTriggerList 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 NewNotificationTriggerListWithDefaults ¶

func NewNotificationTriggerListWithDefaults() *NotificationTriggerList

NewNotificationTriggerListWithDefaults instantiates a new NotificationTriggerList 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 (*NotificationTriggerList) GetItems ¶

GetItems returns the Items field value if set, zero value otherwise.

func (*NotificationTriggerList) GetItemsOk ¶

func (o *NotificationTriggerList) GetItemsOk() ([]NotificationTrigger, bool)

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

func (*NotificationTriggerList) HasItems ¶

func (o *NotificationTriggerList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (NotificationTriggerList) MarshalJSON ¶

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

func (*NotificationTriggerList) SetItems ¶

SetItems gets a reference to the given []NotificationTrigger and assigns it to the Items field.

func (NotificationTriggerList) ToMap ¶

func (o NotificationTriggerList) ToMap() (map[string]interface{}, error)

type NullableAccountAccount ¶

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

func NewNullableAccountAccount ¶

func NewNullableAccountAccount(val *AccountAccount) *NullableAccountAccount

func (NullableAccountAccount) Get ¶

func (NullableAccountAccount) IsSet ¶

func (v NullableAccountAccount) IsSet() bool

func (NullableAccountAccount) MarshalJSON ¶

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

func (*NullableAccountAccount) Set ¶

func (*NullableAccountAccount) UnmarshalJSON ¶

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

func (*NullableAccountAccount) Unset ¶

func (v *NullableAccountAccount) Unset()

type NullableAccountAccountsList ¶

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

func (NullableAccountAccountsList) Get ¶

func (NullableAccountAccountsList) IsSet ¶

func (NullableAccountAccountsList) MarshalJSON ¶

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

func (*NullableAccountAccountsList) Set ¶

func (*NullableAccountAccountsList) UnmarshalJSON ¶

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

func (*NullableAccountAccountsList) Unset ¶

func (v *NullableAccountAccountsList) Unset()

type NullableAccountCanIResponse ¶

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

func (NullableAccountCanIResponse) Get ¶

func (NullableAccountCanIResponse) IsSet ¶

func (NullableAccountCanIResponse) MarshalJSON ¶

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

func (*NullableAccountCanIResponse) Set ¶

func (*NullableAccountCanIResponse) UnmarshalJSON ¶

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

func (*NullableAccountCanIResponse) Unset ¶

func (v *NullableAccountCanIResponse) Unset()

type NullableAccountCreateTokenRequest ¶

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

func (NullableAccountCreateTokenRequest) Get ¶

func (NullableAccountCreateTokenRequest) IsSet ¶

func (NullableAccountCreateTokenRequest) MarshalJSON ¶

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

func (*NullableAccountCreateTokenRequest) Set ¶

func (*NullableAccountCreateTokenRequest) UnmarshalJSON ¶

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

func (*NullableAccountCreateTokenRequest) Unset ¶

type NullableAccountCreateTokenResponse ¶

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

func (NullableAccountCreateTokenResponse) Get ¶

func (NullableAccountCreateTokenResponse) IsSet ¶

func (NullableAccountCreateTokenResponse) MarshalJSON ¶

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

func (*NullableAccountCreateTokenResponse) Set ¶

func (*NullableAccountCreateTokenResponse) UnmarshalJSON ¶

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

func (*NullableAccountCreateTokenResponse) Unset ¶

type NullableAccountToken ¶

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

func NewNullableAccountToken ¶

func NewNullableAccountToken(val *AccountToken) *NullableAccountToken

func (NullableAccountToken) Get ¶

func (NullableAccountToken) IsSet ¶

func (v NullableAccountToken) IsSet() bool

func (NullableAccountToken) MarshalJSON ¶

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

func (*NullableAccountToken) Set ¶

func (v *NullableAccountToken) Set(val *AccountToken)

func (*NullableAccountToken) UnmarshalJSON ¶

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

func (*NullableAccountToken) Unset ¶

func (v *NullableAccountToken) Unset()

type NullableAccountUpdatePasswordRequest ¶

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

func (NullableAccountUpdatePasswordRequest) Get ¶

func (NullableAccountUpdatePasswordRequest) IsSet ¶

func (NullableAccountUpdatePasswordRequest) MarshalJSON ¶

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

func (*NullableAccountUpdatePasswordRequest) Set ¶

func (*NullableAccountUpdatePasswordRequest) UnmarshalJSON ¶

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

func (*NullableAccountUpdatePasswordRequest) Unset ¶

type NullableApplicationApplicationManifestQueryWithFiles ¶

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

func (NullableApplicationApplicationManifestQueryWithFiles) Get ¶

func (NullableApplicationApplicationManifestQueryWithFiles) IsSet ¶

func (NullableApplicationApplicationManifestQueryWithFiles) MarshalJSON ¶

func (*NullableApplicationApplicationManifestQueryWithFiles) Set ¶

func (*NullableApplicationApplicationManifestQueryWithFiles) UnmarshalJSON ¶

func (*NullableApplicationApplicationManifestQueryWithFiles) Unset ¶

type NullableApplicationApplicationManifestQueryWithFilesWrapper ¶

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

func (NullableApplicationApplicationManifestQueryWithFilesWrapper) Get ¶

func (NullableApplicationApplicationManifestQueryWithFilesWrapper) IsSet ¶

func (NullableApplicationApplicationManifestQueryWithFilesWrapper) MarshalJSON ¶

func (*NullableApplicationApplicationManifestQueryWithFilesWrapper) Set ¶

func (*NullableApplicationApplicationManifestQueryWithFilesWrapper) UnmarshalJSON ¶

func (*NullableApplicationApplicationManifestQueryWithFilesWrapper) Unset ¶

type NullableApplicationApplicationPatchRequest ¶

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

func (NullableApplicationApplicationPatchRequest) Get ¶

func (NullableApplicationApplicationPatchRequest) IsSet ¶

func (NullableApplicationApplicationPatchRequest) MarshalJSON ¶

func (*NullableApplicationApplicationPatchRequest) Set ¶

func (*NullableApplicationApplicationPatchRequest) UnmarshalJSON ¶

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

func (*NullableApplicationApplicationPatchRequest) Unset ¶

type NullableApplicationApplicationResourceResponse ¶

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

func (NullableApplicationApplicationResourceResponse) Get ¶

func (NullableApplicationApplicationResourceResponse) IsSet ¶

func (NullableApplicationApplicationResourceResponse) MarshalJSON ¶

func (*NullableApplicationApplicationResourceResponse) Set ¶

func (*NullableApplicationApplicationResourceResponse) UnmarshalJSON ¶

func (*NullableApplicationApplicationResourceResponse) Unset ¶

type NullableApplicationApplicationRollbackRequest ¶

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

func (NullableApplicationApplicationRollbackRequest) Get ¶

func (NullableApplicationApplicationRollbackRequest) IsSet ¶

func (NullableApplicationApplicationRollbackRequest) MarshalJSON ¶

func (*NullableApplicationApplicationRollbackRequest) Set ¶

func (*NullableApplicationApplicationRollbackRequest) UnmarshalJSON ¶

func (*NullableApplicationApplicationRollbackRequest) Unset ¶

type NullableApplicationApplicationSyncRequest ¶

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

func (NullableApplicationApplicationSyncRequest) Get ¶

func (NullableApplicationApplicationSyncRequest) IsSet ¶

func (NullableApplicationApplicationSyncRequest) MarshalJSON ¶

func (*NullableApplicationApplicationSyncRequest) Set ¶

func (*NullableApplicationApplicationSyncRequest) UnmarshalJSON ¶

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

func (*NullableApplicationApplicationSyncRequest) Unset ¶

type NullableApplicationApplicationSyncWindow ¶

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

func (NullableApplicationApplicationSyncWindow) Get ¶

func (NullableApplicationApplicationSyncWindow) IsSet ¶

func (NullableApplicationApplicationSyncWindow) MarshalJSON ¶

func (*NullableApplicationApplicationSyncWindow) Set ¶

func (*NullableApplicationApplicationSyncWindow) UnmarshalJSON ¶

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

func (*NullableApplicationApplicationSyncWindow) Unset ¶

type NullableApplicationApplicationSyncWindowsResponse ¶

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

func (NullableApplicationApplicationSyncWindowsResponse) Get ¶

func (NullableApplicationApplicationSyncWindowsResponse) IsSet ¶

func (NullableApplicationApplicationSyncWindowsResponse) MarshalJSON ¶

func (*NullableApplicationApplicationSyncWindowsResponse) Set ¶

func (*NullableApplicationApplicationSyncWindowsResponse) UnmarshalJSON ¶

func (*NullableApplicationApplicationSyncWindowsResponse) Unset ¶

type NullableApplicationFileChunk ¶

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

func (NullableApplicationFileChunk) Get ¶

func (NullableApplicationFileChunk) IsSet ¶

func (NullableApplicationFileChunk) MarshalJSON ¶

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

func (*NullableApplicationFileChunk) Set ¶

func (*NullableApplicationFileChunk) UnmarshalJSON ¶

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

func (*NullableApplicationFileChunk) Unset ¶

func (v *NullableApplicationFileChunk) Unset()

type NullableApplicationLogEntry ¶

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

func (NullableApplicationLogEntry) Get ¶

func (NullableApplicationLogEntry) IsSet ¶

func (NullableApplicationLogEntry) MarshalJSON ¶

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

func (*NullableApplicationLogEntry) Set ¶

func (*NullableApplicationLogEntry) UnmarshalJSON ¶

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

func (*NullableApplicationLogEntry) Unset ¶

func (v *NullableApplicationLogEntry) Unset()

type NullableApplicationManagedResourcesResponse ¶

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

func (NullableApplicationManagedResourcesResponse) Get ¶

func (NullableApplicationManagedResourcesResponse) IsSet ¶

func (NullableApplicationManagedResourcesResponse) MarshalJSON ¶

func (*NullableApplicationManagedResourcesResponse) Set ¶

func (*NullableApplicationManagedResourcesResponse) UnmarshalJSON ¶

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

func (*NullableApplicationManagedResourcesResponse) Unset ¶

type NullableApplicationResourceActionsListResponse ¶

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

func (NullableApplicationResourceActionsListResponse) Get ¶

func (NullableApplicationResourceActionsListResponse) IsSet ¶

func (NullableApplicationResourceActionsListResponse) MarshalJSON ¶

func (*NullableApplicationResourceActionsListResponse) Set ¶

func (*NullableApplicationResourceActionsListResponse) UnmarshalJSON ¶

func (*NullableApplicationResourceActionsListResponse) Unset ¶

type NullableApplicationSyncOptions ¶

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

func (NullableApplicationSyncOptions) Get ¶

func (NullableApplicationSyncOptions) IsSet ¶

func (NullableApplicationSyncOptions) MarshalJSON ¶

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

func (*NullableApplicationSyncOptions) Set ¶

func (*NullableApplicationSyncOptions) UnmarshalJSON ¶

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

func (*NullableApplicationSyncOptions) Unset ¶

func (v *NullableApplicationSyncOptions) Unset()

type NullableApplicationsetApplicationSetResponse ¶

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

func (NullableApplicationsetApplicationSetResponse) Get ¶

func (NullableApplicationsetApplicationSetResponse) IsSet ¶

func (NullableApplicationsetApplicationSetResponse) MarshalJSON ¶

func (*NullableApplicationsetApplicationSetResponse) Set ¶

func (*NullableApplicationsetApplicationSetResponse) UnmarshalJSON ¶

func (*NullableApplicationsetApplicationSetResponse) Unset ¶

type NullableApplicationv1alpha1EnvEntry ¶

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

func (NullableApplicationv1alpha1EnvEntry) Get ¶

func (NullableApplicationv1alpha1EnvEntry) IsSet ¶

func (NullableApplicationv1alpha1EnvEntry) MarshalJSON ¶

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

func (*NullableApplicationv1alpha1EnvEntry) Set ¶

func (*NullableApplicationv1alpha1EnvEntry) UnmarshalJSON ¶

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

func (*NullableApplicationv1alpha1EnvEntry) 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 NullableClusterClusterID ¶

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

func NewNullableClusterClusterID ¶

func NewNullableClusterClusterID(val *ClusterClusterID) *NullableClusterClusterID

func (NullableClusterClusterID) Get ¶

func (NullableClusterClusterID) IsSet ¶

func (v NullableClusterClusterID) IsSet() bool

func (NullableClusterClusterID) MarshalJSON ¶

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

func (*NullableClusterClusterID) Set ¶

func (*NullableClusterClusterID) UnmarshalJSON ¶

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

func (*NullableClusterClusterID) Unset ¶

func (v *NullableClusterClusterID) Unset()

type NullableClusterConnector ¶

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

func NewNullableClusterConnector ¶

func NewNullableClusterConnector(val *ClusterConnector) *NullableClusterConnector

func (NullableClusterConnector) Get ¶

func (NullableClusterConnector) IsSet ¶

func (v NullableClusterConnector) IsSet() bool

func (NullableClusterConnector) MarshalJSON ¶

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

func (*NullableClusterConnector) Set ¶

func (*NullableClusterConnector) UnmarshalJSON ¶

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

func (*NullableClusterConnector) Unset ¶

func (v *NullableClusterConnector) Unset()

type NullableClusterDexConfig ¶

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

func NewNullableClusterDexConfig ¶

func NewNullableClusterDexConfig(val *ClusterDexConfig) *NullableClusterDexConfig

func (NullableClusterDexConfig) Get ¶

func (NullableClusterDexConfig) IsSet ¶

func (v NullableClusterDexConfig) IsSet() bool

func (NullableClusterDexConfig) MarshalJSON ¶

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

func (*NullableClusterDexConfig) Set ¶

func (*NullableClusterDexConfig) UnmarshalJSON ¶

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

func (*NullableClusterDexConfig) Unset ¶

func (v *NullableClusterDexConfig) Unset()

type NullableClusterGoogleAnalyticsConfig ¶

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

func (NullableClusterGoogleAnalyticsConfig) Get ¶

func (NullableClusterGoogleAnalyticsConfig) IsSet ¶

func (NullableClusterGoogleAnalyticsConfig) MarshalJSON ¶

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

func (*NullableClusterGoogleAnalyticsConfig) Set ¶

func (*NullableClusterGoogleAnalyticsConfig) UnmarshalJSON ¶

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

func (*NullableClusterGoogleAnalyticsConfig) Unset ¶

type NullableClusterHelp ¶

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

func NewNullableClusterHelp ¶

func NewNullableClusterHelp(val *ClusterHelp) *NullableClusterHelp

func (NullableClusterHelp) Get ¶

func (NullableClusterHelp) IsSet ¶

func (v NullableClusterHelp) IsSet() bool

func (NullableClusterHelp) MarshalJSON ¶

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

func (*NullableClusterHelp) Set ¶

func (v *NullableClusterHelp) Set(val *ClusterHelp)

func (*NullableClusterHelp) UnmarshalJSON ¶

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

func (*NullableClusterHelp) Unset ¶

func (v *NullableClusterHelp) Unset()

type NullableClusterOIDCConfig ¶

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

func NewNullableClusterOIDCConfig ¶

func NewNullableClusterOIDCConfig(val *ClusterOIDCConfig) *NullableClusterOIDCConfig

func (NullableClusterOIDCConfig) Get ¶

func (NullableClusterOIDCConfig) IsSet ¶

func (v NullableClusterOIDCConfig) IsSet() bool

func (NullableClusterOIDCConfig) MarshalJSON ¶

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

func (*NullableClusterOIDCConfig) Set ¶

func (*NullableClusterOIDCConfig) UnmarshalJSON ¶

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

func (*NullableClusterOIDCConfig) Unset ¶

func (v *NullableClusterOIDCConfig) Unset()

type NullableClusterPlugin ¶

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

func NewNullableClusterPlugin ¶

func NewNullableClusterPlugin(val *ClusterPlugin) *NullableClusterPlugin

func (NullableClusterPlugin) Get ¶

func (NullableClusterPlugin) IsSet ¶

func (v NullableClusterPlugin) IsSet() bool

func (NullableClusterPlugin) MarshalJSON ¶

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

func (*NullableClusterPlugin) Set ¶

func (v *NullableClusterPlugin) Set(val *ClusterPlugin)

func (*NullableClusterPlugin) UnmarshalJSON ¶

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

func (*NullableClusterPlugin) Unset ¶

func (v *NullableClusterPlugin) Unset()

type NullableClusterSettings ¶

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

func NewNullableClusterSettings ¶

func NewNullableClusterSettings(val *ClusterSettings) *NullableClusterSettings

func (NullableClusterSettings) Get ¶

func (NullableClusterSettings) IsSet ¶

func (v NullableClusterSettings) IsSet() bool

func (NullableClusterSettings) MarshalJSON ¶

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

func (*NullableClusterSettings) Set ¶

func (*NullableClusterSettings) UnmarshalJSON ¶

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

func (*NullableClusterSettings) Unset ¶

func (v *NullableClusterSettings) 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 NullableGpgkeyGnuPGPublicKeyCreateResponse ¶

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

func (NullableGpgkeyGnuPGPublicKeyCreateResponse) Get ¶

func (NullableGpgkeyGnuPGPublicKeyCreateResponse) IsSet ¶

func (NullableGpgkeyGnuPGPublicKeyCreateResponse) MarshalJSON ¶

func (*NullableGpgkeyGnuPGPublicKeyCreateResponse) Set ¶

func (*NullableGpgkeyGnuPGPublicKeyCreateResponse) UnmarshalJSON ¶

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

func (*NullableGpgkeyGnuPGPublicKeyCreateResponse) 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 NullableNotificationService ¶

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

func (NullableNotificationService) Get ¶

func (NullableNotificationService) IsSet ¶

func (NullableNotificationService) MarshalJSON ¶

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

func (*NullableNotificationService) Set ¶

func (*NullableNotificationService) UnmarshalJSON ¶

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

func (*NullableNotificationService) Unset ¶

func (v *NullableNotificationService) Unset()

type NullableNotificationServiceList ¶

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

func (NullableNotificationServiceList) Get ¶

func (NullableNotificationServiceList) IsSet ¶

func (NullableNotificationServiceList) MarshalJSON ¶

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

func (*NullableNotificationServiceList) Set ¶

func (*NullableNotificationServiceList) UnmarshalJSON ¶

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

func (*NullableNotificationServiceList) Unset ¶

type NullableNotificationTemplate ¶

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

func (NullableNotificationTemplate) Get ¶

func (NullableNotificationTemplate) IsSet ¶

func (NullableNotificationTemplate) MarshalJSON ¶

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

func (*NullableNotificationTemplate) Set ¶

func (*NullableNotificationTemplate) UnmarshalJSON ¶

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

func (*NullableNotificationTemplate) Unset ¶

func (v *NullableNotificationTemplate) Unset()

type NullableNotificationTemplateList ¶

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

func (NullableNotificationTemplateList) Get ¶

func (NullableNotificationTemplateList) IsSet ¶

func (NullableNotificationTemplateList) MarshalJSON ¶

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

func (*NullableNotificationTemplateList) Set ¶

func (*NullableNotificationTemplateList) UnmarshalJSON ¶

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

func (*NullableNotificationTemplateList) Unset ¶

type NullableNotificationTrigger ¶

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

func (NullableNotificationTrigger) Get ¶

func (NullableNotificationTrigger) IsSet ¶

func (NullableNotificationTrigger) MarshalJSON ¶

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

func (*NullableNotificationTrigger) Set ¶

func (*NullableNotificationTrigger) UnmarshalJSON ¶

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

func (*NullableNotificationTrigger) Unset ¶

func (v *NullableNotificationTrigger) Unset()

type NullableNotificationTriggerList ¶

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

func (NullableNotificationTriggerList) Get ¶

func (NullableNotificationTriggerList) IsSet ¶

func (NullableNotificationTriggerList) MarshalJSON ¶

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

func (*NullableNotificationTriggerList) Set ¶

func (*NullableNotificationTriggerList) UnmarshalJSON ¶

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

func (*NullableNotificationTriggerList) Unset ¶

type NullableOidcClaim ¶

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

func NewNullableOidcClaim ¶

func NewNullableOidcClaim(val *OidcClaim) *NullableOidcClaim

func (NullableOidcClaim) Get ¶

func (v NullableOidcClaim) Get() *OidcClaim

func (NullableOidcClaim) IsSet ¶

func (v NullableOidcClaim) IsSet() bool

func (NullableOidcClaim) MarshalJSON ¶

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

func (*NullableOidcClaim) Set ¶

func (v *NullableOidcClaim) Set(val *OidcClaim)

func (*NullableOidcClaim) UnmarshalJSON ¶

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

func (*NullableOidcClaim) Unset ¶

func (v *NullableOidcClaim) Unset()

type NullableProjectDetailedProjectsResponse ¶

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

func (NullableProjectDetailedProjectsResponse) Get ¶

func (NullableProjectDetailedProjectsResponse) IsSet ¶

func (NullableProjectDetailedProjectsResponse) MarshalJSON ¶

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

func (*NullableProjectDetailedProjectsResponse) Set ¶

func (*NullableProjectDetailedProjectsResponse) UnmarshalJSON ¶

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

func (*NullableProjectDetailedProjectsResponse) Unset ¶

type NullableProjectGlobalProjectsResponse ¶

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

func (NullableProjectGlobalProjectsResponse) Get ¶

func (NullableProjectGlobalProjectsResponse) IsSet ¶

func (NullableProjectGlobalProjectsResponse) MarshalJSON ¶

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

func (*NullableProjectGlobalProjectsResponse) Set ¶

func (*NullableProjectGlobalProjectsResponse) UnmarshalJSON ¶

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

func (*NullableProjectGlobalProjectsResponse) Unset ¶

type NullableProjectProjectCreateRequest ¶

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

func (NullableProjectProjectCreateRequest) Get ¶

func (NullableProjectProjectCreateRequest) IsSet ¶

func (NullableProjectProjectCreateRequest) MarshalJSON ¶

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

func (*NullableProjectProjectCreateRequest) Set ¶

func (*NullableProjectProjectCreateRequest) UnmarshalJSON ¶

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

func (*NullableProjectProjectCreateRequest) Unset ¶

type NullableProjectProjectTokenCreateRequest ¶

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

func (NullableProjectProjectTokenCreateRequest) Get ¶

func (NullableProjectProjectTokenCreateRequest) IsSet ¶

func (NullableProjectProjectTokenCreateRequest) MarshalJSON ¶

func (*NullableProjectProjectTokenCreateRequest) Set ¶

func (*NullableProjectProjectTokenCreateRequest) UnmarshalJSON ¶

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

func (*NullableProjectProjectTokenCreateRequest) Unset ¶

type NullableProjectProjectTokenResponse ¶

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

func (NullableProjectProjectTokenResponse) Get ¶

func (NullableProjectProjectTokenResponse) IsSet ¶

func (NullableProjectProjectTokenResponse) MarshalJSON ¶

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

func (*NullableProjectProjectTokenResponse) Set ¶

func (*NullableProjectProjectTokenResponse) UnmarshalJSON ¶

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

func (*NullableProjectProjectTokenResponse) Unset ¶

type NullableProjectProjectUpdateRequest ¶

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

func (NullableProjectProjectUpdateRequest) Get ¶

func (NullableProjectProjectUpdateRequest) IsSet ¶

func (NullableProjectProjectUpdateRequest) MarshalJSON ¶

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

func (*NullableProjectProjectUpdateRequest) Set ¶

func (*NullableProjectProjectUpdateRequest) UnmarshalJSON ¶

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

func (*NullableProjectProjectUpdateRequest) Unset ¶

type NullableProjectSyncWindowsResponse ¶

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

func (NullableProjectSyncWindowsResponse) Get ¶

func (NullableProjectSyncWindowsResponse) IsSet ¶

func (NullableProjectSyncWindowsResponse) MarshalJSON ¶

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

func (*NullableProjectSyncWindowsResponse) Set ¶

func (*NullableProjectSyncWindowsResponse) UnmarshalJSON ¶

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

func (*NullableProjectSyncWindowsResponse) Unset ¶

type NullableProtobufAny ¶

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

func NewNullableProtobufAny ¶

func NewNullableProtobufAny(val *ProtobufAny) *NullableProtobufAny

func (NullableProtobufAny) Get ¶

func (NullableProtobufAny) IsSet ¶

func (v NullableProtobufAny) IsSet() bool

func (NullableProtobufAny) MarshalJSON ¶

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

func (*NullableProtobufAny) Set ¶

func (v *NullableProtobufAny) Set(val *ProtobufAny)

func (*NullableProtobufAny) UnmarshalJSON ¶

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

func (*NullableProtobufAny) Unset ¶

func (v *NullableProtobufAny) Unset()

type NullableRepositoryAppInfo ¶

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

func NewNullableRepositoryAppInfo ¶

func NewNullableRepositoryAppInfo(val *RepositoryAppInfo) *NullableRepositoryAppInfo

func (NullableRepositoryAppInfo) Get ¶

func (NullableRepositoryAppInfo) IsSet ¶

func (v NullableRepositoryAppInfo) IsSet() bool

func (NullableRepositoryAppInfo) MarshalJSON ¶

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

func (*NullableRepositoryAppInfo) Set ¶

func (*NullableRepositoryAppInfo) UnmarshalJSON ¶

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

func (*NullableRepositoryAppInfo) Unset ¶

func (v *NullableRepositoryAppInfo) Unset()

type NullableRepositoryHelmAppSpec ¶

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

func (NullableRepositoryHelmAppSpec) Get ¶

func (NullableRepositoryHelmAppSpec) IsSet ¶

func (NullableRepositoryHelmAppSpec) MarshalJSON ¶

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

func (*NullableRepositoryHelmAppSpec) Set ¶

func (*NullableRepositoryHelmAppSpec) UnmarshalJSON ¶

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

func (*NullableRepositoryHelmAppSpec) Unset ¶

func (v *NullableRepositoryHelmAppSpec) Unset()

type NullableRepositoryHelmChart ¶

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

func (NullableRepositoryHelmChart) Get ¶

func (NullableRepositoryHelmChart) IsSet ¶

func (NullableRepositoryHelmChart) MarshalJSON ¶

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

func (*NullableRepositoryHelmChart) Set ¶

func (*NullableRepositoryHelmChart) UnmarshalJSON ¶

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

func (*NullableRepositoryHelmChart) Unset ¶

func (v *NullableRepositoryHelmChart) Unset()

type NullableRepositoryHelmChartsResponse ¶

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

func (NullableRepositoryHelmChartsResponse) Get ¶

func (NullableRepositoryHelmChartsResponse) IsSet ¶

func (NullableRepositoryHelmChartsResponse) MarshalJSON ¶

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

func (*NullableRepositoryHelmChartsResponse) Set ¶

func (*NullableRepositoryHelmChartsResponse) UnmarshalJSON ¶

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

func (*NullableRepositoryHelmChartsResponse) Unset ¶

type NullableRepositoryKustomizeAppSpec ¶

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

func (NullableRepositoryKustomizeAppSpec) Get ¶

func (NullableRepositoryKustomizeAppSpec) IsSet ¶

func (NullableRepositoryKustomizeAppSpec) MarshalJSON ¶

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

func (*NullableRepositoryKustomizeAppSpec) Set ¶

func (*NullableRepositoryKustomizeAppSpec) UnmarshalJSON ¶

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

func (*NullableRepositoryKustomizeAppSpec) Unset ¶

type NullableRepositoryManifestResponse ¶

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

func (NullableRepositoryManifestResponse) Get ¶

func (NullableRepositoryManifestResponse) IsSet ¶

func (NullableRepositoryManifestResponse) MarshalJSON ¶

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

func (*NullableRepositoryManifestResponse) Set ¶

func (*NullableRepositoryManifestResponse) UnmarshalJSON ¶

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

func (*NullableRepositoryManifestResponse) Unset ¶

type NullableRepositoryRefs ¶

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

func NewNullableRepositoryRefs ¶

func NewNullableRepositoryRefs(val *RepositoryRefs) *NullableRepositoryRefs

func (NullableRepositoryRefs) Get ¶

func (NullableRepositoryRefs) IsSet ¶

func (v NullableRepositoryRefs) IsSet() bool

func (NullableRepositoryRefs) MarshalJSON ¶

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

func (*NullableRepositoryRefs) Set ¶

func (*NullableRepositoryRefs) UnmarshalJSON ¶

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

func (*NullableRepositoryRefs) Unset ¶

func (v *NullableRepositoryRefs) Unset()

type NullableRepositoryRepoAppDetailsQuery ¶

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

func (NullableRepositoryRepoAppDetailsQuery) Get ¶

func (NullableRepositoryRepoAppDetailsQuery) IsSet ¶

func (NullableRepositoryRepoAppDetailsQuery) MarshalJSON ¶

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

func (*NullableRepositoryRepoAppDetailsQuery) Set ¶

func (*NullableRepositoryRepoAppDetailsQuery) UnmarshalJSON ¶

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

func (*NullableRepositoryRepoAppDetailsQuery) Unset ¶

type NullableRepositoryRepoAppDetailsResponse ¶

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

func (NullableRepositoryRepoAppDetailsResponse) Get ¶

func (NullableRepositoryRepoAppDetailsResponse) IsSet ¶

func (NullableRepositoryRepoAppDetailsResponse) MarshalJSON ¶

func (*NullableRepositoryRepoAppDetailsResponse) Set ¶

func (*NullableRepositoryRepoAppDetailsResponse) UnmarshalJSON ¶

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

func (*NullableRepositoryRepoAppDetailsResponse) Unset ¶

type NullableRepositoryRepoAppsResponse ¶

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

func (NullableRepositoryRepoAppsResponse) Get ¶

func (NullableRepositoryRepoAppsResponse) IsSet ¶

func (NullableRepositoryRepoAppsResponse) MarshalJSON ¶

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

func (*NullableRepositoryRepoAppsResponse) Set ¶

func (*NullableRepositoryRepoAppsResponse) UnmarshalJSON ¶

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

func (*NullableRepositoryRepoAppsResponse) Unset ¶

type NullableRuntimeError ¶

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

func NewNullableRuntimeError ¶

func NewNullableRuntimeError(val *RuntimeError) *NullableRuntimeError

func (NullableRuntimeError) Get ¶

func (NullableRuntimeError) IsSet ¶

func (v NullableRuntimeError) IsSet() bool

func (NullableRuntimeError) MarshalJSON ¶

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

func (*NullableRuntimeError) Set ¶

func (v *NullableRuntimeError) Set(val *RuntimeError)

func (*NullableRuntimeError) UnmarshalJSON ¶

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

func (*NullableRuntimeError) Unset ¶

func (v *NullableRuntimeError) Unset()

type NullableRuntimeStreamError ¶

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

func NewNullableRuntimeStreamError ¶

func NewNullableRuntimeStreamError(val *RuntimeStreamError) *NullableRuntimeStreamError

func (NullableRuntimeStreamError) Get ¶

func (NullableRuntimeStreamError) IsSet ¶

func (v NullableRuntimeStreamError) IsSet() bool

func (NullableRuntimeStreamError) MarshalJSON ¶

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

func (*NullableRuntimeStreamError) Set ¶

func (*NullableRuntimeStreamError) UnmarshalJSON ¶

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

func (*NullableRuntimeStreamError) Unset ¶

func (v *NullableRuntimeStreamError) Unset()

type NullableSessionGetUserInfoResponse ¶

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

func (NullableSessionGetUserInfoResponse) Get ¶

func (NullableSessionGetUserInfoResponse) IsSet ¶

func (NullableSessionGetUserInfoResponse) MarshalJSON ¶

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

func (*NullableSessionGetUserInfoResponse) Set ¶

func (*NullableSessionGetUserInfoResponse) UnmarshalJSON ¶

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

func (*NullableSessionGetUserInfoResponse) Unset ¶

type NullableSessionSessionCreateRequest ¶

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

func (NullableSessionSessionCreateRequest) Get ¶

func (NullableSessionSessionCreateRequest) IsSet ¶

func (NullableSessionSessionCreateRequest) MarshalJSON ¶

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

func (*NullableSessionSessionCreateRequest) Set ¶

func (*NullableSessionSessionCreateRequest) UnmarshalJSON ¶

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

func (*NullableSessionSessionCreateRequest) Unset ¶

type NullableSessionSessionResponse ¶

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

func (NullableSessionSessionResponse) Get ¶

func (NullableSessionSessionResponse) IsSet ¶

func (NullableSessionSessionResponse) MarshalJSON ¶

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

func (*NullableSessionSessionResponse) Set ¶

func (*NullableSessionSessionResponse) UnmarshalJSON ¶

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

func (*NullableSessionSessionResponse) Unset ¶

func (v *NullableSessionSessionResponse) Unset()

type NullableStreamResultOfApplicationLogEntry ¶

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

func (NullableStreamResultOfApplicationLogEntry) Get ¶

func (NullableStreamResultOfApplicationLogEntry) IsSet ¶

func (NullableStreamResultOfApplicationLogEntry) MarshalJSON ¶

func (*NullableStreamResultOfApplicationLogEntry) Set ¶

func (*NullableStreamResultOfApplicationLogEntry) UnmarshalJSON ¶

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

func (*NullableStreamResultOfApplicationLogEntry) Unset ¶

type NullableStreamResultOfV1alpha1ApplicationTree ¶

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

func (NullableStreamResultOfV1alpha1ApplicationTree) Get ¶

func (NullableStreamResultOfV1alpha1ApplicationTree) IsSet ¶

func (NullableStreamResultOfV1alpha1ApplicationTree) MarshalJSON ¶

func (*NullableStreamResultOfV1alpha1ApplicationTree) Set ¶

func (*NullableStreamResultOfV1alpha1ApplicationTree) UnmarshalJSON ¶

func (*NullableStreamResultOfV1alpha1ApplicationTree) Unset ¶

type NullableStreamResultOfV1alpha1ApplicationWatchEvent ¶

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

func (NullableStreamResultOfV1alpha1ApplicationWatchEvent) Get ¶

func (NullableStreamResultOfV1alpha1ApplicationWatchEvent) IsSet ¶

func (NullableStreamResultOfV1alpha1ApplicationWatchEvent) MarshalJSON ¶

func (*NullableStreamResultOfV1alpha1ApplicationWatchEvent) Set ¶

func (*NullableStreamResultOfV1alpha1ApplicationWatchEvent) UnmarshalJSON ¶

func (*NullableStreamResultOfV1alpha1ApplicationWatchEvent) 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 NullableV1Event ¶

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

func NewNullableV1Event ¶

func NewNullableV1Event(val *V1Event) *NullableV1Event

func (NullableV1Event) Get ¶

func (v NullableV1Event) Get() *V1Event

func (NullableV1Event) IsSet ¶

func (v NullableV1Event) IsSet() bool

func (NullableV1Event) MarshalJSON ¶

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

func (*NullableV1Event) Set ¶

func (v *NullableV1Event) Set(val *V1Event)

func (*NullableV1Event) UnmarshalJSON ¶

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

func (*NullableV1Event) Unset ¶

func (v *NullableV1Event) Unset()

type NullableV1EventList ¶

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

func NewNullableV1EventList ¶

func NewNullableV1EventList(val *V1EventList) *NullableV1EventList

func (NullableV1EventList) Get ¶

func (NullableV1EventList) IsSet ¶

func (v NullableV1EventList) IsSet() bool

func (NullableV1EventList) MarshalJSON ¶

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

func (*NullableV1EventList) Set ¶

func (v *NullableV1EventList) Set(val *V1EventList)

func (*NullableV1EventList) UnmarshalJSON ¶

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

func (*NullableV1EventList) Unset ¶

func (v *NullableV1EventList) Unset()

type NullableV1EventSeries ¶

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

func NewNullableV1EventSeries ¶

func NewNullableV1EventSeries(val *V1EventSeries) *NullableV1EventSeries

func (NullableV1EventSeries) Get ¶

func (NullableV1EventSeries) IsSet ¶

func (v NullableV1EventSeries) IsSet() bool

func (NullableV1EventSeries) MarshalJSON ¶

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

func (*NullableV1EventSeries) Set ¶

func (v *NullableV1EventSeries) Set(val *V1EventSeries)

func (*NullableV1EventSeries) UnmarshalJSON ¶

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

func (*NullableV1EventSeries) Unset ¶

func (v *NullableV1EventSeries) Unset()

type NullableV1EventSource ¶

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

func NewNullableV1EventSource ¶

func NewNullableV1EventSource(val *V1EventSource) *NullableV1EventSource

func (NullableV1EventSource) Get ¶

func (NullableV1EventSource) IsSet ¶

func (v NullableV1EventSource) IsSet() bool

func (NullableV1EventSource) MarshalJSON ¶

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

func (*NullableV1EventSource) Set ¶

func (v *NullableV1EventSource) Set(val *V1EventSource)

func (*NullableV1EventSource) UnmarshalJSON ¶

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

func (*NullableV1EventSource) Unset ¶

func (v *NullableV1EventSource) Unset()

type NullableV1FieldsV1 ¶

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

func NewNullableV1FieldsV1 ¶

func NewNullableV1FieldsV1(val *V1FieldsV1) *NullableV1FieldsV1

func (NullableV1FieldsV1) Get ¶

func (v NullableV1FieldsV1) Get() *V1FieldsV1

func (NullableV1FieldsV1) IsSet ¶

func (v NullableV1FieldsV1) IsSet() bool

func (NullableV1FieldsV1) MarshalJSON ¶

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

func (*NullableV1FieldsV1) Set ¶

func (v *NullableV1FieldsV1) Set(val *V1FieldsV1)

func (*NullableV1FieldsV1) UnmarshalJSON ¶

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

func (*NullableV1FieldsV1) Unset ¶

func (v *NullableV1FieldsV1) Unset()

type NullableV1GroupKind ¶

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

func NewNullableV1GroupKind ¶

func NewNullableV1GroupKind(val *V1GroupKind) *NullableV1GroupKind

func (NullableV1GroupKind) Get ¶

func (NullableV1GroupKind) IsSet ¶

func (v NullableV1GroupKind) IsSet() bool

func (NullableV1GroupKind) MarshalJSON ¶

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

func (*NullableV1GroupKind) Set ¶

func (v *NullableV1GroupKind) Set(val *V1GroupKind)

func (*NullableV1GroupKind) UnmarshalJSON ¶

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

func (*NullableV1GroupKind) Unset ¶

func (v *NullableV1GroupKind) Unset()

type NullableV1JSON ¶

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

func NewNullableV1JSON ¶

func NewNullableV1JSON(val *V1JSON) *NullableV1JSON

func (NullableV1JSON) Get ¶

func (v NullableV1JSON) Get() *V1JSON

func (NullableV1JSON) IsSet ¶

func (v NullableV1JSON) IsSet() bool

func (NullableV1JSON) MarshalJSON ¶

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

func (*NullableV1JSON) Set ¶

func (v *NullableV1JSON) Set(val *V1JSON)

func (*NullableV1JSON) UnmarshalJSON ¶

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

func (*NullableV1JSON) Unset ¶

func (v *NullableV1JSON) Unset()

type NullableV1LabelSelector ¶

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

func NewNullableV1LabelSelector ¶

func NewNullableV1LabelSelector(val *V1LabelSelector) *NullableV1LabelSelector

func (NullableV1LabelSelector) Get ¶

func (NullableV1LabelSelector) IsSet ¶

func (v NullableV1LabelSelector) IsSet() bool

func (NullableV1LabelSelector) MarshalJSON ¶

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

func (*NullableV1LabelSelector) Set ¶

func (*NullableV1LabelSelector) UnmarshalJSON ¶

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

func (*NullableV1LabelSelector) Unset ¶

func (v *NullableV1LabelSelector) Unset()

type NullableV1LabelSelectorRequirement ¶

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

func (NullableV1LabelSelectorRequirement) Get ¶

func (NullableV1LabelSelectorRequirement) IsSet ¶

func (NullableV1LabelSelectorRequirement) MarshalJSON ¶

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

func (*NullableV1LabelSelectorRequirement) Set ¶

func (*NullableV1LabelSelectorRequirement) UnmarshalJSON ¶

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

func (*NullableV1LabelSelectorRequirement) Unset ¶

type NullableV1ListMeta ¶

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

func NewNullableV1ListMeta ¶

func NewNullableV1ListMeta(val *V1ListMeta) *NullableV1ListMeta

func (NullableV1ListMeta) Get ¶

func (v NullableV1ListMeta) Get() *V1ListMeta

func (NullableV1ListMeta) IsSet ¶

func (v NullableV1ListMeta) IsSet() bool

func (NullableV1ListMeta) MarshalJSON ¶

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

func (*NullableV1ListMeta) Set ¶

func (v *NullableV1ListMeta) Set(val *V1ListMeta)

func (*NullableV1ListMeta) UnmarshalJSON ¶

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

func (*NullableV1ListMeta) Unset ¶

func (v *NullableV1ListMeta) Unset()

type NullableV1LoadBalancerIngress ¶

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

func (NullableV1LoadBalancerIngress) Get ¶

func (NullableV1LoadBalancerIngress) IsSet ¶

func (NullableV1LoadBalancerIngress) MarshalJSON ¶

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

func (*NullableV1LoadBalancerIngress) Set ¶

func (*NullableV1LoadBalancerIngress) UnmarshalJSON ¶

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

func (*NullableV1LoadBalancerIngress) Unset ¶

func (v *NullableV1LoadBalancerIngress) Unset()

type NullableV1ManagedFieldsEntry ¶

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

func (NullableV1ManagedFieldsEntry) Get ¶

func (NullableV1ManagedFieldsEntry) IsSet ¶

func (NullableV1ManagedFieldsEntry) MarshalJSON ¶

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

func (*NullableV1ManagedFieldsEntry) Set ¶

func (*NullableV1ManagedFieldsEntry) UnmarshalJSON ¶

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

func (*NullableV1ManagedFieldsEntry) Unset ¶

func (v *NullableV1ManagedFieldsEntry) Unset()

type NullableV1MicroTime ¶

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

func NewNullableV1MicroTime ¶

func NewNullableV1MicroTime(val *V1MicroTime) *NullableV1MicroTime

func (NullableV1MicroTime) Get ¶

func (NullableV1MicroTime) IsSet ¶

func (v NullableV1MicroTime) IsSet() bool

func (NullableV1MicroTime) MarshalJSON ¶

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

func (*NullableV1MicroTime) Set ¶

func (v *NullableV1MicroTime) Set(val *V1MicroTime)

func (*NullableV1MicroTime) UnmarshalJSON ¶

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

func (*NullableV1MicroTime) Unset ¶

func (v *NullableV1MicroTime) Unset()

type NullableV1NodeSystemInfo ¶

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

func NewNullableV1NodeSystemInfo ¶

func NewNullableV1NodeSystemInfo(val *V1NodeSystemInfo) *NullableV1NodeSystemInfo

func (NullableV1NodeSystemInfo) Get ¶

func (NullableV1NodeSystemInfo) IsSet ¶

func (v NullableV1NodeSystemInfo) IsSet() bool

func (NullableV1NodeSystemInfo) MarshalJSON ¶

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

func (*NullableV1NodeSystemInfo) Set ¶

func (*NullableV1NodeSystemInfo) UnmarshalJSON ¶

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

func (*NullableV1NodeSystemInfo) Unset ¶

func (v *NullableV1NodeSystemInfo) Unset()

type NullableV1ObjectMeta ¶

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

func NewNullableV1ObjectMeta ¶

func NewNullableV1ObjectMeta(val *V1ObjectMeta) *NullableV1ObjectMeta

func (NullableV1ObjectMeta) Get ¶

func (NullableV1ObjectMeta) IsSet ¶

func (v NullableV1ObjectMeta) IsSet() bool

func (NullableV1ObjectMeta) MarshalJSON ¶

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

func (*NullableV1ObjectMeta) Set ¶

func (v *NullableV1ObjectMeta) Set(val *V1ObjectMeta)

func (*NullableV1ObjectMeta) UnmarshalJSON ¶

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

func (*NullableV1ObjectMeta) Unset ¶

func (v *NullableV1ObjectMeta) Unset()

type NullableV1ObjectReference ¶

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

func NewNullableV1ObjectReference ¶

func NewNullableV1ObjectReference(val *V1ObjectReference) *NullableV1ObjectReference

func (NullableV1ObjectReference) Get ¶

func (NullableV1ObjectReference) IsSet ¶

func (v NullableV1ObjectReference) IsSet() bool

func (NullableV1ObjectReference) MarshalJSON ¶

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

func (*NullableV1ObjectReference) Set ¶

func (*NullableV1ObjectReference) UnmarshalJSON ¶

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

func (*NullableV1ObjectReference) Unset ¶

func (v *NullableV1ObjectReference) Unset()

type NullableV1OwnerReference ¶

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

func NewNullableV1OwnerReference ¶

func NewNullableV1OwnerReference(val *V1OwnerReference) *NullableV1OwnerReference

func (NullableV1OwnerReference) Get ¶

func (NullableV1OwnerReference) IsSet ¶

func (v NullableV1OwnerReference) IsSet() bool

func (NullableV1OwnerReference) MarshalJSON ¶

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

func (*NullableV1OwnerReference) Set ¶

func (*NullableV1OwnerReference) UnmarshalJSON ¶

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

func (*NullableV1OwnerReference) Unset ¶

func (v *NullableV1OwnerReference) Unset()

type NullableV1PortStatus ¶

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

func NewNullableV1PortStatus ¶

func NewNullableV1PortStatus(val *V1PortStatus) *NullableV1PortStatus

func (NullableV1PortStatus) Get ¶

func (NullableV1PortStatus) IsSet ¶

func (v NullableV1PortStatus) IsSet() bool

func (NullableV1PortStatus) MarshalJSON ¶

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

func (*NullableV1PortStatus) Set ¶

func (v *NullableV1PortStatus) Set(val *V1PortStatus)

func (*NullableV1PortStatus) UnmarshalJSON ¶

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

func (*NullableV1PortStatus) Unset ¶

func (v *NullableV1PortStatus) Unset()

type NullableV1alpha1AWSAuthConfig ¶

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

func (NullableV1alpha1AWSAuthConfig) Get ¶

func (NullableV1alpha1AWSAuthConfig) IsSet ¶

func (NullableV1alpha1AWSAuthConfig) MarshalJSON ¶

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

func (*NullableV1alpha1AWSAuthConfig) Set ¶

func (*NullableV1alpha1AWSAuthConfig) UnmarshalJSON ¶

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

func (*NullableV1alpha1AWSAuthConfig) Unset ¶

func (v *NullableV1alpha1AWSAuthConfig) Unset()

type NullableV1alpha1AppProject ¶

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

func NewNullableV1alpha1AppProject ¶

func NewNullableV1alpha1AppProject(val *V1alpha1AppProject) *NullableV1alpha1AppProject

func (NullableV1alpha1AppProject) Get ¶

func (NullableV1alpha1AppProject) IsSet ¶

func (v NullableV1alpha1AppProject) IsSet() bool

func (NullableV1alpha1AppProject) MarshalJSON ¶

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

func (*NullableV1alpha1AppProject) Set ¶

func (*NullableV1alpha1AppProject) UnmarshalJSON ¶

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

func (*NullableV1alpha1AppProject) Unset ¶

func (v *NullableV1alpha1AppProject) Unset()

type NullableV1alpha1AppProjectList ¶

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

func (NullableV1alpha1AppProjectList) Get ¶

func (NullableV1alpha1AppProjectList) IsSet ¶

func (NullableV1alpha1AppProjectList) MarshalJSON ¶

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

func (*NullableV1alpha1AppProjectList) Set ¶

func (*NullableV1alpha1AppProjectList) UnmarshalJSON ¶

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

func (*NullableV1alpha1AppProjectList) Unset ¶

func (v *NullableV1alpha1AppProjectList) Unset()

type NullableV1alpha1AppProjectSpec ¶

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

func (NullableV1alpha1AppProjectSpec) Get ¶

func (NullableV1alpha1AppProjectSpec) IsSet ¶

func (NullableV1alpha1AppProjectSpec) MarshalJSON ¶

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

func (*NullableV1alpha1AppProjectSpec) Set ¶

func (*NullableV1alpha1AppProjectSpec) UnmarshalJSON ¶

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

func (*NullableV1alpha1AppProjectSpec) Unset ¶

func (v *NullableV1alpha1AppProjectSpec) Unset()

type NullableV1alpha1AppProjectStatus ¶

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

func (NullableV1alpha1AppProjectStatus) Get ¶

func (NullableV1alpha1AppProjectStatus) IsSet ¶

func (NullableV1alpha1AppProjectStatus) MarshalJSON ¶

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

func (*NullableV1alpha1AppProjectStatus) Set ¶

func (*NullableV1alpha1AppProjectStatus) UnmarshalJSON ¶

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

func (*NullableV1alpha1AppProjectStatus) Unset ¶

type NullableV1alpha1Application ¶

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

func (NullableV1alpha1Application) Get ¶

func (NullableV1alpha1Application) IsSet ¶

func (NullableV1alpha1Application) MarshalJSON ¶

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

func (*NullableV1alpha1Application) Set ¶

func (*NullableV1alpha1Application) UnmarshalJSON ¶

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

func (*NullableV1alpha1Application) Unset ¶

func (v *NullableV1alpha1Application) Unset()

type NullableV1alpha1ApplicationCondition ¶

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

func (NullableV1alpha1ApplicationCondition) Get ¶

func (NullableV1alpha1ApplicationCondition) IsSet ¶

func (NullableV1alpha1ApplicationCondition) MarshalJSON ¶

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

func (*NullableV1alpha1ApplicationCondition) Set ¶

func (*NullableV1alpha1ApplicationCondition) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationCondition) Unset ¶

type NullableV1alpha1ApplicationDestination ¶

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

func (NullableV1alpha1ApplicationDestination) Get ¶

func (NullableV1alpha1ApplicationDestination) IsSet ¶

func (NullableV1alpha1ApplicationDestination) MarshalJSON ¶

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

func (*NullableV1alpha1ApplicationDestination) Set ¶

func (*NullableV1alpha1ApplicationDestination) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationDestination) Unset ¶

type NullableV1alpha1ApplicationList ¶

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

func (NullableV1alpha1ApplicationList) Get ¶

func (NullableV1alpha1ApplicationList) IsSet ¶

func (NullableV1alpha1ApplicationList) MarshalJSON ¶

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

func (*NullableV1alpha1ApplicationList) Set ¶

func (*NullableV1alpha1ApplicationList) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationList) Unset ¶

type NullableV1alpha1ApplicationSet ¶

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

func (NullableV1alpha1ApplicationSet) Get ¶

func (NullableV1alpha1ApplicationSet) IsSet ¶

func (NullableV1alpha1ApplicationSet) MarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSet) Set ¶

func (*NullableV1alpha1ApplicationSet) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSet) Unset ¶

func (v *NullableV1alpha1ApplicationSet) Unset()

type NullableV1alpha1ApplicationSetCondition ¶

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

func (NullableV1alpha1ApplicationSetCondition) Get ¶

func (NullableV1alpha1ApplicationSetCondition) IsSet ¶

func (NullableV1alpha1ApplicationSetCondition) MarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSetCondition) Set ¶

func (*NullableV1alpha1ApplicationSetCondition) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSetCondition) Unset ¶

type NullableV1alpha1ApplicationSetGenerator ¶

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

func (NullableV1alpha1ApplicationSetGenerator) Get ¶

func (NullableV1alpha1ApplicationSetGenerator) IsSet ¶

func (NullableV1alpha1ApplicationSetGenerator) MarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSetGenerator) Set ¶

func (*NullableV1alpha1ApplicationSetGenerator) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSetGenerator) Unset ¶

type NullableV1alpha1ApplicationSetList ¶

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

func (NullableV1alpha1ApplicationSetList) Get ¶

func (NullableV1alpha1ApplicationSetList) IsSet ¶

func (NullableV1alpha1ApplicationSetList) MarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSetList) Set ¶

func (*NullableV1alpha1ApplicationSetList) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSetList) Unset ¶

type NullableV1alpha1ApplicationSetNestedGenerator ¶

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

func (NullableV1alpha1ApplicationSetNestedGenerator) Get ¶

func (NullableV1alpha1ApplicationSetNestedGenerator) IsSet ¶

func (NullableV1alpha1ApplicationSetNestedGenerator) MarshalJSON ¶

func (*NullableV1alpha1ApplicationSetNestedGenerator) Set ¶

func (*NullableV1alpha1ApplicationSetNestedGenerator) UnmarshalJSON ¶

func (*NullableV1alpha1ApplicationSetNestedGenerator) Unset ¶

type NullableV1alpha1ApplicationSetSpec ¶

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

func (NullableV1alpha1ApplicationSetSpec) Get ¶

func (NullableV1alpha1ApplicationSetSpec) IsSet ¶

func (NullableV1alpha1ApplicationSetSpec) MarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSetSpec) Set ¶

func (*NullableV1alpha1ApplicationSetSpec) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSetSpec) Unset ¶

type NullableV1alpha1ApplicationSetStatus ¶

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

func (NullableV1alpha1ApplicationSetStatus) Get ¶

func (NullableV1alpha1ApplicationSetStatus) IsSet ¶

func (NullableV1alpha1ApplicationSetStatus) MarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSetStatus) Set ¶

func (*NullableV1alpha1ApplicationSetStatus) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSetStatus) Unset ¶

type NullableV1alpha1ApplicationSetSyncPolicy ¶

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

func (NullableV1alpha1ApplicationSetSyncPolicy) Get ¶

func (NullableV1alpha1ApplicationSetSyncPolicy) IsSet ¶

func (NullableV1alpha1ApplicationSetSyncPolicy) MarshalJSON ¶

func (*NullableV1alpha1ApplicationSetSyncPolicy) Set ¶

func (*NullableV1alpha1ApplicationSetSyncPolicy) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSetSyncPolicy) Unset ¶

type NullableV1alpha1ApplicationSetTemplate ¶

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

func (NullableV1alpha1ApplicationSetTemplate) Get ¶

func (NullableV1alpha1ApplicationSetTemplate) IsSet ¶

func (NullableV1alpha1ApplicationSetTemplate) MarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSetTemplate) Set ¶

func (*NullableV1alpha1ApplicationSetTemplate) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSetTemplate) Unset ¶

type NullableV1alpha1ApplicationSetTemplateMeta ¶

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

func (NullableV1alpha1ApplicationSetTemplateMeta) Get ¶

func (NullableV1alpha1ApplicationSetTemplateMeta) IsSet ¶

func (NullableV1alpha1ApplicationSetTemplateMeta) MarshalJSON ¶

func (*NullableV1alpha1ApplicationSetTemplateMeta) Set ¶

func (*NullableV1alpha1ApplicationSetTemplateMeta) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSetTemplateMeta) Unset ¶

type NullableV1alpha1ApplicationSource ¶

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

func (NullableV1alpha1ApplicationSource) Get ¶

func (NullableV1alpha1ApplicationSource) IsSet ¶

func (NullableV1alpha1ApplicationSource) MarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSource) Set ¶

func (*NullableV1alpha1ApplicationSource) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSource) Unset ¶

type NullableV1alpha1ApplicationSourceDirectory ¶

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

func (NullableV1alpha1ApplicationSourceDirectory) Get ¶

func (NullableV1alpha1ApplicationSourceDirectory) IsSet ¶

func (NullableV1alpha1ApplicationSourceDirectory) MarshalJSON ¶

func (*NullableV1alpha1ApplicationSourceDirectory) Set ¶

func (*NullableV1alpha1ApplicationSourceDirectory) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSourceDirectory) Unset ¶

type NullableV1alpha1ApplicationSourceHelm ¶

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

func (NullableV1alpha1ApplicationSourceHelm) Get ¶

func (NullableV1alpha1ApplicationSourceHelm) IsSet ¶

func (NullableV1alpha1ApplicationSourceHelm) MarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSourceHelm) Set ¶

func (*NullableV1alpha1ApplicationSourceHelm) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSourceHelm) Unset ¶

type NullableV1alpha1ApplicationSourceJsonnet ¶

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

func (NullableV1alpha1ApplicationSourceJsonnet) Get ¶

func (NullableV1alpha1ApplicationSourceJsonnet) IsSet ¶

func (NullableV1alpha1ApplicationSourceJsonnet) MarshalJSON ¶

func (*NullableV1alpha1ApplicationSourceJsonnet) Set ¶

func (*NullableV1alpha1ApplicationSourceJsonnet) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSourceJsonnet) Unset ¶

type NullableV1alpha1ApplicationSourceKustomize ¶

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

func (NullableV1alpha1ApplicationSourceKustomize) Get ¶

func (NullableV1alpha1ApplicationSourceKustomize) IsSet ¶

func (NullableV1alpha1ApplicationSourceKustomize) MarshalJSON ¶

func (*NullableV1alpha1ApplicationSourceKustomize) Set ¶

func (*NullableV1alpha1ApplicationSourceKustomize) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSourceKustomize) Unset ¶

type NullableV1alpha1ApplicationSourcePlugin ¶

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

func (NullableV1alpha1ApplicationSourcePlugin) Get ¶

func (NullableV1alpha1ApplicationSourcePlugin) IsSet ¶

func (NullableV1alpha1ApplicationSourcePlugin) MarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSourcePlugin) Set ¶

func (*NullableV1alpha1ApplicationSourcePlugin) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSourcePlugin) Unset ¶

type NullableV1alpha1ApplicationSpec ¶

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

func (NullableV1alpha1ApplicationSpec) Get ¶

func (NullableV1alpha1ApplicationSpec) IsSet ¶

func (NullableV1alpha1ApplicationSpec) MarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSpec) Set ¶

func (*NullableV1alpha1ApplicationSpec) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSpec) Unset ¶

type NullableV1alpha1ApplicationStatus ¶

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

func (NullableV1alpha1ApplicationStatus) Get ¶

func (NullableV1alpha1ApplicationStatus) IsSet ¶

func (NullableV1alpha1ApplicationStatus) MarshalJSON ¶

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

func (*NullableV1alpha1ApplicationStatus) Set ¶

func (*NullableV1alpha1ApplicationStatus) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationStatus) Unset ¶

type NullableV1alpha1ApplicationSummary ¶

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

func (NullableV1alpha1ApplicationSummary) Get ¶

func (NullableV1alpha1ApplicationSummary) IsSet ¶

func (NullableV1alpha1ApplicationSummary) MarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSummary) Set ¶

func (*NullableV1alpha1ApplicationSummary) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationSummary) Unset ¶

type NullableV1alpha1ApplicationTree ¶

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

func (NullableV1alpha1ApplicationTree) Get ¶

func (NullableV1alpha1ApplicationTree) IsSet ¶

func (NullableV1alpha1ApplicationTree) MarshalJSON ¶

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

func (*NullableV1alpha1ApplicationTree) Set ¶

func (*NullableV1alpha1ApplicationTree) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationTree) Unset ¶

type NullableV1alpha1ApplicationWatchEvent ¶

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

func (NullableV1alpha1ApplicationWatchEvent) Get ¶

func (NullableV1alpha1ApplicationWatchEvent) IsSet ¶

func (NullableV1alpha1ApplicationWatchEvent) MarshalJSON ¶

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

func (*NullableV1alpha1ApplicationWatchEvent) Set ¶

func (*NullableV1alpha1ApplicationWatchEvent) UnmarshalJSON ¶

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

func (*NullableV1alpha1ApplicationWatchEvent) Unset ¶

type NullableV1alpha1Backoff ¶

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

func NewNullableV1alpha1Backoff ¶

func NewNullableV1alpha1Backoff(val *V1alpha1Backoff) *NullableV1alpha1Backoff

func (NullableV1alpha1Backoff) Get ¶

func (NullableV1alpha1Backoff) IsSet ¶

func (v NullableV1alpha1Backoff) IsSet() bool

func (NullableV1alpha1Backoff) MarshalJSON ¶

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

func (*NullableV1alpha1Backoff) Set ¶

func (*NullableV1alpha1Backoff) UnmarshalJSON ¶

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

func (*NullableV1alpha1Backoff) Unset ¶

func (v *NullableV1alpha1Backoff) Unset()

type NullableV1alpha1BasicAuthBitbucketServer ¶

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

func (NullableV1alpha1BasicAuthBitbucketServer) Get ¶

func (NullableV1alpha1BasicAuthBitbucketServer) IsSet ¶

func (NullableV1alpha1BasicAuthBitbucketServer) MarshalJSON ¶

func (*NullableV1alpha1BasicAuthBitbucketServer) Set ¶

func (*NullableV1alpha1BasicAuthBitbucketServer) UnmarshalJSON ¶

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

func (*NullableV1alpha1BasicAuthBitbucketServer) Unset ¶

type NullableV1alpha1Cluster ¶

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

func NewNullableV1alpha1Cluster ¶

func NewNullableV1alpha1Cluster(val *V1alpha1Cluster) *NullableV1alpha1Cluster

func (NullableV1alpha1Cluster) Get ¶

func (NullableV1alpha1Cluster) IsSet ¶

func (v NullableV1alpha1Cluster) IsSet() bool

func (NullableV1alpha1Cluster) MarshalJSON ¶

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

func (*NullableV1alpha1Cluster) Set ¶

func (*NullableV1alpha1Cluster) UnmarshalJSON ¶

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

func (*NullableV1alpha1Cluster) Unset ¶

func (v *NullableV1alpha1Cluster) Unset()

type NullableV1alpha1ClusterCacheInfo ¶

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

func (NullableV1alpha1ClusterCacheInfo) Get ¶

func (NullableV1alpha1ClusterCacheInfo) IsSet ¶

func (NullableV1alpha1ClusterCacheInfo) MarshalJSON ¶

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

func (*NullableV1alpha1ClusterCacheInfo) Set ¶

func (*NullableV1alpha1ClusterCacheInfo) UnmarshalJSON ¶

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

func (*NullableV1alpha1ClusterCacheInfo) Unset ¶

type NullableV1alpha1ClusterConfig ¶

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

func (NullableV1alpha1ClusterConfig) Get ¶

func (NullableV1alpha1ClusterConfig) IsSet ¶

func (NullableV1alpha1ClusterConfig) MarshalJSON ¶

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

func (*NullableV1alpha1ClusterConfig) Set ¶

func (*NullableV1alpha1ClusterConfig) UnmarshalJSON ¶

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

func (*NullableV1alpha1ClusterConfig) Unset ¶

func (v *NullableV1alpha1ClusterConfig) Unset()

type NullableV1alpha1ClusterGenerator ¶

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

func (NullableV1alpha1ClusterGenerator) Get ¶

func (NullableV1alpha1ClusterGenerator) IsSet ¶

func (NullableV1alpha1ClusterGenerator) MarshalJSON ¶

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

func (*NullableV1alpha1ClusterGenerator) Set ¶

func (*NullableV1alpha1ClusterGenerator) UnmarshalJSON ¶

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

func (*NullableV1alpha1ClusterGenerator) Unset ¶

type NullableV1alpha1ClusterInfo ¶

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

func (NullableV1alpha1ClusterInfo) Get ¶

func (NullableV1alpha1ClusterInfo) IsSet ¶

func (NullableV1alpha1ClusterInfo) MarshalJSON ¶

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

func (*NullableV1alpha1ClusterInfo) Set ¶

func (*NullableV1alpha1ClusterInfo) UnmarshalJSON ¶

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

func (*NullableV1alpha1ClusterInfo) Unset ¶

func (v *NullableV1alpha1ClusterInfo) Unset()

type NullableV1alpha1ClusterList ¶

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

func (NullableV1alpha1ClusterList) Get ¶

func (NullableV1alpha1ClusterList) IsSet ¶

func (NullableV1alpha1ClusterList) MarshalJSON ¶

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

func (*NullableV1alpha1ClusterList) Set ¶

func (*NullableV1alpha1ClusterList) UnmarshalJSON ¶

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

func (*NullableV1alpha1ClusterList) Unset ¶

func (v *NullableV1alpha1ClusterList) Unset()

type NullableV1alpha1Command ¶

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

func NewNullableV1alpha1Command ¶

func NewNullableV1alpha1Command(val *V1alpha1Command) *NullableV1alpha1Command

func (NullableV1alpha1Command) Get ¶

func (NullableV1alpha1Command) IsSet ¶

func (v NullableV1alpha1Command) IsSet() bool

func (NullableV1alpha1Command) MarshalJSON ¶

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

func (*NullableV1alpha1Command) Set ¶

func (*NullableV1alpha1Command) UnmarshalJSON ¶

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

func (*NullableV1alpha1Command) Unset ¶

func (v *NullableV1alpha1Command) Unset()

type NullableV1alpha1ComparedTo ¶

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

func NewNullableV1alpha1ComparedTo ¶

func NewNullableV1alpha1ComparedTo(val *V1alpha1ComparedTo) *NullableV1alpha1ComparedTo

func (NullableV1alpha1ComparedTo) Get ¶

func (NullableV1alpha1ComparedTo) IsSet ¶

func (v NullableV1alpha1ComparedTo) IsSet() bool

func (NullableV1alpha1ComparedTo) MarshalJSON ¶

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

func (*NullableV1alpha1ComparedTo) Set ¶

func (*NullableV1alpha1ComparedTo) UnmarshalJSON ¶

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

func (*NullableV1alpha1ComparedTo) Unset ¶

func (v *NullableV1alpha1ComparedTo) Unset()

type NullableV1alpha1ConfigManagementPlugin ¶

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

func (NullableV1alpha1ConfigManagementPlugin) Get ¶

func (NullableV1alpha1ConfigManagementPlugin) IsSet ¶

func (NullableV1alpha1ConfigManagementPlugin) MarshalJSON ¶

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

func (*NullableV1alpha1ConfigManagementPlugin) Set ¶

func (*NullableV1alpha1ConfigManagementPlugin) UnmarshalJSON ¶

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

func (*NullableV1alpha1ConfigManagementPlugin) Unset ¶

type NullableV1alpha1ConnectionState ¶

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

func (NullableV1alpha1ConnectionState) Get ¶

func (NullableV1alpha1ConnectionState) IsSet ¶

func (NullableV1alpha1ConnectionState) MarshalJSON ¶

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

func (*NullableV1alpha1ConnectionState) Set ¶

func (*NullableV1alpha1ConnectionState) UnmarshalJSON ¶

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

func (*NullableV1alpha1ConnectionState) Unset ¶

type NullableV1alpha1DuckTypeGenerator ¶

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

func (NullableV1alpha1DuckTypeGenerator) Get ¶

func (NullableV1alpha1DuckTypeGenerator) IsSet ¶

func (NullableV1alpha1DuckTypeGenerator) MarshalJSON ¶

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

func (*NullableV1alpha1DuckTypeGenerator) Set ¶

func (*NullableV1alpha1DuckTypeGenerator) UnmarshalJSON ¶

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

func (*NullableV1alpha1DuckTypeGenerator) Unset ¶

type NullableV1alpha1ExecProviderConfig ¶

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

func (NullableV1alpha1ExecProviderConfig) Get ¶

func (NullableV1alpha1ExecProviderConfig) IsSet ¶

func (NullableV1alpha1ExecProviderConfig) MarshalJSON ¶

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

func (*NullableV1alpha1ExecProviderConfig) Set ¶

func (*NullableV1alpha1ExecProviderConfig) UnmarshalJSON ¶

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

func (*NullableV1alpha1ExecProviderConfig) Unset ¶

type NullableV1alpha1GitDirectoryGeneratorItem ¶

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

func (NullableV1alpha1GitDirectoryGeneratorItem) Get ¶

func (NullableV1alpha1GitDirectoryGeneratorItem) IsSet ¶

func (NullableV1alpha1GitDirectoryGeneratorItem) MarshalJSON ¶

func (*NullableV1alpha1GitDirectoryGeneratorItem) Set ¶

func (*NullableV1alpha1GitDirectoryGeneratorItem) UnmarshalJSON ¶

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

func (*NullableV1alpha1GitDirectoryGeneratorItem) Unset ¶

type NullableV1alpha1GitFileGeneratorItem ¶

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

func (NullableV1alpha1GitFileGeneratorItem) Get ¶

func (NullableV1alpha1GitFileGeneratorItem) IsSet ¶

func (NullableV1alpha1GitFileGeneratorItem) MarshalJSON ¶

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

func (*NullableV1alpha1GitFileGeneratorItem) Set ¶

func (*NullableV1alpha1GitFileGeneratorItem) UnmarshalJSON ¶

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

func (*NullableV1alpha1GitFileGeneratorItem) Unset ¶

type NullableV1alpha1GitGenerator ¶

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

func (NullableV1alpha1GitGenerator) Get ¶

func (NullableV1alpha1GitGenerator) IsSet ¶

func (NullableV1alpha1GitGenerator) MarshalJSON ¶

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

func (*NullableV1alpha1GitGenerator) Set ¶

func (*NullableV1alpha1GitGenerator) UnmarshalJSON ¶

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

func (*NullableV1alpha1GitGenerator) Unset ¶

func (v *NullableV1alpha1GitGenerator) Unset()

type NullableV1alpha1GnuPGPublicKey ¶

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

func (NullableV1alpha1GnuPGPublicKey) Get ¶

func (NullableV1alpha1GnuPGPublicKey) IsSet ¶

func (NullableV1alpha1GnuPGPublicKey) MarshalJSON ¶

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

func (*NullableV1alpha1GnuPGPublicKey) Set ¶

func (*NullableV1alpha1GnuPGPublicKey) UnmarshalJSON ¶

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

func (*NullableV1alpha1GnuPGPublicKey) Unset ¶

func (v *NullableV1alpha1GnuPGPublicKey) Unset()

type NullableV1alpha1GnuPGPublicKeyList ¶

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

func (NullableV1alpha1GnuPGPublicKeyList) Get ¶

func (NullableV1alpha1GnuPGPublicKeyList) IsSet ¶

func (NullableV1alpha1GnuPGPublicKeyList) MarshalJSON ¶

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

func (*NullableV1alpha1GnuPGPublicKeyList) Set ¶

func (*NullableV1alpha1GnuPGPublicKeyList) UnmarshalJSON ¶

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

func (*NullableV1alpha1GnuPGPublicKeyList) Unset ¶

type NullableV1alpha1HealthStatus ¶

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

func (NullableV1alpha1HealthStatus) Get ¶

func (NullableV1alpha1HealthStatus) IsSet ¶

func (NullableV1alpha1HealthStatus) MarshalJSON ¶

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

func (*NullableV1alpha1HealthStatus) Set ¶

func (*NullableV1alpha1HealthStatus) UnmarshalJSON ¶

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

func (*NullableV1alpha1HealthStatus) Unset ¶

func (v *NullableV1alpha1HealthStatus) Unset()

type NullableV1alpha1HelmFileParameter ¶

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

func (NullableV1alpha1HelmFileParameter) Get ¶

func (NullableV1alpha1HelmFileParameter) IsSet ¶

func (NullableV1alpha1HelmFileParameter) MarshalJSON ¶

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

func (*NullableV1alpha1HelmFileParameter) Set ¶

func (*NullableV1alpha1HelmFileParameter) UnmarshalJSON ¶

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

func (*NullableV1alpha1HelmFileParameter) Unset ¶

type NullableV1alpha1HelmParameter ¶

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

func (NullableV1alpha1HelmParameter) Get ¶

func (NullableV1alpha1HelmParameter) IsSet ¶

func (NullableV1alpha1HelmParameter) MarshalJSON ¶

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

func (*NullableV1alpha1HelmParameter) Set ¶

func (*NullableV1alpha1HelmParameter) UnmarshalJSON ¶

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

func (*NullableV1alpha1HelmParameter) Unset ¶

func (v *NullableV1alpha1HelmParameter) Unset()

type NullableV1alpha1HostInfo ¶

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

func NewNullableV1alpha1HostInfo ¶

func NewNullableV1alpha1HostInfo(val *V1alpha1HostInfo) *NullableV1alpha1HostInfo

func (NullableV1alpha1HostInfo) Get ¶

func (NullableV1alpha1HostInfo) IsSet ¶

func (v NullableV1alpha1HostInfo) IsSet() bool

func (NullableV1alpha1HostInfo) MarshalJSON ¶

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

func (*NullableV1alpha1HostInfo) Set ¶

func (*NullableV1alpha1HostInfo) UnmarshalJSON ¶

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

func (*NullableV1alpha1HostInfo) Unset ¶

func (v *NullableV1alpha1HostInfo) Unset()

type NullableV1alpha1HostResourceInfo ¶

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

func (NullableV1alpha1HostResourceInfo) Get ¶

func (NullableV1alpha1HostResourceInfo) IsSet ¶

func (NullableV1alpha1HostResourceInfo) MarshalJSON ¶

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

func (*NullableV1alpha1HostResourceInfo) Set ¶

func (*NullableV1alpha1HostResourceInfo) UnmarshalJSON ¶

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

func (*NullableV1alpha1HostResourceInfo) Unset ¶

type NullableV1alpha1Info ¶

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

func NewNullableV1alpha1Info ¶

func NewNullableV1alpha1Info(val *V1alpha1Info) *NullableV1alpha1Info

func (NullableV1alpha1Info) Get ¶

func (NullableV1alpha1Info) IsSet ¶

func (v NullableV1alpha1Info) IsSet() bool

func (NullableV1alpha1Info) MarshalJSON ¶

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

func (*NullableV1alpha1Info) Set ¶

func (v *NullableV1alpha1Info) Set(val *V1alpha1Info)

func (*NullableV1alpha1Info) UnmarshalJSON ¶

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

func (*NullableV1alpha1Info) Unset ¶

func (v *NullableV1alpha1Info) Unset()

type NullableV1alpha1InfoItem ¶

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

func NewNullableV1alpha1InfoItem ¶

func NewNullableV1alpha1InfoItem(val *V1alpha1InfoItem) *NullableV1alpha1InfoItem

func (NullableV1alpha1InfoItem) Get ¶

func (NullableV1alpha1InfoItem) IsSet ¶

func (v NullableV1alpha1InfoItem) IsSet() bool

func (NullableV1alpha1InfoItem) MarshalJSON ¶

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

func (*NullableV1alpha1InfoItem) Set ¶

func (*NullableV1alpha1InfoItem) UnmarshalJSON ¶

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

func (*NullableV1alpha1InfoItem) Unset ¶

func (v *NullableV1alpha1InfoItem) Unset()

type NullableV1alpha1JWTToken ¶

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

func NewNullableV1alpha1JWTToken ¶

func NewNullableV1alpha1JWTToken(val *V1alpha1JWTToken) *NullableV1alpha1JWTToken

func (NullableV1alpha1JWTToken) Get ¶

func (NullableV1alpha1JWTToken) IsSet ¶

func (v NullableV1alpha1JWTToken) IsSet() bool

func (NullableV1alpha1JWTToken) MarshalJSON ¶

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

func (*NullableV1alpha1JWTToken) Set ¶

func (*NullableV1alpha1JWTToken) UnmarshalJSON ¶

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

func (*NullableV1alpha1JWTToken) Unset ¶

func (v *NullableV1alpha1JWTToken) Unset()

type NullableV1alpha1JWTTokens ¶

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

func NewNullableV1alpha1JWTTokens ¶

func NewNullableV1alpha1JWTTokens(val *V1alpha1JWTTokens) *NullableV1alpha1JWTTokens

func (NullableV1alpha1JWTTokens) Get ¶

func (NullableV1alpha1JWTTokens) IsSet ¶

func (v NullableV1alpha1JWTTokens) IsSet() bool

func (NullableV1alpha1JWTTokens) MarshalJSON ¶

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

func (*NullableV1alpha1JWTTokens) Set ¶

func (*NullableV1alpha1JWTTokens) UnmarshalJSON ¶

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

func (*NullableV1alpha1JWTTokens) Unset ¶

func (v *NullableV1alpha1JWTTokens) Unset()

type NullableV1alpha1JsonnetVar ¶

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

func NewNullableV1alpha1JsonnetVar ¶

func NewNullableV1alpha1JsonnetVar(val *V1alpha1JsonnetVar) *NullableV1alpha1JsonnetVar

func (NullableV1alpha1JsonnetVar) Get ¶

func (NullableV1alpha1JsonnetVar) IsSet ¶

func (v NullableV1alpha1JsonnetVar) IsSet() bool

func (NullableV1alpha1JsonnetVar) MarshalJSON ¶

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

func (*NullableV1alpha1JsonnetVar) Set ¶

func (*NullableV1alpha1JsonnetVar) UnmarshalJSON ¶

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

func (*NullableV1alpha1JsonnetVar) Unset ¶

func (v *NullableV1alpha1JsonnetVar) Unset()

type NullableV1alpha1KnownTypeField ¶

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

func (NullableV1alpha1KnownTypeField) Get ¶

func (NullableV1alpha1KnownTypeField) IsSet ¶

func (NullableV1alpha1KnownTypeField) MarshalJSON ¶

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

func (*NullableV1alpha1KnownTypeField) Set ¶

func (*NullableV1alpha1KnownTypeField) UnmarshalJSON ¶

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

func (*NullableV1alpha1KnownTypeField) Unset ¶

func (v *NullableV1alpha1KnownTypeField) Unset()

type NullableV1alpha1KustomizeOptions ¶

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

func (NullableV1alpha1KustomizeOptions) Get ¶

func (NullableV1alpha1KustomizeOptions) IsSet ¶

func (NullableV1alpha1KustomizeOptions) MarshalJSON ¶

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

func (*NullableV1alpha1KustomizeOptions) Set ¶

func (*NullableV1alpha1KustomizeOptions) UnmarshalJSON ¶

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

func (*NullableV1alpha1KustomizeOptions) Unset ¶

type NullableV1alpha1ListGenerator ¶

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

func (NullableV1alpha1ListGenerator) Get ¶

func (NullableV1alpha1ListGenerator) IsSet ¶

func (NullableV1alpha1ListGenerator) MarshalJSON ¶

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

func (*NullableV1alpha1ListGenerator) Set ¶

func (*NullableV1alpha1ListGenerator) UnmarshalJSON ¶

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

func (*NullableV1alpha1ListGenerator) Unset ¶

func (v *NullableV1alpha1ListGenerator) Unset()

type NullableV1alpha1MatrixGenerator ¶

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

func (NullableV1alpha1MatrixGenerator) Get ¶

func (NullableV1alpha1MatrixGenerator) IsSet ¶

func (NullableV1alpha1MatrixGenerator) MarshalJSON ¶

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

func (*NullableV1alpha1MatrixGenerator) Set ¶

func (*NullableV1alpha1MatrixGenerator) UnmarshalJSON ¶

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

func (*NullableV1alpha1MatrixGenerator) Unset ¶

type NullableV1alpha1MergeGenerator ¶

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

func (NullableV1alpha1MergeGenerator) Get ¶

func (NullableV1alpha1MergeGenerator) IsSet ¶

func (NullableV1alpha1MergeGenerator) MarshalJSON ¶

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

func (*NullableV1alpha1MergeGenerator) Set ¶

func (*NullableV1alpha1MergeGenerator) UnmarshalJSON ¶

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

func (*NullableV1alpha1MergeGenerator) Unset ¶

func (v *NullableV1alpha1MergeGenerator) Unset()

type NullableV1alpha1Operation ¶

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

func NewNullableV1alpha1Operation ¶

func NewNullableV1alpha1Operation(val *V1alpha1Operation) *NullableV1alpha1Operation

func (NullableV1alpha1Operation) Get ¶

func (NullableV1alpha1Operation) IsSet ¶

func (v NullableV1alpha1Operation) IsSet() bool

func (NullableV1alpha1Operation) MarshalJSON ¶

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

func (*NullableV1alpha1Operation) Set ¶

func (*NullableV1alpha1Operation) UnmarshalJSON ¶

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

func (*NullableV1alpha1Operation) Unset ¶

func (v *NullableV1alpha1Operation) Unset()

type NullableV1alpha1OperationInitiator ¶

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

func (NullableV1alpha1OperationInitiator) Get ¶

func (NullableV1alpha1OperationInitiator) IsSet ¶

func (NullableV1alpha1OperationInitiator) MarshalJSON ¶

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

func (*NullableV1alpha1OperationInitiator) Set ¶

func (*NullableV1alpha1OperationInitiator) UnmarshalJSON ¶

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

func (*NullableV1alpha1OperationInitiator) Unset ¶

type NullableV1alpha1OperationState ¶

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

func (NullableV1alpha1OperationState) Get ¶

func (NullableV1alpha1OperationState) IsSet ¶

func (NullableV1alpha1OperationState) MarshalJSON ¶

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

func (*NullableV1alpha1OperationState) Set ¶

func (*NullableV1alpha1OperationState) UnmarshalJSON ¶

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

func (*NullableV1alpha1OperationState) Unset ¶

func (v *NullableV1alpha1OperationState) Unset()

type NullableV1alpha1OrphanedResourceKey ¶

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

func (NullableV1alpha1OrphanedResourceKey) Get ¶

func (NullableV1alpha1OrphanedResourceKey) IsSet ¶

func (NullableV1alpha1OrphanedResourceKey) MarshalJSON ¶

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

func (*NullableV1alpha1OrphanedResourceKey) Set ¶

func (*NullableV1alpha1OrphanedResourceKey) UnmarshalJSON ¶

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

func (*NullableV1alpha1OrphanedResourceKey) Unset ¶

type NullableV1alpha1OrphanedResourcesMonitorSettings ¶

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

func (NullableV1alpha1OrphanedResourcesMonitorSettings) Get ¶

func (NullableV1alpha1OrphanedResourcesMonitorSettings) IsSet ¶

func (NullableV1alpha1OrphanedResourcesMonitorSettings) MarshalJSON ¶

func (*NullableV1alpha1OrphanedResourcesMonitorSettings) Set ¶

func (*NullableV1alpha1OrphanedResourcesMonitorSettings) UnmarshalJSON ¶

func (*NullableV1alpha1OrphanedResourcesMonitorSettings) Unset ¶

type NullableV1alpha1OverrideIgnoreDiff ¶

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

func (NullableV1alpha1OverrideIgnoreDiff) Get ¶

func (NullableV1alpha1OverrideIgnoreDiff) IsSet ¶

func (NullableV1alpha1OverrideIgnoreDiff) MarshalJSON ¶

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

func (*NullableV1alpha1OverrideIgnoreDiff) Set ¶

func (*NullableV1alpha1OverrideIgnoreDiff) UnmarshalJSON ¶

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

func (*NullableV1alpha1OverrideIgnoreDiff) Unset ¶

type NullableV1alpha1ProjectRole ¶

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

func (NullableV1alpha1ProjectRole) Get ¶

func (NullableV1alpha1ProjectRole) IsSet ¶

func (NullableV1alpha1ProjectRole) MarshalJSON ¶

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

func (*NullableV1alpha1ProjectRole) Set ¶

func (*NullableV1alpha1ProjectRole) UnmarshalJSON ¶

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

func (*NullableV1alpha1ProjectRole) Unset ¶

func (v *NullableV1alpha1ProjectRole) Unset()

type NullableV1alpha1PullRequestGenerator ¶

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

func (NullableV1alpha1PullRequestGenerator) Get ¶

func (NullableV1alpha1PullRequestGenerator) IsSet ¶

func (NullableV1alpha1PullRequestGenerator) MarshalJSON ¶

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

func (*NullableV1alpha1PullRequestGenerator) Set ¶

func (*NullableV1alpha1PullRequestGenerator) UnmarshalJSON ¶

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

func (*NullableV1alpha1PullRequestGenerator) Unset ¶

type NullableV1alpha1PullRequestGeneratorBitbucketServer ¶

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

func (NullableV1alpha1PullRequestGeneratorBitbucketServer) Get ¶

func (NullableV1alpha1PullRequestGeneratorBitbucketServer) IsSet ¶

func (NullableV1alpha1PullRequestGeneratorBitbucketServer) MarshalJSON ¶

func (*NullableV1alpha1PullRequestGeneratorBitbucketServer) Set ¶

func (*NullableV1alpha1PullRequestGeneratorBitbucketServer) UnmarshalJSON ¶

func (*NullableV1alpha1PullRequestGeneratorBitbucketServer) Unset ¶

type NullableV1alpha1PullRequestGeneratorFilter ¶

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

func (NullableV1alpha1PullRequestGeneratorFilter) Get ¶

func (NullableV1alpha1PullRequestGeneratorFilter) IsSet ¶

func (NullableV1alpha1PullRequestGeneratorFilter) MarshalJSON ¶

func (*NullableV1alpha1PullRequestGeneratorFilter) Set ¶

func (*NullableV1alpha1PullRequestGeneratorFilter) UnmarshalJSON ¶

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

func (*NullableV1alpha1PullRequestGeneratorFilter) Unset ¶

type NullableV1alpha1PullRequestGeneratorGitLab ¶

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

func (NullableV1alpha1PullRequestGeneratorGitLab) Get ¶

func (NullableV1alpha1PullRequestGeneratorGitLab) IsSet ¶

func (NullableV1alpha1PullRequestGeneratorGitLab) MarshalJSON ¶

func (*NullableV1alpha1PullRequestGeneratorGitLab) Set ¶

func (*NullableV1alpha1PullRequestGeneratorGitLab) UnmarshalJSON ¶

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

func (*NullableV1alpha1PullRequestGeneratorGitLab) Unset ¶

type NullableV1alpha1PullRequestGeneratorGitea ¶

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

func (NullableV1alpha1PullRequestGeneratorGitea) Get ¶

func (NullableV1alpha1PullRequestGeneratorGitea) IsSet ¶

func (NullableV1alpha1PullRequestGeneratorGitea) MarshalJSON ¶

func (*NullableV1alpha1PullRequestGeneratorGitea) Set ¶

func (*NullableV1alpha1PullRequestGeneratorGitea) UnmarshalJSON ¶

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

func (*NullableV1alpha1PullRequestGeneratorGitea) Unset ¶

type NullableV1alpha1PullRequestGeneratorGithub ¶

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

func (NullableV1alpha1PullRequestGeneratorGithub) Get ¶

func (NullableV1alpha1PullRequestGeneratorGithub) IsSet ¶

func (NullableV1alpha1PullRequestGeneratorGithub) MarshalJSON ¶

func (*NullableV1alpha1PullRequestGeneratorGithub) Set ¶

func (*NullableV1alpha1PullRequestGeneratorGithub) UnmarshalJSON ¶

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

func (*NullableV1alpha1PullRequestGeneratorGithub) Unset ¶

type NullableV1alpha1RepoCreds ¶

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

func NewNullableV1alpha1RepoCreds ¶

func NewNullableV1alpha1RepoCreds(val *V1alpha1RepoCreds) *NullableV1alpha1RepoCreds

func (NullableV1alpha1RepoCreds) Get ¶

func (NullableV1alpha1RepoCreds) IsSet ¶

func (v NullableV1alpha1RepoCreds) IsSet() bool

func (NullableV1alpha1RepoCreds) MarshalJSON ¶

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

func (*NullableV1alpha1RepoCreds) Set ¶

func (*NullableV1alpha1RepoCreds) UnmarshalJSON ¶

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

func (*NullableV1alpha1RepoCreds) Unset ¶

func (v *NullableV1alpha1RepoCreds) Unset()

type NullableV1alpha1RepoCredsList ¶

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

func (NullableV1alpha1RepoCredsList) Get ¶

func (NullableV1alpha1RepoCredsList) IsSet ¶

func (NullableV1alpha1RepoCredsList) MarshalJSON ¶

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

func (*NullableV1alpha1RepoCredsList) Set ¶

func (*NullableV1alpha1RepoCredsList) UnmarshalJSON ¶

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

func (*NullableV1alpha1RepoCredsList) Unset ¶

func (v *NullableV1alpha1RepoCredsList) Unset()

type NullableV1alpha1Repository ¶

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

func NewNullableV1alpha1Repository ¶

func NewNullableV1alpha1Repository(val *V1alpha1Repository) *NullableV1alpha1Repository

func (NullableV1alpha1Repository) Get ¶

func (NullableV1alpha1Repository) IsSet ¶

func (v NullableV1alpha1Repository) IsSet() bool

func (NullableV1alpha1Repository) MarshalJSON ¶

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

func (*NullableV1alpha1Repository) Set ¶

func (*NullableV1alpha1Repository) UnmarshalJSON ¶

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

func (*NullableV1alpha1Repository) Unset ¶

func (v *NullableV1alpha1Repository) Unset()

type NullableV1alpha1RepositoryCertificate ¶

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

func (NullableV1alpha1RepositoryCertificate) Get ¶

func (NullableV1alpha1RepositoryCertificate) IsSet ¶

func (NullableV1alpha1RepositoryCertificate) MarshalJSON ¶

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

func (*NullableV1alpha1RepositoryCertificate) Set ¶

func (*NullableV1alpha1RepositoryCertificate) UnmarshalJSON ¶

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

func (*NullableV1alpha1RepositoryCertificate) Unset ¶

type NullableV1alpha1RepositoryCertificateList ¶

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

func (NullableV1alpha1RepositoryCertificateList) Get ¶

func (NullableV1alpha1RepositoryCertificateList) IsSet ¶

func (NullableV1alpha1RepositoryCertificateList) MarshalJSON ¶

func (*NullableV1alpha1RepositoryCertificateList) Set ¶

func (*NullableV1alpha1RepositoryCertificateList) UnmarshalJSON ¶

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

func (*NullableV1alpha1RepositoryCertificateList) Unset ¶

type NullableV1alpha1RepositoryList ¶

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

func (NullableV1alpha1RepositoryList) Get ¶

func (NullableV1alpha1RepositoryList) IsSet ¶

func (NullableV1alpha1RepositoryList) MarshalJSON ¶

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

func (*NullableV1alpha1RepositoryList) Set ¶

func (*NullableV1alpha1RepositoryList) UnmarshalJSON ¶

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

func (*NullableV1alpha1RepositoryList) Unset ¶

func (v *NullableV1alpha1RepositoryList) Unset()

type NullableV1alpha1ResourceAction ¶

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

func (NullableV1alpha1ResourceAction) Get ¶

func (NullableV1alpha1ResourceAction) IsSet ¶

func (NullableV1alpha1ResourceAction) MarshalJSON ¶

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

func (*NullableV1alpha1ResourceAction) Set ¶

func (*NullableV1alpha1ResourceAction) UnmarshalJSON ¶

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

func (*NullableV1alpha1ResourceAction) Unset ¶

func (v *NullableV1alpha1ResourceAction) Unset()

type NullableV1alpha1ResourceActionParam ¶

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

func (NullableV1alpha1ResourceActionParam) Get ¶

func (NullableV1alpha1ResourceActionParam) IsSet ¶

func (NullableV1alpha1ResourceActionParam) MarshalJSON ¶

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

func (*NullableV1alpha1ResourceActionParam) Set ¶

func (*NullableV1alpha1ResourceActionParam) UnmarshalJSON ¶

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

func (*NullableV1alpha1ResourceActionParam) Unset ¶

type NullableV1alpha1ResourceDiff ¶

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

func (NullableV1alpha1ResourceDiff) Get ¶

func (NullableV1alpha1ResourceDiff) IsSet ¶

func (NullableV1alpha1ResourceDiff) MarshalJSON ¶

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

func (*NullableV1alpha1ResourceDiff) Set ¶

func (*NullableV1alpha1ResourceDiff) UnmarshalJSON ¶

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

func (*NullableV1alpha1ResourceDiff) Unset ¶

func (v *NullableV1alpha1ResourceDiff) Unset()

type NullableV1alpha1ResourceIgnoreDifferences ¶

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

func (NullableV1alpha1ResourceIgnoreDifferences) Get ¶

func (NullableV1alpha1ResourceIgnoreDifferences) IsSet ¶

func (NullableV1alpha1ResourceIgnoreDifferences) MarshalJSON ¶

func (*NullableV1alpha1ResourceIgnoreDifferences) Set ¶

func (*NullableV1alpha1ResourceIgnoreDifferences) UnmarshalJSON ¶

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

func (*NullableV1alpha1ResourceIgnoreDifferences) Unset ¶

type NullableV1alpha1ResourceNetworkingInfo ¶

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

func (NullableV1alpha1ResourceNetworkingInfo) Get ¶

func (NullableV1alpha1ResourceNetworkingInfo) IsSet ¶

func (NullableV1alpha1ResourceNetworkingInfo) MarshalJSON ¶

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

func (*NullableV1alpha1ResourceNetworkingInfo) Set ¶

func (*NullableV1alpha1ResourceNetworkingInfo) UnmarshalJSON ¶

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

func (*NullableV1alpha1ResourceNetworkingInfo) Unset ¶

type NullableV1alpha1ResourceNode ¶

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

func (NullableV1alpha1ResourceNode) Get ¶

func (NullableV1alpha1ResourceNode) IsSet ¶

func (NullableV1alpha1ResourceNode) MarshalJSON ¶

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

func (*NullableV1alpha1ResourceNode) Set ¶

func (*NullableV1alpha1ResourceNode) UnmarshalJSON ¶

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

func (*NullableV1alpha1ResourceNode) Unset ¶

func (v *NullableV1alpha1ResourceNode) Unset()

type NullableV1alpha1ResourceOverride ¶

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

func (NullableV1alpha1ResourceOverride) Get ¶

func (NullableV1alpha1ResourceOverride) IsSet ¶

func (NullableV1alpha1ResourceOverride) MarshalJSON ¶

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

func (*NullableV1alpha1ResourceOverride) Set ¶

func (*NullableV1alpha1ResourceOverride) UnmarshalJSON ¶

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

func (*NullableV1alpha1ResourceOverride) Unset ¶

type NullableV1alpha1ResourceRef ¶

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

func (NullableV1alpha1ResourceRef) Get ¶

func (NullableV1alpha1ResourceRef) IsSet ¶

func (NullableV1alpha1ResourceRef) MarshalJSON ¶

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

func (*NullableV1alpha1ResourceRef) Set ¶

func (*NullableV1alpha1ResourceRef) UnmarshalJSON ¶

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

func (*NullableV1alpha1ResourceRef) Unset ¶

func (v *NullableV1alpha1ResourceRef) Unset()

type NullableV1alpha1ResourceResult ¶

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

func (NullableV1alpha1ResourceResult) Get ¶

func (NullableV1alpha1ResourceResult) IsSet ¶

func (NullableV1alpha1ResourceResult) MarshalJSON ¶

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

func (*NullableV1alpha1ResourceResult) Set ¶

func (*NullableV1alpha1ResourceResult) UnmarshalJSON ¶

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

func (*NullableV1alpha1ResourceResult) Unset ¶

func (v *NullableV1alpha1ResourceResult) Unset()

type NullableV1alpha1ResourceStatus ¶

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

func (NullableV1alpha1ResourceStatus) Get ¶

func (NullableV1alpha1ResourceStatus) IsSet ¶

func (NullableV1alpha1ResourceStatus) MarshalJSON ¶

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

func (*NullableV1alpha1ResourceStatus) Set ¶

func (*NullableV1alpha1ResourceStatus) UnmarshalJSON ¶

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

func (*NullableV1alpha1ResourceStatus) Unset ¶

func (v *NullableV1alpha1ResourceStatus) Unset()

type NullableV1alpha1RetryStrategy ¶

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

func (NullableV1alpha1RetryStrategy) Get ¶

func (NullableV1alpha1RetryStrategy) IsSet ¶

func (NullableV1alpha1RetryStrategy) MarshalJSON ¶

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

func (*NullableV1alpha1RetryStrategy) Set ¶

func (*NullableV1alpha1RetryStrategy) UnmarshalJSON ¶

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

func (*NullableV1alpha1RetryStrategy) Unset ¶

func (v *NullableV1alpha1RetryStrategy) Unset()

type NullableV1alpha1RevisionHistory ¶

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

func (NullableV1alpha1RevisionHistory) Get ¶

func (NullableV1alpha1RevisionHistory) IsSet ¶

func (NullableV1alpha1RevisionHistory) MarshalJSON ¶

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

func (*NullableV1alpha1RevisionHistory) Set ¶

func (*NullableV1alpha1RevisionHistory) UnmarshalJSON ¶

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

func (*NullableV1alpha1RevisionHistory) Unset ¶

type NullableV1alpha1RevisionMetadata ¶

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

func (NullableV1alpha1RevisionMetadata) Get ¶

func (NullableV1alpha1RevisionMetadata) IsSet ¶

func (NullableV1alpha1RevisionMetadata) MarshalJSON ¶

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

func (*NullableV1alpha1RevisionMetadata) Set ¶

func (*NullableV1alpha1RevisionMetadata) UnmarshalJSON ¶

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

func (*NullableV1alpha1RevisionMetadata) Unset ¶

type NullableV1alpha1SCMProviderGenerator ¶

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

func (NullableV1alpha1SCMProviderGenerator) Get ¶

func (NullableV1alpha1SCMProviderGenerator) IsSet ¶

func (NullableV1alpha1SCMProviderGenerator) MarshalJSON ¶

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

func (*NullableV1alpha1SCMProviderGenerator) Set ¶

func (*NullableV1alpha1SCMProviderGenerator) UnmarshalJSON ¶

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

func (*NullableV1alpha1SCMProviderGenerator) Unset ¶

type NullableV1alpha1SCMProviderGeneratorAzureDevOps ¶

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

func (NullableV1alpha1SCMProviderGeneratorAzureDevOps) Get ¶

func (NullableV1alpha1SCMProviderGeneratorAzureDevOps) IsSet ¶

func (NullableV1alpha1SCMProviderGeneratorAzureDevOps) MarshalJSON ¶

func (*NullableV1alpha1SCMProviderGeneratorAzureDevOps) Set ¶

func (*NullableV1alpha1SCMProviderGeneratorAzureDevOps) UnmarshalJSON ¶

func (*NullableV1alpha1SCMProviderGeneratorAzureDevOps) Unset ¶

type NullableV1alpha1SCMProviderGeneratorBitbucket ¶

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

func (NullableV1alpha1SCMProviderGeneratorBitbucket) Get ¶

func (NullableV1alpha1SCMProviderGeneratorBitbucket) IsSet ¶

func (NullableV1alpha1SCMProviderGeneratorBitbucket) MarshalJSON ¶

func (*NullableV1alpha1SCMProviderGeneratorBitbucket) Set ¶

func (*NullableV1alpha1SCMProviderGeneratorBitbucket) UnmarshalJSON ¶

func (*NullableV1alpha1SCMProviderGeneratorBitbucket) Unset ¶

type NullableV1alpha1SCMProviderGeneratorBitbucketServer ¶

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

func (NullableV1alpha1SCMProviderGeneratorBitbucketServer) Get ¶

func (NullableV1alpha1SCMProviderGeneratorBitbucketServer) IsSet ¶

func (NullableV1alpha1SCMProviderGeneratorBitbucketServer) MarshalJSON ¶

func (*NullableV1alpha1SCMProviderGeneratorBitbucketServer) Set ¶

func (*NullableV1alpha1SCMProviderGeneratorBitbucketServer) UnmarshalJSON ¶

func (*NullableV1alpha1SCMProviderGeneratorBitbucketServer) Unset ¶

type NullableV1alpha1SCMProviderGeneratorFilter ¶

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

func (NullableV1alpha1SCMProviderGeneratorFilter) Get ¶

func (NullableV1alpha1SCMProviderGeneratorFilter) IsSet ¶

func (NullableV1alpha1SCMProviderGeneratorFilter) MarshalJSON ¶

func (*NullableV1alpha1SCMProviderGeneratorFilter) Set ¶

func (*NullableV1alpha1SCMProviderGeneratorFilter) UnmarshalJSON ¶

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

func (*NullableV1alpha1SCMProviderGeneratorFilter) Unset ¶

type NullableV1alpha1SCMProviderGeneratorGitea ¶

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

func (NullableV1alpha1SCMProviderGeneratorGitea) Get ¶

func (NullableV1alpha1SCMProviderGeneratorGitea) IsSet ¶

func (NullableV1alpha1SCMProviderGeneratorGitea) MarshalJSON ¶

func (*NullableV1alpha1SCMProviderGeneratorGitea) Set ¶

func (*NullableV1alpha1SCMProviderGeneratorGitea) UnmarshalJSON ¶

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

func (*NullableV1alpha1SCMProviderGeneratorGitea) Unset ¶

type NullableV1alpha1SCMProviderGeneratorGithub ¶

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

func (NullableV1alpha1SCMProviderGeneratorGithub) Get ¶

func (NullableV1alpha1SCMProviderGeneratorGithub) IsSet ¶

func (NullableV1alpha1SCMProviderGeneratorGithub) MarshalJSON ¶

func (*NullableV1alpha1SCMProviderGeneratorGithub) Set ¶

func (*NullableV1alpha1SCMProviderGeneratorGithub) UnmarshalJSON ¶

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

func (*NullableV1alpha1SCMProviderGeneratorGithub) Unset ¶

type NullableV1alpha1SCMProviderGeneratorGitlab ¶

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

func (NullableV1alpha1SCMProviderGeneratorGitlab) Get ¶

func (NullableV1alpha1SCMProviderGeneratorGitlab) IsSet ¶

func (NullableV1alpha1SCMProviderGeneratorGitlab) MarshalJSON ¶

func (*NullableV1alpha1SCMProviderGeneratorGitlab) Set ¶

func (*NullableV1alpha1SCMProviderGeneratorGitlab) UnmarshalJSON ¶

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

func (*NullableV1alpha1SCMProviderGeneratorGitlab) Unset ¶

type NullableV1alpha1SecretRef ¶

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

func NewNullableV1alpha1SecretRef ¶

func NewNullableV1alpha1SecretRef(val *V1alpha1SecretRef) *NullableV1alpha1SecretRef

func (NullableV1alpha1SecretRef) Get ¶

func (NullableV1alpha1SecretRef) IsSet ¶

func (v NullableV1alpha1SecretRef) IsSet() bool

func (NullableV1alpha1SecretRef) MarshalJSON ¶

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

func (*NullableV1alpha1SecretRef) Set ¶

func (*NullableV1alpha1SecretRef) UnmarshalJSON ¶

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

func (*NullableV1alpha1SecretRef) Unset ¶

func (v *NullableV1alpha1SecretRef) Unset()

type NullableV1alpha1SignatureKey ¶

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

func (NullableV1alpha1SignatureKey) Get ¶

func (NullableV1alpha1SignatureKey) IsSet ¶

func (NullableV1alpha1SignatureKey) MarshalJSON ¶

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

func (*NullableV1alpha1SignatureKey) Set ¶

func (*NullableV1alpha1SignatureKey) UnmarshalJSON ¶

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

func (*NullableV1alpha1SignatureKey) Unset ¶

func (v *NullableV1alpha1SignatureKey) Unset()

type NullableV1alpha1SyncOperation ¶

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

func (NullableV1alpha1SyncOperation) Get ¶

func (NullableV1alpha1SyncOperation) IsSet ¶

func (NullableV1alpha1SyncOperation) MarshalJSON ¶

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

func (*NullableV1alpha1SyncOperation) Set ¶

func (*NullableV1alpha1SyncOperation) UnmarshalJSON ¶

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

func (*NullableV1alpha1SyncOperation) Unset ¶

func (v *NullableV1alpha1SyncOperation) Unset()

type NullableV1alpha1SyncOperationResource ¶

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

func (NullableV1alpha1SyncOperationResource) Get ¶

func (NullableV1alpha1SyncOperationResource) IsSet ¶

func (NullableV1alpha1SyncOperationResource) MarshalJSON ¶

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

func (*NullableV1alpha1SyncOperationResource) Set ¶

func (*NullableV1alpha1SyncOperationResource) UnmarshalJSON ¶

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

func (*NullableV1alpha1SyncOperationResource) Unset ¶

type NullableV1alpha1SyncOperationResult ¶

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

func (NullableV1alpha1SyncOperationResult) Get ¶

func (NullableV1alpha1SyncOperationResult) IsSet ¶

func (NullableV1alpha1SyncOperationResult) MarshalJSON ¶

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

func (*NullableV1alpha1SyncOperationResult) Set ¶

func (*NullableV1alpha1SyncOperationResult) UnmarshalJSON ¶

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

func (*NullableV1alpha1SyncOperationResult) Unset ¶

type NullableV1alpha1SyncPolicy ¶

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

func NewNullableV1alpha1SyncPolicy ¶

func NewNullableV1alpha1SyncPolicy(val *V1alpha1SyncPolicy) *NullableV1alpha1SyncPolicy

func (NullableV1alpha1SyncPolicy) Get ¶

func (NullableV1alpha1SyncPolicy) IsSet ¶

func (v NullableV1alpha1SyncPolicy) IsSet() bool

func (NullableV1alpha1SyncPolicy) MarshalJSON ¶

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

func (*NullableV1alpha1SyncPolicy) Set ¶

func (*NullableV1alpha1SyncPolicy) UnmarshalJSON ¶

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

func (*NullableV1alpha1SyncPolicy) Unset ¶

func (v *NullableV1alpha1SyncPolicy) Unset()

type NullableV1alpha1SyncPolicyAutomated ¶

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

func (NullableV1alpha1SyncPolicyAutomated) Get ¶

func (NullableV1alpha1SyncPolicyAutomated) IsSet ¶

func (NullableV1alpha1SyncPolicyAutomated) MarshalJSON ¶

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

func (*NullableV1alpha1SyncPolicyAutomated) Set ¶

func (*NullableV1alpha1SyncPolicyAutomated) UnmarshalJSON ¶

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

func (*NullableV1alpha1SyncPolicyAutomated) Unset ¶

type NullableV1alpha1SyncStatus ¶

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

func NewNullableV1alpha1SyncStatus ¶

func NewNullableV1alpha1SyncStatus(val *V1alpha1SyncStatus) *NullableV1alpha1SyncStatus

func (NullableV1alpha1SyncStatus) Get ¶

func (NullableV1alpha1SyncStatus) IsSet ¶

func (v NullableV1alpha1SyncStatus) IsSet() bool

func (NullableV1alpha1SyncStatus) MarshalJSON ¶

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

func (*NullableV1alpha1SyncStatus) Set ¶

func (*NullableV1alpha1SyncStatus) UnmarshalJSON ¶

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

func (*NullableV1alpha1SyncStatus) Unset ¶

func (v *NullableV1alpha1SyncStatus) Unset()

type NullableV1alpha1SyncStrategy ¶

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

func (NullableV1alpha1SyncStrategy) Get ¶

func (NullableV1alpha1SyncStrategy) IsSet ¶

func (NullableV1alpha1SyncStrategy) MarshalJSON ¶

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

func (*NullableV1alpha1SyncStrategy) Set ¶

func (*NullableV1alpha1SyncStrategy) UnmarshalJSON ¶

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

func (*NullableV1alpha1SyncStrategy) Unset ¶

func (v *NullableV1alpha1SyncStrategy) Unset()

type NullableV1alpha1SyncStrategyApply ¶

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

func (NullableV1alpha1SyncStrategyApply) Get ¶

func (NullableV1alpha1SyncStrategyApply) IsSet ¶

func (NullableV1alpha1SyncStrategyApply) MarshalJSON ¶

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

func (*NullableV1alpha1SyncStrategyApply) Set ¶

func (*NullableV1alpha1SyncStrategyApply) UnmarshalJSON ¶

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

func (*NullableV1alpha1SyncStrategyApply) Unset ¶

type NullableV1alpha1SyncStrategyHook ¶

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

func (NullableV1alpha1SyncStrategyHook) Get ¶

func (NullableV1alpha1SyncStrategyHook) IsSet ¶

func (NullableV1alpha1SyncStrategyHook) MarshalJSON ¶

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

func (*NullableV1alpha1SyncStrategyHook) Set ¶

func (*NullableV1alpha1SyncStrategyHook) UnmarshalJSON ¶

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

func (*NullableV1alpha1SyncStrategyHook) Unset ¶

type NullableV1alpha1SyncWindow ¶

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

func NewNullableV1alpha1SyncWindow ¶

func NewNullableV1alpha1SyncWindow(val *V1alpha1SyncWindow) *NullableV1alpha1SyncWindow

func (NullableV1alpha1SyncWindow) Get ¶

func (NullableV1alpha1SyncWindow) IsSet ¶

func (v NullableV1alpha1SyncWindow) IsSet() bool

func (NullableV1alpha1SyncWindow) MarshalJSON ¶

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

func (*NullableV1alpha1SyncWindow) Set ¶

func (*NullableV1alpha1SyncWindow) UnmarshalJSON ¶

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

func (*NullableV1alpha1SyncWindow) Unset ¶

func (v *NullableV1alpha1SyncWindow) Unset()

type NullableV1alpha1TLSClientConfig ¶

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

func (NullableV1alpha1TLSClientConfig) Get ¶

func (NullableV1alpha1TLSClientConfig) IsSet ¶

func (NullableV1alpha1TLSClientConfig) MarshalJSON ¶

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

func (*NullableV1alpha1TLSClientConfig) Set ¶

func (*NullableV1alpha1TLSClientConfig) UnmarshalJSON ¶

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

func (*NullableV1alpha1TLSClientConfig) Unset ¶

type NullableVersionVersionMessage ¶

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

func (NullableVersionVersionMessage) Get ¶

func (NullableVersionVersionMessage) IsSet ¶

func (NullableVersionVersionMessage) MarshalJSON ¶

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

func (*NullableVersionVersionMessage) Set ¶

func (*NullableVersionVersionMessage) UnmarshalJSON ¶

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

func (*NullableVersionVersionMessage) Unset ¶

func (v *NullableVersionVersionMessage) Unset()

type OidcClaim ¶

type OidcClaim struct {
	Essential *bool    `json:"essential,omitempty"`
	Value     *string  `json:"value,omitempty"`
	Values    []string `json:"values,omitempty"`
}

OidcClaim struct for OidcClaim

func NewOidcClaim ¶

func NewOidcClaim() *OidcClaim

NewOidcClaim instantiates a new OidcClaim 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 NewOidcClaimWithDefaults ¶

func NewOidcClaimWithDefaults() *OidcClaim

NewOidcClaimWithDefaults instantiates a new OidcClaim 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 (*OidcClaim) GetEssential ¶

func (o *OidcClaim) GetEssential() bool

GetEssential returns the Essential field value if set, zero value otherwise.

func (*OidcClaim) GetEssentialOk ¶

func (o *OidcClaim) GetEssentialOk() (*bool, bool)

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

func (*OidcClaim) GetValue ¶

func (o *OidcClaim) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*OidcClaim) GetValueOk ¶

func (o *OidcClaim) GetValueOk() (*string, bool)

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

func (*OidcClaim) GetValues ¶

func (o *OidcClaim) GetValues() []string

GetValues returns the Values field value if set, zero value otherwise.

func (*OidcClaim) GetValuesOk ¶

func (o *OidcClaim) GetValuesOk() ([]string, bool)

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

func (*OidcClaim) HasEssential ¶

func (o *OidcClaim) HasEssential() bool

HasEssential returns a boolean if a field has been set.

func (*OidcClaim) HasValue ¶

func (o *OidcClaim) HasValue() bool

HasValue returns a boolean if a field has been set.

func (*OidcClaim) HasValues ¶

func (o *OidcClaim) HasValues() bool

HasValues returns a boolean if a field has been set.

func (OidcClaim) MarshalJSON ¶

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

func (*OidcClaim) SetEssential ¶

func (o *OidcClaim) SetEssential(v bool)

SetEssential gets a reference to the given bool and assigns it to the Essential field.

func (*OidcClaim) SetValue ¶

func (o *OidcClaim) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (*OidcClaim) SetValues ¶

func (o *OidcClaim) SetValues(v []string)

SetValues gets a reference to the given []string and assigns it to the Values field.

func (OidcClaim) ToMap ¶

func (o OidcClaim) ToMap() (map[string]interface{}, error)

type ProjectDetailedProjectsResponse ¶

type ProjectDetailedProjectsResponse struct {
	Clusters       []V1alpha1Cluster    `json:"clusters,omitempty"`
	GlobalProjects []V1alpha1AppProject `json:"globalProjects,omitempty"`
	Project        *V1alpha1AppProject  `json:"project,omitempty"`
	Repositories   []V1alpha1Repository `json:"repositories,omitempty"`
}

ProjectDetailedProjectsResponse struct for ProjectDetailedProjectsResponse

func NewProjectDetailedProjectsResponse ¶

func NewProjectDetailedProjectsResponse() *ProjectDetailedProjectsResponse

NewProjectDetailedProjectsResponse instantiates a new ProjectDetailedProjectsResponse 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 NewProjectDetailedProjectsResponseWithDefaults ¶

func NewProjectDetailedProjectsResponseWithDefaults() *ProjectDetailedProjectsResponse

NewProjectDetailedProjectsResponseWithDefaults instantiates a new ProjectDetailedProjectsResponse 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 (*ProjectDetailedProjectsResponse) GetClusters ¶

GetClusters returns the Clusters field value if set, zero value otherwise.

func (*ProjectDetailedProjectsResponse) GetClustersOk ¶

func (o *ProjectDetailedProjectsResponse) GetClustersOk() ([]V1alpha1Cluster, bool)

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

func (*ProjectDetailedProjectsResponse) GetGlobalProjects ¶

func (o *ProjectDetailedProjectsResponse) GetGlobalProjects() []V1alpha1AppProject

GetGlobalProjects returns the GlobalProjects field value if set, zero value otherwise.

func (*ProjectDetailedProjectsResponse) GetGlobalProjectsOk ¶

func (o *ProjectDetailedProjectsResponse) GetGlobalProjectsOk() ([]V1alpha1AppProject, bool)

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

func (*ProjectDetailedProjectsResponse) GetProject ¶

GetProject returns the Project field value if set, zero value otherwise.

func (*ProjectDetailedProjectsResponse) GetProjectOk ¶

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

func (*ProjectDetailedProjectsResponse) GetRepositories ¶

func (o *ProjectDetailedProjectsResponse) GetRepositories() []V1alpha1Repository

GetRepositories returns the Repositories field value if set, zero value otherwise.

func (*ProjectDetailedProjectsResponse) GetRepositoriesOk ¶

func (o *ProjectDetailedProjectsResponse) GetRepositoriesOk() ([]V1alpha1Repository, bool)

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

func (*ProjectDetailedProjectsResponse) HasClusters ¶

func (o *ProjectDetailedProjectsResponse) HasClusters() bool

HasClusters returns a boolean if a field has been set.

func (*ProjectDetailedProjectsResponse) HasGlobalProjects ¶

func (o *ProjectDetailedProjectsResponse) HasGlobalProjects() bool

HasGlobalProjects returns a boolean if a field has been set.

func (*ProjectDetailedProjectsResponse) HasProject ¶

func (o *ProjectDetailedProjectsResponse) HasProject() bool

HasProject returns a boolean if a field has been set.

func (*ProjectDetailedProjectsResponse) HasRepositories ¶

func (o *ProjectDetailedProjectsResponse) HasRepositories() bool

HasRepositories returns a boolean if a field has been set.

func (ProjectDetailedProjectsResponse) MarshalJSON ¶

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

func (*ProjectDetailedProjectsResponse) SetClusters ¶

SetClusters gets a reference to the given []V1alpha1Cluster and assigns it to the Clusters field.

func (*ProjectDetailedProjectsResponse) SetGlobalProjects ¶

func (o *ProjectDetailedProjectsResponse) SetGlobalProjects(v []V1alpha1AppProject)

SetGlobalProjects gets a reference to the given []V1alpha1AppProject and assigns it to the GlobalProjects field.

func (*ProjectDetailedProjectsResponse) SetProject ¶

SetProject gets a reference to the given V1alpha1AppProject and assigns it to the Project field.

func (*ProjectDetailedProjectsResponse) SetRepositories ¶

func (o *ProjectDetailedProjectsResponse) SetRepositories(v []V1alpha1Repository)

SetRepositories gets a reference to the given []V1alpha1Repository and assigns it to the Repositories field.

func (ProjectDetailedProjectsResponse) ToMap ¶

func (o ProjectDetailedProjectsResponse) ToMap() (map[string]interface{}, error)

type ProjectGlobalProjectsResponse ¶

type ProjectGlobalProjectsResponse struct {
	Items []V1alpha1AppProject `json:"items,omitempty"`
}

ProjectGlobalProjectsResponse struct for ProjectGlobalProjectsResponse

func NewProjectGlobalProjectsResponse ¶

func NewProjectGlobalProjectsResponse() *ProjectGlobalProjectsResponse

NewProjectGlobalProjectsResponse instantiates a new ProjectGlobalProjectsResponse 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 NewProjectGlobalProjectsResponseWithDefaults ¶

func NewProjectGlobalProjectsResponseWithDefaults() *ProjectGlobalProjectsResponse

NewProjectGlobalProjectsResponseWithDefaults instantiates a new ProjectGlobalProjectsResponse 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 (*ProjectGlobalProjectsResponse) GetItems ¶

GetItems returns the Items field value if set, zero value otherwise.

func (*ProjectGlobalProjectsResponse) GetItemsOk ¶

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

func (*ProjectGlobalProjectsResponse) HasItems ¶

func (o *ProjectGlobalProjectsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ProjectGlobalProjectsResponse) MarshalJSON ¶

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

func (*ProjectGlobalProjectsResponse) SetItems ¶

SetItems gets a reference to the given []V1alpha1AppProject and assigns it to the Items field.

func (ProjectGlobalProjectsResponse) ToMap ¶

func (o ProjectGlobalProjectsResponse) ToMap() (map[string]interface{}, error)

type ProjectProjectCreateRequest ¶

type ProjectProjectCreateRequest struct {
	Project *V1alpha1AppProject `json:"project,omitempty"`
	Upsert  *bool               `json:"upsert,omitempty"`
}

ProjectProjectCreateRequest ProjectCreateRequest defines project creation parameters.

func NewProjectProjectCreateRequest ¶

func NewProjectProjectCreateRequest() *ProjectProjectCreateRequest

NewProjectProjectCreateRequest instantiates a new ProjectProjectCreateRequest 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 NewProjectProjectCreateRequestWithDefaults ¶

func NewProjectProjectCreateRequestWithDefaults() *ProjectProjectCreateRequest

NewProjectProjectCreateRequestWithDefaults instantiates a new ProjectProjectCreateRequest 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 (*ProjectProjectCreateRequest) GetProject ¶

GetProject returns the Project field value if set, zero value otherwise.

func (*ProjectProjectCreateRequest) GetProjectOk ¶

func (o *ProjectProjectCreateRequest) GetProjectOk() (*V1alpha1AppProject, bool)

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

func (*ProjectProjectCreateRequest) GetUpsert ¶

func (o *ProjectProjectCreateRequest) GetUpsert() bool

GetUpsert returns the Upsert field value if set, zero value otherwise.

func (*ProjectProjectCreateRequest) GetUpsertOk ¶

func (o *ProjectProjectCreateRequest) GetUpsertOk() (*bool, bool)

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

func (*ProjectProjectCreateRequest) HasProject ¶

func (o *ProjectProjectCreateRequest) HasProject() bool

HasProject returns a boolean if a field has been set.

func (*ProjectProjectCreateRequest) HasUpsert ¶

func (o *ProjectProjectCreateRequest) HasUpsert() bool

HasUpsert returns a boolean if a field has been set.

func (ProjectProjectCreateRequest) MarshalJSON ¶

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

func (*ProjectProjectCreateRequest) SetProject ¶

SetProject gets a reference to the given V1alpha1AppProject and assigns it to the Project field.

func (*ProjectProjectCreateRequest) SetUpsert ¶

func (o *ProjectProjectCreateRequest) SetUpsert(v bool)

SetUpsert gets a reference to the given bool and assigns it to the Upsert field.

func (ProjectProjectCreateRequest) ToMap ¶

func (o ProjectProjectCreateRequest) ToMap() (map[string]interface{}, error)

type ProjectProjectTokenCreateRequest ¶

type ProjectProjectTokenCreateRequest struct {
	Description *string `json:"description,omitempty"`
	ExpiresIn   *string `json:"expiresIn,omitempty"`
	Id          *string `json:"id,omitempty"`
	Project     *string `json:"project,omitempty"`
	Role        *string `json:"role,omitempty"`
}

ProjectProjectTokenCreateRequest ProjectTokenCreateRequest defines project token creation parameters.

func NewProjectProjectTokenCreateRequest ¶

func NewProjectProjectTokenCreateRequest() *ProjectProjectTokenCreateRequest

NewProjectProjectTokenCreateRequest instantiates a new ProjectProjectTokenCreateRequest 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 NewProjectProjectTokenCreateRequestWithDefaults ¶

func NewProjectProjectTokenCreateRequestWithDefaults() *ProjectProjectTokenCreateRequest

NewProjectProjectTokenCreateRequestWithDefaults instantiates a new ProjectProjectTokenCreateRequest 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 (*ProjectProjectTokenCreateRequest) GetDescription ¶

func (o *ProjectProjectTokenCreateRequest) GetDescription() string

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

func (*ProjectProjectTokenCreateRequest) GetDescriptionOk ¶

func (o *ProjectProjectTokenCreateRequest) 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 (*ProjectProjectTokenCreateRequest) GetExpiresIn ¶

func (o *ProjectProjectTokenCreateRequest) GetExpiresIn() string

GetExpiresIn returns the ExpiresIn field value if set, zero value otherwise.

func (*ProjectProjectTokenCreateRequest) GetExpiresInOk ¶

func (o *ProjectProjectTokenCreateRequest) GetExpiresInOk() (*string, bool)

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

func (*ProjectProjectTokenCreateRequest) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ProjectProjectTokenCreateRequest) GetIdOk ¶

func (o *ProjectProjectTokenCreateRequest) GetIdOk() (*string, bool)

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

func (*ProjectProjectTokenCreateRequest) GetProject ¶

func (o *ProjectProjectTokenCreateRequest) GetProject() string

GetProject returns the Project field value if set, zero value otherwise.

func (*ProjectProjectTokenCreateRequest) GetProjectOk ¶

func (o *ProjectProjectTokenCreateRequest) GetProjectOk() (*string, bool)

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

func (*ProjectProjectTokenCreateRequest) GetRole ¶

GetRole returns the Role field value if set, zero value otherwise.

func (*ProjectProjectTokenCreateRequest) GetRoleOk ¶

func (o *ProjectProjectTokenCreateRequest) GetRoleOk() (*string, bool)

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

func (*ProjectProjectTokenCreateRequest) HasDescription ¶

func (o *ProjectProjectTokenCreateRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ProjectProjectTokenCreateRequest) HasExpiresIn ¶

func (o *ProjectProjectTokenCreateRequest) HasExpiresIn() bool

HasExpiresIn returns a boolean if a field has been set.

func (*ProjectProjectTokenCreateRequest) HasId ¶

HasId returns a boolean if a field has been set.

func (*ProjectProjectTokenCreateRequest) HasProject ¶

func (o *ProjectProjectTokenCreateRequest) HasProject() bool

HasProject returns a boolean if a field has been set.

func (*ProjectProjectTokenCreateRequest) HasRole ¶

HasRole returns a boolean if a field has been set.

func (ProjectProjectTokenCreateRequest) MarshalJSON ¶

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

func (*ProjectProjectTokenCreateRequest) SetDescription ¶

func (o *ProjectProjectTokenCreateRequest) SetDescription(v string)

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

func (*ProjectProjectTokenCreateRequest) SetExpiresIn ¶

func (o *ProjectProjectTokenCreateRequest) SetExpiresIn(v string)

SetExpiresIn gets a reference to the given string and assigns it to the ExpiresIn field.

func (*ProjectProjectTokenCreateRequest) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*ProjectProjectTokenCreateRequest) SetProject ¶

func (o *ProjectProjectTokenCreateRequest) SetProject(v string)

SetProject gets a reference to the given string and assigns it to the Project field.

func (*ProjectProjectTokenCreateRequest) SetRole ¶

SetRole gets a reference to the given string and assigns it to the Role field.

func (ProjectProjectTokenCreateRequest) ToMap ¶

func (o ProjectProjectTokenCreateRequest) ToMap() (map[string]interface{}, error)

type ProjectProjectTokenResponse ¶

type ProjectProjectTokenResponse struct {
	Token *string `json:"token,omitempty"`
}

ProjectProjectTokenResponse ProjectTokenResponse wraps the created token or returns an empty string if deleted.

func NewProjectProjectTokenResponse ¶

func NewProjectProjectTokenResponse() *ProjectProjectTokenResponse

NewProjectProjectTokenResponse instantiates a new ProjectProjectTokenResponse 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 NewProjectProjectTokenResponseWithDefaults ¶

func NewProjectProjectTokenResponseWithDefaults() *ProjectProjectTokenResponse

NewProjectProjectTokenResponseWithDefaults instantiates a new ProjectProjectTokenResponse 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 (*ProjectProjectTokenResponse) GetToken ¶

func (o *ProjectProjectTokenResponse) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*ProjectProjectTokenResponse) GetTokenOk ¶

func (o *ProjectProjectTokenResponse) GetTokenOk() (*string, bool)

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

func (*ProjectProjectTokenResponse) HasToken ¶

func (o *ProjectProjectTokenResponse) HasToken() bool

HasToken returns a boolean if a field has been set.

func (ProjectProjectTokenResponse) MarshalJSON ¶

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

func (*ProjectProjectTokenResponse) SetToken ¶

func (o *ProjectProjectTokenResponse) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

func (ProjectProjectTokenResponse) ToMap ¶

func (o ProjectProjectTokenResponse) ToMap() (map[string]interface{}, error)

type ProjectProjectUpdateRequest ¶

type ProjectProjectUpdateRequest struct {
	Project *V1alpha1AppProject `json:"project,omitempty"`
}

ProjectProjectUpdateRequest struct for ProjectProjectUpdateRequest

func NewProjectProjectUpdateRequest ¶

func NewProjectProjectUpdateRequest() *ProjectProjectUpdateRequest

NewProjectProjectUpdateRequest instantiates a new ProjectProjectUpdateRequest 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 NewProjectProjectUpdateRequestWithDefaults ¶

func NewProjectProjectUpdateRequestWithDefaults() *ProjectProjectUpdateRequest

NewProjectProjectUpdateRequestWithDefaults instantiates a new ProjectProjectUpdateRequest 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 (*ProjectProjectUpdateRequest) GetProject ¶

GetProject returns the Project field value if set, zero value otherwise.

func (*ProjectProjectUpdateRequest) GetProjectOk ¶

func (o *ProjectProjectUpdateRequest) GetProjectOk() (*V1alpha1AppProject, bool)

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

func (*ProjectProjectUpdateRequest) HasProject ¶

func (o *ProjectProjectUpdateRequest) HasProject() bool

HasProject returns a boolean if a field has been set.

func (ProjectProjectUpdateRequest) MarshalJSON ¶

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

func (*ProjectProjectUpdateRequest) SetProject ¶

SetProject gets a reference to the given V1alpha1AppProject and assigns it to the Project field.

func (ProjectProjectUpdateRequest) ToMap ¶

func (o ProjectProjectUpdateRequest) ToMap() (map[string]interface{}, error)

type ProjectServiceApiService ¶

type ProjectServiceApiService service

ProjectServiceApiService ProjectServiceApi service

func (*ProjectServiceApiService) ProjectServiceCreate ¶

ProjectServiceCreate Create a new project

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

func (*ProjectServiceApiService) ProjectServiceCreateExecute ¶

Execute executes the request

@return V1alpha1AppProject

func (*ProjectServiceApiService) ProjectServiceCreateToken ¶

func (a *ProjectServiceApiService) ProjectServiceCreateToken(ctx context.Context, project string, role string) ApiProjectServiceCreateTokenRequest

ProjectServiceCreateToken Create a new project token

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

func (*ProjectServiceApiService) ProjectServiceCreateTokenExecute ¶

Execute executes the request

@return ProjectProjectTokenResponse

func (*ProjectServiceApiService) ProjectServiceDelete ¶

ProjectServiceDelete Delete deletes a project

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

func (*ProjectServiceApiService) ProjectServiceDeleteExecute ¶

func (a *ProjectServiceApiService) ProjectServiceDeleteExecute(r ApiProjectServiceDeleteRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ProjectServiceApiService) ProjectServiceDeleteToken ¶

func (a *ProjectServiceApiService) ProjectServiceDeleteToken(ctx context.Context, project string, role string, iat string) ApiProjectServiceDeleteTokenRequest

ProjectServiceDeleteToken Delete a new project token

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

func (*ProjectServiceApiService) ProjectServiceDeleteTokenExecute ¶

func (a *ProjectServiceApiService) ProjectServiceDeleteTokenExecute(r ApiProjectServiceDeleteTokenRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ProjectServiceApiService) ProjectServiceGet ¶

ProjectServiceGet Get returns a project by name

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

func (*ProjectServiceApiService) ProjectServiceGetDetailedProject ¶

func (a *ProjectServiceApiService) ProjectServiceGetDetailedProject(ctx context.Context, name string) ApiProjectServiceGetDetailedProjectRequest

ProjectServiceGetDetailedProject GetDetailedProject returns a project that include project, global project and scoped resources by name

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

func (*ProjectServiceApiService) ProjectServiceGetDetailedProjectExecute ¶

Execute executes the request

@return ProjectDetailedProjectsResponse

func (*ProjectServiceApiService) ProjectServiceGetExecute ¶

Execute executes the request

@return V1alpha1AppProject

func (*ProjectServiceApiService) ProjectServiceGetGlobalProjects ¶

func (a *ProjectServiceApiService) ProjectServiceGetGlobalProjects(ctx context.Context, name string) ApiProjectServiceGetGlobalProjectsRequest

ProjectServiceGetGlobalProjects Get returns a virtual project by name

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

func (*ProjectServiceApiService) ProjectServiceGetGlobalProjectsExecute ¶

Execute executes the request

@return ProjectGlobalProjectsResponse

func (*ProjectServiceApiService) ProjectServiceGetSyncWindowsState ¶

func (a *ProjectServiceApiService) ProjectServiceGetSyncWindowsState(ctx context.Context, name string) ApiProjectServiceGetSyncWindowsStateRequest

ProjectServiceGetSyncWindowsState GetSchedulesState returns true if there are any active sync syncWindows

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

func (*ProjectServiceApiService) ProjectServiceGetSyncWindowsStateExecute ¶

Execute executes the request

@return ProjectSyncWindowsResponse

func (*ProjectServiceApiService) ProjectServiceList ¶

ProjectServiceList List returns list of projects

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

func (*ProjectServiceApiService) ProjectServiceListEvents ¶

func (a *ProjectServiceApiService) ProjectServiceListEvents(ctx context.Context, name string) ApiProjectServiceListEventsRequest

ProjectServiceListEvents ListEvents returns a list of project events

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

func (*ProjectServiceApiService) ProjectServiceListEventsExecute ¶

func (a *ProjectServiceApiService) ProjectServiceListEventsExecute(r ApiProjectServiceListEventsRequest) (*V1EventList, *http.Response, error)

Execute executes the request

@return V1EventList

func (*ProjectServiceApiService) ProjectServiceListExecute ¶

Execute executes the request

@return V1alpha1AppProjectList

func (*ProjectServiceApiService) ProjectServiceUpdate ¶

func (a *ProjectServiceApiService) ProjectServiceUpdate(ctx context.Context, projectMetadataName string) ApiProjectServiceUpdateRequest

ProjectServiceUpdate Update updates a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectMetadataName Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names +optional
@return ApiProjectServiceUpdateRequest

func (*ProjectServiceApiService) ProjectServiceUpdateExecute ¶

Execute executes the request

@return V1alpha1AppProject

type ProjectSyncWindowsResponse ¶

type ProjectSyncWindowsResponse struct {
	Windows []V1alpha1SyncWindow `json:"windows,omitempty"`
}

ProjectSyncWindowsResponse struct for ProjectSyncWindowsResponse

func NewProjectSyncWindowsResponse ¶

func NewProjectSyncWindowsResponse() *ProjectSyncWindowsResponse

NewProjectSyncWindowsResponse instantiates a new ProjectSyncWindowsResponse 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 NewProjectSyncWindowsResponseWithDefaults ¶

func NewProjectSyncWindowsResponseWithDefaults() *ProjectSyncWindowsResponse

NewProjectSyncWindowsResponseWithDefaults instantiates a new ProjectSyncWindowsResponse 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 (*ProjectSyncWindowsResponse) GetWindows ¶

GetWindows returns the Windows field value if set, zero value otherwise.

func (*ProjectSyncWindowsResponse) GetWindowsOk ¶

func (o *ProjectSyncWindowsResponse) GetWindowsOk() ([]V1alpha1SyncWindow, bool)

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

func (*ProjectSyncWindowsResponse) HasWindows ¶

func (o *ProjectSyncWindowsResponse) HasWindows() bool

HasWindows returns a boolean if a field has been set.

func (ProjectSyncWindowsResponse) MarshalJSON ¶

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

func (*ProjectSyncWindowsResponse) SetWindows ¶

SetWindows gets a reference to the given []V1alpha1SyncWindow and assigns it to the Windows field.

func (ProjectSyncWindowsResponse) ToMap ¶

func (o ProjectSyncWindowsResponse) ToMap() (map[string]interface{}, error)

type ProtobufAny ¶

type ProtobufAny struct {
	TypeUrl *string `json:"type_url,omitempty"`
	Value   *string `json:"value,omitempty"`
}

ProtobufAny struct for ProtobufAny

func NewProtobufAny ¶

func NewProtobufAny() *ProtobufAny

NewProtobufAny instantiates a new ProtobufAny 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 NewProtobufAnyWithDefaults ¶

func NewProtobufAnyWithDefaults() *ProtobufAny

NewProtobufAnyWithDefaults instantiates a new ProtobufAny 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 (*ProtobufAny) GetTypeUrl ¶

func (o *ProtobufAny) GetTypeUrl() string

GetTypeUrl returns the TypeUrl field value if set, zero value otherwise.

func (*ProtobufAny) GetTypeUrlOk ¶

func (o *ProtobufAny) GetTypeUrlOk() (*string, bool)

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

func (*ProtobufAny) GetValue ¶

func (o *ProtobufAny) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ProtobufAny) GetValueOk ¶

func (o *ProtobufAny) GetValueOk() (*string, bool)

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

func (*ProtobufAny) HasTypeUrl ¶

func (o *ProtobufAny) HasTypeUrl() bool

HasTypeUrl returns a boolean if a field has been set.

func (*ProtobufAny) HasValue ¶

func (o *ProtobufAny) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ProtobufAny) MarshalJSON ¶

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

func (*ProtobufAny) SetTypeUrl ¶

func (o *ProtobufAny) SetTypeUrl(v string)

SetTypeUrl gets a reference to the given string and assigns it to the TypeUrl field.

func (*ProtobufAny) SetValue ¶

func (o *ProtobufAny) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (ProtobufAny) ToMap ¶

func (o ProtobufAny) ToMap() (map[string]interface{}, error)

type RepoCredsServiceApiService ¶

type RepoCredsServiceApiService service

RepoCredsServiceApiService RepoCredsServiceApi service

func (*RepoCredsServiceApiService) RepoCredsServiceCreateRepositoryCredentials ¶

func (a *RepoCredsServiceApiService) RepoCredsServiceCreateRepositoryCredentials(ctx context.Context) ApiRepoCredsServiceCreateRepositoryCredentialsRequest

RepoCredsServiceCreateRepositoryCredentials CreateRepositoryCredentials creates a new repository credential set

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

func (*RepoCredsServiceApiService) RepoCredsServiceCreateRepositoryCredentialsExecute ¶

func (a *RepoCredsServiceApiService) RepoCredsServiceCreateRepositoryCredentialsExecute(r ApiRepoCredsServiceCreateRepositoryCredentialsRequest) (*V1alpha1RepoCreds, *http.Response, error)

Execute executes the request

@return V1alpha1RepoCreds

func (*RepoCredsServiceApiService) RepoCredsServiceDeleteRepositoryCredentials ¶

func (a *RepoCredsServiceApiService) RepoCredsServiceDeleteRepositoryCredentials(ctx context.Context, url string) ApiRepoCredsServiceDeleteRepositoryCredentialsRequest

RepoCredsServiceDeleteRepositoryCredentials DeleteRepositoryCredentials deletes a repository credential set from the configuration

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

func (*RepoCredsServiceApiService) RepoCredsServiceDeleteRepositoryCredentialsExecute ¶

func (a *RepoCredsServiceApiService) RepoCredsServiceDeleteRepositoryCredentialsExecute(r ApiRepoCredsServiceDeleteRepositoryCredentialsRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*RepoCredsServiceApiService) RepoCredsServiceListRepositoryCredentials ¶

func (a *RepoCredsServiceApiService) RepoCredsServiceListRepositoryCredentials(ctx context.Context) ApiRepoCredsServiceListRepositoryCredentialsRequest

RepoCredsServiceListRepositoryCredentials ListRepositoryCredentials gets a list of all configured repository credential sets

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

func (*RepoCredsServiceApiService) RepoCredsServiceListRepositoryCredentialsExecute ¶

Execute executes the request

@return V1alpha1RepoCredsList

func (*RepoCredsServiceApiService) RepoCredsServiceUpdateRepositoryCredentials ¶

func (a *RepoCredsServiceApiService) RepoCredsServiceUpdateRepositoryCredentials(ctx context.Context, credsUrl string) ApiRepoCredsServiceUpdateRepositoryCredentialsRequest

RepoCredsServiceUpdateRepositoryCredentials UpdateRepositoryCredentials updates a repository credential set

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param credsUrl URL is the URL that this credentials matches to
@return ApiRepoCredsServiceUpdateRepositoryCredentialsRequest

func (*RepoCredsServiceApiService) RepoCredsServiceUpdateRepositoryCredentialsExecute ¶

func (a *RepoCredsServiceApiService) RepoCredsServiceUpdateRepositoryCredentialsExecute(r ApiRepoCredsServiceUpdateRepositoryCredentialsRequest) (*V1alpha1RepoCreds, *http.Response, error)

Execute executes the request

@return V1alpha1RepoCreds

type RepositoryAppInfo ¶

type RepositoryAppInfo struct {
	Path *string `json:"path,omitempty"`
	Type *string `json:"type,omitempty"`
}

RepositoryAppInfo struct for RepositoryAppInfo

func NewRepositoryAppInfo ¶

func NewRepositoryAppInfo() *RepositoryAppInfo

NewRepositoryAppInfo instantiates a new RepositoryAppInfo 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 NewRepositoryAppInfoWithDefaults ¶

func NewRepositoryAppInfoWithDefaults() *RepositoryAppInfo

NewRepositoryAppInfoWithDefaults instantiates a new RepositoryAppInfo 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 (*RepositoryAppInfo) GetPath ¶

func (o *RepositoryAppInfo) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*RepositoryAppInfo) GetPathOk ¶

func (o *RepositoryAppInfo) GetPathOk() (*string, bool)

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

func (*RepositoryAppInfo) GetType ¶

func (o *RepositoryAppInfo) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RepositoryAppInfo) GetTypeOk ¶

func (o *RepositoryAppInfo) GetTypeOk() (*string, bool)

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

func (*RepositoryAppInfo) HasPath ¶

func (o *RepositoryAppInfo) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*RepositoryAppInfo) HasType ¶

func (o *RepositoryAppInfo) HasType() bool

HasType returns a boolean if a field has been set.

func (RepositoryAppInfo) MarshalJSON ¶

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

func (*RepositoryAppInfo) SetPath ¶

func (o *RepositoryAppInfo) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*RepositoryAppInfo) SetType ¶

func (o *RepositoryAppInfo) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RepositoryAppInfo) ToMap ¶

func (o RepositoryAppInfo) ToMap() (map[string]interface{}, error)

type RepositoryHelmAppSpec ¶

type RepositoryHelmAppSpec struct {
	FileParameters []V1alpha1HelmFileParameter `json:"fileParameters,omitempty"`
	Name           *string                     `json:"name,omitempty"`
	Parameters     []V1alpha1HelmParameter     `json:"parameters,omitempty"`
	ValueFiles     []string                    `json:"valueFiles,omitempty"`
	Values         *string                     `json:"values,omitempty"`
}

RepositoryHelmAppSpec struct for RepositoryHelmAppSpec

func NewRepositoryHelmAppSpec ¶

func NewRepositoryHelmAppSpec() *RepositoryHelmAppSpec

NewRepositoryHelmAppSpec instantiates a new RepositoryHelmAppSpec 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 NewRepositoryHelmAppSpecWithDefaults ¶

func NewRepositoryHelmAppSpecWithDefaults() *RepositoryHelmAppSpec

NewRepositoryHelmAppSpecWithDefaults instantiates a new RepositoryHelmAppSpec 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 (*RepositoryHelmAppSpec) GetFileParameters ¶

func (o *RepositoryHelmAppSpec) GetFileParameters() []V1alpha1HelmFileParameter

GetFileParameters returns the FileParameters field value if set, zero value otherwise.

func (*RepositoryHelmAppSpec) GetFileParametersOk ¶

func (o *RepositoryHelmAppSpec) GetFileParametersOk() ([]V1alpha1HelmFileParameter, bool)

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

func (*RepositoryHelmAppSpec) GetName ¶

func (o *RepositoryHelmAppSpec) GetName() string

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

func (*RepositoryHelmAppSpec) GetNameOk ¶

func (o *RepositoryHelmAppSpec) 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 (*RepositoryHelmAppSpec) GetParameters ¶

func (o *RepositoryHelmAppSpec) GetParameters() []V1alpha1HelmParameter

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*RepositoryHelmAppSpec) GetParametersOk ¶

func (o *RepositoryHelmAppSpec) GetParametersOk() ([]V1alpha1HelmParameter, bool)

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

func (*RepositoryHelmAppSpec) GetValueFiles ¶

func (o *RepositoryHelmAppSpec) GetValueFiles() []string

GetValueFiles returns the ValueFiles field value if set, zero value otherwise.

func (*RepositoryHelmAppSpec) GetValueFilesOk ¶

func (o *RepositoryHelmAppSpec) GetValueFilesOk() ([]string, bool)

GetValueFilesOk returns a tuple with the ValueFiles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryHelmAppSpec) GetValues ¶

func (o *RepositoryHelmAppSpec) GetValues() string

GetValues returns the Values field value if set, zero value otherwise.

func (*RepositoryHelmAppSpec) GetValuesOk ¶

func (o *RepositoryHelmAppSpec) GetValuesOk() (*string, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryHelmAppSpec) HasFileParameters ¶

func (o *RepositoryHelmAppSpec) HasFileParameters() bool

HasFileParameters returns a boolean if a field has been set.

func (*RepositoryHelmAppSpec) HasName ¶

func (o *RepositoryHelmAppSpec) HasName() bool

HasName returns a boolean if a field has been set.

func (*RepositoryHelmAppSpec) HasParameters ¶

func (o *RepositoryHelmAppSpec) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (*RepositoryHelmAppSpec) HasValueFiles ¶

func (o *RepositoryHelmAppSpec) HasValueFiles() bool

HasValueFiles returns a boolean if a field has been set.

func (*RepositoryHelmAppSpec) HasValues ¶

func (o *RepositoryHelmAppSpec) HasValues() bool

HasValues returns a boolean if a field has been set.

func (RepositoryHelmAppSpec) MarshalJSON ¶

func (o RepositoryHelmAppSpec) MarshalJSON() ([]byte, error)

func (*RepositoryHelmAppSpec) SetFileParameters ¶

func (o *RepositoryHelmAppSpec) SetFileParameters(v []V1alpha1HelmFileParameter)

SetFileParameters gets a reference to the given []V1alpha1HelmFileParameter and assigns it to the FileParameters field.

func (*RepositoryHelmAppSpec) SetName ¶

func (o *RepositoryHelmAppSpec) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RepositoryHelmAppSpec) SetParameters ¶

func (o *RepositoryHelmAppSpec) SetParameters(v []V1alpha1HelmParameter)

SetParameters gets a reference to the given []V1alpha1HelmParameter and assigns it to the Parameters field.

func (*RepositoryHelmAppSpec) SetValueFiles ¶

func (o *RepositoryHelmAppSpec) SetValueFiles(v []string)

SetValueFiles gets a reference to the given []string and assigns it to the ValueFiles field.

func (*RepositoryHelmAppSpec) SetValues ¶

func (o *RepositoryHelmAppSpec) SetValues(v string)

SetValues gets a reference to the given string and assigns it to the Values field.

func (RepositoryHelmAppSpec) ToMap ¶

func (o RepositoryHelmAppSpec) ToMap() (map[string]interface{}, error)

type RepositoryHelmChart ¶

type RepositoryHelmChart struct {
	Name     *string  `json:"name,omitempty"`
	Versions []string `json:"versions,omitempty"`
}

RepositoryHelmChart struct for RepositoryHelmChart

func NewRepositoryHelmChart ¶

func NewRepositoryHelmChart() *RepositoryHelmChart

NewRepositoryHelmChart instantiates a new RepositoryHelmChart 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 NewRepositoryHelmChartWithDefaults ¶

func NewRepositoryHelmChartWithDefaults() *RepositoryHelmChart

NewRepositoryHelmChartWithDefaults instantiates a new RepositoryHelmChart 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 (*RepositoryHelmChart) GetName ¶

func (o *RepositoryHelmChart) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RepositoryHelmChart) GetNameOk ¶

func (o *RepositoryHelmChart) 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 (*RepositoryHelmChart) GetVersions ¶

func (o *RepositoryHelmChart) GetVersions() []string

GetVersions returns the Versions field value if set, zero value otherwise.

func (*RepositoryHelmChart) GetVersionsOk ¶

func (o *RepositoryHelmChart) GetVersionsOk() ([]string, bool)

GetVersionsOk returns a tuple with the Versions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryHelmChart) HasName ¶

func (o *RepositoryHelmChart) HasName() bool

HasName returns a boolean if a field has been set.

func (*RepositoryHelmChart) HasVersions ¶

func (o *RepositoryHelmChart) HasVersions() bool

HasVersions returns a boolean if a field has been set.

func (RepositoryHelmChart) MarshalJSON ¶

func (o RepositoryHelmChart) MarshalJSON() ([]byte, error)

func (*RepositoryHelmChart) SetName ¶

func (o *RepositoryHelmChart) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RepositoryHelmChart) SetVersions ¶

func (o *RepositoryHelmChart) SetVersions(v []string)

SetVersions gets a reference to the given []string and assigns it to the Versions field.

func (RepositoryHelmChart) ToMap ¶

func (o RepositoryHelmChart) ToMap() (map[string]interface{}, error)

type RepositoryHelmChartsResponse ¶

type RepositoryHelmChartsResponse struct {
	Items []RepositoryHelmChart `json:"items,omitempty"`
}

RepositoryHelmChartsResponse struct for RepositoryHelmChartsResponse

func NewRepositoryHelmChartsResponse ¶

func NewRepositoryHelmChartsResponse() *RepositoryHelmChartsResponse

NewRepositoryHelmChartsResponse instantiates a new RepositoryHelmChartsResponse 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 NewRepositoryHelmChartsResponseWithDefaults ¶

func NewRepositoryHelmChartsResponseWithDefaults() *RepositoryHelmChartsResponse

NewRepositoryHelmChartsResponseWithDefaults instantiates a new RepositoryHelmChartsResponse 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 (*RepositoryHelmChartsResponse) GetItems ¶

GetItems returns the Items field value if set, zero value otherwise.

func (*RepositoryHelmChartsResponse) GetItemsOk ¶

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryHelmChartsResponse) HasItems ¶

func (o *RepositoryHelmChartsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (RepositoryHelmChartsResponse) MarshalJSON ¶

func (o RepositoryHelmChartsResponse) MarshalJSON() ([]byte, error)

func (*RepositoryHelmChartsResponse) SetItems ¶

SetItems gets a reference to the given []RepositoryHelmChart and assigns it to the Items field.

func (RepositoryHelmChartsResponse) ToMap ¶

func (o RepositoryHelmChartsResponse) ToMap() (map[string]interface{}, error)

type RepositoryKustomizeAppSpec ¶

type RepositoryKustomizeAppSpec struct {
	// images is a list of available images.
	Images []string `json:"images,omitempty"`
}

RepositoryKustomizeAppSpec struct for RepositoryKustomizeAppSpec

func NewRepositoryKustomizeAppSpec ¶

func NewRepositoryKustomizeAppSpec() *RepositoryKustomizeAppSpec

NewRepositoryKustomizeAppSpec instantiates a new RepositoryKustomizeAppSpec 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 NewRepositoryKustomizeAppSpecWithDefaults ¶

func NewRepositoryKustomizeAppSpecWithDefaults() *RepositoryKustomizeAppSpec

NewRepositoryKustomizeAppSpecWithDefaults instantiates a new RepositoryKustomizeAppSpec 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 (*RepositoryKustomizeAppSpec) GetImages ¶

func (o *RepositoryKustomizeAppSpec) GetImages() []string

GetImages returns the Images field value if set, zero value otherwise.

func (*RepositoryKustomizeAppSpec) GetImagesOk ¶

func (o *RepositoryKustomizeAppSpec) GetImagesOk() ([]string, bool)

GetImagesOk returns a tuple with the Images field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryKustomizeAppSpec) HasImages ¶

func (o *RepositoryKustomizeAppSpec) HasImages() bool

HasImages returns a boolean if a field has been set.

func (RepositoryKustomizeAppSpec) MarshalJSON ¶

func (o RepositoryKustomizeAppSpec) MarshalJSON() ([]byte, error)

func (*RepositoryKustomizeAppSpec) SetImages ¶

func (o *RepositoryKustomizeAppSpec) SetImages(v []string)

SetImages gets a reference to the given []string and assigns it to the Images field.

func (RepositoryKustomizeAppSpec) ToMap ¶

func (o RepositoryKustomizeAppSpec) ToMap() (map[string]interface{}, error)

type RepositoryManifestResponse ¶

type RepositoryManifestResponse struct {
	Manifests    []string `json:"manifests,omitempty"`
	Namespace    *string  `json:"namespace,omitempty"`
	Revision     *string  `json:"revision,omitempty"`
	Server       *string  `json:"server,omitempty"`
	SourceType   *string  `json:"sourceType,omitempty"`
	VerifyResult *string  `json:"verifyResult,omitempty"`
}

RepositoryManifestResponse struct for RepositoryManifestResponse

func NewRepositoryManifestResponse ¶

func NewRepositoryManifestResponse() *RepositoryManifestResponse

NewRepositoryManifestResponse instantiates a new RepositoryManifestResponse 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 NewRepositoryManifestResponseWithDefaults ¶

func NewRepositoryManifestResponseWithDefaults() *RepositoryManifestResponse

NewRepositoryManifestResponseWithDefaults instantiates a new RepositoryManifestResponse 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 (*RepositoryManifestResponse) GetManifests ¶

func (o *RepositoryManifestResponse) GetManifests() []string

GetManifests returns the Manifests field value if set, zero value otherwise.

func (*RepositoryManifestResponse) GetManifestsOk ¶

func (o *RepositoryManifestResponse) GetManifestsOk() ([]string, bool)

GetManifestsOk returns a tuple with the Manifests field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryManifestResponse) GetNamespace ¶

func (o *RepositoryManifestResponse) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*RepositoryManifestResponse) GetNamespaceOk ¶

func (o *RepositoryManifestResponse) 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 (*RepositoryManifestResponse) GetRevision ¶

func (o *RepositoryManifestResponse) GetRevision() string

GetRevision returns the Revision field value if set, zero value otherwise.

func (*RepositoryManifestResponse) GetRevisionOk ¶

func (o *RepositoryManifestResponse) GetRevisionOk() (*string, bool)

GetRevisionOk returns a tuple with the Revision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryManifestResponse) GetServer ¶

func (o *RepositoryManifestResponse) GetServer() string

GetServer returns the Server field value if set, zero value otherwise.

func (*RepositoryManifestResponse) GetServerOk ¶

func (o *RepositoryManifestResponse) GetServerOk() (*string, bool)

GetServerOk returns a tuple with the Server field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryManifestResponse) GetSourceType ¶

func (o *RepositoryManifestResponse) GetSourceType() string

GetSourceType returns the SourceType field value if set, zero value otherwise.

func (*RepositoryManifestResponse) GetSourceTypeOk ¶

func (o *RepositoryManifestResponse) GetSourceTypeOk() (*string, bool)

GetSourceTypeOk returns a tuple with the SourceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryManifestResponse) GetVerifyResult ¶

func (o *RepositoryManifestResponse) GetVerifyResult() string

GetVerifyResult returns the VerifyResult field value if set, zero value otherwise.

func (*RepositoryManifestResponse) GetVerifyResultOk ¶

func (o *RepositoryManifestResponse) GetVerifyResultOk() (*string, bool)

GetVerifyResultOk returns a tuple with the VerifyResult field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryManifestResponse) HasManifests ¶

func (o *RepositoryManifestResponse) HasManifests() bool

HasManifests returns a boolean if a field has been set.

func (*RepositoryManifestResponse) HasNamespace ¶

func (o *RepositoryManifestResponse) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*RepositoryManifestResponse) HasRevision ¶

func (o *RepositoryManifestResponse) HasRevision() bool

HasRevision returns a boolean if a field has been set.

func (*RepositoryManifestResponse) HasServer ¶

func (o *RepositoryManifestResponse) HasServer() bool

HasServer returns a boolean if a field has been set.

func (*RepositoryManifestResponse) HasSourceType ¶

func (o *RepositoryManifestResponse) HasSourceType() bool

HasSourceType returns a boolean if a field has been set.

func (*RepositoryManifestResponse) HasVerifyResult ¶

func (o *RepositoryManifestResponse) HasVerifyResult() bool

HasVerifyResult returns a boolean if a field has been set.

func (RepositoryManifestResponse) MarshalJSON ¶

func (o RepositoryManifestResponse) MarshalJSON() ([]byte, error)

func (*RepositoryManifestResponse) SetManifests ¶

func (o *RepositoryManifestResponse) SetManifests(v []string)

SetManifests gets a reference to the given []string and assigns it to the Manifests field.

func (*RepositoryManifestResponse) SetNamespace ¶

func (o *RepositoryManifestResponse) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*RepositoryManifestResponse) SetRevision ¶

func (o *RepositoryManifestResponse) SetRevision(v string)

SetRevision gets a reference to the given string and assigns it to the Revision field.

func (*RepositoryManifestResponse) SetServer ¶

func (o *RepositoryManifestResponse) SetServer(v string)

SetServer gets a reference to the given string and assigns it to the Server field.

func (*RepositoryManifestResponse) SetSourceType ¶

func (o *RepositoryManifestResponse) SetSourceType(v string)

SetSourceType gets a reference to the given string and assigns it to the SourceType field.

func (*RepositoryManifestResponse) SetVerifyResult ¶

func (o *RepositoryManifestResponse) SetVerifyResult(v string)

SetVerifyResult gets a reference to the given string and assigns it to the VerifyResult field.

func (RepositoryManifestResponse) ToMap ¶

func (o RepositoryManifestResponse) ToMap() (map[string]interface{}, error)

type RepositoryRefs ¶

type RepositoryRefs struct {
	Branches []string `json:"branches,omitempty"`
	Tags     []string `json:"tags,omitempty"`
}

RepositoryRefs struct for RepositoryRefs

func NewRepositoryRefs ¶

func NewRepositoryRefs() *RepositoryRefs

NewRepositoryRefs instantiates a new RepositoryRefs 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 NewRepositoryRefsWithDefaults ¶

func NewRepositoryRefsWithDefaults() *RepositoryRefs

NewRepositoryRefsWithDefaults instantiates a new RepositoryRefs 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 (*RepositoryRefs) GetBranches ¶

func (o *RepositoryRefs) GetBranches() []string

GetBranches returns the Branches field value if set, zero value otherwise.

func (*RepositoryRefs) GetBranchesOk ¶

func (o *RepositoryRefs) GetBranchesOk() ([]string, bool)

GetBranchesOk returns a tuple with the Branches field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryRefs) GetTags ¶

func (o *RepositoryRefs) GetTags() []string

GetTags returns the Tags field value if set, zero value otherwise.

func (*RepositoryRefs) GetTagsOk ¶

func (o *RepositoryRefs) GetTagsOk() ([]string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryRefs) HasBranches ¶

func (o *RepositoryRefs) HasBranches() bool

HasBranches returns a boolean if a field has been set.

func (*RepositoryRefs) HasTags ¶

func (o *RepositoryRefs) HasTags() bool

HasTags returns a boolean if a field has been set.

func (RepositoryRefs) MarshalJSON ¶

func (o RepositoryRefs) MarshalJSON() ([]byte, error)

func (*RepositoryRefs) SetBranches ¶

func (o *RepositoryRefs) SetBranches(v []string)

SetBranches gets a reference to the given []string and assigns it to the Branches field.

func (*RepositoryRefs) SetTags ¶

func (o *RepositoryRefs) SetTags(v []string)

SetTags gets a reference to the given []string and assigns it to the Tags field.

func (RepositoryRefs) ToMap ¶

func (o RepositoryRefs) ToMap() (map[string]interface{}, error)

type RepositoryRepoAppDetailsQuery ¶

type RepositoryRepoAppDetailsQuery struct {
	AppName    *string                    `json:"appName,omitempty"`
	AppProject *string                    `json:"appProject,omitempty"`
	Source     *V1alpha1ApplicationSource `json:"source,omitempty"`
}

RepositoryRepoAppDetailsQuery struct for RepositoryRepoAppDetailsQuery

func NewRepositoryRepoAppDetailsQuery ¶

func NewRepositoryRepoAppDetailsQuery() *RepositoryRepoAppDetailsQuery

NewRepositoryRepoAppDetailsQuery instantiates a new RepositoryRepoAppDetailsQuery 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 NewRepositoryRepoAppDetailsQueryWithDefaults ¶

func NewRepositoryRepoAppDetailsQueryWithDefaults() *RepositoryRepoAppDetailsQuery

NewRepositoryRepoAppDetailsQueryWithDefaults instantiates a new RepositoryRepoAppDetailsQuery 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 (*RepositoryRepoAppDetailsQuery) GetAppName ¶

func (o *RepositoryRepoAppDetailsQuery) GetAppName() string

GetAppName returns the AppName field value if set, zero value otherwise.

func (*RepositoryRepoAppDetailsQuery) GetAppNameOk ¶

func (o *RepositoryRepoAppDetailsQuery) 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 (*RepositoryRepoAppDetailsQuery) GetAppProject ¶

func (o *RepositoryRepoAppDetailsQuery) GetAppProject() string

GetAppProject returns the AppProject field value if set, zero value otherwise.

func (*RepositoryRepoAppDetailsQuery) GetAppProjectOk ¶

func (o *RepositoryRepoAppDetailsQuery) GetAppProjectOk() (*string, bool)

GetAppProjectOk returns a tuple with the AppProject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryRepoAppDetailsQuery) GetSource ¶

GetSource returns the Source field value if set, zero value otherwise.

func (*RepositoryRepoAppDetailsQuery) GetSourceOk ¶

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryRepoAppDetailsQuery) HasAppName ¶

func (o *RepositoryRepoAppDetailsQuery) HasAppName() bool

HasAppName returns a boolean if a field has been set.

func (*RepositoryRepoAppDetailsQuery) HasAppProject ¶

func (o *RepositoryRepoAppDetailsQuery) HasAppProject() bool

HasAppProject returns a boolean if a field has been set.

func (*RepositoryRepoAppDetailsQuery) HasSource ¶

func (o *RepositoryRepoAppDetailsQuery) HasSource() bool

HasSource returns a boolean if a field has been set.

func (RepositoryRepoAppDetailsQuery) MarshalJSON ¶

func (o RepositoryRepoAppDetailsQuery) MarshalJSON() ([]byte, error)

func (*RepositoryRepoAppDetailsQuery) SetAppName ¶

func (o *RepositoryRepoAppDetailsQuery) SetAppName(v string)

SetAppName gets a reference to the given string and assigns it to the AppName field.

func (*RepositoryRepoAppDetailsQuery) SetAppProject ¶

func (o *RepositoryRepoAppDetailsQuery) SetAppProject(v string)

SetAppProject gets a reference to the given string and assigns it to the AppProject field.

func (*RepositoryRepoAppDetailsQuery) SetSource ¶

SetSource gets a reference to the given V1alpha1ApplicationSource and assigns it to the Source field.

func (RepositoryRepoAppDetailsQuery) ToMap ¶

func (o RepositoryRepoAppDetailsQuery) ToMap() (map[string]interface{}, error)

type RepositoryRepoAppDetailsResponse ¶

type RepositoryRepoAppDetailsResponse struct {
	Directory map[string]interface{}      `json:"directory,omitempty"`
	Helm      *RepositoryHelmAppSpec      `json:"helm,omitempty"`
	Kustomize *RepositoryKustomizeAppSpec `json:"kustomize,omitempty"`
	Type      *string                     `json:"type,omitempty"`
}

RepositoryRepoAppDetailsResponse struct for RepositoryRepoAppDetailsResponse

func NewRepositoryRepoAppDetailsResponse ¶

func NewRepositoryRepoAppDetailsResponse() *RepositoryRepoAppDetailsResponse

NewRepositoryRepoAppDetailsResponse instantiates a new RepositoryRepoAppDetailsResponse 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 NewRepositoryRepoAppDetailsResponseWithDefaults ¶

func NewRepositoryRepoAppDetailsResponseWithDefaults() *RepositoryRepoAppDetailsResponse

NewRepositoryRepoAppDetailsResponseWithDefaults instantiates a new RepositoryRepoAppDetailsResponse 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 (*RepositoryRepoAppDetailsResponse) GetDirectory ¶

func (o *RepositoryRepoAppDetailsResponse) GetDirectory() map[string]interface{}

GetDirectory returns the Directory field value if set, zero value otherwise.

func (*RepositoryRepoAppDetailsResponse) GetDirectoryOk ¶

func (o *RepositoryRepoAppDetailsResponse) GetDirectoryOk() (map[string]interface{}, bool)

GetDirectoryOk returns a tuple with the Directory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryRepoAppDetailsResponse) GetHelm ¶

GetHelm returns the Helm field value if set, zero value otherwise.

func (*RepositoryRepoAppDetailsResponse) GetHelmOk ¶

GetHelmOk returns a tuple with the Helm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryRepoAppDetailsResponse) GetKustomize ¶

GetKustomize returns the Kustomize field value if set, zero value otherwise.

func (*RepositoryRepoAppDetailsResponse) GetKustomizeOk ¶

GetKustomizeOk returns a tuple with the Kustomize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryRepoAppDetailsResponse) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*RepositoryRepoAppDetailsResponse) GetTypeOk ¶

func (o *RepositoryRepoAppDetailsResponse) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryRepoAppDetailsResponse) HasDirectory ¶

func (o *RepositoryRepoAppDetailsResponse) HasDirectory() bool

HasDirectory returns a boolean if a field has been set.

func (*RepositoryRepoAppDetailsResponse) HasHelm ¶

HasHelm returns a boolean if a field has been set.

func (*RepositoryRepoAppDetailsResponse) HasKustomize ¶

func (o *RepositoryRepoAppDetailsResponse) HasKustomize() bool

HasKustomize returns a boolean if a field has been set.

func (*RepositoryRepoAppDetailsResponse) HasType ¶

HasType returns a boolean if a field has been set.

func (RepositoryRepoAppDetailsResponse) MarshalJSON ¶

func (o RepositoryRepoAppDetailsResponse) MarshalJSON() ([]byte, error)

func (*RepositoryRepoAppDetailsResponse) SetDirectory ¶

func (o *RepositoryRepoAppDetailsResponse) SetDirectory(v map[string]interface{})

SetDirectory gets a reference to the given map[string]interface{} and assigns it to the Directory field.

func (*RepositoryRepoAppDetailsResponse) SetHelm ¶

SetHelm gets a reference to the given RepositoryHelmAppSpec and assigns it to the Helm field.

func (*RepositoryRepoAppDetailsResponse) SetKustomize ¶

SetKustomize gets a reference to the given RepositoryKustomizeAppSpec and assigns it to the Kustomize field.

func (*RepositoryRepoAppDetailsResponse) SetType ¶

SetType gets a reference to the given string and assigns it to the Type field.

func (RepositoryRepoAppDetailsResponse) ToMap ¶

func (o RepositoryRepoAppDetailsResponse) ToMap() (map[string]interface{}, error)

type RepositoryRepoAppsResponse ¶

type RepositoryRepoAppsResponse struct {
	Items []RepositoryAppInfo `json:"items,omitempty"`
}

RepositoryRepoAppsResponse struct for RepositoryRepoAppsResponse

func NewRepositoryRepoAppsResponse ¶

func NewRepositoryRepoAppsResponse() *RepositoryRepoAppsResponse

NewRepositoryRepoAppsResponse instantiates a new RepositoryRepoAppsResponse 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 NewRepositoryRepoAppsResponseWithDefaults ¶

func NewRepositoryRepoAppsResponseWithDefaults() *RepositoryRepoAppsResponse

NewRepositoryRepoAppsResponseWithDefaults instantiates a new RepositoryRepoAppsResponse 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 (*RepositoryRepoAppsResponse) GetItems ¶

GetItems returns the Items field value if set, zero value otherwise.

func (*RepositoryRepoAppsResponse) GetItemsOk ¶

func (o *RepositoryRepoAppsResponse) GetItemsOk() ([]RepositoryAppInfo, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryRepoAppsResponse) HasItems ¶

func (o *RepositoryRepoAppsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (RepositoryRepoAppsResponse) MarshalJSON ¶

func (o RepositoryRepoAppsResponse) MarshalJSON() ([]byte, error)

func (*RepositoryRepoAppsResponse) SetItems ¶

SetItems gets a reference to the given []RepositoryAppInfo and assigns it to the Items field.

func (RepositoryRepoAppsResponse) ToMap ¶

func (o RepositoryRepoAppsResponse) ToMap() (map[string]interface{}, error)

type RepositoryServiceApiService ¶

type RepositoryServiceApiService service

RepositoryServiceApiService RepositoryServiceApi service

func (*RepositoryServiceApiService) RepositoryServiceCreateRepository ¶

RepositoryServiceCreateRepository CreateRepository creates a new repository configuration

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRepositoryServiceCreateRepositoryRequest

func (*RepositoryServiceApiService) RepositoryServiceCreateRepositoryExecute ¶

Execute executes the request

@return V1alpha1Repository

func (*RepositoryServiceApiService) RepositoryServiceDeleteRepository ¶

func (a *RepositoryServiceApiService) RepositoryServiceDeleteRepository(ctx context.Context, repo string) ApiRepositoryServiceDeleteRepositoryRequest

RepositoryServiceDeleteRepository DeleteRepository deletes a repository from the configuration

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param repo Repo URL for query
@return ApiRepositoryServiceDeleteRepositoryRequest

func (*RepositoryServiceApiService) RepositoryServiceDeleteRepositoryExecute ¶

func (a *RepositoryServiceApiService) RepositoryServiceDeleteRepositoryExecute(r ApiRepositoryServiceDeleteRepositoryRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*RepositoryServiceApiService) RepositoryServiceGet ¶

RepositoryServiceGet Get returns a repository or its credentials

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param repo Repo URL for query
@return ApiRepositoryServiceGetRequest

func (*RepositoryServiceApiService) RepositoryServiceGetAppDetails ¶

func (a *RepositoryServiceApiService) RepositoryServiceGetAppDetails(ctx context.Context, sourceRepoURL string) ApiRepositoryServiceGetAppDetailsRequest

RepositoryServiceGetAppDetails GetAppDetails returns application details by given path

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param sourceRepoURL RepoURL is the URL to the repository (Git or Helm) that contains the application manifests
@return ApiRepositoryServiceGetAppDetailsRequest

func (*RepositoryServiceApiService) RepositoryServiceGetAppDetailsExecute ¶

Execute executes the request

@return RepositoryRepoAppDetailsResponse

func (*RepositoryServiceApiService) RepositoryServiceGetExecute ¶

Execute executes the request

@return V1alpha1Repository

func (*RepositoryServiceApiService) RepositoryServiceGetHelmCharts ¶

func (a *RepositoryServiceApiService) RepositoryServiceGetHelmCharts(ctx context.Context, repo string) ApiRepositoryServiceGetHelmChartsRequest

RepositoryServiceGetHelmCharts GetHelmCharts returns list of helm charts in the specified repository

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param repo Repo URL for query
@return ApiRepositoryServiceGetHelmChartsRequest

func (*RepositoryServiceApiService) RepositoryServiceGetHelmChartsExecute ¶

Execute executes the request

@return RepositoryHelmChartsResponse

func (*RepositoryServiceApiService) RepositoryServiceListApps ¶

RepositoryServiceListApps ListApps returns list of apps in the repo

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param repo
@return ApiRepositoryServiceListAppsRequest

func (*RepositoryServiceApiService) RepositoryServiceListAppsExecute ¶

Execute executes the request

@return RepositoryRepoAppsResponse

func (*RepositoryServiceApiService) RepositoryServiceListRefs ¶

RepositoryServiceListRefs Method for RepositoryServiceListRefs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param repo Repo URL for query
@return ApiRepositoryServiceListRefsRequest

func (*RepositoryServiceApiService) RepositoryServiceListRefsExecute ¶

Execute executes the request

@return RepositoryRefs

func (*RepositoryServiceApiService) RepositoryServiceListRepositories ¶

RepositoryServiceListRepositories ListRepositories gets a list of all configured repositories

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRepositoryServiceListRepositoriesRequest

func (*RepositoryServiceApiService) RepositoryServiceListRepositoriesExecute ¶

Execute executes the request

@return V1alpha1RepositoryList

func (*RepositoryServiceApiService) RepositoryServiceUpdateRepository ¶

func (a *RepositoryServiceApiService) RepositoryServiceUpdateRepository(ctx context.Context, repoRepo string) ApiRepositoryServiceUpdateRepositoryRequest

RepositoryServiceUpdateRepository UpdateRepository updates a repository configuration

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param repoRepo Repo contains the URL to the remote repository
@return ApiRepositoryServiceUpdateRepositoryRequest

func (*RepositoryServiceApiService) RepositoryServiceUpdateRepositoryExecute ¶

Execute executes the request

@return V1alpha1Repository

func (*RepositoryServiceApiService) RepositoryServiceValidateAccess ¶

func (a *RepositoryServiceApiService) RepositoryServiceValidateAccess(ctx context.Context, repo string) ApiRepositoryServiceValidateAccessRequest

RepositoryServiceValidateAccess ValidateAccess validates access to a repository with given parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param repo The URL to the repo
@return ApiRepositoryServiceValidateAccessRequest

func (*RepositoryServiceApiService) RepositoryServiceValidateAccessExecute ¶

func (a *RepositoryServiceApiService) RepositoryServiceValidateAccessExecute(r ApiRepositoryServiceValidateAccessRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

type RuntimeError ¶

type RuntimeError struct {
	Code    *int32        `json:"code,omitempty"`
	Details []ProtobufAny `json:"details,omitempty"`
	Error   *string       `json:"error,omitempty"`
	Message *string       `json:"message,omitempty"`
}

RuntimeError struct for RuntimeError

func NewRuntimeError ¶

func NewRuntimeError() *RuntimeError

NewRuntimeError instantiates a new RuntimeError 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 NewRuntimeErrorWithDefaults ¶

func NewRuntimeErrorWithDefaults() *RuntimeError

NewRuntimeErrorWithDefaults instantiates a new RuntimeError 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 (*RuntimeError) GetCode ¶

func (o *RuntimeError) GetCode() int32

GetCode returns the Code field value if set, zero value otherwise.

func (*RuntimeError) GetCodeOk ¶

func (o *RuntimeError) GetCodeOk() (*int32, bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RuntimeError) GetDetails ¶

func (o *RuntimeError) GetDetails() []ProtobufAny

GetDetails returns the Details field value if set, zero value otherwise.

func (*RuntimeError) GetDetailsOk ¶

func (o *RuntimeError) GetDetailsOk() ([]ProtobufAny, bool)

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RuntimeError) GetError ¶

func (o *RuntimeError) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*RuntimeError) GetErrorOk ¶

func (o *RuntimeError) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RuntimeError) GetMessage ¶

func (o *RuntimeError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*RuntimeError) GetMessageOk ¶

func (o *RuntimeError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RuntimeError) HasCode ¶

func (o *RuntimeError) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*RuntimeError) HasDetails ¶

func (o *RuntimeError) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*RuntimeError) HasError ¶

func (o *RuntimeError) HasError() bool

HasError returns a boolean if a field has been set.

func (*RuntimeError) HasMessage ¶

func (o *RuntimeError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (RuntimeError) MarshalJSON ¶

func (o RuntimeError) MarshalJSON() ([]byte, error)

func (*RuntimeError) SetCode ¶

func (o *RuntimeError) SetCode(v int32)

SetCode gets a reference to the given int32 and assigns it to the Code field.

func (*RuntimeError) SetDetails ¶

func (o *RuntimeError) SetDetails(v []ProtobufAny)

SetDetails gets a reference to the given []ProtobufAny and assigns it to the Details field.

func (*RuntimeError) SetError ¶

func (o *RuntimeError) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*RuntimeError) SetMessage ¶

func (o *RuntimeError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (RuntimeError) ToMap ¶

func (o RuntimeError) ToMap() (map[string]interface{}, error)

type RuntimeStreamError ¶

type RuntimeStreamError struct {
	Details    []ProtobufAny `json:"details,omitempty"`
	GrpcCode   *int32        `json:"grpc_code,omitempty"`
	HttpCode   *int32        `json:"http_code,omitempty"`
	HttpStatus *string       `json:"http_status,omitempty"`
	Message    *string       `json:"message,omitempty"`
}

RuntimeStreamError struct for RuntimeStreamError

func NewRuntimeStreamError ¶

func NewRuntimeStreamError() *RuntimeStreamError

NewRuntimeStreamError instantiates a new RuntimeStreamError 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 NewRuntimeStreamErrorWithDefaults ¶

func NewRuntimeStreamErrorWithDefaults() *RuntimeStreamError

NewRuntimeStreamErrorWithDefaults instantiates a new RuntimeStreamError 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 (*RuntimeStreamError) GetDetails ¶

func (o *RuntimeStreamError) GetDetails() []ProtobufAny

GetDetails returns the Details field value if set, zero value otherwise.

func (*RuntimeStreamError) GetDetailsOk ¶

func (o *RuntimeStreamError) GetDetailsOk() ([]ProtobufAny, bool)

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RuntimeStreamError) GetGrpcCode ¶

func (o *RuntimeStreamError) GetGrpcCode() int32

GetGrpcCode returns the GrpcCode field value if set, zero value otherwise.

func (*RuntimeStreamError) GetGrpcCodeOk ¶

func (o *RuntimeStreamError) GetGrpcCodeOk() (*int32, bool)

GetGrpcCodeOk returns a tuple with the GrpcCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RuntimeStreamError) GetHttpCode ¶

func (o *RuntimeStreamError) GetHttpCode() int32

GetHttpCode returns the HttpCode field value if set, zero value otherwise.

func (*RuntimeStreamError) GetHttpCodeOk ¶

func (o *RuntimeStreamError) GetHttpCodeOk() (*int32, bool)

GetHttpCodeOk returns a tuple with the HttpCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RuntimeStreamError) GetHttpStatus ¶

func (o *RuntimeStreamError) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value if set, zero value otherwise.

func (*RuntimeStreamError) GetHttpStatusOk ¶

func (o *RuntimeStreamError) GetHttpStatusOk() (*string, bool)

GetHttpStatusOk returns a tuple with the HttpStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RuntimeStreamError) GetMessage ¶

func (o *RuntimeStreamError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*RuntimeStreamError) GetMessageOk ¶

func (o *RuntimeStreamError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RuntimeStreamError) HasDetails ¶

func (o *RuntimeStreamError) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*RuntimeStreamError) HasGrpcCode ¶

func (o *RuntimeStreamError) HasGrpcCode() bool

HasGrpcCode returns a boolean if a field has been set.

func (*RuntimeStreamError) HasHttpCode ¶

func (o *RuntimeStreamError) HasHttpCode() bool

HasHttpCode returns a boolean if a field has been set.

func (*RuntimeStreamError) HasHttpStatus ¶

func (o *RuntimeStreamError) HasHttpStatus() bool

HasHttpStatus returns a boolean if a field has been set.

func (*RuntimeStreamError) HasMessage ¶

func (o *RuntimeStreamError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (RuntimeStreamError) MarshalJSON ¶

func (o RuntimeStreamError) MarshalJSON() ([]byte, error)

func (*RuntimeStreamError) SetDetails ¶

func (o *RuntimeStreamError) SetDetails(v []ProtobufAny)

SetDetails gets a reference to the given []ProtobufAny and assigns it to the Details field.

func (*RuntimeStreamError) SetGrpcCode ¶

func (o *RuntimeStreamError) SetGrpcCode(v int32)

SetGrpcCode gets a reference to the given int32 and assigns it to the GrpcCode field.

func (*RuntimeStreamError) SetHttpCode ¶

func (o *RuntimeStreamError) SetHttpCode(v int32)

SetHttpCode gets a reference to the given int32 and assigns it to the HttpCode field.

func (*RuntimeStreamError) SetHttpStatus ¶

func (o *RuntimeStreamError) SetHttpStatus(v string)

SetHttpStatus gets a reference to the given string and assigns it to the HttpStatus field.

func (*RuntimeStreamError) SetMessage ¶

func (o *RuntimeStreamError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (RuntimeStreamError) ToMap ¶

func (o RuntimeStreamError) ToMap() (map[string]interface{}, error)

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 SessionGetUserInfoResponse ¶

type SessionGetUserInfoResponse struct {
	Groups   []string `json:"groups,omitempty"`
	Iss      *string  `json:"iss,omitempty"`
	LoggedIn *bool    `json:"loggedIn,omitempty"`
	Username *string  `json:"username,omitempty"`
}

SessionGetUserInfoResponse struct for SessionGetUserInfoResponse

func NewSessionGetUserInfoResponse ¶

func NewSessionGetUserInfoResponse() *SessionGetUserInfoResponse

NewSessionGetUserInfoResponse instantiates a new SessionGetUserInfoResponse 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 NewSessionGetUserInfoResponseWithDefaults ¶

func NewSessionGetUserInfoResponseWithDefaults() *SessionGetUserInfoResponse

NewSessionGetUserInfoResponseWithDefaults instantiates a new SessionGetUserInfoResponse 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 (*SessionGetUserInfoResponse) GetGroups ¶

func (o *SessionGetUserInfoResponse) GetGroups() []string

GetGroups returns the Groups field value if set, zero value otherwise.

func (*SessionGetUserInfoResponse) GetGroupsOk ¶

func (o *SessionGetUserInfoResponse) GetGroupsOk() ([]string, bool)

GetGroupsOk returns a tuple with the Groups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionGetUserInfoResponse) GetIss ¶

func (o *SessionGetUserInfoResponse) GetIss() string

GetIss returns the Iss field value if set, zero value otherwise.

func (*SessionGetUserInfoResponse) GetIssOk ¶

func (o *SessionGetUserInfoResponse) GetIssOk() (*string, bool)

GetIssOk returns a tuple with the Iss field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionGetUserInfoResponse) GetLoggedIn ¶

func (o *SessionGetUserInfoResponse) GetLoggedIn() bool

GetLoggedIn returns the LoggedIn field value if set, zero value otherwise.

func (*SessionGetUserInfoResponse) GetLoggedInOk ¶

func (o *SessionGetUserInfoResponse) GetLoggedInOk() (*bool, bool)

GetLoggedInOk returns a tuple with the LoggedIn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionGetUserInfoResponse) GetUsername ¶

func (o *SessionGetUserInfoResponse) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*SessionGetUserInfoResponse) GetUsernameOk ¶

func (o *SessionGetUserInfoResponse) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionGetUserInfoResponse) HasGroups ¶

func (o *SessionGetUserInfoResponse) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (*SessionGetUserInfoResponse) HasIss ¶

func (o *SessionGetUserInfoResponse) HasIss() bool

HasIss returns a boolean if a field has been set.

func (*SessionGetUserInfoResponse) HasLoggedIn ¶

func (o *SessionGetUserInfoResponse) HasLoggedIn() bool

HasLoggedIn returns a boolean if a field has been set.

func (*SessionGetUserInfoResponse) HasUsername ¶

func (o *SessionGetUserInfoResponse) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (SessionGetUserInfoResponse) MarshalJSON ¶

func (o SessionGetUserInfoResponse) MarshalJSON() ([]byte, error)

func (*SessionGetUserInfoResponse) SetGroups ¶

func (o *SessionGetUserInfoResponse) SetGroups(v []string)

SetGroups gets a reference to the given []string and assigns it to the Groups field.

func (*SessionGetUserInfoResponse) SetIss ¶

func (o *SessionGetUserInfoResponse) SetIss(v string)

SetIss gets a reference to the given string and assigns it to the Iss field.

func (*SessionGetUserInfoResponse) SetLoggedIn ¶

func (o *SessionGetUserInfoResponse) SetLoggedIn(v bool)

SetLoggedIn gets a reference to the given bool and assigns it to the LoggedIn field.

func (*SessionGetUserInfoResponse) SetUsername ¶

func (o *SessionGetUserInfoResponse) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (SessionGetUserInfoResponse) ToMap ¶

func (o SessionGetUserInfoResponse) ToMap() (map[string]interface{}, error)

type SessionServiceApiService ¶

type SessionServiceApiService service

SessionServiceApiService SessionServiceApi service

func (*SessionServiceApiService) SessionServiceCreate ¶

SessionServiceCreate Create a new JWT for authentication and set a cookie if using HTTP

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSessionServiceCreateRequest

func (*SessionServiceApiService) SessionServiceCreateExecute ¶

Execute executes the request

@return SessionSessionResponse

func (*SessionServiceApiService) SessionServiceDelete ¶

SessionServiceDelete Delete an existing JWT cookie if using HTTP

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSessionServiceDeleteRequest

func (*SessionServiceApiService) SessionServiceDeleteExecute ¶

Execute executes the request

@return SessionSessionResponse

func (*SessionServiceApiService) SessionServiceGetUserInfo ¶

SessionServiceGetUserInfo Get the current user's info

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSessionServiceGetUserInfoRequest

func (*SessionServiceApiService) SessionServiceGetUserInfoExecute ¶

Execute executes the request

@return SessionGetUserInfoResponse

type SessionSessionCreateRequest ¶

type SessionSessionCreateRequest struct {
	Password *string `json:"password,omitempty"`
	Token    *string `json:"token,omitempty"`
	Username *string `json:"username,omitempty"`
}

SessionSessionCreateRequest SessionCreateRequest is for logging in.

func NewSessionSessionCreateRequest ¶

func NewSessionSessionCreateRequest() *SessionSessionCreateRequest

NewSessionSessionCreateRequest instantiates a new SessionSessionCreateRequest 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 NewSessionSessionCreateRequestWithDefaults ¶

func NewSessionSessionCreateRequestWithDefaults() *SessionSessionCreateRequest

NewSessionSessionCreateRequestWithDefaults instantiates a new SessionSessionCreateRequest 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 (*SessionSessionCreateRequest) GetPassword ¶

func (o *SessionSessionCreateRequest) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*SessionSessionCreateRequest) GetPasswordOk ¶

func (o *SessionSessionCreateRequest) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionSessionCreateRequest) GetToken ¶

func (o *SessionSessionCreateRequest) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*SessionSessionCreateRequest) GetTokenOk ¶

func (o *SessionSessionCreateRequest) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionSessionCreateRequest) GetUsername ¶

func (o *SessionSessionCreateRequest) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*SessionSessionCreateRequest) GetUsernameOk ¶

func (o *SessionSessionCreateRequest) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionSessionCreateRequest) HasPassword ¶

func (o *SessionSessionCreateRequest) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*SessionSessionCreateRequest) HasToken ¶

func (o *SessionSessionCreateRequest) HasToken() bool

HasToken returns a boolean if a field has been set.

func (*SessionSessionCreateRequest) HasUsername ¶

func (o *SessionSessionCreateRequest) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (SessionSessionCreateRequest) MarshalJSON ¶

func (o SessionSessionCreateRequest) MarshalJSON() ([]byte, error)

func (*SessionSessionCreateRequest) SetPassword ¶

func (o *SessionSessionCreateRequest) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*SessionSessionCreateRequest) SetToken ¶

func (o *SessionSessionCreateRequest) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

func (*SessionSessionCreateRequest) SetUsername ¶

func (o *SessionSessionCreateRequest) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (SessionSessionCreateRequest) ToMap ¶

func (o SessionSessionCreateRequest) ToMap() (map[string]interface{}, error)

type SessionSessionResponse ¶

type SessionSessionResponse struct {
	Token *string `json:"token,omitempty"`
}

SessionSessionResponse SessionResponse wraps the created token or returns an empty string if deleted.

func NewSessionSessionResponse ¶

func NewSessionSessionResponse() *SessionSessionResponse

NewSessionSessionResponse instantiates a new SessionSessionResponse 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 NewSessionSessionResponseWithDefaults ¶

func NewSessionSessionResponseWithDefaults() *SessionSessionResponse

NewSessionSessionResponseWithDefaults instantiates a new SessionSessionResponse 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 (*SessionSessionResponse) GetToken ¶

func (o *SessionSessionResponse) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*SessionSessionResponse) GetTokenOk ¶

func (o *SessionSessionResponse) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionSessionResponse) HasToken ¶

func (o *SessionSessionResponse) HasToken() bool

HasToken returns a boolean if a field has been set.

func (SessionSessionResponse) MarshalJSON ¶

func (o SessionSessionResponse) MarshalJSON() ([]byte, error)

func (*SessionSessionResponse) SetToken ¶

func (o *SessionSessionResponse) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

func (SessionSessionResponse) ToMap ¶

func (o SessionSessionResponse) ToMap() (map[string]interface{}, error)

type SettingsServiceApiService ¶

type SettingsServiceApiService service

SettingsServiceApiService SettingsServiceApi service

func (*SettingsServiceApiService) SettingsServiceGet ¶

SettingsServiceGet Get returns Argo CD settings

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSettingsServiceGetRequest

func (*SettingsServiceApiService) SettingsServiceGetExecute ¶

Execute executes the request

@return ClusterSettings

type StreamResultOfApplicationLogEntry ¶

type StreamResultOfApplicationLogEntry struct {
	Error  *RuntimeStreamError  `json:"error,omitempty"`
	Result *ApplicationLogEntry `json:"result,omitempty"`
}

StreamResultOfApplicationLogEntry struct for StreamResultOfApplicationLogEntry

func NewStreamResultOfApplicationLogEntry ¶

func NewStreamResultOfApplicationLogEntry() *StreamResultOfApplicationLogEntry

NewStreamResultOfApplicationLogEntry instantiates a new StreamResultOfApplicationLogEntry 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 NewStreamResultOfApplicationLogEntryWithDefaults ¶

func NewStreamResultOfApplicationLogEntryWithDefaults() *StreamResultOfApplicationLogEntry

NewStreamResultOfApplicationLogEntryWithDefaults instantiates a new StreamResultOfApplicationLogEntry 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 (*StreamResultOfApplicationLogEntry) GetError ¶

GetError returns the Error field value if set, zero value otherwise.

func (*StreamResultOfApplicationLogEntry) GetErrorOk ¶

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamResultOfApplicationLogEntry) GetResult ¶

GetResult returns the Result field value if set, zero value otherwise.

func (*StreamResultOfApplicationLogEntry) GetResultOk ¶

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamResultOfApplicationLogEntry) HasError ¶

HasError returns a boolean if a field has been set.

func (*StreamResultOfApplicationLogEntry) HasResult ¶

func (o *StreamResultOfApplicationLogEntry) HasResult() bool

HasResult returns a boolean if a field has been set.

func (StreamResultOfApplicationLogEntry) MarshalJSON ¶

func (o StreamResultOfApplicationLogEntry) MarshalJSON() ([]byte, error)

func (*StreamResultOfApplicationLogEntry) SetError ¶

SetError gets a reference to the given RuntimeStreamError and assigns it to the Error field.

func (*StreamResultOfApplicationLogEntry) SetResult ¶

SetResult gets a reference to the given ApplicationLogEntry and assigns it to the Result field.

func (StreamResultOfApplicationLogEntry) ToMap ¶

func (o StreamResultOfApplicationLogEntry) ToMap() (map[string]interface{}, error)

type StreamResultOfV1alpha1ApplicationTree ¶

type StreamResultOfV1alpha1ApplicationTree struct {
	Error  *RuntimeStreamError      `json:"error,omitempty"`
	Result *V1alpha1ApplicationTree `json:"result,omitempty"`
}

StreamResultOfV1alpha1ApplicationTree struct for StreamResultOfV1alpha1ApplicationTree

func NewStreamResultOfV1alpha1ApplicationTree ¶

func NewStreamResultOfV1alpha1ApplicationTree() *StreamResultOfV1alpha1ApplicationTree

NewStreamResultOfV1alpha1ApplicationTree instantiates a new StreamResultOfV1alpha1ApplicationTree 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 NewStreamResultOfV1alpha1ApplicationTreeWithDefaults ¶

func NewStreamResultOfV1alpha1ApplicationTreeWithDefaults() *StreamResultOfV1alpha1ApplicationTree

NewStreamResultOfV1alpha1ApplicationTreeWithDefaults instantiates a new StreamResultOfV1alpha1ApplicationTree 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 (*StreamResultOfV1alpha1ApplicationTree) GetError ¶

GetError returns the Error field value if set, zero value otherwise.

func (*StreamResultOfV1alpha1ApplicationTree) GetErrorOk ¶

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamResultOfV1alpha1ApplicationTree) GetResult ¶

GetResult returns the Result field value if set, zero value otherwise.

func (*StreamResultOfV1alpha1ApplicationTree) GetResultOk ¶

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamResultOfV1alpha1ApplicationTree) HasError ¶

HasError returns a boolean if a field has been set.

func (*StreamResultOfV1alpha1ApplicationTree) HasResult ¶

HasResult returns a boolean if a field has been set.

func (StreamResultOfV1alpha1ApplicationTree) MarshalJSON ¶

func (o StreamResultOfV1alpha1ApplicationTree) MarshalJSON() ([]byte, error)

func (*StreamResultOfV1alpha1ApplicationTree) SetError ¶

SetError gets a reference to the given RuntimeStreamError and assigns it to the Error field.

func (*StreamResultOfV1alpha1ApplicationTree) SetResult ¶

SetResult gets a reference to the given V1alpha1ApplicationTree and assigns it to the Result field.

func (StreamResultOfV1alpha1ApplicationTree) ToMap ¶

func (o StreamResultOfV1alpha1ApplicationTree) ToMap() (map[string]interface{}, error)

type StreamResultOfV1alpha1ApplicationWatchEvent ¶

type StreamResultOfV1alpha1ApplicationWatchEvent struct {
	Error  *RuntimeStreamError            `json:"error,omitempty"`
	Result *V1alpha1ApplicationWatchEvent `json:"result,omitempty"`
}

StreamResultOfV1alpha1ApplicationWatchEvent struct for StreamResultOfV1alpha1ApplicationWatchEvent

func NewStreamResultOfV1alpha1ApplicationWatchEvent ¶

func NewStreamResultOfV1alpha1ApplicationWatchEvent() *StreamResultOfV1alpha1ApplicationWatchEvent

NewStreamResultOfV1alpha1ApplicationWatchEvent instantiates a new StreamResultOfV1alpha1ApplicationWatchEvent 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 NewStreamResultOfV1alpha1ApplicationWatchEventWithDefaults ¶

func NewStreamResultOfV1alpha1ApplicationWatchEventWithDefaults() *StreamResultOfV1alpha1ApplicationWatchEvent

NewStreamResultOfV1alpha1ApplicationWatchEventWithDefaults instantiates a new StreamResultOfV1alpha1ApplicationWatchEvent 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 (*StreamResultOfV1alpha1ApplicationWatchEvent) GetError ¶

GetError returns the Error field value if set, zero value otherwise.

func (*StreamResultOfV1alpha1ApplicationWatchEvent) GetErrorOk ¶

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamResultOfV1alpha1ApplicationWatchEvent) GetResult ¶

GetResult returns the Result field value if set, zero value otherwise.

func (*StreamResultOfV1alpha1ApplicationWatchEvent) GetResultOk ¶

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamResultOfV1alpha1ApplicationWatchEvent) HasError ¶

HasError returns a boolean if a field has been set.

func (*StreamResultOfV1alpha1ApplicationWatchEvent) HasResult ¶

HasResult returns a boolean if a field has been set.

func (StreamResultOfV1alpha1ApplicationWatchEvent) MarshalJSON ¶

func (*StreamResultOfV1alpha1ApplicationWatchEvent) SetError ¶

SetError gets a reference to the given RuntimeStreamError and assigns it to the Error field.

func (*StreamResultOfV1alpha1ApplicationWatchEvent) SetResult ¶

SetResult gets a reference to the given V1alpha1ApplicationWatchEvent and assigns it to the Result field.

func (StreamResultOfV1alpha1ApplicationWatchEvent) ToMap ¶

func (o StreamResultOfV1alpha1ApplicationWatchEvent) ToMap() (map[string]interface{}, error)

type V1Event ¶

type V1Event struct {
	Action             *string            `json:"action,omitempty"`
	Count              *int32             `json:"count,omitempty"`
	EventTime          *V1MicroTime       `json:"eventTime,omitempty"`
	FirstTimestamp     *string            `json:"firstTimestamp,omitempty"`
	InvolvedObject     *V1ObjectReference `json:"involvedObject,omitempty"`
	LastTimestamp      *string            `json:"lastTimestamp,omitempty"`
	Message            *string            `json:"message,omitempty"`
	Metadata           *V1ObjectMeta      `json:"metadata,omitempty"`
	Reason             *string            `json:"reason,omitempty"`
	Related            *V1ObjectReference `json:"related,omitempty"`
	ReportingComponent *string            `json:"reportingComponent,omitempty"`
	ReportingInstance  *string            `json:"reportingInstance,omitempty"`
	Series             *V1EventSeries     `json:"series,omitempty"`
	Source             *V1EventSource     `json:"source,omitempty"`
	Type               *string            `json:"type,omitempty"`
}

V1Event Event is a report of an event somewhere in the cluster. Events have a limited retention time and triggers and messages may evolve with time. Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason. Events should be treated as informative, best-effort, supplemental data.

func NewV1Event ¶

func NewV1Event() *V1Event

NewV1Event instantiates a new V1Event 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 NewV1EventWithDefaults ¶

func NewV1EventWithDefaults() *V1Event

NewV1EventWithDefaults instantiates a new V1Event 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 (*V1Event) GetAction ¶

func (o *V1Event) GetAction() string

GetAction returns the Action field value if set, zero value otherwise.

func (*V1Event) GetActionOk ¶

func (o *V1Event) GetActionOk() (*string, bool)

GetActionOk returns a tuple with the Action field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1Event) GetCount ¶

func (o *V1Event) GetCount() int32

GetCount returns the Count field value if set, zero value otherwise.

func (*V1Event) GetCountOk ¶

func (o *V1Event) GetCountOk() (*int32, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1Event) GetEventTime ¶

func (o *V1Event) GetEventTime() V1MicroTime

GetEventTime returns the EventTime field value if set, zero value otherwise.

func (*V1Event) GetEventTimeOk ¶

func (o *V1Event) GetEventTimeOk() (*V1MicroTime, bool)

GetEventTimeOk returns a tuple with the EventTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1Event) GetFirstTimestamp ¶

func (o *V1Event) GetFirstTimestamp() string

GetFirstTimestamp returns the FirstTimestamp field value if set, zero value otherwise.

func (*V1Event) GetFirstTimestampOk ¶

func (o *V1Event) GetFirstTimestampOk() (*string, bool)

GetFirstTimestampOk returns a tuple with the FirstTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1Event) GetInvolvedObject ¶

func (o *V1Event) GetInvolvedObject() V1ObjectReference

GetInvolvedObject returns the InvolvedObject field value if set, zero value otherwise.

func (*V1Event) GetInvolvedObjectOk ¶

func (o *V1Event) GetInvolvedObjectOk() (*V1ObjectReference, bool)

GetInvolvedObjectOk returns a tuple with the InvolvedObject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1Event) GetLastTimestamp ¶

func (o *V1Event) GetLastTimestamp() string

GetLastTimestamp returns the LastTimestamp field value if set, zero value otherwise.

func (*V1Event) GetLastTimestampOk ¶

func (o *V1Event) GetLastTimestampOk() (*string, bool)

GetLastTimestampOk returns a tuple with the LastTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1Event) GetMessage ¶

func (o *V1Event) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*V1Event) GetMessageOk ¶

func (o *V1Event) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1Event) GetMetadata ¶

func (o *V1Event) GetMetadata() V1ObjectMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*V1Event) GetMetadataOk ¶

func (o *V1Event) GetMetadataOk() (*V1ObjectMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1Event) GetReason ¶

func (o *V1Event) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*V1Event) GetReasonOk ¶

func (o *V1Event) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1Event) GetRelated ¶

func (o *V1Event) GetRelated() V1ObjectReference

GetRelated returns the Related field value if set, zero value otherwise.

func (*V1Event) GetRelatedOk ¶

func (o *V1Event) GetRelatedOk() (*V1ObjectReference, bool)

GetRelatedOk returns a tuple with the Related field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1Event) GetReportingComponent ¶

func (o *V1Event) GetReportingComponent() string

GetReportingComponent returns the ReportingComponent field value if set, zero value otherwise.

func (*V1Event) GetReportingComponentOk ¶

func (o *V1Event) GetReportingComponentOk() (*string, bool)

GetReportingComponentOk returns a tuple with the ReportingComponent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1Event) GetReportingInstance ¶

func (o *V1Event) GetReportingInstance() string

GetReportingInstance returns the ReportingInstance field value if set, zero value otherwise.

func (*V1Event) GetReportingInstanceOk ¶

func (o *V1Event) GetReportingInstanceOk() (*string, bool)

GetReportingInstanceOk returns a tuple with the ReportingInstance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1Event) GetSeries ¶

func (o *V1Event) GetSeries() V1EventSeries

GetSeries returns the Series field value if set, zero value otherwise.

func (*V1Event) GetSeriesOk ¶

func (o *V1Event) GetSeriesOk() (*V1EventSeries, bool)

GetSeriesOk returns a tuple with the Series field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1Event) GetSource ¶

func (o *V1Event) GetSource() V1EventSource

GetSource returns the Source field value if set, zero value otherwise.

func (*V1Event) GetSourceOk ¶

func (o *V1Event) GetSourceOk() (*V1EventSource, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1Event) GetType ¶

func (o *V1Event) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*V1Event) GetTypeOk ¶

func (o *V1Event) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1Event) HasAction ¶

func (o *V1Event) HasAction() bool

HasAction returns a boolean if a field has been set.

func (*V1Event) HasCount ¶

func (o *V1Event) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*V1Event) HasEventTime ¶

func (o *V1Event) HasEventTime() bool

HasEventTime returns a boolean if a field has been set.

func (*V1Event) HasFirstTimestamp ¶

func (o *V1Event) HasFirstTimestamp() bool

HasFirstTimestamp returns a boolean if a field has been set.

func (*V1Event) HasInvolvedObject ¶

func (o *V1Event) HasInvolvedObject() bool

HasInvolvedObject returns a boolean if a field has been set.

func (*V1Event) HasLastTimestamp ¶

func (o *V1Event) HasLastTimestamp() bool

HasLastTimestamp returns a boolean if a field has been set.

func (*V1Event) HasMessage ¶

func (o *V1Event) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*V1Event) HasMetadata ¶

func (o *V1Event) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*V1Event) HasReason ¶

func (o *V1Event) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*V1Event) HasRelated ¶

func (o *V1Event) HasRelated() bool

HasRelated returns a boolean if a field has been set.

func (*V1Event) HasReportingComponent ¶

func (o *V1Event) HasReportingComponent() bool

HasReportingComponent returns a boolean if a field has been set.

func (*V1Event) HasReportingInstance ¶

func (o *V1Event) HasReportingInstance() bool

HasReportingInstance returns a boolean if a field has been set.

func (*V1Event) HasSeries ¶

func (o *V1Event) HasSeries() bool

HasSeries returns a boolean if a field has been set.

func (*V1Event) HasSource ¶

func (o *V1Event) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*V1Event) HasType ¶

func (o *V1Event) HasType() bool

HasType returns a boolean if a field has been set.

func (V1Event) MarshalJSON ¶

func (o V1Event) MarshalJSON() ([]byte, error)

func (*V1Event) SetAction ¶

func (o *V1Event) SetAction(v string)

SetAction gets a reference to the given string and assigns it to the Action field.

func (*V1Event) SetCount ¶

func (o *V1Event) SetCount(v int32)

SetCount gets a reference to the given int32 and assigns it to the Count field.

func (*V1Event) SetEventTime ¶

func (o *V1Event) SetEventTime(v V1MicroTime)

SetEventTime gets a reference to the given V1MicroTime and assigns it to the EventTime field.

func (*V1Event) SetFirstTimestamp ¶

func (o *V1Event) SetFirstTimestamp(v string)

SetFirstTimestamp gets a reference to the given string and assigns it to the FirstTimestamp field.

func (*V1Event) SetInvolvedObject ¶

func (o *V1Event) SetInvolvedObject(v V1ObjectReference)

SetInvolvedObject gets a reference to the given V1ObjectReference and assigns it to the InvolvedObject field.

func (*V1Event) SetLastTimestamp ¶

func (o *V1Event) SetLastTimestamp(v string)

SetLastTimestamp gets a reference to the given string and assigns it to the LastTimestamp field.

func (*V1Event) SetMessage ¶

func (o *V1Event) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*V1Event) SetMetadata ¶

func (o *V1Event) SetMetadata(v V1ObjectMeta)

SetMetadata gets a reference to the given V1ObjectMeta and assigns it to the Metadata field.

func (*V1Event) SetReason ¶

func (o *V1Event) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (*V1Event) SetRelated ¶

func (o *V1Event) SetRelated(v V1ObjectReference)

SetRelated gets a reference to the given V1ObjectReference and assigns it to the Related field.

func (*V1Event) SetReportingComponent ¶

func (o *V1Event) SetReportingComponent(v string)

SetReportingComponent gets a reference to the given string and assigns it to the ReportingComponent field.

func (*V1Event) SetReportingInstance ¶

func (o *V1Event) SetReportingInstance(v string)

SetReportingInstance gets a reference to the given string and assigns it to the ReportingInstance field.

func (*V1Event) SetSeries ¶

func (o *V1Event) SetSeries(v V1EventSeries)

SetSeries gets a reference to the given V1EventSeries and assigns it to the Series field.

func (*V1Event) SetSource ¶

func (o *V1Event) SetSource(v V1EventSource)

SetSource gets a reference to the given V1EventSource and assigns it to the Source field.

func (*V1Event) SetType ¶

func (o *V1Event) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (V1Event) ToMap ¶

func (o V1Event) ToMap() (map[string]interface{}, error)

type V1EventList ¶

type V1EventList struct {
	Items    []V1Event   `json:"items,omitempty"`
	Metadata *V1ListMeta `json:"metadata,omitempty"`
}

V1EventList EventList is a list of events.

func NewV1EventList ¶

func NewV1EventList() *V1EventList

NewV1EventList instantiates a new V1EventList 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 NewV1EventListWithDefaults ¶

func NewV1EventListWithDefaults() *V1EventList

NewV1EventListWithDefaults instantiates a new V1EventList 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 (*V1EventList) GetItems ¶

func (o *V1EventList) GetItems() []V1Event

GetItems returns the Items field value if set, zero value otherwise.

func (*V1EventList) GetItemsOk ¶

func (o *V1EventList) GetItemsOk() ([]V1Event, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1EventList) GetMetadata ¶

func (o *V1EventList) GetMetadata() V1ListMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*V1EventList) GetMetadataOk ¶

func (o *V1EventList) GetMetadataOk() (*V1ListMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1EventList) HasItems ¶

func (o *V1EventList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*V1EventList) HasMetadata ¶

func (o *V1EventList) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (V1EventList) MarshalJSON ¶

func (o V1EventList) MarshalJSON() ([]byte, error)

func (*V1EventList) SetItems ¶

func (o *V1EventList) SetItems(v []V1Event)

SetItems gets a reference to the given []V1Event and assigns it to the Items field.

func (*V1EventList) SetMetadata ¶

func (o *V1EventList) SetMetadata(v V1ListMeta)

SetMetadata gets a reference to the given V1ListMeta and assigns it to the Metadata field.

func (V1EventList) ToMap ¶

func (o V1EventList) ToMap() (map[string]interface{}, error)

type V1EventSeries ¶

type V1EventSeries struct {
	Count            *int32       `json:"count,omitempty"`
	LastObservedTime *V1MicroTime `json:"lastObservedTime,omitempty"`
}

V1EventSeries EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.

func NewV1EventSeries ¶

func NewV1EventSeries() *V1EventSeries

NewV1EventSeries instantiates a new V1EventSeries 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 NewV1EventSeriesWithDefaults ¶

func NewV1EventSeriesWithDefaults() *V1EventSeries

NewV1EventSeriesWithDefaults instantiates a new V1EventSeries 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 (*V1EventSeries) GetCount ¶

func (o *V1EventSeries) GetCount() int32

GetCount returns the Count field value if set, zero value otherwise.

func (*V1EventSeries) GetCountOk ¶

func (o *V1EventSeries) GetCountOk() (*int32, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1EventSeries) GetLastObservedTime ¶

func (o *V1EventSeries) GetLastObservedTime() V1MicroTime

GetLastObservedTime returns the LastObservedTime field value if set, zero value otherwise.

func (*V1EventSeries) GetLastObservedTimeOk ¶

func (o *V1EventSeries) GetLastObservedTimeOk() (*V1MicroTime, bool)

GetLastObservedTimeOk returns a tuple with the LastObservedTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1EventSeries) HasCount ¶

func (o *V1EventSeries) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*V1EventSeries) HasLastObservedTime ¶

func (o *V1EventSeries) HasLastObservedTime() bool

HasLastObservedTime returns a boolean if a field has been set.

func (V1EventSeries) MarshalJSON ¶

func (o V1EventSeries) MarshalJSON() ([]byte, error)

func (*V1EventSeries) SetCount ¶

func (o *V1EventSeries) SetCount(v int32)

SetCount gets a reference to the given int32 and assigns it to the Count field.

func (*V1EventSeries) SetLastObservedTime ¶

func (o *V1EventSeries) SetLastObservedTime(v V1MicroTime)

SetLastObservedTime gets a reference to the given V1MicroTime and assigns it to the LastObservedTime field.

func (V1EventSeries) ToMap ¶

func (o V1EventSeries) ToMap() (map[string]interface{}, error)

type V1EventSource ¶

type V1EventSource struct {
	Component *string `json:"component,omitempty"`
	Host      *string `json:"host,omitempty"`
}

V1EventSource EventSource contains information for an event.

func NewV1EventSource ¶

func NewV1EventSource() *V1EventSource

NewV1EventSource instantiates a new V1EventSource 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 NewV1EventSourceWithDefaults ¶

func NewV1EventSourceWithDefaults() *V1EventSource

NewV1EventSourceWithDefaults instantiates a new V1EventSource 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 (*V1EventSource) GetComponent ¶

func (o *V1EventSource) GetComponent() string

GetComponent returns the Component field value if set, zero value otherwise.

func (*V1EventSource) GetComponentOk ¶

func (o *V1EventSource) GetComponentOk() (*string, bool)

GetComponentOk returns a tuple with the Component field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1EventSource) GetHost ¶

func (o *V1EventSource) GetHost() string

GetHost returns the Host field value if set, zero value otherwise.

func (*V1EventSource) GetHostOk ¶

func (o *V1EventSource) GetHostOk() (*string, bool)

GetHostOk returns a tuple with the Host field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1EventSource) HasComponent ¶

func (o *V1EventSource) HasComponent() bool

HasComponent returns a boolean if a field has been set.

func (*V1EventSource) HasHost ¶

func (o *V1EventSource) HasHost() bool

HasHost returns a boolean if a field has been set.

func (V1EventSource) MarshalJSON ¶

func (o V1EventSource) MarshalJSON() ([]byte, error)

func (*V1EventSource) SetComponent ¶

func (o *V1EventSource) SetComponent(v string)

SetComponent gets a reference to the given string and assigns it to the Component field.

func (*V1EventSource) SetHost ¶

func (o *V1EventSource) SetHost(v string)

SetHost gets a reference to the given string and assigns it to the Host field.

func (V1EventSource) ToMap ¶

func (o V1EventSource) ToMap() (map[string]interface{}, error)

type V1FieldsV1 ¶

type V1FieldsV1 struct {
	// Raw is the underlying serialization of this object.
	Raw *string `json:"Raw,omitempty"`
}

V1FieldsV1 FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format. Each key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set. The exact format is defined in sigs.k8s.io/structured-merge-diff +protobuf.options.(gogoproto.goproto_stringer)=false

func NewV1FieldsV1 ¶

func NewV1FieldsV1() *V1FieldsV1

NewV1FieldsV1 instantiates a new V1FieldsV1 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 NewV1FieldsV1WithDefaults ¶

func NewV1FieldsV1WithDefaults() *V1FieldsV1

NewV1FieldsV1WithDefaults instantiates a new V1FieldsV1 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 (*V1FieldsV1) GetRaw ¶

func (o *V1FieldsV1) GetRaw() string

GetRaw returns the Raw field value if set, zero value otherwise.

func (*V1FieldsV1) GetRawOk ¶

func (o *V1FieldsV1) GetRawOk() (*string, bool)

GetRawOk returns a tuple with the Raw field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1FieldsV1) HasRaw ¶

func (o *V1FieldsV1) HasRaw() bool

HasRaw returns a boolean if a field has been set.

func (V1FieldsV1) MarshalJSON ¶

func (o V1FieldsV1) MarshalJSON() ([]byte, error)

func (*V1FieldsV1) SetRaw ¶

func (o *V1FieldsV1) SetRaw(v string)

SetRaw gets a reference to the given string and assigns it to the Raw field.

func (V1FieldsV1) ToMap ¶

func (o V1FieldsV1) ToMap() (map[string]interface{}, error)

type V1GroupKind ¶

type V1GroupKind struct {
	Group *string `json:"group,omitempty"`
	Kind  *string `json:"kind,omitempty"`
}

V1GroupKind +protobuf.options.(gogoproto.goproto_stringer)=false

func NewV1GroupKind ¶

func NewV1GroupKind() *V1GroupKind

NewV1GroupKind instantiates a new V1GroupKind 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 NewV1GroupKindWithDefaults ¶

func NewV1GroupKindWithDefaults() *V1GroupKind

NewV1GroupKindWithDefaults instantiates a new V1GroupKind 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 (*V1GroupKind) GetGroup ¶

func (o *V1GroupKind) GetGroup() string

GetGroup returns the Group field value if set, zero value otherwise.

func (*V1GroupKind) GetGroupOk ¶

func (o *V1GroupKind) 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 (*V1GroupKind) GetKind ¶

func (o *V1GroupKind) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*V1GroupKind) GetKindOk ¶

func (o *V1GroupKind) 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 (*V1GroupKind) HasGroup ¶

func (o *V1GroupKind) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (*V1GroupKind) HasKind ¶

func (o *V1GroupKind) HasKind() bool

HasKind returns a boolean if a field has been set.

func (V1GroupKind) MarshalJSON ¶

func (o V1GroupKind) MarshalJSON() ([]byte, error)

func (*V1GroupKind) SetGroup ¶

func (o *V1GroupKind) SetGroup(v string)

SetGroup gets a reference to the given string and assigns it to the Group field.

func (*V1GroupKind) SetKind ¶

func (o *V1GroupKind) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (V1GroupKind) ToMap ¶

func (o V1GroupKind) ToMap() (map[string]interface{}, error)

type V1JSON ¶

type V1JSON struct {
	Raw *string `json:"raw,omitempty"`
}

V1JSON JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil.

func NewV1JSON ¶

func NewV1JSON() *V1JSON

NewV1JSON instantiates a new V1JSON 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 NewV1JSONWithDefaults ¶

func NewV1JSONWithDefaults() *V1JSON

NewV1JSONWithDefaults instantiates a new V1JSON 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 (*V1JSON) GetRaw ¶

func (o *V1JSON) GetRaw() string

GetRaw returns the Raw field value if set, zero value otherwise.

func (*V1JSON) GetRawOk ¶

func (o *V1JSON) GetRawOk() (*string, bool)

GetRawOk returns a tuple with the Raw field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1JSON) HasRaw ¶

func (o *V1JSON) HasRaw() bool

HasRaw returns a boolean if a field has been set.

func (V1JSON) MarshalJSON ¶

func (o V1JSON) MarshalJSON() ([]byte, error)

func (*V1JSON) SetRaw ¶

func (o *V1JSON) SetRaw(v string)

SetRaw gets a reference to the given string and assigns it to the Raw field.

func (V1JSON) ToMap ¶

func (o V1JSON) ToMap() (map[string]interface{}, error)

type V1LabelSelector ¶

type V1LabelSelector struct {
	MatchExpressions []V1LabelSelectorRequirement `json:"matchExpressions,omitempty"`
	MatchLabels      *map[string]string           `json:"matchLabels,omitempty"`
}

V1LabelSelector struct for V1LabelSelector

func NewV1LabelSelector ¶

func NewV1LabelSelector() *V1LabelSelector

NewV1LabelSelector instantiates a new V1LabelSelector 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 NewV1LabelSelectorWithDefaults ¶

func NewV1LabelSelectorWithDefaults() *V1LabelSelector

NewV1LabelSelectorWithDefaults instantiates a new V1LabelSelector 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 (*V1LabelSelector) GetMatchExpressions ¶

func (o *V1LabelSelector) GetMatchExpressions() []V1LabelSelectorRequirement

GetMatchExpressions returns the MatchExpressions field value if set, zero value otherwise.

func (*V1LabelSelector) GetMatchExpressionsOk ¶

func (o *V1LabelSelector) GetMatchExpressionsOk() ([]V1LabelSelectorRequirement, bool)

GetMatchExpressionsOk returns a tuple with the MatchExpressions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1LabelSelector) GetMatchLabels ¶

func (o *V1LabelSelector) GetMatchLabels() map[string]string

GetMatchLabels returns the MatchLabels field value if set, zero value otherwise.

func (*V1LabelSelector) GetMatchLabelsOk ¶

func (o *V1LabelSelector) GetMatchLabelsOk() (*map[string]string, bool)

GetMatchLabelsOk returns a tuple with the MatchLabels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1LabelSelector) HasMatchExpressions ¶

func (o *V1LabelSelector) HasMatchExpressions() bool

HasMatchExpressions returns a boolean if a field has been set.

func (*V1LabelSelector) HasMatchLabels ¶

func (o *V1LabelSelector) HasMatchLabels() bool

HasMatchLabels returns a boolean if a field has been set.

func (V1LabelSelector) MarshalJSON ¶

func (o V1LabelSelector) MarshalJSON() ([]byte, error)

func (*V1LabelSelector) SetMatchExpressions ¶

func (o *V1LabelSelector) SetMatchExpressions(v []V1LabelSelectorRequirement)

SetMatchExpressions gets a reference to the given []V1LabelSelectorRequirement and assigns it to the MatchExpressions field.

func (*V1LabelSelector) SetMatchLabels ¶

func (o *V1LabelSelector) SetMatchLabels(v map[string]string)

SetMatchLabels gets a reference to the given map[string]string and assigns it to the MatchLabels field.

func (V1LabelSelector) ToMap ¶

func (o V1LabelSelector) ToMap() (map[string]interface{}, error)

type V1LabelSelectorRequirement ¶

type V1LabelSelectorRequirement struct {
	Key *string `json:"key,omitempty"`
	// operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
	Operator *string  `json:"operator,omitempty"`
	Values   []string `json:"values,omitempty"`
}

V1LabelSelectorRequirement A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

func NewV1LabelSelectorRequirement ¶

func NewV1LabelSelectorRequirement() *V1LabelSelectorRequirement

NewV1LabelSelectorRequirement instantiates a new V1LabelSelectorRequirement 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 NewV1LabelSelectorRequirementWithDefaults ¶

func NewV1LabelSelectorRequirementWithDefaults() *V1LabelSelectorRequirement

NewV1LabelSelectorRequirementWithDefaults instantiates a new V1LabelSelectorRequirement 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 (*V1LabelSelectorRequirement) GetKey ¶

func (o *V1LabelSelectorRequirement) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*V1LabelSelectorRequirement) GetKeyOk ¶

func (o *V1LabelSelectorRequirement) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1LabelSelectorRequirement) GetOperator ¶

func (o *V1LabelSelectorRequirement) GetOperator() string

GetOperator returns the Operator field value if set, zero value otherwise.

func (*V1LabelSelectorRequirement) GetOperatorOk ¶

func (o *V1LabelSelectorRequirement) GetOperatorOk() (*string, bool)

GetOperatorOk returns a tuple with the Operator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1LabelSelectorRequirement) GetValues ¶

func (o *V1LabelSelectorRequirement) GetValues() []string

GetValues returns the Values field value if set, zero value otherwise.

func (*V1LabelSelectorRequirement) GetValuesOk ¶

func (o *V1LabelSelectorRequirement) GetValuesOk() ([]string, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1LabelSelectorRequirement) HasKey ¶

func (o *V1LabelSelectorRequirement) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*V1LabelSelectorRequirement) HasOperator ¶

func (o *V1LabelSelectorRequirement) HasOperator() bool

HasOperator returns a boolean if a field has been set.

func (*V1LabelSelectorRequirement) HasValues ¶

func (o *V1LabelSelectorRequirement) HasValues() bool

HasValues returns a boolean if a field has been set.

func (V1LabelSelectorRequirement) MarshalJSON ¶

func (o V1LabelSelectorRequirement) MarshalJSON() ([]byte, error)

func (*V1LabelSelectorRequirement) SetKey ¶

func (o *V1LabelSelectorRequirement) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*V1LabelSelectorRequirement) SetOperator ¶

func (o *V1LabelSelectorRequirement) SetOperator(v string)

SetOperator gets a reference to the given string and assigns it to the Operator field.

func (*V1LabelSelectorRequirement) SetValues ¶

func (o *V1LabelSelectorRequirement) SetValues(v []string)

SetValues gets a reference to the given []string and assigns it to the Values field.

func (V1LabelSelectorRequirement) ToMap ¶

func (o V1LabelSelectorRequirement) ToMap() (map[string]interface{}, error)

type V1ListMeta ¶

type V1ListMeta struct {
	// continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.
	Continue           *string `json:"continue,omitempty"`
	RemainingItemCount *string `json:"remainingItemCount,omitempty"`
	ResourceVersion    *string `json:"resourceVersion,omitempty"`
	SelfLink           *string `json:"selfLink,omitempty"`
}

V1ListMeta ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.

func NewV1ListMeta ¶

func NewV1ListMeta() *V1ListMeta

NewV1ListMeta instantiates a new V1ListMeta 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 NewV1ListMetaWithDefaults ¶

func NewV1ListMetaWithDefaults() *V1ListMeta

NewV1ListMetaWithDefaults instantiates a new V1ListMeta 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 (*V1ListMeta) GetContinue ¶

func (o *V1ListMeta) GetContinue() string

GetContinue returns the Continue field value if set, zero value otherwise.

func (*V1ListMeta) GetContinueOk ¶

func (o *V1ListMeta) GetContinueOk() (*string, bool)

GetContinueOk returns a tuple with the Continue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ListMeta) GetRemainingItemCount ¶

func (o *V1ListMeta) GetRemainingItemCount() string

GetRemainingItemCount returns the RemainingItemCount field value if set, zero value otherwise.

func (*V1ListMeta) GetRemainingItemCountOk ¶

func (o *V1ListMeta) GetRemainingItemCountOk() (*string, bool)

GetRemainingItemCountOk returns a tuple with the RemainingItemCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ListMeta) GetResourceVersion ¶

func (o *V1ListMeta) GetResourceVersion() string

GetResourceVersion returns the ResourceVersion field value if set, zero value otherwise.

func (*V1ListMeta) GetResourceVersionOk ¶

func (o *V1ListMeta) GetResourceVersionOk() (*string, bool)

GetResourceVersionOk returns a tuple with the ResourceVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *V1ListMeta) GetSelfLink() string

GetSelfLink returns the SelfLink field value if set, zero value otherwise.

func (*V1ListMeta) GetSelfLinkOk ¶

func (o *V1ListMeta) GetSelfLinkOk() (*string, bool)

GetSelfLinkOk returns a tuple with the SelfLink field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ListMeta) HasContinue ¶

func (o *V1ListMeta) HasContinue() bool

HasContinue returns a boolean if a field has been set.

func (*V1ListMeta) HasRemainingItemCount ¶

func (o *V1ListMeta) HasRemainingItemCount() bool

HasRemainingItemCount returns a boolean if a field has been set.

func (*V1ListMeta) HasResourceVersion ¶

func (o *V1ListMeta) HasResourceVersion() bool

HasResourceVersion returns a boolean if a field has been set.

func (o *V1ListMeta) HasSelfLink() bool

HasSelfLink returns a boolean if a field has been set.

func (V1ListMeta) MarshalJSON ¶

func (o V1ListMeta) MarshalJSON() ([]byte, error)

func (*V1ListMeta) SetContinue ¶

func (o *V1ListMeta) SetContinue(v string)

SetContinue gets a reference to the given string and assigns it to the Continue field.

func (*V1ListMeta) SetRemainingItemCount ¶

func (o *V1ListMeta) SetRemainingItemCount(v string)

SetRemainingItemCount gets a reference to the given string and assigns it to the RemainingItemCount field.

func (*V1ListMeta) SetResourceVersion ¶

func (o *V1ListMeta) SetResourceVersion(v string)

SetResourceVersion gets a reference to the given string and assigns it to the ResourceVersion field.

func (o *V1ListMeta) SetSelfLink(v string)

SetSelfLink gets a reference to the given string and assigns it to the SelfLink field.

func (V1ListMeta) ToMap ¶

func (o V1ListMeta) ToMap() (map[string]interface{}, error)

type V1LoadBalancerIngress ¶

type V1LoadBalancerIngress struct {
	Hostname *string        `json:"hostname,omitempty"`
	Ip       *string        `json:"ip,omitempty"`
	Ports    []V1PortStatus `json:"ports,omitempty"`
}

V1LoadBalancerIngress LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.

func NewV1LoadBalancerIngress ¶

func NewV1LoadBalancerIngress() *V1LoadBalancerIngress

NewV1LoadBalancerIngress instantiates a new V1LoadBalancerIngress 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 NewV1LoadBalancerIngressWithDefaults ¶

func NewV1LoadBalancerIngressWithDefaults() *V1LoadBalancerIngress

NewV1LoadBalancerIngressWithDefaults instantiates a new V1LoadBalancerIngress 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 (*V1LoadBalancerIngress) GetHostname ¶

func (o *V1LoadBalancerIngress) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*V1LoadBalancerIngress) GetHostnameOk ¶

func (o *V1LoadBalancerIngress) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1LoadBalancerIngress) GetIp ¶

func (o *V1LoadBalancerIngress) GetIp() string

GetIp returns the Ip field value if set, zero value otherwise.

func (*V1LoadBalancerIngress) GetIpOk ¶

func (o *V1LoadBalancerIngress) GetIpOk() (*string, bool)

GetIpOk returns a tuple with the Ip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1LoadBalancerIngress) GetPorts ¶

func (o *V1LoadBalancerIngress) GetPorts() []V1PortStatus

GetPorts returns the Ports field value if set, zero value otherwise.

func (*V1LoadBalancerIngress) GetPortsOk ¶

func (o *V1LoadBalancerIngress) GetPortsOk() ([]V1PortStatus, bool)

GetPortsOk returns a tuple with the Ports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1LoadBalancerIngress) HasHostname ¶

func (o *V1LoadBalancerIngress) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*V1LoadBalancerIngress) HasIp ¶

func (o *V1LoadBalancerIngress) HasIp() bool

HasIp returns a boolean if a field has been set.

func (*V1LoadBalancerIngress) HasPorts ¶

func (o *V1LoadBalancerIngress) HasPorts() bool

HasPorts returns a boolean if a field has been set.

func (V1LoadBalancerIngress) MarshalJSON ¶

func (o V1LoadBalancerIngress) MarshalJSON() ([]byte, error)

func (*V1LoadBalancerIngress) SetHostname ¶

func (o *V1LoadBalancerIngress) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*V1LoadBalancerIngress) SetIp ¶

func (o *V1LoadBalancerIngress) SetIp(v string)

SetIp gets a reference to the given string and assigns it to the Ip field.

func (*V1LoadBalancerIngress) SetPorts ¶

func (o *V1LoadBalancerIngress) SetPorts(v []V1PortStatus)

SetPorts gets a reference to the given []V1PortStatus and assigns it to the Ports field.

func (V1LoadBalancerIngress) ToMap ¶

func (o V1LoadBalancerIngress) ToMap() (map[string]interface{}, error)

type V1ManagedFieldsEntry ¶

type V1ManagedFieldsEntry struct {
	// APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
	ApiVersion *string     `json:"apiVersion,omitempty"`
	FieldsType *string     `json:"fieldsType,omitempty"`
	FieldsV1   *V1FieldsV1 `json:"fieldsV1,omitempty"`
	// Manager is an identifier of the workflow managing these fields.
	Manager *string `json:"manager,omitempty"`
	// Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.
	Operation *string `json:"operation,omitempty"`
	// Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.
	Subresource *string `json:"subresource,omitempty"`
	Time        *string `json:"time,omitempty"`
}

V1ManagedFieldsEntry ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.

func NewV1ManagedFieldsEntry ¶

func NewV1ManagedFieldsEntry() *V1ManagedFieldsEntry

NewV1ManagedFieldsEntry instantiates a new V1ManagedFieldsEntry 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 NewV1ManagedFieldsEntryWithDefaults ¶

func NewV1ManagedFieldsEntryWithDefaults() *V1ManagedFieldsEntry

NewV1ManagedFieldsEntryWithDefaults instantiates a new V1ManagedFieldsEntry 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 (*V1ManagedFieldsEntry) GetApiVersion ¶

func (o *V1ManagedFieldsEntry) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*V1ManagedFieldsEntry) GetApiVersionOk ¶

func (o *V1ManagedFieldsEntry) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ManagedFieldsEntry) GetFieldsType ¶

func (o *V1ManagedFieldsEntry) GetFieldsType() string

GetFieldsType returns the FieldsType field value if set, zero value otherwise.

func (*V1ManagedFieldsEntry) GetFieldsTypeOk ¶

func (o *V1ManagedFieldsEntry) GetFieldsTypeOk() (*string, bool)

GetFieldsTypeOk returns a tuple with the FieldsType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ManagedFieldsEntry) GetFieldsV1 ¶

func (o *V1ManagedFieldsEntry) GetFieldsV1() V1FieldsV1

GetFieldsV1 returns the FieldsV1 field value if set, zero value otherwise.

func (*V1ManagedFieldsEntry) GetFieldsV1Ok ¶

func (o *V1ManagedFieldsEntry) GetFieldsV1Ok() (*V1FieldsV1, bool)

GetFieldsV1Ok returns a tuple with the FieldsV1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ManagedFieldsEntry) GetManager ¶

func (o *V1ManagedFieldsEntry) GetManager() string

GetManager returns the Manager field value if set, zero value otherwise.

func (*V1ManagedFieldsEntry) GetManagerOk ¶

func (o *V1ManagedFieldsEntry) GetManagerOk() (*string, bool)

GetManagerOk returns a tuple with the Manager field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ManagedFieldsEntry) GetOperation ¶

func (o *V1ManagedFieldsEntry) GetOperation() string

GetOperation returns the Operation field value if set, zero value otherwise.

func (*V1ManagedFieldsEntry) GetOperationOk ¶

func (o *V1ManagedFieldsEntry) GetOperationOk() (*string, bool)

GetOperationOk returns a tuple with the Operation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ManagedFieldsEntry) GetSubresource ¶

func (o *V1ManagedFieldsEntry) GetSubresource() string

GetSubresource returns the Subresource field value if set, zero value otherwise.

func (*V1ManagedFieldsEntry) GetSubresourceOk ¶

func (o *V1ManagedFieldsEntry) GetSubresourceOk() (*string, bool)

GetSubresourceOk returns a tuple with the Subresource field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ManagedFieldsEntry) GetTime ¶

func (o *V1ManagedFieldsEntry) GetTime() string

GetTime returns the Time field value if set, zero value otherwise.

func (*V1ManagedFieldsEntry) GetTimeOk ¶

func (o *V1ManagedFieldsEntry) GetTimeOk() (*string, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ManagedFieldsEntry) HasApiVersion ¶

func (o *V1ManagedFieldsEntry) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*V1ManagedFieldsEntry) HasFieldsType ¶

func (o *V1ManagedFieldsEntry) HasFieldsType() bool

HasFieldsType returns a boolean if a field has been set.

func (*V1ManagedFieldsEntry) HasFieldsV1 ¶

func (o *V1ManagedFieldsEntry) HasFieldsV1() bool

HasFieldsV1 returns a boolean if a field has been set.

func (*V1ManagedFieldsEntry) HasManager ¶

func (o *V1ManagedFieldsEntry) HasManager() bool

HasManager returns a boolean if a field has been set.

func (*V1ManagedFieldsEntry) HasOperation ¶

func (o *V1ManagedFieldsEntry) HasOperation() bool

HasOperation returns a boolean if a field has been set.

func (*V1ManagedFieldsEntry) HasSubresource ¶

func (o *V1ManagedFieldsEntry) HasSubresource() bool

HasSubresource returns a boolean if a field has been set.

func (*V1ManagedFieldsEntry) HasTime ¶

func (o *V1ManagedFieldsEntry) HasTime() bool

HasTime returns a boolean if a field has been set.

func (V1ManagedFieldsEntry) MarshalJSON ¶

func (o V1ManagedFieldsEntry) MarshalJSON() ([]byte, error)

func (*V1ManagedFieldsEntry) SetApiVersion ¶

func (o *V1ManagedFieldsEntry) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*V1ManagedFieldsEntry) SetFieldsType ¶

func (o *V1ManagedFieldsEntry) SetFieldsType(v string)

SetFieldsType gets a reference to the given string and assigns it to the FieldsType field.

func (*V1ManagedFieldsEntry) SetFieldsV1 ¶

func (o *V1ManagedFieldsEntry) SetFieldsV1(v V1FieldsV1)

SetFieldsV1 gets a reference to the given V1FieldsV1 and assigns it to the FieldsV1 field.

func (*V1ManagedFieldsEntry) SetManager ¶

func (o *V1ManagedFieldsEntry) SetManager(v string)

SetManager gets a reference to the given string and assigns it to the Manager field.

func (*V1ManagedFieldsEntry) SetOperation ¶

func (o *V1ManagedFieldsEntry) SetOperation(v string)

SetOperation gets a reference to the given string and assigns it to the Operation field.

func (*V1ManagedFieldsEntry) SetSubresource ¶

func (o *V1ManagedFieldsEntry) SetSubresource(v string)

SetSubresource gets a reference to the given string and assigns it to the Subresource field.

func (*V1ManagedFieldsEntry) SetTime ¶

func (o *V1ManagedFieldsEntry) SetTime(v string)

SetTime gets a reference to the given string and assigns it to the Time field.

func (V1ManagedFieldsEntry) ToMap ¶

func (o V1ManagedFieldsEntry) ToMap() (map[string]interface{}, error)

type V1MicroTime ¶

type V1MicroTime struct {
	// Non-negative fractions of a second at nanosecond resolution. Negative second values with fractions must still have non-negative nanos values that count forward in time. Must be from 0 to 999,999,999 inclusive. This field may be limited in precision depending on context.
	Nanos *int32 `json:"nanos,omitempty"`
	// Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive.
	Seconds *string `json:"seconds,omitempty"`
}

V1MicroTime MicroTime is version of Time with microsecond level precision. +protobuf.options.marshal=false +protobuf.as=Timestamp +protobuf.options.(gogoproto.goproto_stringer)=false

func NewV1MicroTime ¶

func NewV1MicroTime() *V1MicroTime

NewV1MicroTime instantiates a new V1MicroTime 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 NewV1MicroTimeWithDefaults ¶

func NewV1MicroTimeWithDefaults() *V1MicroTime

NewV1MicroTimeWithDefaults instantiates a new V1MicroTime 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 (*V1MicroTime) GetNanos ¶

func (o *V1MicroTime) GetNanos() int32

GetNanos returns the Nanos field value if set, zero value otherwise.

func (*V1MicroTime) GetNanosOk ¶

func (o *V1MicroTime) GetNanosOk() (*int32, bool)

GetNanosOk returns a tuple with the Nanos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1MicroTime) GetSeconds ¶

func (o *V1MicroTime) GetSeconds() string

GetSeconds returns the Seconds field value if set, zero value otherwise.

func (*V1MicroTime) GetSecondsOk ¶

func (o *V1MicroTime) GetSecondsOk() (*string, bool)

GetSecondsOk returns a tuple with the Seconds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1MicroTime) HasNanos ¶

func (o *V1MicroTime) HasNanos() bool

HasNanos returns a boolean if a field has been set.

func (*V1MicroTime) HasSeconds ¶

func (o *V1MicroTime) HasSeconds() bool

HasSeconds returns a boolean if a field has been set.

func (V1MicroTime) MarshalJSON ¶

func (o V1MicroTime) MarshalJSON() ([]byte, error)

func (*V1MicroTime) SetNanos ¶

func (o *V1MicroTime) SetNanos(v int32)

SetNanos gets a reference to the given int32 and assigns it to the Nanos field.

func (*V1MicroTime) SetSeconds ¶

func (o *V1MicroTime) SetSeconds(v string)

SetSeconds gets a reference to the given string and assigns it to the Seconds field.

func (V1MicroTime) ToMap ¶

func (o V1MicroTime) ToMap() (map[string]interface{}, error)

type V1NodeSystemInfo ¶

type V1NodeSystemInfo struct {
	Architecture *string `json:"architecture,omitempty"`
	// Boot ID reported by the node.
	BootID *string `json:"bootID,omitempty"`
	// ContainerRuntime Version reported by the node through runtime remote API (e.g. containerd://1.4.2).
	ContainerRuntimeVersion *string `json:"containerRuntimeVersion,omitempty"`
	// Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).
	KernelVersion *string `json:"kernelVersion,omitempty"`
	// KubeProxy Version reported by the node.
	KubeProxyVersion *string `json:"kubeProxyVersion,omitempty"`
	// Kubelet Version reported by the node.
	KubeletVersion  *string `json:"kubeletVersion,omitempty"`
	MachineID       *string `json:"machineID,omitempty"`
	OperatingSystem *string `json:"operatingSystem,omitempty"`
	// OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).
	OsImage    *string `json:"osImage,omitempty"`
	SystemUUID *string `json:"systemUUID,omitempty"`
}

V1NodeSystemInfo NodeSystemInfo is a set of ids/uuids to uniquely identify the node.

func NewV1NodeSystemInfo ¶

func NewV1NodeSystemInfo() *V1NodeSystemInfo

NewV1NodeSystemInfo instantiates a new V1NodeSystemInfo 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 NewV1NodeSystemInfoWithDefaults ¶

func NewV1NodeSystemInfoWithDefaults() *V1NodeSystemInfo

NewV1NodeSystemInfoWithDefaults instantiates a new V1NodeSystemInfo 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 (*V1NodeSystemInfo) GetArchitecture ¶

func (o *V1NodeSystemInfo) GetArchitecture() string

GetArchitecture returns the Architecture field value if set, zero value otherwise.

func (*V1NodeSystemInfo) GetArchitectureOk ¶

func (o *V1NodeSystemInfo) GetArchitectureOk() (*string, bool)

GetArchitectureOk returns a tuple with the Architecture field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1NodeSystemInfo) GetBootID ¶

func (o *V1NodeSystemInfo) GetBootID() string

GetBootID returns the BootID field value if set, zero value otherwise.

func (*V1NodeSystemInfo) GetBootIDOk ¶

func (o *V1NodeSystemInfo) GetBootIDOk() (*string, bool)

GetBootIDOk returns a tuple with the BootID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1NodeSystemInfo) GetContainerRuntimeVersion ¶

func (o *V1NodeSystemInfo) GetContainerRuntimeVersion() string

GetContainerRuntimeVersion returns the ContainerRuntimeVersion field value if set, zero value otherwise.

func (*V1NodeSystemInfo) GetContainerRuntimeVersionOk ¶

func (o *V1NodeSystemInfo) GetContainerRuntimeVersionOk() (*string, bool)

GetContainerRuntimeVersionOk returns a tuple with the ContainerRuntimeVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1NodeSystemInfo) GetKernelVersion ¶

func (o *V1NodeSystemInfo) GetKernelVersion() string

GetKernelVersion returns the KernelVersion field value if set, zero value otherwise.

func (*V1NodeSystemInfo) GetKernelVersionOk ¶

func (o *V1NodeSystemInfo) GetKernelVersionOk() (*string, bool)

GetKernelVersionOk returns a tuple with the KernelVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1NodeSystemInfo) GetKubeProxyVersion ¶

func (o *V1NodeSystemInfo) GetKubeProxyVersion() string

GetKubeProxyVersion returns the KubeProxyVersion field value if set, zero value otherwise.

func (*V1NodeSystemInfo) GetKubeProxyVersionOk ¶

func (o *V1NodeSystemInfo) GetKubeProxyVersionOk() (*string, bool)

GetKubeProxyVersionOk returns a tuple with the KubeProxyVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1NodeSystemInfo) GetKubeletVersion ¶

func (o *V1NodeSystemInfo) GetKubeletVersion() string

GetKubeletVersion returns the KubeletVersion field value if set, zero value otherwise.

func (*V1NodeSystemInfo) GetKubeletVersionOk ¶

func (o *V1NodeSystemInfo) GetKubeletVersionOk() (*string, bool)

GetKubeletVersionOk returns a tuple with the KubeletVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1NodeSystemInfo) GetMachineID ¶

func (o *V1NodeSystemInfo) GetMachineID() string

GetMachineID returns the MachineID field value if set, zero value otherwise.

func (*V1NodeSystemInfo) GetMachineIDOk ¶

func (o *V1NodeSystemInfo) GetMachineIDOk() (*string, bool)

GetMachineIDOk returns a tuple with the MachineID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1NodeSystemInfo) GetOperatingSystem ¶

func (o *V1NodeSystemInfo) GetOperatingSystem() string

GetOperatingSystem returns the OperatingSystem field value if set, zero value otherwise.

func (*V1NodeSystemInfo) GetOperatingSystemOk ¶

func (o *V1NodeSystemInfo) GetOperatingSystemOk() (*string, bool)

GetOperatingSystemOk returns a tuple with the OperatingSystem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1NodeSystemInfo) GetOsImage ¶

func (o *V1NodeSystemInfo) GetOsImage() string

GetOsImage returns the OsImage field value if set, zero value otherwise.

func (*V1NodeSystemInfo) GetOsImageOk ¶

func (o *V1NodeSystemInfo) GetOsImageOk() (*string, bool)

GetOsImageOk returns a tuple with the OsImage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1NodeSystemInfo) GetSystemUUID ¶

func (o *V1NodeSystemInfo) GetSystemUUID() string

GetSystemUUID returns the SystemUUID field value if set, zero value otherwise.

func (*V1NodeSystemInfo) GetSystemUUIDOk ¶

func (o *V1NodeSystemInfo) GetSystemUUIDOk() (*string, bool)

GetSystemUUIDOk returns a tuple with the SystemUUID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1NodeSystemInfo) HasArchitecture ¶

func (o *V1NodeSystemInfo) HasArchitecture() bool

HasArchitecture returns a boolean if a field has been set.

func (*V1NodeSystemInfo) HasBootID ¶

func (o *V1NodeSystemInfo) HasBootID() bool

HasBootID returns a boolean if a field has been set.

func (*V1NodeSystemInfo) HasContainerRuntimeVersion ¶

func (o *V1NodeSystemInfo) HasContainerRuntimeVersion() bool

HasContainerRuntimeVersion returns a boolean if a field has been set.

func (*V1NodeSystemInfo) HasKernelVersion ¶

func (o *V1NodeSystemInfo) HasKernelVersion() bool

HasKernelVersion returns a boolean if a field has been set.

func (*V1NodeSystemInfo) HasKubeProxyVersion ¶

func (o *V1NodeSystemInfo) HasKubeProxyVersion() bool

HasKubeProxyVersion returns a boolean if a field has been set.

func (*V1NodeSystemInfo) HasKubeletVersion ¶

func (o *V1NodeSystemInfo) HasKubeletVersion() bool

HasKubeletVersion returns a boolean if a field has been set.

func (*V1NodeSystemInfo) HasMachineID ¶

func (o *V1NodeSystemInfo) HasMachineID() bool

HasMachineID returns a boolean if a field has been set.

func (*V1NodeSystemInfo) HasOperatingSystem ¶

func (o *V1NodeSystemInfo) HasOperatingSystem() bool

HasOperatingSystem returns a boolean if a field has been set.

func (*V1NodeSystemInfo) HasOsImage ¶

func (o *V1NodeSystemInfo) HasOsImage() bool

HasOsImage returns a boolean if a field has been set.

func (*V1NodeSystemInfo) HasSystemUUID ¶

func (o *V1NodeSystemInfo) HasSystemUUID() bool

HasSystemUUID returns a boolean if a field has been set.

func (V1NodeSystemInfo) MarshalJSON ¶

func (o V1NodeSystemInfo) MarshalJSON() ([]byte, error)

func (*V1NodeSystemInfo) SetArchitecture ¶

func (o *V1NodeSystemInfo) SetArchitecture(v string)

SetArchitecture gets a reference to the given string and assigns it to the Architecture field.

func (*V1NodeSystemInfo) SetBootID ¶

func (o *V1NodeSystemInfo) SetBootID(v string)

SetBootID gets a reference to the given string and assigns it to the BootID field.

func (*V1NodeSystemInfo) SetContainerRuntimeVersion ¶

func (o *V1NodeSystemInfo) SetContainerRuntimeVersion(v string)

SetContainerRuntimeVersion gets a reference to the given string and assigns it to the ContainerRuntimeVersion field.

func (*V1NodeSystemInfo) SetKernelVersion ¶

func (o *V1NodeSystemInfo) SetKernelVersion(v string)

SetKernelVersion gets a reference to the given string and assigns it to the KernelVersion field.

func (*V1NodeSystemInfo) SetKubeProxyVersion ¶

func (o *V1NodeSystemInfo) SetKubeProxyVersion(v string)

SetKubeProxyVersion gets a reference to the given string and assigns it to the KubeProxyVersion field.

func (*V1NodeSystemInfo) SetKubeletVersion ¶

func (o *V1NodeSystemInfo) SetKubeletVersion(v string)

SetKubeletVersion gets a reference to the given string and assigns it to the KubeletVersion field.

func (*V1NodeSystemInfo) SetMachineID ¶

func (o *V1NodeSystemInfo) SetMachineID(v string)

SetMachineID gets a reference to the given string and assigns it to the MachineID field.

func (*V1NodeSystemInfo) SetOperatingSystem ¶

func (o *V1NodeSystemInfo) SetOperatingSystem(v string)

SetOperatingSystem gets a reference to the given string and assigns it to the OperatingSystem field.

func (*V1NodeSystemInfo) SetOsImage ¶

func (o *V1NodeSystemInfo) SetOsImage(v string)

SetOsImage gets a reference to the given string and assigns it to the OsImage field.

func (*V1NodeSystemInfo) SetSystemUUID ¶

func (o *V1NodeSystemInfo) SetSystemUUID(v string)

SetSystemUUID gets a reference to the given string and assigns it to the SystemUUID field.

func (V1NodeSystemInfo) ToMap ¶

func (o V1NodeSystemInfo) ToMap() (map[string]interface{}, error)

type V1ObjectMeta ¶

type V1ObjectMeta struct {
	Annotations *map[string]string `json:"annotations,omitempty"`
	// Deprecated: ClusterName is a legacy field that was always cleared by the system and never used; it will be removed completely in 1.25.  The name in the go struct is changed to help clients detect accidental use.  +optional
	ClusterName                *string  `json:"clusterName,omitempty"`
	CreationTimestamp          *string  `json:"creationTimestamp,omitempty"`
	DeletionGracePeriodSeconds *string  `json:"deletionGracePeriodSeconds,omitempty"`
	DeletionTimestamp          *string  `json:"deletionTimestamp,omitempty"`
	Finalizers                 []string `json:"finalizers,omitempty"`
	// GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.  If this field is specified and the generated name exists, the server will return a 409.  Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency +optional
	GenerateName *string            `json:"generateName,omitempty"`
	Generation   *string            `json:"generation,omitempty"`
	Labels       *map[string]string `json:"labels,omitempty"`
	// ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.  +optional
	ManagedFields []V1ManagedFieldsEntry `json:"managedFields,omitempty"`
	Name          *string                `json:"name,omitempty"`
	// Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.  Must be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces +optional
	Namespace       *string            `json:"namespace,omitempty"`
	OwnerReferences []V1OwnerReference `json:"ownerReferences,omitempty"`
	// An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.  Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency +optional
	ResourceVersion *string `json:"resourceVersion,omitempty"`
	SelfLink        *string `json:"selfLink,omitempty"`
	// UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.  Populated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids +optional
	Uid *string `json:"uid,omitempty"`
}

V1ObjectMeta ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.

func NewV1ObjectMeta ¶

func NewV1ObjectMeta() *V1ObjectMeta

NewV1ObjectMeta instantiates a new V1ObjectMeta 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 NewV1ObjectMetaWithDefaults ¶

func NewV1ObjectMetaWithDefaults() *V1ObjectMeta

NewV1ObjectMetaWithDefaults instantiates a new V1ObjectMeta 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 (*V1ObjectMeta) GetAnnotations ¶

func (o *V1ObjectMeta) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*V1ObjectMeta) GetAnnotationsOk ¶

func (o *V1ObjectMeta) GetAnnotationsOk() (*map[string]string, bool)

GetAnnotationsOk returns a tuple with the Annotations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ObjectMeta) GetClusterName ¶

func (o *V1ObjectMeta) GetClusterName() string

GetClusterName returns the ClusterName field value if set, zero value otherwise.

func (*V1ObjectMeta) GetClusterNameOk ¶

func (o *V1ObjectMeta) 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 (*V1ObjectMeta) GetCreationTimestamp ¶

func (o *V1ObjectMeta) GetCreationTimestamp() string

GetCreationTimestamp returns the CreationTimestamp field value if set, zero value otherwise.

func (*V1ObjectMeta) GetCreationTimestampOk ¶

func (o *V1ObjectMeta) GetCreationTimestampOk() (*string, bool)

GetCreationTimestampOk returns a tuple with the CreationTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ObjectMeta) GetDeletionGracePeriodSeconds ¶

func (o *V1ObjectMeta) GetDeletionGracePeriodSeconds() string

GetDeletionGracePeriodSeconds returns the DeletionGracePeriodSeconds field value if set, zero value otherwise.

func (*V1ObjectMeta) GetDeletionGracePeriodSecondsOk ¶

func (o *V1ObjectMeta) GetDeletionGracePeriodSecondsOk() (*string, bool)

GetDeletionGracePeriodSecondsOk returns a tuple with the DeletionGracePeriodSeconds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ObjectMeta) GetDeletionTimestamp ¶

func (o *V1ObjectMeta) GetDeletionTimestamp() string

GetDeletionTimestamp returns the DeletionTimestamp field value if set, zero value otherwise.

func (*V1ObjectMeta) GetDeletionTimestampOk ¶

func (o *V1ObjectMeta) GetDeletionTimestampOk() (*string, bool)

GetDeletionTimestampOk returns a tuple with the DeletionTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ObjectMeta) GetFinalizers ¶

func (o *V1ObjectMeta) GetFinalizers() []string

GetFinalizers returns the Finalizers field value if set, zero value otherwise.

func (*V1ObjectMeta) GetFinalizersOk ¶

func (o *V1ObjectMeta) GetFinalizersOk() ([]string, bool)

GetFinalizersOk returns a tuple with the Finalizers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ObjectMeta) GetGenerateName ¶

func (o *V1ObjectMeta) GetGenerateName() string

GetGenerateName returns the GenerateName field value if set, zero value otherwise.

func (*V1ObjectMeta) GetGenerateNameOk ¶

func (o *V1ObjectMeta) GetGenerateNameOk() (*string, bool)

GetGenerateNameOk returns a tuple with the GenerateName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ObjectMeta) GetGeneration ¶

func (o *V1ObjectMeta) GetGeneration() string

GetGeneration returns the Generation field value if set, zero value otherwise.

func (*V1ObjectMeta) GetGenerationOk ¶

func (o *V1ObjectMeta) GetGenerationOk() (*string, bool)

GetGenerationOk returns a tuple with the Generation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ObjectMeta) GetLabels ¶

func (o *V1ObjectMeta) GetLabels() map[string]string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*V1ObjectMeta) GetLabelsOk ¶

func (o *V1ObjectMeta) GetLabelsOk() (*map[string]string, bool)

GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ObjectMeta) GetManagedFields ¶

func (o *V1ObjectMeta) GetManagedFields() []V1ManagedFieldsEntry

GetManagedFields returns the ManagedFields field value if set, zero value otherwise.

func (*V1ObjectMeta) GetManagedFieldsOk ¶

func (o *V1ObjectMeta) GetManagedFieldsOk() ([]V1ManagedFieldsEntry, bool)

GetManagedFieldsOk returns a tuple with the ManagedFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ObjectMeta) GetName ¶

func (o *V1ObjectMeta) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1ObjectMeta) GetNameOk ¶

func (o *V1ObjectMeta) 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 (*V1ObjectMeta) GetNamespace ¶

func (o *V1ObjectMeta) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*V1ObjectMeta) GetNamespaceOk ¶

func (o *V1ObjectMeta) 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 (*V1ObjectMeta) GetOwnerReferences ¶

func (o *V1ObjectMeta) GetOwnerReferences() []V1OwnerReference

GetOwnerReferences returns the OwnerReferences field value if set, zero value otherwise.

func (*V1ObjectMeta) GetOwnerReferencesOk ¶

func (o *V1ObjectMeta) GetOwnerReferencesOk() ([]V1OwnerReference, bool)

GetOwnerReferencesOk returns a tuple with the OwnerReferences field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ObjectMeta) GetResourceVersion ¶

func (o *V1ObjectMeta) GetResourceVersion() string

GetResourceVersion returns the ResourceVersion field value if set, zero value otherwise.

func (*V1ObjectMeta) GetResourceVersionOk ¶

func (o *V1ObjectMeta) GetResourceVersionOk() (*string, bool)

GetResourceVersionOk returns a tuple with the ResourceVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *V1ObjectMeta) GetSelfLink() string

GetSelfLink returns the SelfLink field value if set, zero value otherwise.

func (*V1ObjectMeta) GetSelfLinkOk ¶

func (o *V1ObjectMeta) GetSelfLinkOk() (*string, bool)

GetSelfLinkOk returns a tuple with the SelfLink field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ObjectMeta) GetUid ¶

func (o *V1ObjectMeta) GetUid() string

GetUid returns the Uid field value if set, zero value otherwise.

func (*V1ObjectMeta) GetUidOk ¶

func (o *V1ObjectMeta) GetUidOk() (*string, bool)

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ObjectMeta) HasAnnotations ¶

func (o *V1ObjectMeta) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*V1ObjectMeta) HasClusterName ¶

func (o *V1ObjectMeta) HasClusterName() bool

HasClusterName returns a boolean if a field has been set.

func (*V1ObjectMeta) HasCreationTimestamp ¶

func (o *V1ObjectMeta) HasCreationTimestamp() bool

HasCreationTimestamp returns a boolean if a field has been set.

func (*V1ObjectMeta) HasDeletionGracePeriodSeconds ¶

func (o *V1ObjectMeta) HasDeletionGracePeriodSeconds() bool

HasDeletionGracePeriodSeconds returns a boolean if a field has been set.

func (*V1ObjectMeta) HasDeletionTimestamp ¶

func (o *V1ObjectMeta) HasDeletionTimestamp() bool

HasDeletionTimestamp returns a boolean if a field has been set.

func (*V1ObjectMeta) HasFinalizers ¶

func (o *V1ObjectMeta) HasFinalizers() bool

HasFinalizers returns a boolean if a field has been set.

func (*V1ObjectMeta) HasGenerateName ¶

func (o *V1ObjectMeta) HasGenerateName() bool

HasGenerateName returns a boolean if a field has been set.

func (*V1ObjectMeta) HasGeneration ¶

func (o *V1ObjectMeta) HasGeneration() bool

HasGeneration returns a boolean if a field has been set.

func (*V1ObjectMeta) HasLabels ¶

func (o *V1ObjectMeta) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*V1ObjectMeta) HasManagedFields ¶

func (o *V1ObjectMeta) HasManagedFields() bool

HasManagedFields returns a boolean if a field has been set.

func (*V1ObjectMeta) HasName ¶

func (o *V1ObjectMeta) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1ObjectMeta) HasNamespace ¶

func (o *V1ObjectMeta) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*V1ObjectMeta) HasOwnerReferences ¶

func (o *V1ObjectMeta) HasOwnerReferences() bool

HasOwnerReferences returns a boolean if a field has been set.

func (*V1ObjectMeta) HasResourceVersion ¶

func (o *V1ObjectMeta) HasResourceVersion() bool

HasResourceVersion returns a boolean if a field has been set.

func (o *V1ObjectMeta) HasSelfLink() bool

HasSelfLink returns a boolean if a field has been set.

func (*V1ObjectMeta) HasUid ¶

func (o *V1ObjectMeta) HasUid() bool

HasUid returns a boolean if a field has been set.

func (V1ObjectMeta) MarshalJSON ¶

func (o V1ObjectMeta) MarshalJSON() ([]byte, error)

func (*V1ObjectMeta) SetAnnotations ¶

func (o *V1ObjectMeta) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*V1ObjectMeta) SetClusterName ¶

func (o *V1ObjectMeta) SetClusterName(v string)

SetClusterName gets a reference to the given string and assigns it to the ClusterName field.

func (*V1ObjectMeta) SetCreationTimestamp ¶

func (o *V1ObjectMeta) SetCreationTimestamp(v string)

SetCreationTimestamp gets a reference to the given string and assigns it to the CreationTimestamp field.

func (*V1ObjectMeta) SetDeletionGracePeriodSeconds ¶

func (o *V1ObjectMeta) SetDeletionGracePeriodSeconds(v string)

SetDeletionGracePeriodSeconds gets a reference to the given string and assigns it to the DeletionGracePeriodSeconds field.

func (*V1ObjectMeta) SetDeletionTimestamp ¶

func (o *V1ObjectMeta) SetDeletionTimestamp(v string)

SetDeletionTimestamp gets a reference to the given string and assigns it to the DeletionTimestamp field.

func (*V1ObjectMeta) SetFinalizers ¶

func (o *V1ObjectMeta) SetFinalizers(v []string)

SetFinalizers gets a reference to the given []string and assigns it to the Finalizers field.

func (*V1ObjectMeta) SetGenerateName ¶

func (o *V1ObjectMeta) SetGenerateName(v string)

SetGenerateName gets a reference to the given string and assigns it to the GenerateName field.

func (*V1ObjectMeta) SetGeneration ¶

func (o *V1ObjectMeta) SetGeneration(v string)

SetGeneration gets a reference to the given string and assigns it to the Generation field.

func (*V1ObjectMeta) SetLabels ¶

func (o *V1ObjectMeta) SetLabels(v map[string]string)

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*V1ObjectMeta) SetManagedFields ¶

func (o *V1ObjectMeta) SetManagedFields(v []V1ManagedFieldsEntry)

SetManagedFields gets a reference to the given []V1ManagedFieldsEntry and assigns it to the ManagedFields field.

func (*V1ObjectMeta) SetName ¶

func (o *V1ObjectMeta) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1ObjectMeta) SetNamespace ¶

func (o *V1ObjectMeta) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*V1ObjectMeta) SetOwnerReferences ¶

func (o *V1ObjectMeta) SetOwnerReferences(v []V1OwnerReference)

SetOwnerReferences gets a reference to the given []V1OwnerReference and assigns it to the OwnerReferences field.

func (*V1ObjectMeta) SetResourceVersion ¶

func (o *V1ObjectMeta) SetResourceVersion(v string)

SetResourceVersion gets a reference to the given string and assigns it to the ResourceVersion field.

func (o *V1ObjectMeta) SetSelfLink(v string)

SetSelfLink gets a reference to the given string and assigns it to the SelfLink field.

func (*V1ObjectMeta) SetUid ¶

func (o *V1ObjectMeta) SetUid(v string)

SetUid gets a reference to the given string and assigns it to the Uid field.

func (V1ObjectMeta) ToMap ¶

func (o V1ObjectMeta) ToMap() (map[string]interface{}, error)

type V1ObjectReference ¶

type V1ObjectReference struct {
	ApiVersion      *string `json:"apiVersion,omitempty"`
	FieldPath       *string `json:"fieldPath,omitempty"`
	Kind            *string `json:"kind,omitempty"`
	Name            *string `json:"name,omitempty"`
	Namespace       *string `json:"namespace,omitempty"`
	ResourceVersion *string `json:"resourceVersion,omitempty"`
	Uid             *string `json:"uid,omitempty"`
}

V1ObjectReference struct for V1ObjectReference

func NewV1ObjectReference ¶

func NewV1ObjectReference() *V1ObjectReference

NewV1ObjectReference instantiates a new V1ObjectReference 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 NewV1ObjectReferenceWithDefaults ¶

func NewV1ObjectReferenceWithDefaults() *V1ObjectReference

NewV1ObjectReferenceWithDefaults instantiates a new V1ObjectReference 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 (*V1ObjectReference) GetApiVersion ¶

func (o *V1ObjectReference) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*V1ObjectReference) GetApiVersionOk ¶

func (o *V1ObjectReference) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ObjectReference) GetFieldPath ¶

func (o *V1ObjectReference) GetFieldPath() string

GetFieldPath returns the FieldPath field value if set, zero value otherwise.

func (*V1ObjectReference) GetFieldPathOk ¶

func (o *V1ObjectReference) GetFieldPathOk() (*string, bool)

GetFieldPathOk returns a tuple with the FieldPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ObjectReference) GetKind ¶

func (o *V1ObjectReference) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*V1ObjectReference) GetKindOk ¶

func (o *V1ObjectReference) 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 (*V1ObjectReference) GetName ¶

func (o *V1ObjectReference) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1ObjectReference) GetNameOk ¶

func (o *V1ObjectReference) 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 (*V1ObjectReference) GetNamespace ¶

func (o *V1ObjectReference) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*V1ObjectReference) GetNamespaceOk ¶

func (o *V1ObjectReference) 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 (*V1ObjectReference) GetResourceVersion ¶

func (o *V1ObjectReference) GetResourceVersion() string

GetResourceVersion returns the ResourceVersion field value if set, zero value otherwise.

func (*V1ObjectReference) GetResourceVersionOk ¶

func (o *V1ObjectReference) GetResourceVersionOk() (*string, bool)

GetResourceVersionOk returns a tuple with the ResourceVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ObjectReference) GetUid ¶

func (o *V1ObjectReference) GetUid() string

GetUid returns the Uid field value if set, zero value otherwise.

func (*V1ObjectReference) GetUidOk ¶

func (o *V1ObjectReference) GetUidOk() (*string, bool)

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ObjectReference) HasApiVersion ¶

func (o *V1ObjectReference) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*V1ObjectReference) HasFieldPath ¶

func (o *V1ObjectReference) HasFieldPath() bool

HasFieldPath returns a boolean if a field has been set.

func (*V1ObjectReference) HasKind ¶

func (o *V1ObjectReference) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*V1ObjectReference) HasName ¶

func (o *V1ObjectReference) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1ObjectReference) HasNamespace ¶

func (o *V1ObjectReference) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*V1ObjectReference) HasResourceVersion ¶

func (o *V1ObjectReference) HasResourceVersion() bool

HasResourceVersion returns a boolean if a field has been set.

func (*V1ObjectReference) HasUid ¶

func (o *V1ObjectReference) HasUid() bool

HasUid returns a boolean if a field has been set.

func (V1ObjectReference) MarshalJSON ¶

func (o V1ObjectReference) MarshalJSON() ([]byte, error)

func (*V1ObjectReference) SetApiVersion ¶

func (o *V1ObjectReference) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*V1ObjectReference) SetFieldPath ¶

func (o *V1ObjectReference) SetFieldPath(v string)

SetFieldPath gets a reference to the given string and assigns it to the FieldPath field.

func (*V1ObjectReference) SetKind ¶

func (o *V1ObjectReference) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*V1ObjectReference) SetName ¶

func (o *V1ObjectReference) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1ObjectReference) SetNamespace ¶

func (o *V1ObjectReference) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*V1ObjectReference) SetResourceVersion ¶

func (o *V1ObjectReference) SetResourceVersion(v string)

SetResourceVersion gets a reference to the given string and assigns it to the ResourceVersion field.

func (*V1ObjectReference) SetUid ¶

func (o *V1ObjectReference) SetUid(v string)

SetUid gets a reference to the given string and assigns it to the Uid field.

func (V1ObjectReference) ToMap ¶

func (o V1ObjectReference) ToMap() (map[string]interface{}, error)

type V1OwnerReference ¶

type V1OwnerReference struct {
	// API version of the referent.
	ApiVersion         *string `json:"apiVersion,omitempty"`
	BlockOwnerDeletion *bool   `json:"blockOwnerDeletion,omitempty"`
	Controller         *bool   `json:"controller,omitempty"`
	Kind               *string `json:"kind,omitempty"`
	Name               *string `json:"name,omitempty"`
	Uid                *string `json:"uid,omitempty"`
}

V1OwnerReference struct for V1OwnerReference

func NewV1OwnerReference ¶

func NewV1OwnerReference() *V1OwnerReference

NewV1OwnerReference instantiates a new V1OwnerReference 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 NewV1OwnerReferenceWithDefaults ¶

func NewV1OwnerReferenceWithDefaults() *V1OwnerReference

NewV1OwnerReferenceWithDefaults instantiates a new V1OwnerReference 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 (*V1OwnerReference) GetApiVersion ¶

func (o *V1OwnerReference) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*V1OwnerReference) GetApiVersionOk ¶

func (o *V1OwnerReference) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1OwnerReference) GetBlockOwnerDeletion ¶

func (o *V1OwnerReference) GetBlockOwnerDeletion() bool

GetBlockOwnerDeletion returns the BlockOwnerDeletion field value if set, zero value otherwise.

func (*V1OwnerReference) GetBlockOwnerDeletionOk ¶

func (o *V1OwnerReference) GetBlockOwnerDeletionOk() (*bool, bool)

GetBlockOwnerDeletionOk returns a tuple with the BlockOwnerDeletion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1OwnerReference) GetController ¶

func (o *V1OwnerReference) GetController() bool

GetController returns the Controller field value if set, zero value otherwise.

func (*V1OwnerReference) GetControllerOk ¶

func (o *V1OwnerReference) GetControllerOk() (*bool, bool)

GetControllerOk returns a tuple with the Controller field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1OwnerReference) GetKind ¶

func (o *V1OwnerReference) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*V1OwnerReference) GetKindOk ¶

func (o *V1OwnerReference) 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 (*V1OwnerReference) GetName ¶

func (o *V1OwnerReference) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1OwnerReference) GetNameOk ¶

func (o *V1OwnerReference) 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 (*V1OwnerReference) GetUid ¶

func (o *V1OwnerReference) GetUid() string

GetUid returns the Uid field value if set, zero value otherwise.

func (*V1OwnerReference) GetUidOk ¶

func (o *V1OwnerReference) GetUidOk() (*string, bool)

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1OwnerReference) HasApiVersion ¶

func (o *V1OwnerReference) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*V1OwnerReference) HasBlockOwnerDeletion ¶

func (o *V1OwnerReference) HasBlockOwnerDeletion() bool

HasBlockOwnerDeletion returns a boolean if a field has been set.

func (*V1OwnerReference) HasController ¶

func (o *V1OwnerReference) HasController() bool

HasController returns a boolean if a field has been set.

func (*V1OwnerReference) HasKind ¶

func (o *V1OwnerReference) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*V1OwnerReference) HasName ¶

func (o *V1OwnerReference) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1OwnerReference) HasUid ¶

func (o *V1OwnerReference) HasUid() bool

HasUid returns a boolean if a field has been set.

func (V1OwnerReference) MarshalJSON ¶

func (o V1OwnerReference) MarshalJSON() ([]byte, error)

func (*V1OwnerReference) SetApiVersion ¶

func (o *V1OwnerReference) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*V1OwnerReference) SetBlockOwnerDeletion ¶

func (o *V1OwnerReference) SetBlockOwnerDeletion(v bool)

SetBlockOwnerDeletion gets a reference to the given bool and assigns it to the BlockOwnerDeletion field.

func (*V1OwnerReference) SetController ¶

func (o *V1OwnerReference) SetController(v bool)

SetController gets a reference to the given bool and assigns it to the Controller field.

func (*V1OwnerReference) SetKind ¶

func (o *V1OwnerReference) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*V1OwnerReference) SetName ¶

func (o *V1OwnerReference) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1OwnerReference) SetUid ¶

func (o *V1OwnerReference) SetUid(v string)

SetUid gets a reference to the given string and assigns it to the Uid field.

func (V1OwnerReference) ToMap ¶

func (o V1OwnerReference) ToMap() (map[string]interface{}, error)

type V1PortStatus ¶

type V1PortStatus struct {
	Error    *string `json:"error,omitempty"`
	Port     *int32  `json:"port,omitempty"`
	Protocol *string `json:"protocol,omitempty"`
}

V1PortStatus struct for V1PortStatus

func NewV1PortStatus ¶

func NewV1PortStatus() *V1PortStatus

NewV1PortStatus instantiates a new V1PortStatus 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 NewV1PortStatusWithDefaults ¶

func NewV1PortStatusWithDefaults() *V1PortStatus

NewV1PortStatusWithDefaults instantiates a new V1PortStatus 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 (*V1PortStatus) GetError ¶

func (o *V1PortStatus) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*V1PortStatus) GetErrorOk ¶

func (o *V1PortStatus) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1PortStatus) GetPort ¶

func (o *V1PortStatus) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*V1PortStatus) GetPortOk ¶

func (o *V1PortStatus) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1PortStatus) GetProtocol ¶

func (o *V1PortStatus) GetProtocol() string

GetProtocol returns the Protocol field value if set, zero value otherwise.

func (*V1PortStatus) GetProtocolOk ¶

func (o *V1PortStatus) GetProtocolOk() (*string, bool)

GetProtocolOk returns a tuple with the Protocol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1PortStatus) HasError ¶

func (o *V1PortStatus) HasError() bool

HasError returns a boolean if a field has been set.

func (*V1PortStatus) HasPort ¶

func (o *V1PortStatus) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*V1PortStatus) HasProtocol ¶

func (o *V1PortStatus) HasProtocol() bool

HasProtocol returns a boolean if a field has been set.

func (V1PortStatus) MarshalJSON ¶

func (o V1PortStatus) MarshalJSON() ([]byte, error)

func (*V1PortStatus) SetError ¶

func (o *V1PortStatus) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*V1PortStatus) SetPort ¶

func (o *V1PortStatus) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*V1PortStatus) SetProtocol ¶

func (o *V1PortStatus) SetProtocol(v string)

SetProtocol gets a reference to the given string and assigns it to the Protocol field.

func (V1PortStatus) ToMap ¶

func (o V1PortStatus) ToMap() (map[string]interface{}, error)

type V1alpha1AWSAuthConfig ¶

type V1alpha1AWSAuthConfig struct {
	ClusterName *string `json:"clusterName,omitempty"`
	// RoleARN contains optional role ARN. If set then AWS IAM Authenticator assume a role to perform cluster operations instead of the default AWS credential provider chain.
	RoleARN *string `json:"roleARN,omitempty"`
}

V1alpha1AWSAuthConfig struct for V1alpha1AWSAuthConfig

func NewV1alpha1AWSAuthConfig ¶

func NewV1alpha1AWSAuthConfig() *V1alpha1AWSAuthConfig

NewV1alpha1AWSAuthConfig instantiates a new V1alpha1AWSAuthConfig 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 NewV1alpha1AWSAuthConfigWithDefaults ¶

func NewV1alpha1AWSAuthConfigWithDefaults() *V1alpha1AWSAuthConfig

NewV1alpha1AWSAuthConfigWithDefaults instantiates a new V1alpha1AWSAuthConfig 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 (*V1alpha1AWSAuthConfig) GetClusterName ¶

func (o *V1alpha1AWSAuthConfig) GetClusterName() string

GetClusterName returns the ClusterName field value if set, zero value otherwise.

func (*V1alpha1AWSAuthConfig) GetClusterNameOk ¶

func (o *V1alpha1AWSAuthConfig) 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 (*V1alpha1AWSAuthConfig) GetRoleARN ¶

func (o *V1alpha1AWSAuthConfig) GetRoleARN() string

GetRoleARN returns the RoleARN field value if set, zero value otherwise.

func (*V1alpha1AWSAuthConfig) GetRoleARNOk ¶

func (o *V1alpha1AWSAuthConfig) GetRoleARNOk() (*string, bool)

GetRoleARNOk returns a tuple with the RoleARN field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1AWSAuthConfig) HasClusterName ¶

func (o *V1alpha1AWSAuthConfig) HasClusterName() bool

HasClusterName returns a boolean if a field has been set.

func (*V1alpha1AWSAuthConfig) HasRoleARN ¶

func (o *V1alpha1AWSAuthConfig) HasRoleARN() bool

HasRoleARN returns a boolean if a field has been set.

func (V1alpha1AWSAuthConfig) MarshalJSON ¶

func (o V1alpha1AWSAuthConfig) MarshalJSON() ([]byte, error)

func (*V1alpha1AWSAuthConfig) SetClusterName ¶

func (o *V1alpha1AWSAuthConfig) SetClusterName(v string)

SetClusterName gets a reference to the given string and assigns it to the ClusterName field.

func (*V1alpha1AWSAuthConfig) SetRoleARN ¶

func (o *V1alpha1AWSAuthConfig) SetRoleARN(v string)

SetRoleARN gets a reference to the given string and assigns it to the RoleARN field.

func (V1alpha1AWSAuthConfig) ToMap ¶

func (o V1alpha1AWSAuthConfig) ToMap() (map[string]interface{}, error)

type V1alpha1AppProject ¶

type V1alpha1AppProject struct {
	Metadata *V1ObjectMeta             `json:"metadata,omitempty"`
	Spec     *V1alpha1AppProjectSpec   `json:"spec,omitempty"`
	Status   *V1alpha1AppProjectStatus `json:"status,omitempty"`
}

V1alpha1AppProject struct for V1alpha1AppProject

func NewV1alpha1AppProject ¶

func NewV1alpha1AppProject() *V1alpha1AppProject

NewV1alpha1AppProject instantiates a new V1alpha1AppProject 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 NewV1alpha1AppProjectWithDefaults ¶

func NewV1alpha1AppProjectWithDefaults() *V1alpha1AppProject

NewV1alpha1AppProjectWithDefaults instantiates a new V1alpha1AppProject 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 (*V1alpha1AppProject) GetMetadata ¶

func (o *V1alpha1AppProject) GetMetadata() V1ObjectMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*V1alpha1AppProject) GetMetadataOk ¶

func (o *V1alpha1AppProject) GetMetadataOk() (*V1ObjectMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1AppProject) GetSpec ¶

GetSpec returns the Spec field value if set, zero value otherwise.

func (*V1alpha1AppProject) GetSpecOk ¶

func (o *V1alpha1AppProject) GetSpecOk() (*V1alpha1AppProjectSpec, bool)

GetSpecOk returns a tuple with the Spec field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1AppProject) GetStatus ¶

GetStatus returns the Status field value if set, zero value otherwise.

func (*V1alpha1AppProject) GetStatusOk ¶

func (o *V1alpha1AppProject) GetStatusOk() (*V1alpha1AppProjectStatus, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1AppProject) HasMetadata ¶

func (o *V1alpha1AppProject) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*V1alpha1AppProject) HasSpec ¶

func (o *V1alpha1AppProject) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*V1alpha1AppProject) HasStatus ¶

func (o *V1alpha1AppProject) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (V1alpha1AppProject) MarshalJSON ¶

func (o V1alpha1AppProject) MarshalJSON() ([]byte, error)

func (*V1alpha1AppProject) SetMetadata ¶

func (o *V1alpha1AppProject) SetMetadata(v V1ObjectMeta)

SetMetadata gets a reference to the given V1ObjectMeta and assigns it to the Metadata field.

func (*V1alpha1AppProject) SetSpec ¶

SetSpec gets a reference to the given V1alpha1AppProjectSpec and assigns it to the Spec field.

func (*V1alpha1AppProject) SetStatus ¶

SetStatus gets a reference to the given V1alpha1AppProjectStatus and assigns it to the Status field.

func (V1alpha1AppProject) ToMap ¶

func (o V1alpha1AppProject) ToMap() (map[string]interface{}, error)

type V1alpha1AppProjectList ¶

type V1alpha1AppProjectList struct {
	Items    []V1alpha1AppProject `json:"items,omitempty"`
	Metadata *V1ListMeta          `json:"metadata,omitempty"`
}

V1alpha1AppProjectList struct for V1alpha1AppProjectList

func NewV1alpha1AppProjectList ¶

func NewV1alpha1AppProjectList() *V1alpha1AppProjectList

NewV1alpha1AppProjectList instantiates a new V1alpha1AppProjectList 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 NewV1alpha1AppProjectListWithDefaults ¶

func NewV1alpha1AppProjectListWithDefaults() *V1alpha1AppProjectList

NewV1alpha1AppProjectListWithDefaults instantiates a new V1alpha1AppProjectList 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 (*V1alpha1AppProjectList) GetItems ¶

GetItems returns the Items field value if set, zero value otherwise.

func (*V1alpha1AppProjectList) GetItemsOk ¶

func (o *V1alpha1AppProjectList) GetItemsOk() ([]V1alpha1AppProject, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1AppProjectList) GetMetadata ¶

func (o *V1alpha1AppProjectList) GetMetadata() V1ListMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*V1alpha1AppProjectList) GetMetadataOk ¶

func (o *V1alpha1AppProjectList) GetMetadataOk() (*V1ListMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1AppProjectList) HasItems ¶

func (o *V1alpha1AppProjectList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*V1alpha1AppProjectList) HasMetadata ¶

func (o *V1alpha1AppProjectList) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (V1alpha1AppProjectList) MarshalJSON ¶

func (o V1alpha1AppProjectList) MarshalJSON() ([]byte, error)

func (*V1alpha1AppProjectList) SetItems ¶

func (o *V1alpha1AppProjectList) SetItems(v []V1alpha1AppProject)

SetItems gets a reference to the given []V1alpha1AppProject and assigns it to the Items field.

func (*V1alpha1AppProjectList) SetMetadata ¶

func (o *V1alpha1AppProjectList) SetMetadata(v V1ListMeta)

SetMetadata gets a reference to the given V1ListMeta and assigns it to the Metadata field.

func (V1alpha1AppProjectList) ToMap ¶

func (o V1alpha1AppProjectList) ToMap() (map[string]interface{}, error)

type V1alpha1AppProjectSpec ¶

type V1alpha1AppProjectSpec struct {
	ClusterResourceBlacklist        []V1GroupKind                             `json:"clusterResourceBlacklist,omitempty"`
	ClusterResourceWhitelist        []V1GroupKind                             `json:"clusterResourceWhitelist,omitempty"`
	Description                     *string                                   `json:"description,omitempty"`
	Destinations                    []V1alpha1ApplicationDestination          `json:"destinations,omitempty"`
	NamespaceResourceBlacklist      []V1GroupKind                             `json:"namespaceResourceBlacklist,omitempty"`
	NamespaceResourceWhitelist      []V1GroupKind                             `json:"namespaceResourceWhitelist,omitempty"`
	OrphanedResources               *V1alpha1OrphanedResourcesMonitorSettings `json:"orphanedResources,omitempty"`
	PermitOnlyProjectScopedClusters *bool                                     `json:"permitOnlyProjectScopedClusters,omitempty"`
	Roles                           []V1alpha1ProjectRole                     `json:"roles,omitempty"`
	SignatureKeys                   []V1alpha1SignatureKey                    `json:"signatureKeys,omitempty"`
	SourceNamespaces                []string                                  `json:"sourceNamespaces,omitempty"`
	SourceRepos                     []string                                  `json:"sourceRepos,omitempty"`
	SyncWindows                     []V1alpha1SyncWindow                      `json:"syncWindows,omitempty"`
}

V1alpha1AppProjectSpec struct for V1alpha1AppProjectSpec

func NewV1alpha1AppProjectSpec ¶

func NewV1alpha1AppProjectSpec() *V1alpha1AppProjectSpec

NewV1alpha1AppProjectSpec instantiates a new V1alpha1AppProjectSpec 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 NewV1alpha1AppProjectSpecWithDefaults ¶

func NewV1alpha1AppProjectSpecWithDefaults() *V1alpha1AppProjectSpec

NewV1alpha1AppProjectSpecWithDefaults instantiates a new V1alpha1AppProjectSpec 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 (*V1alpha1AppProjectSpec) GetClusterResourceBlacklist ¶

func (o *V1alpha1AppProjectSpec) GetClusterResourceBlacklist() []V1GroupKind

GetClusterResourceBlacklist returns the ClusterResourceBlacklist field value if set, zero value otherwise.

func (*V1alpha1AppProjectSpec) GetClusterResourceBlacklistOk ¶

func (o *V1alpha1AppProjectSpec) GetClusterResourceBlacklistOk() ([]V1GroupKind, bool)

GetClusterResourceBlacklistOk returns a tuple with the ClusterResourceBlacklist field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1AppProjectSpec) GetClusterResourceWhitelist ¶

func (o *V1alpha1AppProjectSpec) GetClusterResourceWhitelist() []V1GroupKind

GetClusterResourceWhitelist returns the ClusterResourceWhitelist field value if set, zero value otherwise.

func (*V1alpha1AppProjectSpec) GetClusterResourceWhitelistOk ¶

func (o *V1alpha1AppProjectSpec) GetClusterResourceWhitelistOk() ([]V1GroupKind, bool)

GetClusterResourceWhitelistOk returns a tuple with the ClusterResourceWhitelist field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1AppProjectSpec) GetDescription ¶

func (o *V1alpha1AppProjectSpec) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*V1alpha1AppProjectSpec) GetDescriptionOk ¶

func (o *V1alpha1AppProjectSpec) 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 (*V1alpha1AppProjectSpec) GetDestinations ¶

GetDestinations returns the Destinations field value if set, zero value otherwise.

func (*V1alpha1AppProjectSpec) GetDestinationsOk ¶

func (o *V1alpha1AppProjectSpec) GetDestinationsOk() ([]V1alpha1ApplicationDestination, bool)

GetDestinationsOk returns a tuple with the Destinations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1AppProjectSpec) GetNamespaceResourceBlacklist ¶

func (o *V1alpha1AppProjectSpec) GetNamespaceResourceBlacklist() []V1GroupKind

GetNamespaceResourceBlacklist returns the NamespaceResourceBlacklist field value if set, zero value otherwise.

func (*V1alpha1AppProjectSpec) GetNamespaceResourceBlacklistOk ¶

func (o *V1alpha1AppProjectSpec) GetNamespaceResourceBlacklistOk() ([]V1GroupKind, bool)

GetNamespaceResourceBlacklistOk returns a tuple with the NamespaceResourceBlacklist field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1AppProjectSpec) GetNamespaceResourceWhitelist ¶

func (o *V1alpha1AppProjectSpec) GetNamespaceResourceWhitelist() []V1GroupKind

GetNamespaceResourceWhitelist returns the NamespaceResourceWhitelist field value if set, zero value otherwise.

func (*V1alpha1AppProjectSpec) GetNamespaceResourceWhitelistOk ¶

func (o *V1alpha1AppProjectSpec) GetNamespaceResourceWhitelistOk() ([]V1GroupKind, bool)

GetNamespaceResourceWhitelistOk returns a tuple with the NamespaceResourceWhitelist field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1AppProjectSpec) GetOrphanedResources ¶

GetOrphanedResources returns the OrphanedResources field value if set, zero value otherwise.

func (*V1alpha1AppProjectSpec) GetOrphanedResourcesOk ¶

GetOrphanedResourcesOk returns a tuple with the OrphanedResources field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1AppProjectSpec) GetPermitOnlyProjectScopedClusters ¶

func (o *V1alpha1AppProjectSpec) GetPermitOnlyProjectScopedClusters() bool

GetPermitOnlyProjectScopedClusters returns the PermitOnlyProjectScopedClusters field value if set, zero value otherwise.

func (*V1alpha1AppProjectSpec) GetPermitOnlyProjectScopedClustersOk ¶

func (o *V1alpha1AppProjectSpec) GetPermitOnlyProjectScopedClustersOk() (*bool, bool)

GetPermitOnlyProjectScopedClustersOk returns a tuple with the PermitOnlyProjectScopedClusters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1AppProjectSpec) GetRoles ¶

GetRoles returns the Roles field value if set, zero value otherwise.

func (*V1alpha1AppProjectSpec) GetRolesOk ¶

func (o *V1alpha1AppProjectSpec) GetRolesOk() ([]V1alpha1ProjectRole, bool)

GetRolesOk returns a tuple with the Roles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1AppProjectSpec) GetSignatureKeys ¶

func (o *V1alpha1AppProjectSpec) GetSignatureKeys() []V1alpha1SignatureKey

GetSignatureKeys returns the SignatureKeys field value if set, zero value otherwise.

func (*V1alpha1AppProjectSpec) GetSignatureKeysOk ¶

func (o *V1alpha1AppProjectSpec) GetSignatureKeysOk() ([]V1alpha1SignatureKey, bool)

GetSignatureKeysOk returns a tuple with the SignatureKeys field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1AppProjectSpec) GetSourceNamespaces ¶

func (o *V1alpha1AppProjectSpec) GetSourceNamespaces() []string

GetSourceNamespaces returns the SourceNamespaces field value if set, zero value otherwise.

func (*V1alpha1AppProjectSpec) GetSourceNamespacesOk ¶

func (o *V1alpha1AppProjectSpec) GetSourceNamespacesOk() ([]string, bool)

GetSourceNamespacesOk returns a tuple with the SourceNamespaces field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1AppProjectSpec) GetSourceRepos ¶

func (o *V1alpha1AppProjectSpec) GetSourceRepos() []string

GetSourceRepos returns the SourceRepos field value if set, zero value otherwise.

func (*V1alpha1AppProjectSpec) GetSourceReposOk ¶

func (o *V1alpha1AppProjectSpec) GetSourceReposOk() ([]string, bool)

GetSourceReposOk returns a tuple with the SourceRepos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1AppProjectSpec) GetSyncWindows ¶

func (o *V1alpha1AppProjectSpec) GetSyncWindows() []V1alpha1SyncWindow

GetSyncWindows returns the SyncWindows field value if set, zero value otherwise.

func (*V1alpha1AppProjectSpec) GetSyncWindowsOk ¶

func (o *V1alpha1AppProjectSpec) GetSyncWindowsOk() ([]V1alpha1SyncWindow, bool)

GetSyncWindowsOk returns a tuple with the SyncWindows field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1AppProjectSpec) HasClusterResourceBlacklist ¶

func (o *V1alpha1AppProjectSpec) HasClusterResourceBlacklist() bool

HasClusterResourceBlacklist returns a boolean if a field has been set.

func (*V1alpha1AppProjectSpec) HasClusterResourceWhitelist ¶

func (o *V1alpha1AppProjectSpec) HasClusterResourceWhitelist() bool

HasClusterResourceWhitelist returns a boolean if a field has been set.

func (*V1alpha1AppProjectSpec) HasDescription ¶

func (o *V1alpha1AppProjectSpec) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*V1alpha1AppProjectSpec) HasDestinations ¶

func (o *V1alpha1AppProjectSpec) HasDestinations() bool

HasDestinations returns a boolean if a field has been set.

func (*V1alpha1AppProjectSpec) HasNamespaceResourceBlacklist ¶

func (o *V1alpha1AppProjectSpec) HasNamespaceResourceBlacklist() bool

HasNamespaceResourceBlacklist returns a boolean if a field has been set.

func (*V1alpha1AppProjectSpec) HasNamespaceResourceWhitelist ¶

func (o *V1alpha1AppProjectSpec) HasNamespaceResourceWhitelist() bool

HasNamespaceResourceWhitelist returns a boolean if a field has been set.

func (*V1alpha1AppProjectSpec) HasOrphanedResources ¶

func (o *V1alpha1AppProjectSpec) HasOrphanedResources() bool

HasOrphanedResources returns a boolean if a field has been set.

func (*V1alpha1AppProjectSpec) HasPermitOnlyProjectScopedClusters ¶

func (o *V1alpha1AppProjectSpec) HasPermitOnlyProjectScopedClusters() bool

HasPermitOnlyProjectScopedClusters returns a boolean if a field has been set.

func (*V1alpha1AppProjectSpec) HasRoles ¶

func (o *V1alpha1AppProjectSpec) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (*V1alpha1AppProjectSpec) HasSignatureKeys ¶

func (o *V1alpha1AppProjectSpec) HasSignatureKeys() bool

HasSignatureKeys returns a boolean if a field has been set.

func (*V1alpha1AppProjectSpec) HasSourceNamespaces ¶

func (o *V1alpha1AppProjectSpec) HasSourceNamespaces() bool

HasSourceNamespaces returns a boolean if a field has been set.

func (*V1alpha1AppProjectSpec) HasSourceRepos ¶

func (o *V1alpha1AppProjectSpec) HasSourceRepos() bool

HasSourceRepos returns a boolean if a field has been set.

func (*V1alpha1AppProjectSpec) HasSyncWindows ¶

func (o *V1alpha1AppProjectSpec) HasSyncWindows() bool

HasSyncWindows returns a boolean if a field has been set.

func (V1alpha1AppProjectSpec) MarshalJSON ¶

func (o V1alpha1AppProjectSpec) MarshalJSON() ([]byte, error)

func (*V1alpha1AppProjectSpec) SetClusterResourceBlacklist ¶

func (o *V1alpha1AppProjectSpec) SetClusterResourceBlacklist(v []V1GroupKind)

SetClusterResourceBlacklist gets a reference to the given []V1GroupKind and assigns it to the ClusterResourceBlacklist field.

func (*V1alpha1AppProjectSpec) SetClusterResourceWhitelist ¶

func (o *V1alpha1AppProjectSpec) SetClusterResourceWhitelist(v []V1GroupKind)

SetClusterResourceWhitelist gets a reference to the given []V1GroupKind and assigns it to the ClusterResourceWhitelist field.

func (*V1alpha1AppProjectSpec) SetDescription ¶

func (o *V1alpha1AppProjectSpec) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*V1alpha1AppProjectSpec) SetDestinations ¶

SetDestinations gets a reference to the given []V1alpha1ApplicationDestination and assigns it to the Destinations field.

func (*V1alpha1AppProjectSpec) SetNamespaceResourceBlacklist ¶

func (o *V1alpha1AppProjectSpec) SetNamespaceResourceBlacklist(v []V1GroupKind)

SetNamespaceResourceBlacklist gets a reference to the given []V1GroupKind and assigns it to the NamespaceResourceBlacklist field.

func (*V1alpha1AppProjectSpec) SetNamespaceResourceWhitelist ¶

func (o *V1alpha1AppProjectSpec) SetNamespaceResourceWhitelist(v []V1GroupKind)

SetNamespaceResourceWhitelist gets a reference to the given []V1GroupKind and assigns it to the NamespaceResourceWhitelist field.

func (*V1alpha1AppProjectSpec) SetOrphanedResources ¶

SetOrphanedResources gets a reference to the given V1alpha1OrphanedResourcesMonitorSettings and assigns it to the OrphanedResources field.

func (*V1alpha1AppProjectSpec) SetPermitOnlyProjectScopedClusters ¶

func (o *V1alpha1AppProjectSpec) SetPermitOnlyProjectScopedClusters(v bool)

SetPermitOnlyProjectScopedClusters gets a reference to the given bool and assigns it to the PermitOnlyProjectScopedClusters field.

func (*V1alpha1AppProjectSpec) SetRoles ¶

SetRoles gets a reference to the given []V1alpha1ProjectRole and assigns it to the Roles field.

func (*V1alpha1AppProjectSpec) SetSignatureKeys ¶

func (o *V1alpha1AppProjectSpec) SetSignatureKeys(v []V1alpha1SignatureKey)

SetSignatureKeys gets a reference to the given []V1alpha1SignatureKey and assigns it to the SignatureKeys field.

func (*V1alpha1AppProjectSpec) SetSourceNamespaces ¶

func (o *V1alpha1AppProjectSpec) SetSourceNamespaces(v []string)

SetSourceNamespaces gets a reference to the given []string and assigns it to the SourceNamespaces field.

func (*V1alpha1AppProjectSpec) SetSourceRepos ¶

func (o *V1alpha1AppProjectSpec) SetSourceRepos(v []string)

SetSourceRepos gets a reference to the given []string and assigns it to the SourceRepos field.

func (*V1alpha1AppProjectSpec) SetSyncWindows ¶

func (o *V1alpha1AppProjectSpec) SetSyncWindows(v []V1alpha1SyncWindow)

SetSyncWindows gets a reference to the given []V1alpha1SyncWindow and assigns it to the SyncWindows field.

func (V1alpha1AppProjectSpec) ToMap ¶

func (o V1alpha1AppProjectSpec) ToMap() (map[string]interface{}, error)

type V1alpha1AppProjectStatus ¶

type V1alpha1AppProjectStatus struct {
	JwtTokensByRole *map[string]V1alpha1JWTTokens `json:"jwtTokensByRole,omitempty"`
}

V1alpha1AppProjectStatus struct for V1alpha1AppProjectStatus

func NewV1alpha1AppProjectStatus ¶

func NewV1alpha1AppProjectStatus() *V1alpha1AppProjectStatus

NewV1alpha1AppProjectStatus instantiates a new V1alpha1AppProjectStatus 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 NewV1alpha1AppProjectStatusWithDefaults ¶

func NewV1alpha1AppProjectStatusWithDefaults() *V1alpha1AppProjectStatus

NewV1alpha1AppProjectStatusWithDefaults instantiates a new V1alpha1AppProjectStatus 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 (*V1alpha1AppProjectStatus) GetJwtTokensByRole ¶

func (o *V1alpha1AppProjectStatus) GetJwtTokensByRole() map[string]V1alpha1JWTTokens

GetJwtTokensByRole returns the JwtTokensByRole field value if set, zero value otherwise.

func (*V1alpha1AppProjectStatus) GetJwtTokensByRoleOk ¶

func (o *V1alpha1AppProjectStatus) GetJwtTokensByRoleOk() (*map[string]V1alpha1JWTTokens, bool)

GetJwtTokensByRoleOk returns a tuple with the JwtTokensByRole field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1AppProjectStatus) HasJwtTokensByRole ¶

func (o *V1alpha1AppProjectStatus) HasJwtTokensByRole() bool

HasJwtTokensByRole returns a boolean if a field has been set.

func (V1alpha1AppProjectStatus) MarshalJSON ¶

func (o V1alpha1AppProjectStatus) MarshalJSON() ([]byte, error)

func (*V1alpha1AppProjectStatus) SetJwtTokensByRole ¶

func (o *V1alpha1AppProjectStatus) SetJwtTokensByRole(v map[string]V1alpha1JWTTokens)

SetJwtTokensByRole gets a reference to the given map[string]V1alpha1JWTTokens and assigns it to the JwtTokensByRole field.

func (V1alpha1AppProjectStatus) ToMap ¶

func (o V1alpha1AppProjectStatus) ToMap() (map[string]interface{}, error)

type V1alpha1Application ¶

type V1alpha1Application struct {
	Metadata  *V1ObjectMeta              `json:"metadata,omitempty"`
	Operation *V1alpha1Operation         `json:"operation,omitempty"`
	Spec      *V1alpha1ApplicationSpec   `json:"spec,omitempty"`
	Status    *V1alpha1ApplicationStatus `json:"status,omitempty"`
}

V1alpha1Application struct for V1alpha1Application

func NewV1alpha1Application ¶

func NewV1alpha1Application() *V1alpha1Application

NewV1alpha1Application instantiates a new V1alpha1Application 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 NewV1alpha1ApplicationWithDefaults ¶

func NewV1alpha1ApplicationWithDefaults() *V1alpha1Application

NewV1alpha1ApplicationWithDefaults instantiates a new V1alpha1Application 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 (*V1alpha1Application) GetMetadata ¶

func (o *V1alpha1Application) GetMetadata() V1ObjectMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*V1alpha1Application) GetMetadataOk ¶

func (o *V1alpha1Application) GetMetadataOk() (*V1ObjectMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Application) GetOperation ¶

func (o *V1alpha1Application) GetOperation() V1alpha1Operation

GetOperation returns the Operation field value if set, zero value otherwise.

func (*V1alpha1Application) GetOperationOk ¶

func (o *V1alpha1Application) GetOperationOk() (*V1alpha1Operation, bool)

GetOperationOk returns a tuple with the Operation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Application) GetSpec ¶

GetSpec returns the Spec field value if set, zero value otherwise.

func (*V1alpha1Application) GetSpecOk ¶

GetSpecOk returns a tuple with the Spec field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Application) GetStatus ¶

GetStatus returns the Status field value if set, zero value otherwise.

func (*V1alpha1Application) GetStatusOk ¶

func (o *V1alpha1Application) GetStatusOk() (*V1alpha1ApplicationStatus, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Application) HasMetadata ¶

func (o *V1alpha1Application) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*V1alpha1Application) HasOperation ¶

func (o *V1alpha1Application) HasOperation() bool

HasOperation returns a boolean if a field has been set.

func (*V1alpha1Application) HasSpec ¶

func (o *V1alpha1Application) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*V1alpha1Application) HasStatus ¶

func (o *V1alpha1Application) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (V1alpha1Application) MarshalJSON ¶

func (o V1alpha1Application) MarshalJSON() ([]byte, error)

func (*V1alpha1Application) SetMetadata ¶

func (o *V1alpha1Application) SetMetadata(v V1ObjectMeta)

SetMetadata gets a reference to the given V1ObjectMeta and assigns it to the Metadata field.

func (*V1alpha1Application) SetOperation ¶

func (o *V1alpha1Application) SetOperation(v V1alpha1Operation)

SetOperation gets a reference to the given V1alpha1Operation and assigns it to the Operation field.

func (*V1alpha1Application) SetSpec ¶

SetSpec gets a reference to the given V1alpha1ApplicationSpec and assigns it to the Spec field.

func (*V1alpha1Application) SetStatus ¶

SetStatus gets a reference to the given V1alpha1ApplicationStatus and assigns it to the Status field.

func (V1alpha1Application) ToMap ¶

func (o V1alpha1Application) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationCondition ¶

type V1alpha1ApplicationCondition struct {
	LastTransitionTime *string `json:"lastTransitionTime,omitempty"`
	Message            *string `json:"message,omitempty"`
	Type               *string `json:"type,omitempty"`
}

V1alpha1ApplicationCondition struct for V1alpha1ApplicationCondition

func NewV1alpha1ApplicationCondition ¶

func NewV1alpha1ApplicationCondition() *V1alpha1ApplicationCondition

NewV1alpha1ApplicationCondition instantiates a new V1alpha1ApplicationCondition 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 NewV1alpha1ApplicationConditionWithDefaults ¶

func NewV1alpha1ApplicationConditionWithDefaults() *V1alpha1ApplicationCondition

NewV1alpha1ApplicationConditionWithDefaults instantiates a new V1alpha1ApplicationCondition 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 (*V1alpha1ApplicationCondition) GetLastTransitionTime ¶

func (o *V1alpha1ApplicationCondition) GetLastTransitionTime() string

GetLastTransitionTime returns the LastTransitionTime field value if set, zero value otherwise.

func (*V1alpha1ApplicationCondition) GetLastTransitionTimeOk ¶

func (o *V1alpha1ApplicationCondition) GetLastTransitionTimeOk() (*string, bool)

GetLastTransitionTimeOk returns a tuple with the LastTransitionTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationCondition) GetMessage ¶

func (o *V1alpha1ApplicationCondition) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*V1alpha1ApplicationCondition) GetMessageOk ¶

func (o *V1alpha1ApplicationCondition) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationCondition) GetType ¶

func (o *V1alpha1ApplicationCondition) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*V1alpha1ApplicationCondition) GetTypeOk ¶

func (o *V1alpha1ApplicationCondition) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationCondition) HasLastTransitionTime ¶

func (o *V1alpha1ApplicationCondition) HasLastTransitionTime() bool

HasLastTransitionTime returns a boolean if a field has been set.

func (*V1alpha1ApplicationCondition) HasMessage ¶

func (o *V1alpha1ApplicationCondition) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*V1alpha1ApplicationCondition) HasType ¶

func (o *V1alpha1ApplicationCondition) HasType() bool

HasType returns a boolean if a field has been set.

func (V1alpha1ApplicationCondition) MarshalJSON ¶

func (o V1alpha1ApplicationCondition) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationCondition) SetLastTransitionTime ¶

func (o *V1alpha1ApplicationCondition) SetLastTransitionTime(v string)

SetLastTransitionTime gets a reference to the given string and assigns it to the LastTransitionTime field.

func (*V1alpha1ApplicationCondition) SetMessage ¶

func (o *V1alpha1ApplicationCondition) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*V1alpha1ApplicationCondition) SetType ¶

func (o *V1alpha1ApplicationCondition) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (V1alpha1ApplicationCondition) ToMap ¶

func (o V1alpha1ApplicationCondition) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationDestination ¶

type V1alpha1ApplicationDestination struct {
	Name      *string `json:"name,omitempty"`
	Namespace *string `json:"namespace,omitempty"`
	Server    *string `json:"server,omitempty"`
}

V1alpha1ApplicationDestination struct for V1alpha1ApplicationDestination

func NewV1alpha1ApplicationDestination ¶

func NewV1alpha1ApplicationDestination() *V1alpha1ApplicationDestination

NewV1alpha1ApplicationDestination instantiates a new V1alpha1ApplicationDestination 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 NewV1alpha1ApplicationDestinationWithDefaults ¶

func NewV1alpha1ApplicationDestinationWithDefaults() *V1alpha1ApplicationDestination

NewV1alpha1ApplicationDestinationWithDefaults instantiates a new V1alpha1ApplicationDestination 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 (*V1alpha1ApplicationDestination) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1ApplicationDestination) GetNameOk ¶

func (o *V1alpha1ApplicationDestination) 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 (*V1alpha1ApplicationDestination) GetNamespace ¶

func (o *V1alpha1ApplicationDestination) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*V1alpha1ApplicationDestination) GetNamespaceOk ¶

func (o *V1alpha1ApplicationDestination) 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 (*V1alpha1ApplicationDestination) GetServer ¶

func (o *V1alpha1ApplicationDestination) GetServer() string

GetServer returns the Server field value if set, zero value otherwise.

func (*V1alpha1ApplicationDestination) GetServerOk ¶

func (o *V1alpha1ApplicationDestination) GetServerOk() (*string, bool)

GetServerOk returns a tuple with the Server field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationDestination) HasName ¶

func (o *V1alpha1ApplicationDestination) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1alpha1ApplicationDestination) HasNamespace ¶

func (o *V1alpha1ApplicationDestination) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*V1alpha1ApplicationDestination) HasServer ¶

func (o *V1alpha1ApplicationDestination) HasServer() bool

HasServer returns a boolean if a field has been set.

func (V1alpha1ApplicationDestination) MarshalJSON ¶

func (o V1alpha1ApplicationDestination) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationDestination) SetName ¶

func (o *V1alpha1ApplicationDestination) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1ApplicationDestination) SetNamespace ¶

func (o *V1alpha1ApplicationDestination) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*V1alpha1ApplicationDestination) SetServer ¶

func (o *V1alpha1ApplicationDestination) SetServer(v string)

SetServer gets a reference to the given string and assigns it to the Server field.

func (V1alpha1ApplicationDestination) ToMap ¶

func (o V1alpha1ApplicationDestination) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationList ¶

type V1alpha1ApplicationList struct {
	Items    []V1alpha1Application `json:"items,omitempty"`
	Metadata *V1ListMeta           `json:"metadata,omitempty"`
}

V1alpha1ApplicationList struct for V1alpha1ApplicationList

func NewV1alpha1ApplicationList ¶

func NewV1alpha1ApplicationList() *V1alpha1ApplicationList

NewV1alpha1ApplicationList instantiates a new V1alpha1ApplicationList 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 NewV1alpha1ApplicationListWithDefaults ¶

func NewV1alpha1ApplicationListWithDefaults() *V1alpha1ApplicationList

NewV1alpha1ApplicationListWithDefaults instantiates a new V1alpha1ApplicationList 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 (*V1alpha1ApplicationList) GetItems ¶

GetItems returns the Items field value if set, zero value otherwise.

func (*V1alpha1ApplicationList) GetItemsOk ¶

func (o *V1alpha1ApplicationList) GetItemsOk() ([]V1alpha1Application, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationList) GetMetadata ¶

func (o *V1alpha1ApplicationList) GetMetadata() V1ListMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*V1alpha1ApplicationList) GetMetadataOk ¶

func (o *V1alpha1ApplicationList) GetMetadataOk() (*V1ListMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationList) HasItems ¶

func (o *V1alpha1ApplicationList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*V1alpha1ApplicationList) HasMetadata ¶

func (o *V1alpha1ApplicationList) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (V1alpha1ApplicationList) MarshalJSON ¶

func (o V1alpha1ApplicationList) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationList) SetItems ¶

SetItems gets a reference to the given []V1alpha1Application and assigns it to the Items field.

func (*V1alpha1ApplicationList) SetMetadata ¶

func (o *V1alpha1ApplicationList) SetMetadata(v V1ListMeta)

SetMetadata gets a reference to the given V1ListMeta and assigns it to the Metadata field.

func (V1alpha1ApplicationList) ToMap ¶

func (o V1alpha1ApplicationList) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationSet ¶

type V1alpha1ApplicationSet struct {
	Metadata *V1ObjectMeta                 `json:"metadata,omitempty"`
	Spec     *V1alpha1ApplicationSetSpec   `json:"spec,omitempty"`
	Status   *V1alpha1ApplicationSetStatus `json:"status,omitempty"`
}

V1alpha1ApplicationSet struct for V1alpha1ApplicationSet

func NewV1alpha1ApplicationSet ¶

func NewV1alpha1ApplicationSet() *V1alpha1ApplicationSet

NewV1alpha1ApplicationSet instantiates a new V1alpha1ApplicationSet 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 NewV1alpha1ApplicationSetWithDefaults ¶

func NewV1alpha1ApplicationSetWithDefaults() *V1alpha1ApplicationSet

NewV1alpha1ApplicationSetWithDefaults instantiates a new V1alpha1ApplicationSet 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 (*V1alpha1ApplicationSet) GetMetadata ¶

func (o *V1alpha1ApplicationSet) GetMetadata() V1ObjectMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*V1alpha1ApplicationSet) GetMetadataOk ¶

func (o *V1alpha1ApplicationSet) GetMetadataOk() (*V1ObjectMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSet) GetSpec ¶

GetSpec returns the Spec field value if set, zero value otherwise.

func (*V1alpha1ApplicationSet) GetSpecOk ¶

GetSpecOk returns a tuple with the Spec field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSet) GetStatus ¶

GetStatus returns the Status field value if set, zero value otherwise.

func (*V1alpha1ApplicationSet) GetStatusOk ¶

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSet) HasMetadata ¶

func (o *V1alpha1ApplicationSet) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*V1alpha1ApplicationSet) HasSpec ¶

func (o *V1alpha1ApplicationSet) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*V1alpha1ApplicationSet) HasStatus ¶

func (o *V1alpha1ApplicationSet) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (V1alpha1ApplicationSet) MarshalJSON ¶

func (o V1alpha1ApplicationSet) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationSet) SetMetadata ¶

func (o *V1alpha1ApplicationSet) SetMetadata(v V1ObjectMeta)

SetMetadata gets a reference to the given V1ObjectMeta and assigns it to the Metadata field.

func (*V1alpha1ApplicationSet) SetSpec ¶

SetSpec gets a reference to the given V1alpha1ApplicationSetSpec and assigns it to the Spec field.

func (*V1alpha1ApplicationSet) SetStatus ¶

SetStatus gets a reference to the given V1alpha1ApplicationSetStatus and assigns it to the Status field.

func (V1alpha1ApplicationSet) ToMap ¶

func (o V1alpha1ApplicationSet) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationSetCondition ¶

type V1alpha1ApplicationSetCondition struct {
	LastTransitionTime *string `json:"lastTransitionTime,omitempty"`
	Message            *string `json:"message,omitempty"`
	Reason             *string `json:"reason,omitempty"`
	Status             *string `json:"status,omitempty"`
	Type               *string `json:"type,omitempty"`
}

V1alpha1ApplicationSetCondition struct for V1alpha1ApplicationSetCondition

func NewV1alpha1ApplicationSetCondition ¶

func NewV1alpha1ApplicationSetCondition() *V1alpha1ApplicationSetCondition

NewV1alpha1ApplicationSetCondition instantiates a new V1alpha1ApplicationSetCondition 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 NewV1alpha1ApplicationSetConditionWithDefaults ¶

func NewV1alpha1ApplicationSetConditionWithDefaults() *V1alpha1ApplicationSetCondition

NewV1alpha1ApplicationSetConditionWithDefaults instantiates a new V1alpha1ApplicationSetCondition 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 (*V1alpha1ApplicationSetCondition) GetLastTransitionTime ¶

func (o *V1alpha1ApplicationSetCondition) GetLastTransitionTime() string

GetLastTransitionTime returns the LastTransitionTime field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetCondition) GetLastTransitionTimeOk ¶

func (o *V1alpha1ApplicationSetCondition) GetLastTransitionTimeOk() (*string, bool)

GetLastTransitionTimeOk returns a tuple with the LastTransitionTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetCondition) GetMessage ¶

func (o *V1alpha1ApplicationSetCondition) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetCondition) GetMessageOk ¶

func (o *V1alpha1ApplicationSetCondition) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetCondition) GetReason ¶

func (o *V1alpha1ApplicationSetCondition) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetCondition) GetReasonOk ¶

func (o *V1alpha1ApplicationSetCondition) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetCondition) GetStatus ¶

func (o *V1alpha1ApplicationSetCondition) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetCondition) GetStatusOk ¶

func (o *V1alpha1ApplicationSetCondition) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetCondition) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetCondition) GetTypeOk ¶

func (o *V1alpha1ApplicationSetCondition) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetCondition) HasLastTransitionTime ¶

func (o *V1alpha1ApplicationSetCondition) HasLastTransitionTime() bool

HasLastTransitionTime returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetCondition) HasMessage ¶

func (o *V1alpha1ApplicationSetCondition) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetCondition) HasReason ¶

func (o *V1alpha1ApplicationSetCondition) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetCondition) HasStatus ¶

func (o *V1alpha1ApplicationSetCondition) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetCondition) HasType ¶

HasType returns a boolean if a field has been set.

func (V1alpha1ApplicationSetCondition) MarshalJSON ¶

func (o V1alpha1ApplicationSetCondition) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationSetCondition) SetLastTransitionTime ¶

func (o *V1alpha1ApplicationSetCondition) SetLastTransitionTime(v string)

SetLastTransitionTime gets a reference to the given string and assigns it to the LastTransitionTime field.

func (*V1alpha1ApplicationSetCondition) SetMessage ¶

func (o *V1alpha1ApplicationSetCondition) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*V1alpha1ApplicationSetCondition) SetReason ¶

func (o *V1alpha1ApplicationSetCondition) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (*V1alpha1ApplicationSetCondition) SetStatus ¶

func (o *V1alpha1ApplicationSetCondition) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*V1alpha1ApplicationSetCondition) SetType ¶

SetType gets a reference to the given string and assigns it to the Type field.

func (V1alpha1ApplicationSetCondition) ToMap ¶

func (o V1alpha1ApplicationSetCondition) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationSetGenerator ¶

type V1alpha1ApplicationSetGenerator struct {
	ClusterDecisionResource *V1alpha1DuckTypeGenerator    `json:"clusterDecisionResource,omitempty"`
	Clusters                *V1alpha1ClusterGenerator     `json:"clusters,omitempty"`
	Git                     *V1alpha1GitGenerator         `json:"git,omitempty"`
	List                    *V1alpha1ListGenerator        `json:"list,omitempty"`
	Matrix                  *V1alpha1MatrixGenerator      `json:"matrix,omitempty"`
	Merge                   *V1alpha1MergeGenerator       `json:"merge,omitempty"`
	PullRequest             *V1alpha1PullRequestGenerator `json:"pullRequest,omitempty"`
	ScmProvider             *V1alpha1SCMProviderGenerator `json:"scmProvider,omitempty"`
	Selector                *V1LabelSelector              `json:"selector,omitempty"`
}

V1alpha1ApplicationSetGenerator ApplicationSetGenerator represents a generator at the top level of an ApplicationSet.

func NewV1alpha1ApplicationSetGenerator ¶

func NewV1alpha1ApplicationSetGenerator() *V1alpha1ApplicationSetGenerator

NewV1alpha1ApplicationSetGenerator instantiates a new V1alpha1ApplicationSetGenerator 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 NewV1alpha1ApplicationSetGeneratorWithDefaults ¶

func NewV1alpha1ApplicationSetGeneratorWithDefaults() *V1alpha1ApplicationSetGenerator

NewV1alpha1ApplicationSetGeneratorWithDefaults instantiates a new V1alpha1ApplicationSetGenerator 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 (*V1alpha1ApplicationSetGenerator) GetClusterDecisionResource ¶

func (o *V1alpha1ApplicationSetGenerator) GetClusterDecisionResource() V1alpha1DuckTypeGenerator

GetClusterDecisionResource returns the ClusterDecisionResource field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetGenerator) GetClusterDecisionResourceOk ¶

func (o *V1alpha1ApplicationSetGenerator) GetClusterDecisionResourceOk() (*V1alpha1DuckTypeGenerator, bool)

GetClusterDecisionResourceOk returns a tuple with the ClusterDecisionResource field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetGenerator) GetClusters ¶

GetClusters returns the Clusters field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetGenerator) GetClustersOk ¶

GetClustersOk returns a tuple with the Clusters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetGenerator) GetGit ¶

GetGit returns the Git field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetGenerator) GetGitOk ¶

GetGitOk returns a tuple with the Git field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetGenerator) GetList ¶

GetList returns the List field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetGenerator) GetListOk ¶

GetListOk returns a tuple with the List field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetGenerator) GetMatrix ¶

GetMatrix returns the Matrix field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetGenerator) GetMatrixOk ¶

GetMatrixOk returns a tuple with the Matrix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetGenerator) GetMerge ¶

GetMerge returns the Merge field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetGenerator) GetMergeOk ¶

GetMergeOk returns a tuple with the Merge field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetGenerator) GetPullRequest ¶

GetPullRequest returns the PullRequest field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetGenerator) GetPullRequestOk ¶

GetPullRequestOk returns a tuple with the PullRequest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetGenerator) GetScmProvider ¶

GetScmProvider returns the ScmProvider field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetGenerator) GetScmProviderOk ¶

GetScmProviderOk returns a tuple with the ScmProvider field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetGenerator) GetSelector ¶

GetSelector returns the Selector field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetGenerator) GetSelectorOk ¶

func (o *V1alpha1ApplicationSetGenerator) GetSelectorOk() (*V1LabelSelector, bool)

GetSelectorOk returns a tuple with the Selector field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetGenerator) HasClusterDecisionResource ¶

func (o *V1alpha1ApplicationSetGenerator) HasClusterDecisionResource() bool

HasClusterDecisionResource returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetGenerator) HasClusters ¶

func (o *V1alpha1ApplicationSetGenerator) HasClusters() bool

HasClusters returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetGenerator) HasGit ¶

HasGit returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetGenerator) HasList ¶

HasList returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetGenerator) HasMatrix ¶

func (o *V1alpha1ApplicationSetGenerator) HasMatrix() bool

HasMatrix returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetGenerator) HasMerge ¶

func (o *V1alpha1ApplicationSetGenerator) HasMerge() bool

HasMerge returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetGenerator) HasPullRequest ¶

func (o *V1alpha1ApplicationSetGenerator) HasPullRequest() bool

HasPullRequest returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetGenerator) HasScmProvider ¶

func (o *V1alpha1ApplicationSetGenerator) HasScmProvider() bool

HasScmProvider returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetGenerator) HasSelector ¶

func (o *V1alpha1ApplicationSetGenerator) HasSelector() bool

HasSelector returns a boolean if a field has been set.

func (V1alpha1ApplicationSetGenerator) MarshalJSON ¶

func (o V1alpha1ApplicationSetGenerator) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationSetGenerator) SetClusterDecisionResource ¶

func (o *V1alpha1ApplicationSetGenerator) SetClusterDecisionResource(v V1alpha1DuckTypeGenerator)

SetClusterDecisionResource gets a reference to the given V1alpha1DuckTypeGenerator and assigns it to the ClusterDecisionResource field.

func (*V1alpha1ApplicationSetGenerator) SetClusters ¶

SetClusters gets a reference to the given V1alpha1ClusterGenerator and assigns it to the Clusters field.

func (*V1alpha1ApplicationSetGenerator) SetGit ¶

SetGit gets a reference to the given V1alpha1GitGenerator and assigns it to the Git field.

func (*V1alpha1ApplicationSetGenerator) SetList ¶

SetList gets a reference to the given V1alpha1ListGenerator and assigns it to the List field.

func (*V1alpha1ApplicationSetGenerator) SetMatrix ¶

SetMatrix gets a reference to the given V1alpha1MatrixGenerator and assigns it to the Matrix field.

func (*V1alpha1ApplicationSetGenerator) SetMerge ¶

SetMerge gets a reference to the given V1alpha1MergeGenerator and assigns it to the Merge field.

func (*V1alpha1ApplicationSetGenerator) SetPullRequest ¶

SetPullRequest gets a reference to the given V1alpha1PullRequestGenerator and assigns it to the PullRequest field.

func (*V1alpha1ApplicationSetGenerator) SetScmProvider ¶

SetScmProvider gets a reference to the given V1alpha1SCMProviderGenerator and assigns it to the ScmProvider field.

func (*V1alpha1ApplicationSetGenerator) SetSelector ¶

SetSelector gets a reference to the given V1LabelSelector and assigns it to the Selector field.

func (V1alpha1ApplicationSetGenerator) ToMap ¶

func (o V1alpha1ApplicationSetGenerator) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationSetList ¶

type V1alpha1ApplicationSetList struct {
	Items    []V1alpha1ApplicationSet `json:"items,omitempty"`
	Metadata *V1ListMeta              `json:"metadata,omitempty"`
}

V1alpha1ApplicationSetList struct for V1alpha1ApplicationSetList

func NewV1alpha1ApplicationSetList ¶

func NewV1alpha1ApplicationSetList() *V1alpha1ApplicationSetList

NewV1alpha1ApplicationSetList instantiates a new V1alpha1ApplicationSetList 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 NewV1alpha1ApplicationSetListWithDefaults ¶

func NewV1alpha1ApplicationSetListWithDefaults() *V1alpha1ApplicationSetList

NewV1alpha1ApplicationSetListWithDefaults instantiates a new V1alpha1ApplicationSetList 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 (*V1alpha1ApplicationSetList) GetItems ¶

GetItems returns the Items field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetList) GetItemsOk ¶

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetList) GetMetadata ¶

func (o *V1alpha1ApplicationSetList) GetMetadata() V1ListMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetList) GetMetadataOk ¶

func (o *V1alpha1ApplicationSetList) GetMetadataOk() (*V1ListMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetList) HasItems ¶

func (o *V1alpha1ApplicationSetList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetList) HasMetadata ¶

func (o *V1alpha1ApplicationSetList) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (V1alpha1ApplicationSetList) MarshalJSON ¶

func (o V1alpha1ApplicationSetList) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationSetList) SetItems ¶

SetItems gets a reference to the given []V1alpha1ApplicationSet and assigns it to the Items field.

func (*V1alpha1ApplicationSetList) SetMetadata ¶

func (o *V1alpha1ApplicationSetList) SetMetadata(v V1ListMeta)

SetMetadata gets a reference to the given V1ListMeta and assigns it to the Metadata field.

func (V1alpha1ApplicationSetList) ToMap ¶

func (o V1alpha1ApplicationSetList) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationSetNestedGenerator ¶

type V1alpha1ApplicationSetNestedGenerator struct {
	ClusterDecisionResource *V1alpha1DuckTypeGenerator    `json:"clusterDecisionResource,omitempty"`
	Clusters                *V1alpha1ClusterGenerator     `json:"clusters,omitempty"`
	Git                     *V1alpha1GitGenerator         `json:"git,omitempty"`
	List                    *V1alpha1ListGenerator        `json:"list,omitempty"`
	Matrix                  *V1JSON                       `json:"matrix,omitempty"`
	Merge                   *V1JSON                       `json:"merge,omitempty"`
	PullRequest             *V1alpha1PullRequestGenerator `json:"pullRequest,omitempty"`
	ScmProvider             *V1alpha1SCMProviderGenerator `json:"scmProvider,omitempty"`
	Selector                *V1LabelSelector              `json:"selector,omitempty"`
}

V1alpha1ApplicationSetNestedGenerator ApplicationSetNestedGenerator represents a generator nested within a combination-type generator (MatrixGenerator or MergeGenerator).

func NewV1alpha1ApplicationSetNestedGenerator ¶

func NewV1alpha1ApplicationSetNestedGenerator() *V1alpha1ApplicationSetNestedGenerator

NewV1alpha1ApplicationSetNestedGenerator instantiates a new V1alpha1ApplicationSetNestedGenerator 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 NewV1alpha1ApplicationSetNestedGeneratorWithDefaults ¶

func NewV1alpha1ApplicationSetNestedGeneratorWithDefaults() *V1alpha1ApplicationSetNestedGenerator

NewV1alpha1ApplicationSetNestedGeneratorWithDefaults instantiates a new V1alpha1ApplicationSetNestedGenerator 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 (*V1alpha1ApplicationSetNestedGenerator) GetClusterDecisionResource ¶

func (o *V1alpha1ApplicationSetNestedGenerator) GetClusterDecisionResource() V1alpha1DuckTypeGenerator

GetClusterDecisionResource returns the ClusterDecisionResource field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetNestedGenerator) GetClusterDecisionResourceOk ¶

func (o *V1alpha1ApplicationSetNestedGenerator) GetClusterDecisionResourceOk() (*V1alpha1DuckTypeGenerator, bool)

GetClusterDecisionResourceOk returns a tuple with the ClusterDecisionResource field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetNestedGenerator) GetClusters ¶

GetClusters returns the Clusters field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetNestedGenerator) GetClustersOk ¶

GetClustersOk returns a tuple with the Clusters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetNestedGenerator) GetGit ¶

GetGit returns the Git field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetNestedGenerator) GetGitOk ¶

GetGitOk returns a tuple with the Git field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetNestedGenerator) GetList ¶

GetList returns the List field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetNestedGenerator) GetListOk ¶

GetListOk returns a tuple with the List field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetNestedGenerator) GetMatrix ¶

GetMatrix returns the Matrix field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetNestedGenerator) GetMatrixOk ¶

func (o *V1alpha1ApplicationSetNestedGenerator) GetMatrixOk() (*V1JSON, bool)

GetMatrixOk returns a tuple with the Matrix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetNestedGenerator) GetMerge ¶

GetMerge returns the Merge field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetNestedGenerator) GetMergeOk ¶

GetMergeOk returns a tuple with the Merge field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetNestedGenerator) GetPullRequest ¶

GetPullRequest returns the PullRequest field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetNestedGenerator) GetPullRequestOk ¶

GetPullRequestOk returns a tuple with the PullRequest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetNestedGenerator) GetScmProvider ¶

GetScmProvider returns the ScmProvider field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetNestedGenerator) GetScmProviderOk ¶

GetScmProviderOk returns a tuple with the ScmProvider field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetNestedGenerator) GetSelector ¶

GetSelector returns the Selector field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetNestedGenerator) GetSelectorOk ¶

GetSelectorOk returns a tuple with the Selector field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetNestedGenerator) HasClusterDecisionResource ¶

func (o *V1alpha1ApplicationSetNestedGenerator) HasClusterDecisionResource() bool

HasClusterDecisionResource returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetNestedGenerator) HasClusters ¶

HasClusters returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetNestedGenerator) HasGit ¶

HasGit returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetNestedGenerator) HasList ¶

HasList returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetNestedGenerator) HasMatrix ¶

HasMatrix returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetNestedGenerator) HasMerge ¶

HasMerge returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetNestedGenerator) HasPullRequest ¶

func (o *V1alpha1ApplicationSetNestedGenerator) HasPullRequest() bool

HasPullRequest returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetNestedGenerator) HasScmProvider ¶

func (o *V1alpha1ApplicationSetNestedGenerator) HasScmProvider() bool

HasScmProvider returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetNestedGenerator) HasSelector ¶

HasSelector returns a boolean if a field has been set.

func (V1alpha1ApplicationSetNestedGenerator) MarshalJSON ¶

func (o V1alpha1ApplicationSetNestedGenerator) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationSetNestedGenerator) SetClusterDecisionResource ¶

func (o *V1alpha1ApplicationSetNestedGenerator) SetClusterDecisionResource(v V1alpha1DuckTypeGenerator)

SetClusterDecisionResource gets a reference to the given V1alpha1DuckTypeGenerator and assigns it to the ClusterDecisionResource field.

func (*V1alpha1ApplicationSetNestedGenerator) SetClusters ¶

SetClusters gets a reference to the given V1alpha1ClusterGenerator and assigns it to the Clusters field.

func (*V1alpha1ApplicationSetNestedGenerator) SetGit ¶

SetGit gets a reference to the given V1alpha1GitGenerator and assigns it to the Git field.

func (*V1alpha1ApplicationSetNestedGenerator) SetList ¶

SetList gets a reference to the given V1alpha1ListGenerator and assigns it to the List field.

func (*V1alpha1ApplicationSetNestedGenerator) SetMatrix ¶

SetMatrix gets a reference to the given V1JSON and assigns it to the Matrix field.

func (*V1alpha1ApplicationSetNestedGenerator) SetMerge ¶

SetMerge gets a reference to the given V1JSON and assigns it to the Merge field.

func (*V1alpha1ApplicationSetNestedGenerator) SetPullRequest ¶

SetPullRequest gets a reference to the given V1alpha1PullRequestGenerator and assigns it to the PullRequest field.

func (*V1alpha1ApplicationSetNestedGenerator) SetScmProvider ¶

SetScmProvider gets a reference to the given V1alpha1SCMProviderGenerator and assigns it to the ScmProvider field.

func (*V1alpha1ApplicationSetNestedGenerator) SetSelector ¶

SetSelector gets a reference to the given V1LabelSelector and assigns it to the Selector field.

func (V1alpha1ApplicationSetNestedGenerator) ToMap ¶

func (o V1alpha1ApplicationSetNestedGenerator) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationSetSpec ¶

type V1alpha1ApplicationSetSpec struct {
	Generators []V1alpha1ApplicationSetGenerator `json:"generators,omitempty"`
	GoTemplate *bool                             `json:"goTemplate,omitempty"`
	SyncPolicy *V1alpha1ApplicationSetSyncPolicy `json:"syncPolicy,omitempty"`
	Template   *V1alpha1ApplicationSetTemplate   `json:"template,omitempty"`
}

V1alpha1ApplicationSetSpec ApplicationSetSpec represents a class of application set state.

func NewV1alpha1ApplicationSetSpec ¶

func NewV1alpha1ApplicationSetSpec() *V1alpha1ApplicationSetSpec

NewV1alpha1ApplicationSetSpec instantiates a new V1alpha1ApplicationSetSpec 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 NewV1alpha1ApplicationSetSpecWithDefaults ¶

func NewV1alpha1ApplicationSetSpecWithDefaults() *V1alpha1ApplicationSetSpec

NewV1alpha1ApplicationSetSpecWithDefaults instantiates a new V1alpha1ApplicationSetSpec 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 (*V1alpha1ApplicationSetSpec) GetGenerators ¶

GetGenerators returns the Generators field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetSpec) GetGeneratorsOk ¶

GetGeneratorsOk returns a tuple with the Generators field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetSpec) GetGoTemplate ¶

func (o *V1alpha1ApplicationSetSpec) GetGoTemplate() bool

GetGoTemplate returns the GoTemplate field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetSpec) GetGoTemplateOk ¶

func (o *V1alpha1ApplicationSetSpec) GetGoTemplateOk() (*bool, bool)

GetGoTemplateOk returns a tuple with the GoTemplate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetSpec) GetSyncPolicy ¶

GetSyncPolicy returns the SyncPolicy field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetSpec) GetSyncPolicyOk ¶

GetSyncPolicyOk returns a tuple with the SyncPolicy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetSpec) GetTemplate ¶

GetTemplate returns the Template field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetSpec) GetTemplateOk ¶

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetSpec) HasGenerators ¶

func (o *V1alpha1ApplicationSetSpec) HasGenerators() bool

HasGenerators returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetSpec) HasGoTemplate ¶

func (o *V1alpha1ApplicationSetSpec) HasGoTemplate() bool

HasGoTemplate returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetSpec) HasSyncPolicy ¶

func (o *V1alpha1ApplicationSetSpec) HasSyncPolicy() bool

HasSyncPolicy returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetSpec) HasTemplate ¶

func (o *V1alpha1ApplicationSetSpec) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (V1alpha1ApplicationSetSpec) MarshalJSON ¶

func (o V1alpha1ApplicationSetSpec) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationSetSpec) SetGenerators ¶

SetGenerators gets a reference to the given []V1alpha1ApplicationSetGenerator and assigns it to the Generators field.

func (*V1alpha1ApplicationSetSpec) SetGoTemplate ¶

func (o *V1alpha1ApplicationSetSpec) SetGoTemplate(v bool)

SetGoTemplate gets a reference to the given bool and assigns it to the GoTemplate field.

func (*V1alpha1ApplicationSetSpec) SetSyncPolicy ¶

SetSyncPolicy gets a reference to the given V1alpha1ApplicationSetSyncPolicy and assigns it to the SyncPolicy field.

func (*V1alpha1ApplicationSetSpec) SetTemplate ¶

SetTemplate gets a reference to the given V1alpha1ApplicationSetTemplate and assigns it to the Template field.

func (V1alpha1ApplicationSetSpec) ToMap ¶

func (o V1alpha1ApplicationSetSpec) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationSetStatus ¶

type V1alpha1ApplicationSetStatus struct {
	Conditions []V1alpha1ApplicationSetCondition `json:"conditions,omitempty"`
}

V1alpha1ApplicationSetStatus struct for V1alpha1ApplicationSetStatus

func NewV1alpha1ApplicationSetStatus ¶

func NewV1alpha1ApplicationSetStatus() *V1alpha1ApplicationSetStatus

NewV1alpha1ApplicationSetStatus instantiates a new V1alpha1ApplicationSetStatus 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 NewV1alpha1ApplicationSetStatusWithDefaults ¶

func NewV1alpha1ApplicationSetStatusWithDefaults() *V1alpha1ApplicationSetStatus

NewV1alpha1ApplicationSetStatusWithDefaults instantiates a new V1alpha1ApplicationSetStatus 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 (*V1alpha1ApplicationSetStatus) GetConditions ¶

GetConditions returns the Conditions field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetStatus) GetConditionsOk ¶

GetConditionsOk returns a tuple with the Conditions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetStatus) HasConditions ¶

func (o *V1alpha1ApplicationSetStatus) HasConditions() bool

HasConditions returns a boolean if a field has been set.

func (V1alpha1ApplicationSetStatus) MarshalJSON ¶

func (o V1alpha1ApplicationSetStatus) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationSetStatus) SetConditions ¶

SetConditions gets a reference to the given []V1alpha1ApplicationSetCondition and assigns it to the Conditions field.

func (V1alpha1ApplicationSetStatus) ToMap ¶

func (o V1alpha1ApplicationSetStatus) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationSetSyncPolicy ¶

type V1alpha1ApplicationSetSyncPolicy struct {
	// PreserveResourcesOnDeletion will preserve resources on deletion. If PreserveResourcesOnDeletion is set to true, these Applications will not be deleted.
	PreserveResourcesOnDeletion *bool `json:"preserveResourcesOnDeletion,omitempty"`
}

V1alpha1ApplicationSetSyncPolicy ApplicationSetSyncPolicy configures how generated Applications will relate to their ApplicationSet.

func NewV1alpha1ApplicationSetSyncPolicy ¶

func NewV1alpha1ApplicationSetSyncPolicy() *V1alpha1ApplicationSetSyncPolicy

NewV1alpha1ApplicationSetSyncPolicy instantiates a new V1alpha1ApplicationSetSyncPolicy 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 NewV1alpha1ApplicationSetSyncPolicyWithDefaults ¶

func NewV1alpha1ApplicationSetSyncPolicyWithDefaults() *V1alpha1ApplicationSetSyncPolicy

NewV1alpha1ApplicationSetSyncPolicyWithDefaults instantiates a new V1alpha1ApplicationSetSyncPolicy 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 (*V1alpha1ApplicationSetSyncPolicy) GetPreserveResourcesOnDeletion ¶

func (o *V1alpha1ApplicationSetSyncPolicy) GetPreserveResourcesOnDeletion() bool

GetPreserveResourcesOnDeletion returns the PreserveResourcesOnDeletion field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetSyncPolicy) GetPreserveResourcesOnDeletionOk ¶

func (o *V1alpha1ApplicationSetSyncPolicy) GetPreserveResourcesOnDeletionOk() (*bool, bool)

GetPreserveResourcesOnDeletionOk returns a tuple with the PreserveResourcesOnDeletion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetSyncPolicy) HasPreserveResourcesOnDeletion ¶

func (o *V1alpha1ApplicationSetSyncPolicy) HasPreserveResourcesOnDeletion() bool

HasPreserveResourcesOnDeletion returns a boolean if a field has been set.

func (V1alpha1ApplicationSetSyncPolicy) MarshalJSON ¶

func (o V1alpha1ApplicationSetSyncPolicy) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationSetSyncPolicy) SetPreserveResourcesOnDeletion ¶

func (o *V1alpha1ApplicationSetSyncPolicy) SetPreserveResourcesOnDeletion(v bool)

SetPreserveResourcesOnDeletion gets a reference to the given bool and assigns it to the PreserveResourcesOnDeletion field.

func (V1alpha1ApplicationSetSyncPolicy) ToMap ¶

func (o V1alpha1ApplicationSetSyncPolicy) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationSetTemplate ¶

type V1alpha1ApplicationSetTemplate struct {
	Metadata *V1alpha1ApplicationSetTemplateMeta `json:"metadata,omitempty"`
	Spec     *V1alpha1ApplicationSpec            `json:"spec,omitempty"`
}

V1alpha1ApplicationSetTemplate struct for V1alpha1ApplicationSetTemplate

func NewV1alpha1ApplicationSetTemplate ¶

func NewV1alpha1ApplicationSetTemplate() *V1alpha1ApplicationSetTemplate

NewV1alpha1ApplicationSetTemplate instantiates a new V1alpha1ApplicationSetTemplate 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 NewV1alpha1ApplicationSetTemplateWithDefaults ¶

func NewV1alpha1ApplicationSetTemplateWithDefaults() *V1alpha1ApplicationSetTemplate

NewV1alpha1ApplicationSetTemplateWithDefaults instantiates a new V1alpha1ApplicationSetTemplate 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 (*V1alpha1ApplicationSetTemplate) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetTemplate) GetMetadataOk ¶

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetTemplate) GetSpec ¶

GetSpec returns the Spec field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetTemplate) GetSpecOk ¶

GetSpecOk returns a tuple with the Spec field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetTemplate) HasMetadata ¶

func (o *V1alpha1ApplicationSetTemplate) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetTemplate) HasSpec ¶

func (o *V1alpha1ApplicationSetTemplate) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (V1alpha1ApplicationSetTemplate) MarshalJSON ¶

func (o V1alpha1ApplicationSetTemplate) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationSetTemplate) SetMetadata ¶

SetMetadata gets a reference to the given V1alpha1ApplicationSetTemplateMeta and assigns it to the Metadata field.

func (*V1alpha1ApplicationSetTemplate) SetSpec ¶

SetSpec gets a reference to the given V1alpha1ApplicationSpec and assigns it to the Spec field.

func (V1alpha1ApplicationSetTemplate) ToMap ¶

func (o V1alpha1ApplicationSetTemplate) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationSetTemplateMeta ¶

type V1alpha1ApplicationSetTemplateMeta struct {
	Annotations *map[string]string `json:"annotations,omitempty"`
	Finalizers  []string           `json:"finalizers,omitempty"`
	Labels      *map[string]string `json:"labels,omitempty"`
	Name        *string            `json:"name,omitempty"`
	Namespace   *string            `json:"namespace,omitempty"`
}

V1alpha1ApplicationSetTemplateMeta struct for V1alpha1ApplicationSetTemplateMeta

func NewV1alpha1ApplicationSetTemplateMeta ¶

func NewV1alpha1ApplicationSetTemplateMeta() *V1alpha1ApplicationSetTemplateMeta

NewV1alpha1ApplicationSetTemplateMeta instantiates a new V1alpha1ApplicationSetTemplateMeta 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 NewV1alpha1ApplicationSetTemplateMetaWithDefaults ¶

func NewV1alpha1ApplicationSetTemplateMetaWithDefaults() *V1alpha1ApplicationSetTemplateMeta

NewV1alpha1ApplicationSetTemplateMetaWithDefaults instantiates a new V1alpha1ApplicationSetTemplateMeta 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 (*V1alpha1ApplicationSetTemplateMeta) GetAnnotations ¶

func (o *V1alpha1ApplicationSetTemplateMeta) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetTemplateMeta) GetAnnotationsOk ¶

func (o *V1alpha1ApplicationSetTemplateMeta) GetAnnotationsOk() (*map[string]string, bool)

GetAnnotationsOk returns a tuple with the Annotations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetTemplateMeta) GetFinalizers ¶

func (o *V1alpha1ApplicationSetTemplateMeta) GetFinalizers() []string

GetFinalizers returns the Finalizers field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetTemplateMeta) GetFinalizersOk ¶

func (o *V1alpha1ApplicationSetTemplateMeta) GetFinalizersOk() ([]string, bool)

GetFinalizersOk returns a tuple with the Finalizers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetTemplateMeta) GetLabels ¶

GetLabels returns the Labels field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetTemplateMeta) GetLabelsOk ¶

func (o *V1alpha1ApplicationSetTemplateMeta) GetLabelsOk() (*map[string]string, bool)

GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSetTemplateMeta) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetTemplateMeta) GetNameOk ¶

func (o *V1alpha1ApplicationSetTemplateMeta) 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 (*V1alpha1ApplicationSetTemplateMeta) GetNamespace ¶

func (o *V1alpha1ApplicationSetTemplateMeta) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*V1alpha1ApplicationSetTemplateMeta) GetNamespaceOk ¶

func (o *V1alpha1ApplicationSetTemplateMeta) 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 (*V1alpha1ApplicationSetTemplateMeta) HasAnnotations ¶

func (o *V1alpha1ApplicationSetTemplateMeta) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetTemplateMeta) HasFinalizers ¶

func (o *V1alpha1ApplicationSetTemplateMeta) HasFinalizers() bool

HasFinalizers returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetTemplateMeta) HasLabels ¶

HasLabels returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetTemplateMeta) HasName ¶

HasName returns a boolean if a field has been set.

func (*V1alpha1ApplicationSetTemplateMeta) HasNamespace ¶

func (o *V1alpha1ApplicationSetTemplateMeta) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (V1alpha1ApplicationSetTemplateMeta) MarshalJSON ¶

func (o V1alpha1ApplicationSetTemplateMeta) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationSetTemplateMeta) SetAnnotations ¶

func (o *V1alpha1ApplicationSetTemplateMeta) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*V1alpha1ApplicationSetTemplateMeta) SetFinalizers ¶

func (o *V1alpha1ApplicationSetTemplateMeta) SetFinalizers(v []string)

SetFinalizers gets a reference to the given []string and assigns it to the Finalizers field.

func (*V1alpha1ApplicationSetTemplateMeta) SetLabels ¶

func (o *V1alpha1ApplicationSetTemplateMeta) SetLabels(v map[string]string)

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*V1alpha1ApplicationSetTemplateMeta) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1ApplicationSetTemplateMeta) SetNamespace ¶

func (o *V1alpha1ApplicationSetTemplateMeta) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (V1alpha1ApplicationSetTemplateMeta) ToMap ¶

func (o V1alpha1ApplicationSetTemplateMeta) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationSource ¶

type V1alpha1ApplicationSource struct {
	// Chart is a Helm chart name, and must be specified for applications sourced from a Helm repo.
	Chart     *string                             `json:"chart,omitempty"`
	Directory *V1alpha1ApplicationSourceDirectory `json:"directory,omitempty"`
	Helm      *V1alpha1ApplicationSourceHelm      `json:"helm,omitempty"`
	Kustomize *V1alpha1ApplicationSourceKustomize `json:"kustomize,omitempty"`
	// Path is a directory path within the Git repository, and is only valid for applications sourced from Git.
	Path    *string                          `json:"path,omitempty"`
	Plugin  *V1alpha1ApplicationSourcePlugin `json:"plugin,omitempty"`
	RepoURL *string                          `json:"repoURL,omitempty"`
	// TargetRevision defines the revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
	TargetRevision *string `json:"targetRevision,omitempty"`
}

V1alpha1ApplicationSource struct for V1alpha1ApplicationSource

func NewV1alpha1ApplicationSource ¶

func NewV1alpha1ApplicationSource() *V1alpha1ApplicationSource

NewV1alpha1ApplicationSource instantiates a new V1alpha1ApplicationSource 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 NewV1alpha1ApplicationSourceWithDefaults ¶

func NewV1alpha1ApplicationSourceWithDefaults() *V1alpha1ApplicationSource

NewV1alpha1ApplicationSourceWithDefaults instantiates a new V1alpha1ApplicationSource 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 (*V1alpha1ApplicationSource) GetChart ¶

func (o *V1alpha1ApplicationSource) GetChart() string

GetChart returns the Chart field value if set, zero value otherwise.

func (*V1alpha1ApplicationSource) GetChartOk ¶

func (o *V1alpha1ApplicationSource) GetChartOk() (*string, bool)

GetChartOk returns a tuple with the Chart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSource) GetDirectory ¶

GetDirectory returns the Directory field value if set, zero value otherwise.

func (*V1alpha1ApplicationSource) GetDirectoryOk ¶

GetDirectoryOk returns a tuple with the Directory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSource) GetHelm ¶

GetHelm returns the Helm field value if set, zero value otherwise.

func (*V1alpha1ApplicationSource) GetHelmOk ¶

GetHelmOk returns a tuple with the Helm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSource) GetKustomize ¶

GetKustomize returns the Kustomize field value if set, zero value otherwise.

func (*V1alpha1ApplicationSource) GetKustomizeOk ¶

GetKustomizeOk returns a tuple with the Kustomize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSource) GetPath ¶

func (o *V1alpha1ApplicationSource) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*V1alpha1ApplicationSource) GetPathOk ¶

func (o *V1alpha1ApplicationSource) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSource) GetPlugin ¶

GetPlugin returns the Plugin field value if set, zero value otherwise.

func (*V1alpha1ApplicationSource) GetPluginOk ¶

GetPluginOk returns a tuple with the Plugin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSource) GetRepoURL ¶

func (o *V1alpha1ApplicationSource) GetRepoURL() string

GetRepoURL returns the RepoURL field value if set, zero value otherwise.

func (*V1alpha1ApplicationSource) GetRepoURLOk ¶

func (o *V1alpha1ApplicationSource) GetRepoURLOk() (*string, bool)

GetRepoURLOk returns a tuple with the RepoURL field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSource) GetTargetRevision ¶

func (o *V1alpha1ApplicationSource) GetTargetRevision() string

GetTargetRevision returns the TargetRevision field value if set, zero value otherwise.

func (*V1alpha1ApplicationSource) GetTargetRevisionOk ¶

func (o *V1alpha1ApplicationSource) GetTargetRevisionOk() (*string, bool)

GetTargetRevisionOk returns a tuple with the TargetRevision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSource) HasChart ¶

func (o *V1alpha1ApplicationSource) HasChart() bool

HasChart returns a boolean if a field has been set.

func (*V1alpha1ApplicationSource) HasDirectory ¶

func (o *V1alpha1ApplicationSource) HasDirectory() bool

HasDirectory returns a boolean if a field has been set.

func (*V1alpha1ApplicationSource) HasHelm ¶

func (o *V1alpha1ApplicationSource) HasHelm() bool

HasHelm returns a boolean if a field has been set.

func (*V1alpha1ApplicationSource) HasKustomize ¶

func (o *V1alpha1ApplicationSource) HasKustomize() bool

HasKustomize returns a boolean if a field has been set.

func (*V1alpha1ApplicationSource) HasPath ¶

func (o *V1alpha1ApplicationSource) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*V1alpha1ApplicationSource) HasPlugin ¶

func (o *V1alpha1ApplicationSource) HasPlugin() bool

HasPlugin returns a boolean if a field has been set.

func (*V1alpha1ApplicationSource) HasRepoURL ¶

func (o *V1alpha1ApplicationSource) HasRepoURL() bool

HasRepoURL returns a boolean if a field has been set.

func (*V1alpha1ApplicationSource) HasTargetRevision ¶

func (o *V1alpha1ApplicationSource) HasTargetRevision() bool

HasTargetRevision returns a boolean if a field has been set.

func (V1alpha1ApplicationSource) MarshalJSON ¶

func (o V1alpha1ApplicationSource) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationSource) SetChart ¶

func (o *V1alpha1ApplicationSource) SetChart(v string)

SetChart gets a reference to the given string and assigns it to the Chart field.

func (*V1alpha1ApplicationSource) SetDirectory ¶

SetDirectory gets a reference to the given V1alpha1ApplicationSourceDirectory and assigns it to the Directory field.

func (*V1alpha1ApplicationSource) SetHelm ¶

SetHelm gets a reference to the given V1alpha1ApplicationSourceHelm and assigns it to the Helm field.

func (*V1alpha1ApplicationSource) SetKustomize ¶

SetKustomize gets a reference to the given V1alpha1ApplicationSourceKustomize and assigns it to the Kustomize field.

func (*V1alpha1ApplicationSource) SetPath ¶

func (o *V1alpha1ApplicationSource) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*V1alpha1ApplicationSource) SetPlugin ¶

SetPlugin gets a reference to the given V1alpha1ApplicationSourcePlugin and assigns it to the Plugin field.

func (*V1alpha1ApplicationSource) SetRepoURL ¶

func (o *V1alpha1ApplicationSource) SetRepoURL(v string)

SetRepoURL gets a reference to the given string and assigns it to the RepoURL field.

func (*V1alpha1ApplicationSource) SetTargetRevision ¶

func (o *V1alpha1ApplicationSource) SetTargetRevision(v string)

SetTargetRevision gets a reference to the given string and assigns it to the TargetRevision field.

func (V1alpha1ApplicationSource) ToMap ¶

func (o V1alpha1ApplicationSource) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationSourceDirectory ¶

type V1alpha1ApplicationSourceDirectory struct {
	Exclude *string                           `json:"exclude,omitempty"`
	Include *string                           `json:"include,omitempty"`
	Jsonnet *V1alpha1ApplicationSourceJsonnet `json:"jsonnet,omitempty"`
	Recurse *bool                             `json:"recurse,omitempty"`
}

V1alpha1ApplicationSourceDirectory struct for V1alpha1ApplicationSourceDirectory

func NewV1alpha1ApplicationSourceDirectory ¶

func NewV1alpha1ApplicationSourceDirectory() *V1alpha1ApplicationSourceDirectory

NewV1alpha1ApplicationSourceDirectory instantiates a new V1alpha1ApplicationSourceDirectory 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 NewV1alpha1ApplicationSourceDirectoryWithDefaults ¶

func NewV1alpha1ApplicationSourceDirectoryWithDefaults() *V1alpha1ApplicationSourceDirectory

NewV1alpha1ApplicationSourceDirectoryWithDefaults instantiates a new V1alpha1ApplicationSourceDirectory 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 (*V1alpha1ApplicationSourceDirectory) GetExclude ¶

GetExclude returns the Exclude field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceDirectory) GetExcludeOk ¶

func (o *V1alpha1ApplicationSourceDirectory) GetExcludeOk() (*string, bool)

GetExcludeOk returns a tuple with the Exclude field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceDirectory) GetInclude ¶

GetInclude returns the Include field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceDirectory) GetIncludeOk ¶

func (o *V1alpha1ApplicationSourceDirectory) GetIncludeOk() (*string, bool)

GetIncludeOk returns a tuple with the Include field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceDirectory) GetJsonnet ¶

GetJsonnet returns the Jsonnet field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceDirectory) GetJsonnetOk ¶

GetJsonnetOk returns a tuple with the Jsonnet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceDirectory) GetRecurse ¶

func (o *V1alpha1ApplicationSourceDirectory) GetRecurse() bool

GetRecurse returns the Recurse field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceDirectory) GetRecurseOk ¶

func (o *V1alpha1ApplicationSourceDirectory) GetRecurseOk() (*bool, bool)

GetRecurseOk returns a tuple with the Recurse field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceDirectory) HasExclude ¶

func (o *V1alpha1ApplicationSourceDirectory) HasExclude() bool

HasExclude returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceDirectory) HasInclude ¶

func (o *V1alpha1ApplicationSourceDirectory) HasInclude() bool

HasInclude returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceDirectory) HasJsonnet ¶

func (o *V1alpha1ApplicationSourceDirectory) HasJsonnet() bool

HasJsonnet returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceDirectory) HasRecurse ¶

func (o *V1alpha1ApplicationSourceDirectory) HasRecurse() bool

HasRecurse returns a boolean if a field has been set.

func (V1alpha1ApplicationSourceDirectory) MarshalJSON ¶

func (o V1alpha1ApplicationSourceDirectory) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationSourceDirectory) SetExclude ¶

func (o *V1alpha1ApplicationSourceDirectory) SetExclude(v string)

SetExclude gets a reference to the given string and assigns it to the Exclude field.

func (*V1alpha1ApplicationSourceDirectory) SetInclude ¶

func (o *V1alpha1ApplicationSourceDirectory) SetInclude(v string)

SetInclude gets a reference to the given string and assigns it to the Include field.

func (*V1alpha1ApplicationSourceDirectory) SetJsonnet ¶

SetJsonnet gets a reference to the given V1alpha1ApplicationSourceJsonnet and assigns it to the Jsonnet field.

func (*V1alpha1ApplicationSourceDirectory) SetRecurse ¶

func (o *V1alpha1ApplicationSourceDirectory) SetRecurse(v bool)

SetRecurse gets a reference to the given bool and assigns it to the Recurse field.

func (V1alpha1ApplicationSourceDirectory) ToMap ¶

func (o V1alpha1ApplicationSourceDirectory) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationSourceHelm ¶

type V1alpha1ApplicationSourceHelm struct {
	FileParameters          []V1alpha1HelmFileParameter `json:"fileParameters,omitempty"`
	IgnoreMissingValueFiles *bool                       `json:"ignoreMissingValueFiles,omitempty"`
	Parameters              []V1alpha1HelmParameter     `json:"parameters,omitempty"`
	PassCredentials         *bool                       `json:"passCredentials,omitempty"`
	ReleaseName             *string                     `json:"releaseName,omitempty"`
	SkipCrds                *bool                       `json:"skipCrds,omitempty"`
	ValueFiles              []string                    `json:"valueFiles,omitempty"`
	Values                  *string                     `json:"values,omitempty"`
	Version                 *string                     `json:"version,omitempty"`
}

V1alpha1ApplicationSourceHelm struct for V1alpha1ApplicationSourceHelm

func NewV1alpha1ApplicationSourceHelm ¶

func NewV1alpha1ApplicationSourceHelm() *V1alpha1ApplicationSourceHelm

NewV1alpha1ApplicationSourceHelm instantiates a new V1alpha1ApplicationSourceHelm 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 NewV1alpha1ApplicationSourceHelmWithDefaults ¶

func NewV1alpha1ApplicationSourceHelmWithDefaults() *V1alpha1ApplicationSourceHelm

NewV1alpha1ApplicationSourceHelmWithDefaults instantiates a new V1alpha1ApplicationSourceHelm 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 (*V1alpha1ApplicationSourceHelm) GetFileParameters ¶

GetFileParameters returns the FileParameters field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceHelm) GetFileParametersOk ¶

func (o *V1alpha1ApplicationSourceHelm) GetFileParametersOk() ([]V1alpha1HelmFileParameter, bool)

GetFileParametersOk returns a tuple with the FileParameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceHelm) GetIgnoreMissingValueFiles ¶

func (o *V1alpha1ApplicationSourceHelm) GetIgnoreMissingValueFiles() bool

GetIgnoreMissingValueFiles returns the IgnoreMissingValueFiles field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceHelm) GetIgnoreMissingValueFilesOk ¶

func (o *V1alpha1ApplicationSourceHelm) GetIgnoreMissingValueFilesOk() (*bool, bool)

GetIgnoreMissingValueFilesOk returns a tuple with the IgnoreMissingValueFiles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceHelm) GetParameters ¶

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceHelm) GetParametersOk ¶

func (o *V1alpha1ApplicationSourceHelm) GetParametersOk() ([]V1alpha1HelmParameter, bool)

GetParametersOk returns a tuple with the Parameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceHelm) GetPassCredentials ¶

func (o *V1alpha1ApplicationSourceHelm) GetPassCredentials() bool

GetPassCredentials returns the PassCredentials field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceHelm) GetPassCredentialsOk ¶

func (o *V1alpha1ApplicationSourceHelm) GetPassCredentialsOk() (*bool, bool)

GetPassCredentialsOk returns a tuple with the PassCredentials field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceHelm) GetReleaseName ¶

func (o *V1alpha1ApplicationSourceHelm) GetReleaseName() string

GetReleaseName returns the ReleaseName field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceHelm) GetReleaseNameOk ¶

func (o *V1alpha1ApplicationSourceHelm) GetReleaseNameOk() (*string, bool)

GetReleaseNameOk returns a tuple with the ReleaseName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceHelm) GetSkipCrds ¶

func (o *V1alpha1ApplicationSourceHelm) GetSkipCrds() bool

GetSkipCrds returns the SkipCrds field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceHelm) GetSkipCrdsOk ¶

func (o *V1alpha1ApplicationSourceHelm) GetSkipCrdsOk() (*bool, bool)

GetSkipCrdsOk returns a tuple with the SkipCrds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceHelm) GetValueFiles ¶

func (o *V1alpha1ApplicationSourceHelm) GetValueFiles() []string

GetValueFiles returns the ValueFiles field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceHelm) GetValueFilesOk ¶

func (o *V1alpha1ApplicationSourceHelm) GetValueFilesOk() ([]string, bool)

GetValueFilesOk returns a tuple with the ValueFiles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceHelm) GetValues ¶

func (o *V1alpha1ApplicationSourceHelm) GetValues() string

GetValues returns the Values field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceHelm) GetValuesOk ¶

func (o *V1alpha1ApplicationSourceHelm) GetValuesOk() (*string, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceHelm) GetVersion ¶

func (o *V1alpha1ApplicationSourceHelm) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceHelm) GetVersionOk ¶

func (o *V1alpha1ApplicationSourceHelm) 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 (*V1alpha1ApplicationSourceHelm) HasFileParameters ¶

func (o *V1alpha1ApplicationSourceHelm) HasFileParameters() bool

HasFileParameters returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceHelm) HasIgnoreMissingValueFiles ¶

func (o *V1alpha1ApplicationSourceHelm) HasIgnoreMissingValueFiles() bool

HasIgnoreMissingValueFiles returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceHelm) HasParameters ¶

func (o *V1alpha1ApplicationSourceHelm) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceHelm) HasPassCredentials ¶

func (o *V1alpha1ApplicationSourceHelm) HasPassCredentials() bool

HasPassCredentials returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceHelm) HasReleaseName ¶

func (o *V1alpha1ApplicationSourceHelm) HasReleaseName() bool

HasReleaseName returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceHelm) HasSkipCrds ¶

func (o *V1alpha1ApplicationSourceHelm) HasSkipCrds() bool

HasSkipCrds returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceHelm) HasValueFiles ¶

func (o *V1alpha1ApplicationSourceHelm) HasValueFiles() bool

HasValueFiles returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceHelm) HasValues ¶

func (o *V1alpha1ApplicationSourceHelm) HasValues() bool

HasValues returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceHelm) HasVersion ¶

func (o *V1alpha1ApplicationSourceHelm) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (V1alpha1ApplicationSourceHelm) MarshalJSON ¶

func (o V1alpha1ApplicationSourceHelm) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationSourceHelm) SetFileParameters ¶

func (o *V1alpha1ApplicationSourceHelm) SetFileParameters(v []V1alpha1HelmFileParameter)

SetFileParameters gets a reference to the given []V1alpha1HelmFileParameter and assigns it to the FileParameters field.

func (*V1alpha1ApplicationSourceHelm) SetIgnoreMissingValueFiles ¶

func (o *V1alpha1ApplicationSourceHelm) SetIgnoreMissingValueFiles(v bool)

SetIgnoreMissingValueFiles gets a reference to the given bool and assigns it to the IgnoreMissingValueFiles field.

func (*V1alpha1ApplicationSourceHelm) SetParameters ¶

SetParameters gets a reference to the given []V1alpha1HelmParameter and assigns it to the Parameters field.

func (*V1alpha1ApplicationSourceHelm) SetPassCredentials ¶

func (o *V1alpha1ApplicationSourceHelm) SetPassCredentials(v bool)

SetPassCredentials gets a reference to the given bool and assigns it to the PassCredentials field.

func (*V1alpha1ApplicationSourceHelm) SetReleaseName ¶

func (o *V1alpha1ApplicationSourceHelm) SetReleaseName(v string)

SetReleaseName gets a reference to the given string and assigns it to the ReleaseName field.

func (*V1alpha1ApplicationSourceHelm) SetSkipCrds ¶

func (o *V1alpha1ApplicationSourceHelm) SetSkipCrds(v bool)

SetSkipCrds gets a reference to the given bool and assigns it to the SkipCrds field.

func (*V1alpha1ApplicationSourceHelm) SetValueFiles ¶

func (o *V1alpha1ApplicationSourceHelm) SetValueFiles(v []string)

SetValueFiles gets a reference to the given []string and assigns it to the ValueFiles field.

func (*V1alpha1ApplicationSourceHelm) SetValues ¶

func (o *V1alpha1ApplicationSourceHelm) SetValues(v string)

SetValues gets a reference to the given string and assigns it to the Values field.

func (*V1alpha1ApplicationSourceHelm) SetVersion ¶

func (o *V1alpha1ApplicationSourceHelm) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (V1alpha1ApplicationSourceHelm) ToMap ¶

func (o V1alpha1ApplicationSourceHelm) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationSourceJsonnet ¶

type V1alpha1ApplicationSourceJsonnet struct {
	ExtVars []V1alpha1JsonnetVar `json:"extVars,omitempty"`
	Libs    []string             `json:"libs,omitempty"`
	Tlas    []V1alpha1JsonnetVar `json:"tlas,omitempty"`
}

V1alpha1ApplicationSourceJsonnet struct for V1alpha1ApplicationSourceJsonnet

func NewV1alpha1ApplicationSourceJsonnet ¶

func NewV1alpha1ApplicationSourceJsonnet() *V1alpha1ApplicationSourceJsonnet

NewV1alpha1ApplicationSourceJsonnet instantiates a new V1alpha1ApplicationSourceJsonnet 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 NewV1alpha1ApplicationSourceJsonnetWithDefaults ¶

func NewV1alpha1ApplicationSourceJsonnetWithDefaults() *V1alpha1ApplicationSourceJsonnet

NewV1alpha1ApplicationSourceJsonnetWithDefaults instantiates a new V1alpha1ApplicationSourceJsonnet 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 (*V1alpha1ApplicationSourceJsonnet) GetExtVars ¶

GetExtVars returns the ExtVars field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceJsonnet) GetExtVarsOk ¶

GetExtVarsOk returns a tuple with the ExtVars field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceJsonnet) GetLibs ¶

GetLibs returns the Libs field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceJsonnet) GetLibsOk ¶

func (o *V1alpha1ApplicationSourceJsonnet) GetLibsOk() ([]string, bool)

GetLibsOk returns a tuple with the Libs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceJsonnet) GetTlas ¶

GetTlas returns the Tlas field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceJsonnet) GetTlasOk ¶

GetTlasOk returns a tuple with the Tlas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceJsonnet) HasExtVars ¶

func (o *V1alpha1ApplicationSourceJsonnet) HasExtVars() bool

HasExtVars returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceJsonnet) HasLibs ¶

HasLibs returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceJsonnet) HasTlas ¶

HasTlas returns a boolean if a field has been set.

func (V1alpha1ApplicationSourceJsonnet) MarshalJSON ¶

func (o V1alpha1ApplicationSourceJsonnet) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationSourceJsonnet) SetExtVars ¶

SetExtVars gets a reference to the given []V1alpha1JsonnetVar and assigns it to the ExtVars field.

func (*V1alpha1ApplicationSourceJsonnet) SetLibs ¶

func (o *V1alpha1ApplicationSourceJsonnet) SetLibs(v []string)

SetLibs gets a reference to the given []string and assigns it to the Libs field.

func (*V1alpha1ApplicationSourceJsonnet) SetTlas ¶

SetTlas gets a reference to the given []V1alpha1JsonnetVar and assigns it to the Tlas field.

func (V1alpha1ApplicationSourceJsonnet) ToMap ¶

func (o V1alpha1ApplicationSourceJsonnet) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationSourceKustomize ¶

type V1alpha1ApplicationSourceKustomize struct {
	CommonAnnotations      *map[string]string `json:"commonAnnotations,omitempty"`
	CommonLabels           *map[string]string `json:"commonLabels,omitempty"`
	ForceCommonAnnotations *bool              `json:"forceCommonAnnotations,omitempty"`
	ForceCommonLabels      *bool              `json:"forceCommonLabels,omitempty"`
	Images                 []string           `json:"images,omitempty"`
	NamePrefix             *string            `json:"namePrefix,omitempty"`
	NameSuffix             *string            `json:"nameSuffix,omitempty"`
	Version                *string            `json:"version,omitempty"`
}

V1alpha1ApplicationSourceKustomize struct for V1alpha1ApplicationSourceKustomize

func NewV1alpha1ApplicationSourceKustomize ¶

func NewV1alpha1ApplicationSourceKustomize() *V1alpha1ApplicationSourceKustomize

NewV1alpha1ApplicationSourceKustomize instantiates a new V1alpha1ApplicationSourceKustomize 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 NewV1alpha1ApplicationSourceKustomizeWithDefaults ¶

func NewV1alpha1ApplicationSourceKustomizeWithDefaults() *V1alpha1ApplicationSourceKustomize

NewV1alpha1ApplicationSourceKustomizeWithDefaults instantiates a new V1alpha1ApplicationSourceKustomize 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 (*V1alpha1ApplicationSourceKustomize) GetCommonAnnotations ¶

func (o *V1alpha1ApplicationSourceKustomize) GetCommonAnnotations() map[string]string

GetCommonAnnotations returns the CommonAnnotations field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceKustomize) GetCommonAnnotationsOk ¶

func (o *V1alpha1ApplicationSourceKustomize) GetCommonAnnotationsOk() (*map[string]string, bool)

GetCommonAnnotationsOk returns a tuple with the CommonAnnotations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceKustomize) GetCommonLabels ¶

func (o *V1alpha1ApplicationSourceKustomize) GetCommonLabels() map[string]string

GetCommonLabels returns the CommonLabels field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceKustomize) GetCommonLabelsOk ¶

func (o *V1alpha1ApplicationSourceKustomize) GetCommonLabelsOk() (*map[string]string, bool)

GetCommonLabelsOk returns a tuple with the CommonLabels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceKustomize) GetForceCommonAnnotations ¶

func (o *V1alpha1ApplicationSourceKustomize) GetForceCommonAnnotations() bool

GetForceCommonAnnotations returns the ForceCommonAnnotations field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceKustomize) GetForceCommonAnnotationsOk ¶

func (o *V1alpha1ApplicationSourceKustomize) GetForceCommonAnnotationsOk() (*bool, bool)

GetForceCommonAnnotationsOk returns a tuple with the ForceCommonAnnotations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceKustomize) GetForceCommonLabels ¶

func (o *V1alpha1ApplicationSourceKustomize) GetForceCommonLabels() bool

GetForceCommonLabels returns the ForceCommonLabels field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceKustomize) GetForceCommonLabelsOk ¶

func (o *V1alpha1ApplicationSourceKustomize) GetForceCommonLabelsOk() (*bool, bool)

GetForceCommonLabelsOk returns a tuple with the ForceCommonLabels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceKustomize) GetImages ¶

func (o *V1alpha1ApplicationSourceKustomize) GetImages() []string

GetImages returns the Images field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceKustomize) GetImagesOk ¶

func (o *V1alpha1ApplicationSourceKustomize) GetImagesOk() ([]string, bool)

GetImagesOk returns a tuple with the Images field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceKustomize) GetNamePrefix ¶

func (o *V1alpha1ApplicationSourceKustomize) GetNamePrefix() string

GetNamePrefix returns the NamePrefix field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceKustomize) GetNamePrefixOk ¶

func (o *V1alpha1ApplicationSourceKustomize) GetNamePrefixOk() (*string, bool)

GetNamePrefixOk returns a tuple with the NamePrefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceKustomize) GetNameSuffix ¶

func (o *V1alpha1ApplicationSourceKustomize) GetNameSuffix() string

GetNameSuffix returns the NameSuffix field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceKustomize) GetNameSuffixOk ¶

func (o *V1alpha1ApplicationSourceKustomize) GetNameSuffixOk() (*string, bool)

GetNameSuffixOk returns a tuple with the NameSuffix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourceKustomize) GetVersion ¶

GetVersion returns the Version field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourceKustomize) GetVersionOk ¶

func (o *V1alpha1ApplicationSourceKustomize) 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 (*V1alpha1ApplicationSourceKustomize) HasCommonAnnotations ¶

func (o *V1alpha1ApplicationSourceKustomize) HasCommonAnnotations() bool

HasCommonAnnotations returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceKustomize) HasCommonLabels ¶

func (o *V1alpha1ApplicationSourceKustomize) HasCommonLabels() bool

HasCommonLabels returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceKustomize) HasForceCommonAnnotations ¶

func (o *V1alpha1ApplicationSourceKustomize) HasForceCommonAnnotations() bool

HasForceCommonAnnotations returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceKustomize) HasForceCommonLabels ¶

func (o *V1alpha1ApplicationSourceKustomize) HasForceCommonLabels() bool

HasForceCommonLabels returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceKustomize) HasImages ¶

HasImages returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceKustomize) HasNamePrefix ¶

func (o *V1alpha1ApplicationSourceKustomize) HasNamePrefix() bool

HasNamePrefix returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceKustomize) HasNameSuffix ¶

func (o *V1alpha1ApplicationSourceKustomize) HasNameSuffix() bool

HasNameSuffix returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourceKustomize) HasVersion ¶

func (o *V1alpha1ApplicationSourceKustomize) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (V1alpha1ApplicationSourceKustomize) MarshalJSON ¶

func (o V1alpha1ApplicationSourceKustomize) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationSourceKustomize) SetCommonAnnotations ¶

func (o *V1alpha1ApplicationSourceKustomize) SetCommonAnnotations(v map[string]string)

SetCommonAnnotations gets a reference to the given map[string]string and assigns it to the CommonAnnotations field.

func (*V1alpha1ApplicationSourceKustomize) SetCommonLabels ¶

func (o *V1alpha1ApplicationSourceKustomize) SetCommonLabels(v map[string]string)

SetCommonLabels gets a reference to the given map[string]string and assigns it to the CommonLabels field.

func (*V1alpha1ApplicationSourceKustomize) SetForceCommonAnnotations ¶

func (o *V1alpha1ApplicationSourceKustomize) SetForceCommonAnnotations(v bool)

SetForceCommonAnnotations gets a reference to the given bool and assigns it to the ForceCommonAnnotations field.

func (*V1alpha1ApplicationSourceKustomize) SetForceCommonLabels ¶

func (o *V1alpha1ApplicationSourceKustomize) SetForceCommonLabels(v bool)

SetForceCommonLabels gets a reference to the given bool and assigns it to the ForceCommonLabels field.

func (*V1alpha1ApplicationSourceKustomize) SetImages ¶

func (o *V1alpha1ApplicationSourceKustomize) SetImages(v []string)

SetImages gets a reference to the given []string and assigns it to the Images field.

func (*V1alpha1ApplicationSourceKustomize) SetNamePrefix ¶

func (o *V1alpha1ApplicationSourceKustomize) SetNamePrefix(v string)

SetNamePrefix gets a reference to the given string and assigns it to the NamePrefix field.

func (*V1alpha1ApplicationSourceKustomize) SetNameSuffix ¶

func (o *V1alpha1ApplicationSourceKustomize) SetNameSuffix(v string)

SetNameSuffix gets a reference to the given string and assigns it to the NameSuffix field.

func (*V1alpha1ApplicationSourceKustomize) SetVersion ¶

func (o *V1alpha1ApplicationSourceKustomize) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (V1alpha1ApplicationSourceKustomize) ToMap ¶

func (o V1alpha1ApplicationSourceKustomize) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationSourcePlugin ¶

type V1alpha1ApplicationSourcePlugin struct {
	Env  []Applicationv1alpha1EnvEntry `json:"env,omitempty"`
	Name *string                       `json:"name,omitempty"`
}

V1alpha1ApplicationSourcePlugin struct for V1alpha1ApplicationSourcePlugin

func NewV1alpha1ApplicationSourcePlugin ¶

func NewV1alpha1ApplicationSourcePlugin() *V1alpha1ApplicationSourcePlugin

NewV1alpha1ApplicationSourcePlugin instantiates a new V1alpha1ApplicationSourcePlugin 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 NewV1alpha1ApplicationSourcePluginWithDefaults ¶

func NewV1alpha1ApplicationSourcePluginWithDefaults() *V1alpha1ApplicationSourcePlugin

NewV1alpha1ApplicationSourcePluginWithDefaults instantiates a new V1alpha1ApplicationSourcePlugin 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 (*V1alpha1ApplicationSourcePlugin) GetEnv ¶

GetEnv returns the Env field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourcePlugin) GetEnvOk ¶

GetEnvOk returns a tuple with the Env field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSourcePlugin) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1ApplicationSourcePlugin) GetNameOk ¶

func (o *V1alpha1ApplicationSourcePlugin) 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 (*V1alpha1ApplicationSourcePlugin) HasEnv ¶

HasEnv returns a boolean if a field has been set.

func (*V1alpha1ApplicationSourcePlugin) HasName ¶

HasName returns a boolean if a field has been set.

func (V1alpha1ApplicationSourcePlugin) MarshalJSON ¶

func (o V1alpha1ApplicationSourcePlugin) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationSourcePlugin) SetEnv ¶

SetEnv gets a reference to the given []Applicationv1alpha1EnvEntry and assigns it to the Env field.

func (*V1alpha1ApplicationSourcePlugin) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (V1alpha1ApplicationSourcePlugin) ToMap ¶

func (o V1alpha1ApplicationSourcePlugin) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationSpec ¶

type V1alpha1ApplicationSpec struct {
	Destination       *V1alpha1ApplicationDestination     `json:"destination,omitempty"`
	IgnoreDifferences []V1alpha1ResourceIgnoreDifferences `json:"ignoreDifferences,omitempty"`
	Info              []V1alpha1Info                      `json:"info,omitempty"`
	// Project is a reference to the project this application belongs to. The empty string means that application belongs to the 'default' project.
	Project *string `json:"project,omitempty"`
	// RevisionHistoryLimit limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
	RevisionHistoryLimit *string                    `json:"revisionHistoryLimit,omitempty"`
	Source               *V1alpha1ApplicationSource `json:"source,omitempty"`
	SyncPolicy           *V1alpha1SyncPolicy        `json:"syncPolicy,omitempty"`
}

V1alpha1ApplicationSpec ApplicationSpec represents desired application state. Contains link to repository with application definition and additional parameters link definition revision.

func NewV1alpha1ApplicationSpec ¶

func NewV1alpha1ApplicationSpec() *V1alpha1ApplicationSpec

NewV1alpha1ApplicationSpec instantiates a new V1alpha1ApplicationSpec 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 NewV1alpha1ApplicationSpecWithDefaults ¶

func NewV1alpha1ApplicationSpecWithDefaults() *V1alpha1ApplicationSpec

NewV1alpha1ApplicationSpecWithDefaults instantiates a new V1alpha1ApplicationSpec 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 (*V1alpha1ApplicationSpec) GetDestination ¶

GetDestination returns the Destination field value if set, zero value otherwise.

func (*V1alpha1ApplicationSpec) GetDestinationOk ¶

GetDestinationOk returns a tuple with the Destination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSpec) GetIgnoreDifferences ¶

func (o *V1alpha1ApplicationSpec) GetIgnoreDifferences() []V1alpha1ResourceIgnoreDifferences

GetIgnoreDifferences returns the IgnoreDifferences field value if set, zero value otherwise.

func (*V1alpha1ApplicationSpec) GetIgnoreDifferencesOk ¶

func (o *V1alpha1ApplicationSpec) GetIgnoreDifferencesOk() ([]V1alpha1ResourceIgnoreDifferences, bool)

GetIgnoreDifferencesOk returns a tuple with the IgnoreDifferences field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSpec) GetInfo ¶

func (o *V1alpha1ApplicationSpec) GetInfo() []V1alpha1Info

GetInfo returns the Info field value if set, zero value otherwise.

func (*V1alpha1ApplicationSpec) GetInfoOk ¶

func (o *V1alpha1ApplicationSpec) GetInfoOk() ([]V1alpha1Info, bool)

GetInfoOk returns a tuple with the Info field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSpec) GetProject ¶

func (o *V1alpha1ApplicationSpec) GetProject() string

GetProject returns the Project field value if set, zero value otherwise.

func (*V1alpha1ApplicationSpec) GetProjectOk ¶

func (o *V1alpha1ApplicationSpec) GetProjectOk() (*string, bool)

GetProjectOk returns a tuple with the Project field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSpec) GetRevisionHistoryLimit ¶

func (o *V1alpha1ApplicationSpec) GetRevisionHistoryLimit() string

GetRevisionHistoryLimit returns the RevisionHistoryLimit field value if set, zero value otherwise.

func (*V1alpha1ApplicationSpec) GetRevisionHistoryLimitOk ¶

func (o *V1alpha1ApplicationSpec) GetRevisionHistoryLimitOk() (*string, bool)

GetRevisionHistoryLimitOk returns a tuple with the RevisionHistoryLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSpec) GetSource ¶

GetSource returns the Source field value if set, zero value otherwise.

func (*V1alpha1ApplicationSpec) GetSourceOk ¶

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSpec) GetSyncPolicy ¶

func (o *V1alpha1ApplicationSpec) GetSyncPolicy() V1alpha1SyncPolicy

GetSyncPolicy returns the SyncPolicy field value if set, zero value otherwise.

func (*V1alpha1ApplicationSpec) GetSyncPolicyOk ¶

func (o *V1alpha1ApplicationSpec) GetSyncPolicyOk() (*V1alpha1SyncPolicy, bool)

GetSyncPolicyOk returns a tuple with the SyncPolicy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSpec) HasDestination ¶

func (o *V1alpha1ApplicationSpec) HasDestination() bool

HasDestination returns a boolean if a field has been set.

func (*V1alpha1ApplicationSpec) HasIgnoreDifferences ¶

func (o *V1alpha1ApplicationSpec) HasIgnoreDifferences() bool

HasIgnoreDifferences returns a boolean if a field has been set.

func (*V1alpha1ApplicationSpec) HasInfo ¶

func (o *V1alpha1ApplicationSpec) HasInfo() bool

HasInfo returns a boolean if a field has been set.

func (*V1alpha1ApplicationSpec) HasProject ¶

func (o *V1alpha1ApplicationSpec) HasProject() bool

HasProject returns a boolean if a field has been set.

func (*V1alpha1ApplicationSpec) HasRevisionHistoryLimit ¶

func (o *V1alpha1ApplicationSpec) HasRevisionHistoryLimit() bool

HasRevisionHistoryLimit returns a boolean if a field has been set.

func (*V1alpha1ApplicationSpec) HasSource ¶

func (o *V1alpha1ApplicationSpec) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*V1alpha1ApplicationSpec) HasSyncPolicy ¶

func (o *V1alpha1ApplicationSpec) HasSyncPolicy() bool

HasSyncPolicy returns a boolean if a field has been set.

func (V1alpha1ApplicationSpec) MarshalJSON ¶

func (o V1alpha1ApplicationSpec) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationSpec) SetDestination ¶

SetDestination gets a reference to the given V1alpha1ApplicationDestination and assigns it to the Destination field.

func (*V1alpha1ApplicationSpec) SetIgnoreDifferences ¶

func (o *V1alpha1ApplicationSpec) SetIgnoreDifferences(v []V1alpha1ResourceIgnoreDifferences)

SetIgnoreDifferences gets a reference to the given []V1alpha1ResourceIgnoreDifferences and assigns it to the IgnoreDifferences field.

func (*V1alpha1ApplicationSpec) SetInfo ¶

func (o *V1alpha1ApplicationSpec) SetInfo(v []V1alpha1Info)

SetInfo gets a reference to the given []V1alpha1Info and assigns it to the Info field.

func (*V1alpha1ApplicationSpec) SetProject ¶

func (o *V1alpha1ApplicationSpec) SetProject(v string)

SetProject gets a reference to the given string and assigns it to the Project field.

func (*V1alpha1ApplicationSpec) SetRevisionHistoryLimit ¶

func (o *V1alpha1ApplicationSpec) SetRevisionHistoryLimit(v string)

SetRevisionHistoryLimit gets a reference to the given string and assigns it to the RevisionHistoryLimit field.

func (*V1alpha1ApplicationSpec) SetSource ¶

SetSource gets a reference to the given V1alpha1ApplicationSource and assigns it to the Source field.

func (*V1alpha1ApplicationSpec) SetSyncPolicy ¶

func (o *V1alpha1ApplicationSpec) SetSyncPolicy(v V1alpha1SyncPolicy)

SetSyncPolicy gets a reference to the given V1alpha1SyncPolicy and assigns it to the SyncPolicy field.

func (V1alpha1ApplicationSpec) ToMap ¶

func (o V1alpha1ApplicationSpec) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationStatus ¶

type V1alpha1ApplicationStatus struct {
	Conditions           []V1alpha1ApplicationCondition `json:"conditions,omitempty"`
	Health               *V1alpha1HealthStatus          `json:"health,omitempty"`
	History              []V1alpha1RevisionHistory      `json:"history,omitempty"`
	ObservedAt           *string                        `json:"observedAt,omitempty"`
	OperationState       *V1alpha1OperationState        `json:"operationState,omitempty"`
	ReconciledAt         *string                        `json:"reconciledAt,omitempty"`
	ResourceHealthSource *string                        `json:"resourceHealthSource,omitempty"`
	Resources            []V1alpha1ResourceStatus       `json:"resources,omitempty"`
	SourceType           *string                        `json:"sourceType,omitempty"`
	Summary              *V1alpha1ApplicationSummary    `json:"summary,omitempty"`
	Sync                 *V1alpha1SyncStatus            `json:"sync,omitempty"`
}

V1alpha1ApplicationStatus struct for V1alpha1ApplicationStatus

func NewV1alpha1ApplicationStatus ¶

func NewV1alpha1ApplicationStatus() *V1alpha1ApplicationStatus

NewV1alpha1ApplicationStatus instantiates a new V1alpha1ApplicationStatus 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 NewV1alpha1ApplicationStatusWithDefaults ¶

func NewV1alpha1ApplicationStatusWithDefaults() *V1alpha1ApplicationStatus

NewV1alpha1ApplicationStatusWithDefaults instantiates a new V1alpha1ApplicationStatus 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 (*V1alpha1ApplicationStatus) GetConditions ¶

GetConditions returns the Conditions field value if set, zero value otherwise.

func (*V1alpha1ApplicationStatus) GetConditionsOk ¶

GetConditionsOk returns a tuple with the Conditions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationStatus) GetHealth ¶

GetHealth returns the Health field value if set, zero value otherwise.

func (*V1alpha1ApplicationStatus) GetHealthOk ¶

GetHealthOk returns a tuple with the Health field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationStatus) GetHistory ¶

GetHistory returns the History field value if set, zero value otherwise.

func (*V1alpha1ApplicationStatus) GetHistoryOk ¶

GetHistoryOk returns a tuple with the History field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationStatus) GetObservedAt ¶

func (o *V1alpha1ApplicationStatus) GetObservedAt() string

GetObservedAt returns the ObservedAt field value if set, zero value otherwise.

func (*V1alpha1ApplicationStatus) GetObservedAtOk ¶

func (o *V1alpha1ApplicationStatus) GetObservedAtOk() (*string, bool)

GetObservedAtOk returns a tuple with the ObservedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationStatus) GetOperationState ¶

func (o *V1alpha1ApplicationStatus) GetOperationState() V1alpha1OperationState

GetOperationState returns the OperationState field value if set, zero value otherwise.

func (*V1alpha1ApplicationStatus) GetOperationStateOk ¶

func (o *V1alpha1ApplicationStatus) GetOperationStateOk() (*V1alpha1OperationState, bool)

GetOperationStateOk returns a tuple with the OperationState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationStatus) GetReconciledAt ¶

func (o *V1alpha1ApplicationStatus) GetReconciledAt() string

GetReconciledAt returns the ReconciledAt field value if set, zero value otherwise.

func (*V1alpha1ApplicationStatus) GetReconciledAtOk ¶

func (o *V1alpha1ApplicationStatus) GetReconciledAtOk() (*string, bool)

GetReconciledAtOk returns a tuple with the ReconciledAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationStatus) GetResourceHealthSource ¶

func (o *V1alpha1ApplicationStatus) GetResourceHealthSource() string

GetResourceHealthSource returns the ResourceHealthSource field value if set, zero value otherwise.

func (*V1alpha1ApplicationStatus) GetResourceHealthSourceOk ¶

func (o *V1alpha1ApplicationStatus) GetResourceHealthSourceOk() (*string, bool)

GetResourceHealthSourceOk returns a tuple with the ResourceHealthSource field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationStatus) GetResources ¶

GetResources returns the Resources field value if set, zero value otherwise.

func (*V1alpha1ApplicationStatus) GetResourcesOk ¶

func (o *V1alpha1ApplicationStatus) GetResourcesOk() ([]V1alpha1ResourceStatus, 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 (*V1alpha1ApplicationStatus) GetSourceType ¶

func (o *V1alpha1ApplicationStatus) GetSourceType() string

GetSourceType returns the SourceType field value if set, zero value otherwise.

func (*V1alpha1ApplicationStatus) GetSourceTypeOk ¶

func (o *V1alpha1ApplicationStatus) GetSourceTypeOk() (*string, bool)

GetSourceTypeOk returns a tuple with the SourceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationStatus) GetSummary ¶

GetSummary returns the Summary field value if set, zero value otherwise.

func (*V1alpha1ApplicationStatus) GetSummaryOk ¶

GetSummaryOk returns a tuple with the Summary field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationStatus) GetSync ¶

GetSync returns the Sync field value if set, zero value otherwise.

func (*V1alpha1ApplicationStatus) GetSyncOk ¶

GetSyncOk returns a tuple with the Sync field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationStatus) HasConditions ¶

func (o *V1alpha1ApplicationStatus) HasConditions() bool

HasConditions returns a boolean if a field has been set.

func (*V1alpha1ApplicationStatus) HasHealth ¶

func (o *V1alpha1ApplicationStatus) HasHealth() bool

HasHealth returns a boolean if a field has been set.

func (*V1alpha1ApplicationStatus) HasHistory ¶

func (o *V1alpha1ApplicationStatus) HasHistory() bool

HasHistory returns a boolean if a field has been set.

func (*V1alpha1ApplicationStatus) HasObservedAt ¶

func (o *V1alpha1ApplicationStatus) HasObservedAt() bool

HasObservedAt returns a boolean if a field has been set.

func (*V1alpha1ApplicationStatus) HasOperationState ¶

func (o *V1alpha1ApplicationStatus) HasOperationState() bool

HasOperationState returns a boolean if a field has been set.

func (*V1alpha1ApplicationStatus) HasReconciledAt ¶

func (o *V1alpha1ApplicationStatus) HasReconciledAt() bool

HasReconciledAt returns a boolean if a field has been set.

func (*V1alpha1ApplicationStatus) HasResourceHealthSource ¶

func (o *V1alpha1ApplicationStatus) HasResourceHealthSource() bool

HasResourceHealthSource returns a boolean if a field has been set.

func (*V1alpha1ApplicationStatus) HasResources ¶

func (o *V1alpha1ApplicationStatus) HasResources() bool

HasResources returns a boolean if a field has been set.

func (*V1alpha1ApplicationStatus) HasSourceType ¶

func (o *V1alpha1ApplicationStatus) HasSourceType() bool

HasSourceType returns a boolean if a field has been set.

func (*V1alpha1ApplicationStatus) HasSummary ¶

func (o *V1alpha1ApplicationStatus) HasSummary() bool

HasSummary returns a boolean if a field has been set.

func (*V1alpha1ApplicationStatus) HasSync ¶

func (o *V1alpha1ApplicationStatus) HasSync() bool

HasSync returns a boolean if a field has been set.

func (V1alpha1ApplicationStatus) MarshalJSON ¶

func (o V1alpha1ApplicationStatus) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationStatus) SetConditions ¶

SetConditions gets a reference to the given []V1alpha1ApplicationCondition and assigns it to the Conditions field.

func (*V1alpha1ApplicationStatus) SetHealth ¶

SetHealth gets a reference to the given V1alpha1HealthStatus and assigns it to the Health field.

func (*V1alpha1ApplicationStatus) SetHistory ¶

SetHistory gets a reference to the given []V1alpha1RevisionHistory and assigns it to the History field.

func (*V1alpha1ApplicationStatus) SetObservedAt ¶

func (o *V1alpha1ApplicationStatus) SetObservedAt(v string)

SetObservedAt gets a reference to the given string and assigns it to the ObservedAt field.

func (*V1alpha1ApplicationStatus) SetOperationState ¶

func (o *V1alpha1ApplicationStatus) SetOperationState(v V1alpha1OperationState)

SetOperationState gets a reference to the given V1alpha1OperationState and assigns it to the OperationState field.

func (*V1alpha1ApplicationStatus) SetReconciledAt ¶

func (o *V1alpha1ApplicationStatus) SetReconciledAt(v string)

SetReconciledAt gets a reference to the given string and assigns it to the ReconciledAt field.

func (*V1alpha1ApplicationStatus) SetResourceHealthSource ¶

func (o *V1alpha1ApplicationStatus) SetResourceHealthSource(v string)

SetResourceHealthSource gets a reference to the given string and assigns it to the ResourceHealthSource field.

func (*V1alpha1ApplicationStatus) SetResources ¶

SetResources gets a reference to the given []V1alpha1ResourceStatus and assigns it to the Resources field.

func (*V1alpha1ApplicationStatus) SetSourceType ¶

func (o *V1alpha1ApplicationStatus) SetSourceType(v string)

SetSourceType gets a reference to the given string and assigns it to the SourceType field.

func (*V1alpha1ApplicationStatus) SetSummary ¶

SetSummary gets a reference to the given V1alpha1ApplicationSummary and assigns it to the Summary field.

func (*V1alpha1ApplicationStatus) SetSync ¶

SetSync gets a reference to the given V1alpha1SyncStatus and assigns it to the Sync field.

func (V1alpha1ApplicationStatus) ToMap ¶

func (o V1alpha1ApplicationStatus) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationSummary ¶

type V1alpha1ApplicationSummary struct {
	// ExternalURLs holds all external URLs of application child resources.
	ExternalURLs []string `json:"externalURLs,omitempty"`
	// Images holds all images of application child resources.
	Images []string `json:"images,omitempty"`
}

V1alpha1ApplicationSummary struct for V1alpha1ApplicationSummary

func NewV1alpha1ApplicationSummary ¶

func NewV1alpha1ApplicationSummary() *V1alpha1ApplicationSummary

NewV1alpha1ApplicationSummary instantiates a new V1alpha1ApplicationSummary 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 NewV1alpha1ApplicationSummaryWithDefaults ¶

func NewV1alpha1ApplicationSummaryWithDefaults() *V1alpha1ApplicationSummary

NewV1alpha1ApplicationSummaryWithDefaults instantiates a new V1alpha1ApplicationSummary 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 (*V1alpha1ApplicationSummary) GetExternalURLs ¶

func (o *V1alpha1ApplicationSummary) GetExternalURLs() []string

GetExternalURLs returns the ExternalURLs field value if set, zero value otherwise.

func (*V1alpha1ApplicationSummary) GetExternalURLsOk ¶

func (o *V1alpha1ApplicationSummary) GetExternalURLsOk() ([]string, bool)

GetExternalURLsOk returns a tuple with the ExternalURLs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSummary) GetImages ¶

func (o *V1alpha1ApplicationSummary) GetImages() []string

GetImages returns the Images field value if set, zero value otherwise.

func (*V1alpha1ApplicationSummary) GetImagesOk ¶

func (o *V1alpha1ApplicationSummary) GetImagesOk() ([]string, bool)

GetImagesOk returns a tuple with the Images field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationSummary) HasExternalURLs ¶

func (o *V1alpha1ApplicationSummary) HasExternalURLs() bool

HasExternalURLs returns a boolean if a field has been set.

func (*V1alpha1ApplicationSummary) HasImages ¶

func (o *V1alpha1ApplicationSummary) HasImages() bool

HasImages returns a boolean if a field has been set.

func (V1alpha1ApplicationSummary) MarshalJSON ¶

func (o V1alpha1ApplicationSummary) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationSummary) SetExternalURLs ¶

func (o *V1alpha1ApplicationSummary) SetExternalURLs(v []string)

SetExternalURLs gets a reference to the given []string and assigns it to the ExternalURLs field.

func (*V1alpha1ApplicationSummary) SetImages ¶

func (o *V1alpha1ApplicationSummary) SetImages(v []string)

SetImages gets a reference to the given []string and assigns it to the Images field.

func (V1alpha1ApplicationSummary) ToMap ¶

func (o V1alpha1ApplicationSummary) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationTree ¶

type V1alpha1ApplicationTree struct {
	Hosts []V1alpha1HostInfo `json:"hosts,omitempty"`
	// Nodes contains list of nodes which either directly managed by the application and children of directly managed nodes.
	Nodes []V1alpha1ResourceNode `json:"nodes,omitempty"`
	// OrphanedNodes contains if or orphaned nodes: nodes which are not managed by the app but in the same namespace. List is populated only if orphaned resources enabled in app project.
	OrphanedNodes []V1alpha1ResourceNode `json:"orphanedNodes,omitempty"`
}

V1alpha1ApplicationTree struct for V1alpha1ApplicationTree

func NewV1alpha1ApplicationTree ¶

func NewV1alpha1ApplicationTree() *V1alpha1ApplicationTree

NewV1alpha1ApplicationTree instantiates a new V1alpha1ApplicationTree 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 NewV1alpha1ApplicationTreeWithDefaults ¶

func NewV1alpha1ApplicationTreeWithDefaults() *V1alpha1ApplicationTree

NewV1alpha1ApplicationTreeWithDefaults instantiates a new V1alpha1ApplicationTree 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 (*V1alpha1ApplicationTree) GetHosts ¶

func (o *V1alpha1ApplicationTree) GetHosts() []V1alpha1HostInfo

GetHosts returns the Hosts field value if set, zero value otherwise.

func (*V1alpha1ApplicationTree) GetHostsOk ¶

func (o *V1alpha1ApplicationTree) GetHostsOk() ([]V1alpha1HostInfo, bool)

GetHostsOk returns a tuple with the Hosts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationTree) GetNodes ¶

GetNodes returns the Nodes field value if set, zero value otherwise.

func (*V1alpha1ApplicationTree) GetNodesOk ¶

func (o *V1alpha1ApplicationTree) GetNodesOk() ([]V1alpha1ResourceNode, bool)

GetNodesOk returns a tuple with the Nodes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationTree) GetOrphanedNodes ¶

func (o *V1alpha1ApplicationTree) GetOrphanedNodes() []V1alpha1ResourceNode

GetOrphanedNodes returns the OrphanedNodes field value if set, zero value otherwise.

func (*V1alpha1ApplicationTree) GetOrphanedNodesOk ¶

func (o *V1alpha1ApplicationTree) GetOrphanedNodesOk() ([]V1alpha1ResourceNode, bool)

GetOrphanedNodesOk returns a tuple with the OrphanedNodes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationTree) HasHosts ¶

func (o *V1alpha1ApplicationTree) HasHosts() bool

HasHosts returns a boolean if a field has been set.

func (*V1alpha1ApplicationTree) HasNodes ¶

func (o *V1alpha1ApplicationTree) HasNodes() bool

HasNodes returns a boolean if a field has been set.

func (*V1alpha1ApplicationTree) HasOrphanedNodes ¶

func (o *V1alpha1ApplicationTree) HasOrphanedNodes() bool

HasOrphanedNodes returns a boolean if a field has been set.

func (V1alpha1ApplicationTree) MarshalJSON ¶

func (o V1alpha1ApplicationTree) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationTree) SetHosts ¶

func (o *V1alpha1ApplicationTree) SetHosts(v []V1alpha1HostInfo)

SetHosts gets a reference to the given []V1alpha1HostInfo and assigns it to the Hosts field.

func (*V1alpha1ApplicationTree) SetNodes ¶

SetNodes gets a reference to the given []V1alpha1ResourceNode and assigns it to the Nodes field.

func (*V1alpha1ApplicationTree) SetOrphanedNodes ¶

func (o *V1alpha1ApplicationTree) SetOrphanedNodes(v []V1alpha1ResourceNode)

SetOrphanedNodes gets a reference to the given []V1alpha1ResourceNode and assigns it to the OrphanedNodes field.

func (V1alpha1ApplicationTree) ToMap ¶

func (o V1alpha1ApplicationTree) ToMap() (map[string]interface{}, error)

type V1alpha1ApplicationWatchEvent ¶

type V1alpha1ApplicationWatchEvent struct {
	Application *V1alpha1Application `json:"application,omitempty"`
	Type        *string              `json:"type,omitempty"`
}

V1alpha1ApplicationWatchEvent ApplicationWatchEvent contains information about application change.

func NewV1alpha1ApplicationWatchEvent ¶

func NewV1alpha1ApplicationWatchEvent() *V1alpha1ApplicationWatchEvent

NewV1alpha1ApplicationWatchEvent instantiates a new V1alpha1ApplicationWatchEvent 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 NewV1alpha1ApplicationWatchEventWithDefaults ¶

func NewV1alpha1ApplicationWatchEventWithDefaults() *V1alpha1ApplicationWatchEvent

NewV1alpha1ApplicationWatchEventWithDefaults instantiates a new V1alpha1ApplicationWatchEvent 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 (*V1alpha1ApplicationWatchEvent) GetApplication ¶

GetApplication returns the Application field value if set, zero value otherwise.

func (*V1alpha1ApplicationWatchEvent) GetApplicationOk ¶

func (o *V1alpha1ApplicationWatchEvent) GetApplicationOk() (*V1alpha1Application, bool)

GetApplicationOk returns a tuple with the Application field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationWatchEvent) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*V1alpha1ApplicationWatchEvent) GetTypeOk ¶

func (o *V1alpha1ApplicationWatchEvent) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ApplicationWatchEvent) HasApplication ¶

func (o *V1alpha1ApplicationWatchEvent) HasApplication() bool

HasApplication returns a boolean if a field has been set.

func (*V1alpha1ApplicationWatchEvent) HasType ¶

func (o *V1alpha1ApplicationWatchEvent) HasType() bool

HasType returns a boolean if a field has been set.

func (V1alpha1ApplicationWatchEvent) MarshalJSON ¶

func (o V1alpha1ApplicationWatchEvent) MarshalJSON() ([]byte, error)

func (*V1alpha1ApplicationWatchEvent) SetApplication ¶

SetApplication gets a reference to the given V1alpha1Application and assigns it to the Application field.

func (*V1alpha1ApplicationWatchEvent) SetType ¶

func (o *V1alpha1ApplicationWatchEvent) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (V1alpha1ApplicationWatchEvent) ToMap ¶

func (o V1alpha1ApplicationWatchEvent) ToMap() (map[string]interface{}, error)

type V1alpha1Backoff ¶

type V1alpha1Backoff struct {
	Duration    *string `json:"duration,omitempty"`
	Factor      *string `json:"factor,omitempty"`
	MaxDuration *string `json:"maxDuration,omitempty"`
}

V1alpha1Backoff struct for V1alpha1Backoff

func NewV1alpha1Backoff ¶

func NewV1alpha1Backoff() *V1alpha1Backoff

NewV1alpha1Backoff instantiates a new V1alpha1Backoff 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 NewV1alpha1BackoffWithDefaults ¶

func NewV1alpha1BackoffWithDefaults() *V1alpha1Backoff

NewV1alpha1BackoffWithDefaults instantiates a new V1alpha1Backoff 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 (*V1alpha1Backoff) GetDuration ¶

func (o *V1alpha1Backoff) GetDuration() string

GetDuration returns the Duration field value if set, zero value otherwise.

func (*V1alpha1Backoff) GetDurationOk ¶

func (o *V1alpha1Backoff) GetDurationOk() (*string, bool)

GetDurationOk returns a tuple with the Duration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Backoff) GetFactor ¶

func (o *V1alpha1Backoff) GetFactor() string

GetFactor returns the Factor field value if set, zero value otherwise.

func (*V1alpha1Backoff) GetFactorOk ¶

func (o *V1alpha1Backoff) GetFactorOk() (*string, bool)

GetFactorOk returns a tuple with the Factor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Backoff) GetMaxDuration ¶

func (o *V1alpha1Backoff) GetMaxDuration() string

GetMaxDuration returns the MaxDuration field value if set, zero value otherwise.

func (*V1alpha1Backoff) GetMaxDurationOk ¶

func (o *V1alpha1Backoff) GetMaxDurationOk() (*string, bool)

GetMaxDurationOk returns a tuple with the MaxDuration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Backoff) HasDuration ¶

func (o *V1alpha1Backoff) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*V1alpha1Backoff) HasFactor ¶

func (o *V1alpha1Backoff) HasFactor() bool

HasFactor returns a boolean if a field has been set.

func (*V1alpha1Backoff) HasMaxDuration ¶

func (o *V1alpha1Backoff) HasMaxDuration() bool

HasMaxDuration returns a boolean if a field has been set.

func (V1alpha1Backoff) MarshalJSON ¶

func (o V1alpha1Backoff) MarshalJSON() ([]byte, error)

func (*V1alpha1Backoff) SetDuration ¶

func (o *V1alpha1Backoff) SetDuration(v string)

SetDuration gets a reference to the given string and assigns it to the Duration field.

func (*V1alpha1Backoff) SetFactor ¶

func (o *V1alpha1Backoff) SetFactor(v string)

SetFactor gets a reference to the given string and assigns it to the Factor field.

func (*V1alpha1Backoff) SetMaxDuration ¶

func (o *V1alpha1Backoff) SetMaxDuration(v string)

SetMaxDuration gets a reference to the given string and assigns it to the MaxDuration field.

func (V1alpha1Backoff) ToMap ¶

func (o V1alpha1Backoff) ToMap() (map[string]interface{}, error)

type V1alpha1BasicAuthBitbucketServer ¶

type V1alpha1BasicAuthBitbucketServer struct {
	PasswordRef *V1alpha1SecretRef `json:"passwordRef,omitempty"`
	Username    *string            `json:"username,omitempty"`
}

V1alpha1BasicAuthBitbucketServer BasicAuthBitbucketServer defines the username/(password or personal access token) for Basic auth.

func NewV1alpha1BasicAuthBitbucketServer ¶

func NewV1alpha1BasicAuthBitbucketServer() *V1alpha1BasicAuthBitbucketServer

NewV1alpha1BasicAuthBitbucketServer instantiates a new V1alpha1BasicAuthBitbucketServer 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 NewV1alpha1BasicAuthBitbucketServerWithDefaults ¶

func NewV1alpha1BasicAuthBitbucketServerWithDefaults() *V1alpha1BasicAuthBitbucketServer

NewV1alpha1BasicAuthBitbucketServerWithDefaults instantiates a new V1alpha1BasicAuthBitbucketServer 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 (*V1alpha1BasicAuthBitbucketServer) GetPasswordRef ¶

GetPasswordRef returns the PasswordRef field value if set, zero value otherwise.

func (*V1alpha1BasicAuthBitbucketServer) GetPasswordRefOk ¶

func (o *V1alpha1BasicAuthBitbucketServer) GetPasswordRefOk() (*V1alpha1SecretRef, bool)

GetPasswordRefOk returns a tuple with the PasswordRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1BasicAuthBitbucketServer) GetUsername ¶

func (o *V1alpha1BasicAuthBitbucketServer) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*V1alpha1BasicAuthBitbucketServer) GetUsernameOk ¶

func (o *V1alpha1BasicAuthBitbucketServer) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1BasicAuthBitbucketServer) HasPasswordRef ¶

func (o *V1alpha1BasicAuthBitbucketServer) HasPasswordRef() bool

HasPasswordRef returns a boolean if a field has been set.

func (*V1alpha1BasicAuthBitbucketServer) HasUsername ¶

func (o *V1alpha1BasicAuthBitbucketServer) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (V1alpha1BasicAuthBitbucketServer) MarshalJSON ¶

func (o V1alpha1BasicAuthBitbucketServer) MarshalJSON() ([]byte, error)

func (*V1alpha1BasicAuthBitbucketServer) SetPasswordRef ¶

SetPasswordRef gets a reference to the given V1alpha1SecretRef and assigns it to the PasswordRef field.

func (*V1alpha1BasicAuthBitbucketServer) SetUsername ¶

func (o *V1alpha1BasicAuthBitbucketServer) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (V1alpha1BasicAuthBitbucketServer) ToMap ¶

func (o V1alpha1BasicAuthBitbucketServer) ToMap() (map[string]interface{}, error)

type V1alpha1Cluster ¶

type V1alpha1Cluster struct {
	Annotations *map[string]string `json:"annotations,omitempty"`
	// Indicates if cluster level resources should be managed. This setting is used only if cluster is connected in a namespaced mode.
	ClusterResources *bool                    `json:"clusterResources,omitempty"`
	Config           *V1alpha1ClusterConfig   `json:"config,omitempty"`
	ConnectionState  *V1alpha1ConnectionState `json:"connectionState,omitempty"`
	Info             *V1alpha1ClusterInfo     `json:"info,omitempty"`
	Labels           *map[string]string       `json:"labels,omitempty"`
	Name             *string                  `json:"name,omitempty"`
	// Holds list of namespaces which are accessible in that cluster. Cluster level resources will be ignored if namespace list is not empty.
	Namespaces         []string `json:"namespaces,omitempty"`
	Project            *string  `json:"project,omitempty"`
	RefreshRequestedAt *string  `json:"refreshRequestedAt,omitempty"`
	Server             *string  `json:"server,omitempty"`
	ServerVersion      *string  `json:"serverVersion,omitempty"`
	// Shard contains optional shard number. Calculated on the fly by the application controller if not specified.
	Shard *string `json:"shard,omitempty"`
}

V1alpha1Cluster struct for V1alpha1Cluster

func NewV1alpha1Cluster ¶

func NewV1alpha1Cluster() *V1alpha1Cluster

NewV1alpha1Cluster instantiates a new V1alpha1Cluster 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 NewV1alpha1ClusterWithDefaults ¶

func NewV1alpha1ClusterWithDefaults() *V1alpha1Cluster

NewV1alpha1ClusterWithDefaults instantiates a new V1alpha1Cluster 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 (*V1alpha1Cluster) GetAnnotations ¶

func (o *V1alpha1Cluster) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*V1alpha1Cluster) GetAnnotationsOk ¶

func (o *V1alpha1Cluster) GetAnnotationsOk() (*map[string]string, bool)

GetAnnotationsOk returns a tuple with the Annotations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Cluster) GetClusterResources ¶

func (o *V1alpha1Cluster) GetClusterResources() bool

GetClusterResources returns the ClusterResources field value if set, zero value otherwise.

func (*V1alpha1Cluster) GetClusterResourcesOk ¶

func (o *V1alpha1Cluster) GetClusterResourcesOk() (*bool, bool)

GetClusterResourcesOk returns a tuple with the ClusterResources field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Cluster) GetConfig ¶

func (o *V1alpha1Cluster) GetConfig() V1alpha1ClusterConfig

GetConfig returns the Config field value if set, zero value otherwise.

func (*V1alpha1Cluster) GetConfigOk ¶

func (o *V1alpha1Cluster) GetConfigOk() (*V1alpha1ClusterConfig, bool)

GetConfigOk returns a tuple with the Config field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Cluster) GetConnectionState ¶

func (o *V1alpha1Cluster) GetConnectionState() V1alpha1ConnectionState

GetConnectionState returns the ConnectionState field value if set, zero value otherwise.

func (*V1alpha1Cluster) GetConnectionStateOk ¶

func (o *V1alpha1Cluster) GetConnectionStateOk() (*V1alpha1ConnectionState, bool)

GetConnectionStateOk returns a tuple with the ConnectionState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Cluster) GetInfo ¶

func (o *V1alpha1Cluster) GetInfo() V1alpha1ClusterInfo

GetInfo returns the Info field value if set, zero value otherwise.

func (*V1alpha1Cluster) GetInfoOk ¶

func (o *V1alpha1Cluster) GetInfoOk() (*V1alpha1ClusterInfo, bool)

GetInfoOk returns a tuple with the Info field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Cluster) GetLabels ¶

func (o *V1alpha1Cluster) GetLabels() map[string]string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*V1alpha1Cluster) GetLabelsOk ¶

func (o *V1alpha1Cluster) GetLabelsOk() (*map[string]string, bool)

GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Cluster) GetName ¶

func (o *V1alpha1Cluster) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1Cluster) GetNameOk ¶

func (o *V1alpha1Cluster) 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 (*V1alpha1Cluster) GetNamespaces ¶

func (o *V1alpha1Cluster) GetNamespaces() []string

GetNamespaces returns the Namespaces field value if set, zero value otherwise.

func (*V1alpha1Cluster) GetNamespacesOk ¶

func (o *V1alpha1Cluster) 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 (*V1alpha1Cluster) GetProject ¶

func (o *V1alpha1Cluster) GetProject() string

GetProject returns the Project field value if set, zero value otherwise.

func (*V1alpha1Cluster) GetProjectOk ¶

func (o *V1alpha1Cluster) GetProjectOk() (*string, bool)

GetProjectOk returns a tuple with the Project field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Cluster) GetRefreshRequestedAt ¶

func (o *V1alpha1Cluster) GetRefreshRequestedAt() string

GetRefreshRequestedAt returns the RefreshRequestedAt field value if set, zero value otherwise.

func (*V1alpha1Cluster) GetRefreshRequestedAtOk ¶

func (o *V1alpha1Cluster) GetRefreshRequestedAtOk() (*string, bool)

GetRefreshRequestedAtOk returns a tuple with the RefreshRequestedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Cluster) GetServer ¶

func (o *V1alpha1Cluster) GetServer() string

GetServer returns the Server field value if set, zero value otherwise.

func (*V1alpha1Cluster) GetServerOk ¶

func (o *V1alpha1Cluster) GetServerOk() (*string, bool)

GetServerOk returns a tuple with the Server field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Cluster) GetServerVersion ¶

func (o *V1alpha1Cluster) GetServerVersion() string

GetServerVersion returns the ServerVersion field value if set, zero value otherwise.

func (*V1alpha1Cluster) GetServerVersionOk ¶

func (o *V1alpha1Cluster) GetServerVersionOk() (*string, bool)

GetServerVersionOk returns a tuple with the ServerVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Cluster) GetShard ¶

func (o *V1alpha1Cluster) GetShard() string

GetShard returns the Shard field value if set, zero value otherwise.

func (*V1alpha1Cluster) GetShardOk ¶

func (o *V1alpha1Cluster) GetShardOk() (*string, bool)

GetShardOk returns a tuple with the Shard field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Cluster) HasAnnotations ¶

func (o *V1alpha1Cluster) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*V1alpha1Cluster) HasClusterResources ¶

func (o *V1alpha1Cluster) HasClusterResources() bool

HasClusterResources returns a boolean if a field has been set.

func (*V1alpha1Cluster) HasConfig ¶

func (o *V1alpha1Cluster) HasConfig() bool

HasConfig returns a boolean if a field has been set.

func (*V1alpha1Cluster) HasConnectionState ¶

func (o *V1alpha1Cluster) HasConnectionState() bool

HasConnectionState returns a boolean if a field has been set.

func (*V1alpha1Cluster) HasInfo ¶

func (o *V1alpha1Cluster) HasInfo() bool

HasInfo returns a boolean if a field has been set.

func (*V1alpha1Cluster) HasLabels ¶

func (o *V1alpha1Cluster) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*V1alpha1Cluster) HasName ¶

func (o *V1alpha1Cluster) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1alpha1Cluster) HasNamespaces ¶

func (o *V1alpha1Cluster) HasNamespaces() bool

HasNamespaces returns a boolean if a field has been set.

func (*V1alpha1Cluster) HasProject ¶

func (o *V1alpha1Cluster) HasProject() bool

HasProject returns a boolean if a field has been set.

func (*V1alpha1Cluster) HasRefreshRequestedAt ¶

func (o *V1alpha1Cluster) HasRefreshRequestedAt() bool

HasRefreshRequestedAt returns a boolean if a field has been set.

func (*V1alpha1Cluster) HasServer ¶

func (o *V1alpha1Cluster) HasServer() bool

HasServer returns a boolean if a field has been set.

func (*V1alpha1Cluster) HasServerVersion ¶

func (o *V1alpha1Cluster) HasServerVersion() bool

HasServerVersion returns a boolean if a field has been set.

func (*V1alpha1Cluster) HasShard ¶

func (o *V1alpha1Cluster) HasShard() bool

HasShard returns a boolean if a field has been set.

func (V1alpha1Cluster) MarshalJSON ¶

func (o V1alpha1Cluster) MarshalJSON() ([]byte, error)

func (*V1alpha1Cluster) SetAnnotations ¶

func (o *V1alpha1Cluster) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*V1alpha1Cluster) SetClusterResources ¶

func (o *V1alpha1Cluster) SetClusterResources(v bool)

SetClusterResources gets a reference to the given bool and assigns it to the ClusterResources field.

func (*V1alpha1Cluster) SetConfig ¶

func (o *V1alpha1Cluster) SetConfig(v V1alpha1ClusterConfig)

SetConfig gets a reference to the given V1alpha1ClusterConfig and assigns it to the Config field.

func (*V1alpha1Cluster) SetConnectionState ¶

func (o *V1alpha1Cluster) SetConnectionState(v V1alpha1ConnectionState)

SetConnectionState gets a reference to the given V1alpha1ConnectionState and assigns it to the ConnectionState field.

func (*V1alpha1Cluster) SetInfo ¶

func (o *V1alpha1Cluster) SetInfo(v V1alpha1ClusterInfo)

SetInfo gets a reference to the given V1alpha1ClusterInfo and assigns it to the Info field.

func (*V1alpha1Cluster) SetLabels ¶

func (o *V1alpha1Cluster) SetLabels(v map[string]string)

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*V1alpha1Cluster) SetName ¶

func (o *V1alpha1Cluster) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1Cluster) SetNamespaces ¶

func (o *V1alpha1Cluster) SetNamespaces(v []string)

SetNamespaces gets a reference to the given []string and assigns it to the Namespaces field.

func (*V1alpha1Cluster) SetProject ¶

func (o *V1alpha1Cluster) SetProject(v string)

SetProject gets a reference to the given string and assigns it to the Project field.

func (*V1alpha1Cluster) SetRefreshRequestedAt ¶

func (o *V1alpha1Cluster) SetRefreshRequestedAt(v string)

SetRefreshRequestedAt gets a reference to the given string and assigns it to the RefreshRequestedAt field.

func (*V1alpha1Cluster) SetServer ¶

func (o *V1alpha1Cluster) SetServer(v string)

SetServer gets a reference to the given string and assigns it to the Server field.

func (*V1alpha1Cluster) SetServerVersion ¶

func (o *V1alpha1Cluster) SetServerVersion(v string)

SetServerVersion gets a reference to the given string and assigns it to the ServerVersion field.

func (*V1alpha1Cluster) SetShard ¶

func (o *V1alpha1Cluster) SetShard(v string)

SetShard gets a reference to the given string and assigns it to the Shard field.

func (V1alpha1Cluster) ToMap ¶

func (o V1alpha1Cluster) ToMap() (map[string]interface{}, error)

type V1alpha1ClusterCacheInfo ¶

type V1alpha1ClusterCacheInfo struct {
	ApisCount         *int32  `json:"apisCount,omitempty"`
	LastCacheSyncTime *string `json:"lastCacheSyncTime,omitempty"`
	ResourcesCount    *int32  `json:"resourcesCount,omitempty"`
}

V1alpha1ClusterCacheInfo struct for V1alpha1ClusterCacheInfo

func NewV1alpha1ClusterCacheInfo ¶

func NewV1alpha1ClusterCacheInfo() *V1alpha1ClusterCacheInfo

NewV1alpha1ClusterCacheInfo instantiates a new V1alpha1ClusterCacheInfo 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 NewV1alpha1ClusterCacheInfoWithDefaults ¶

func NewV1alpha1ClusterCacheInfoWithDefaults() *V1alpha1ClusterCacheInfo

NewV1alpha1ClusterCacheInfoWithDefaults instantiates a new V1alpha1ClusterCacheInfo 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 (*V1alpha1ClusterCacheInfo) GetApisCount ¶

func (o *V1alpha1ClusterCacheInfo) GetApisCount() int32

GetApisCount returns the ApisCount field value if set, zero value otherwise.

func (*V1alpha1ClusterCacheInfo) GetApisCountOk ¶

func (o *V1alpha1ClusterCacheInfo) GetApisCountOk() (*int32, bool)

GetApisCountOk returns a tuple with the ApisCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ClusterCacheInfo) GetLastCacheSyncTime ¶

func (o *V1alpha1ClusterCacheInfo) GetLastCacheSyncTime() string

GetLastCacheSyncTime returns the LastCacheSyncTime field value if set, zero value otherwise.

func (*V1alpha1ClusterCacheInfo) GetLastCacheSyncTimeOk ¶

func (o *V1alpha1ClusterCacheInfo) GetLastCacheSyncTimeOk() (*string, bool)

GetLastCacheSyncTimeOk returns a tuple with the LastCacheSyncTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ClusterCacheInfo) GetResourcesCount ¶

func (o *V1alpha1ClusterCacheInfo) GetResourcesCount() int32

GetResourcesCount returns the ResourcesCount field value if set, zero value otherwise.

func (*V1alpha1ClusterCacheInfo) GetResourcesCountOk ¶

func (o *V1alpha1ClusterCacheInfo) GetResourcesCountOk() (*int32, bool)

GetResourcesCountOk returns a tuple with the ResourcesCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ClusterCacheInfo) HasApisCount ¶

func (o *V1alpha1ClusterCacheInfo) HasApisCount() bool

HasApisCount returns a boolean if a field has been set.

func (*V1alpha1ClusterCacheInfo) HasLastCacheSyncTime ¶

func (o *V1alpha1ClusterCacheInfo) HasLastCacheSyncTime() bool

HasLastCacheSyncTime returns a boolean if a field has been set.

func (*V1alpha1ClusterCacheInfo) HasResourcesCount ¶

func (o *V1alpha1ClusterCacheInfo) HasResourcesCount() bool

HasResourcesCount returns a boolean if a field has been set.

func (V1alpha1ClusterCacheInfo) MarshalJSON ¶

func (o V1alpha1ClusterCacheInfo) MarshalJSON() ([]byte, error)

func (*V1alpha1ClusterCacheInfo) SetApisCount ¶

func (o *V1alpha1ClusterCacheInfo) SetApisCount(v int32)

SetApisCount gets a reference to the given int32 and assigns it to the ApisCount field.

func (*V1alpha1ClusterCacheInfo) SetLastCacheSyncTime ¶

func (o *V1alpha1ClusterCacheInfo) SetLastCacheSyncTime(v string)

SetLastCacheSyncTime gets a reference to the given string and assigns it to the LastCacheSyncTime field.

func (*V1alpha1ClusterCacheInfo) SetResourcesCount ¶

func (o *V1alpha1ClusterCacheInfo) SetResourcesCount(v int32)

SetResourcesCount gets a reference to the given int32 and assigns it to the ResourcesCount field.

func (V1alpha1ClusterCacheInfo) ToMap ¶

func (o V1alpha1ClusterCacheInfo) ToMap() (map[string]interface{}, error)

type V1alpha1ClusterConfig ¶

type V1alpha1ClusterConfig struct {
	AwsAuthConfig *V1alpha1AWSAuthConfig `json:"awsAuthConfig,omitempty"`
	// Server requires Bearer authentication. This client will not attempt to use refresh tokens for an OAuth2 flow. TODO: demonstrate an OAuth2 compatible client.
	BearerToken        *string                     `json:"bearerToken,omitempty"`
	ExecProviderConfig *V1alpha1ExecProviderConfig `json:"execProviderConfig,omitempty"`
	Password           *string                     `json:"password,omitempty"`
	TlsClientConfig    *V1alpha1TLSClientConfig    `json:"tlsClientConfig,omitempty"`
	Username           *string                     `json:"username,omitempty"`
}

V1alpha1ClusterConfig ClusterConfig is the configuration attributes. This structure is subset of the go-client rest.Config with annotations added for marshalling.

func NewV1alpha1ClusterConfig ¶

func NewV1alpha1ClusterConfig() *V1alpha1ClusterConfig

NewV1alpha1ClusterConfig instantiates a new V1alpha1ClusterConfig 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 NewV1alpha1ClusterConfigWithDefaults ¶

func NewV1alpha1ClusterConfigWithDefaults() *V1alpha1ClusterConfig

NewV1alpha1ClusterConfigWithDefaults instantiates a new V1alpha1ClusterConfig 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 (*V1alpha1ClusterConfig) GetAwsAuthConfig ¶

func (o *V1alpha1ClusterConfig) GetAwsAuthConfig() V1alpha1AWSAuthConfig

GetAwsAuthConfig returns the AwsAuthConfig field value if set, zero value otherwise.

func (*V1alpha1ClusterConfig) GetAwsAuthConfigOk ¶

func (o *V1alpha1ClusterConfig) GetAwsAuthConfigOk() (*V1alpha1AWSAuthConfig, bool)

GetAwsAuthConfigOk returns a tuple with the AwsAuthConfig field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ClusterConfig) GetBearerToken ¶

func (o *V1alpha1ClusterConfig) GetBearerToken() string

GetBearerToken returns the BearerToken field value if set, zero value otherwise.

func (*V1alpha1ClusterConfig) GetBearerTokenOk ¶

func (o *V1alpha1ClusterConfig) GetBearerTokenOk() (*string, bool)

GetBearerTokenOk returns a tuple with the BearerToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ClusterConfig) GetExecProviderConfig ¶

func (o *V1alpha1ClusterConfig) GetExecProviderConfig() V1alpha1ExecProviderConfig

GetExecProviderConfig returns the ExecProviderConfig field value if set, zero value otherwise.

func (*V1alpha1ClusterConfig) GetExecProviderConfigOk ¶

func (o *V1alpha1ClusterConfig) GetExecProviderConfigOk() (*V1alpha1ExecProviderConfig, bool)

GetExecProviderConfigOk returns a tuple with the ExecProviderConfig field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ClusterConfig) GetPassword ¶

func (o *V1alpha1ClusterConfig) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*V1alpha1ClusterConfig) GetPasswordOk ¶

func (o *V1alpha1ClusterConfig) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ClusterConfig) GetTlsClientConfig ¶

func (o *V1alpha1ClusterConfig) GetTlsClientConfig() V1alpha1TLSClientConfig

GetTlsClientConfig returns the TlsClientConfig field value if set, zero value otherwise.

func (*V1alpha1ClusterConfig) GetTlsClientConfigOk ¶

func (o *V1alpha1ClusterConfig) GetTlsClientConfigOk() (*V1alpha1TLSClientConfig, bool)

GetTlsClientConfigOk returns a tuple with the TlsClientConfig field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ClusterConfig) GetUsername ¶

func (o *V1alpha1ClusterConfig) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*V1alpha1ClusterConfig) GetUsernameOk ¶

func (o *V1alpha1ClusterConfig) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ClusterConfig) HasAwsAuthConfig ¶

func (o *V1alpha1ClusterConfig) HasAwsAuthConfig() bool

HasAwsAuthConfig returns a boolean if a field has been set.

func (*V1alpha1ClusterConfig) HasBearerToken ¶

func (o *V1alpha1ClusterConfig) HasBearerToken() bool

HasBearerToken returns a boolean if a field has been set.

func (*V1alpha1ClusterConfig) HasExecProviderConfig ¶

func (o *V1alpha1ClusterConfig) HasExecProviderConfig() bool

HasExecProviderConfig returns a boolean if a field has been set.

func (*V1alpha1ClusterConfig) HasPassword ¶

func (o *V1alpha1ClusterConfig) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*V1alpha1ClusterConfig) HasTlsClientConfig ¶

func (o *V1alpha1ClusterConfig) HasTlsClientConfig() bool

HasTlsClientConfig returns a boolean if a field has been set.

func (*V1alpha1ClusterConfig) HasUsername ¶

func (o *V1alpha1ClusterConfig) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (V1alpha1ClusterConfig) MarshalJSON ¶

func (o V1alpha1ClusterConfig) MarshalJSON() ([]byte, error)

func (*V1alpha1ClusterConfig) SetAwsAuthConfig ¶

func (o *V1alpha1ClusterConfig) SetAwsAuthConfig(v V1alpha1AWSAuthConfig)

SetAwsAuthConfig gets a reference to the given V1alpha1AWSAuthConfig and assigns it to the AwsAuthConfig field.

func (*V1alpha1ClusterConfig) SetBearerToken ¶

func (o *V1alpha1ClusterConfig) SetBearerToken(v string)

SetBearerToken gets a reference to the given string and assigns it to the BearerToken field.

func (*V1alpha1ClusterConfig) SetExecProviderConfig ¶

func (o *V1alpha1ClusterConfig) SetExecProviderConfig(v V1alpha1ExecProviderConfig)

SetExecProviderConfig gets a reference to the given V1alpha1ExecProviderConfig and assigns it to the ExecProviderConfig field.

func (*V1alpha1ClusterConfig) SetPassword ¶

func (o *V1alpha1ClusterConfig) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*V1alpha1ClusterConfig) SetTlsClientConfig ¶

func (o *V1alpha1ClusterConfig) SetTlsClientConfig(v V1alpha1TLSClientConfig)

SetTlsClientConfig gets a reference to the given V1alpha1TLSClientConfig and assigns it to the TlsClientConfig field.

func (*V1alpha1ClusterConfig) SetUsername ¶

func (o *V1alpha1ClusterConfig) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (V1alpha1ClusterConfig) ToMap ¶

func (o V1alpha1ClusterConfig) ToMap() (map[string]interface{}, error)

type V1alpha1ClusterGenerator ¶

type V1alpha1ClusterGenerator struct {
	Selector *V1LabelSelector                `json:"selector,omitempty"`
	Template *V1alpha1ApplicationSetTemplate `json:"template,omitempty"`
	Values   *map[string]string              `json:"values,omitempty"`
}

V1alpha1ClusterGenerator ClusterGenerator defines a generator to match against clusters registered with ArgoCD.

func NewV1alpha1ClusterGenerator ¶

func NewV1alpha1ClusterGenerator() *V1alpha1ClusterGenerator

NewV1alpha1ClusterGenerator instantiates a new V1alpha1ClusterGenerator 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 NewV1alpha1ClusterGeneratorWithDefaults ¶

func NewV1alpha1ClusterGeneratorWithDefaults() *V1alpha1ClusterGenerator

NewV1alpha1ClusterGeneratorWithDefaults instantiates a new V1alpha1ClusterGenerator 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 (*V1alpha1ClusterGenerator) GetSelector ¶

func (o *V1alpha1ClusterGenerator) GetSelector() V1LabelSelector

GetSelector returns the Selector field value if set, zero value otherwise.

func (*V1alpha1ClusterGenerator) GetSelectorOk ¶

func (o *V1alpha1ClusterGenerator) GetSelectorOk() (*V1LabelSelector, bool)

GetSelectorOk returns a tuple with the Selector field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ClusterGenerator) GetTemplate ¶

GetTemplate returns the Template field value if set, zero value otherwise.

func (*V1alpha1ClusterGenerator) GetTemplateOk ¶

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ClusterGenerator) GetValues ¶

func (o *V1alpha1ClusterGenerator) GetValues() map[string]string

GetValues returns the Values field value if set, zero value otherwise.

func (*V1alpha1ClusterGenerator) GetValuesOk ¶

func (o *V1alpha1ClusterGenerator) GetValuesOk() (*map[string]string, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ClusterGenerator) HasSelector ¶

func (o *V1alpha1ClusterGenerator) HasSelector() bool

HasSelector returns a boolean if a field has been set.

func (*V1alpha1ClusterGenerator) HasTemplate ¶

func (o *V1alpha1ClusterGenerator) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (*V1alpha1ClusterGenerator) HasValues ¶

func (o *V1alpha1ClusterGenerator) HasValues() bool

HasValues returns a boolean if a field has been set.

func (V1alpha1ClusterGenerator) MarshalJSON ¶

func (o V1alpha1ClusterGenerator) MarshalJSON() ([]byte, error)

func (*V1alpha1ClusterGenerator) SetSelector ¶

func (o *V1alpha1ClusterGenerator) SetSelector(v V1LabelSelector)

SetSelector gets a reference to the given V1LabelSelector and assigns it to the Selector field.

func (*V1alpha1ClusterGenerator) SetTemplate ¶

SetTemplate gets a reference to the given V1alpha1ApplicationSetTemplate and assigns it to the Template field.

func (*V1alpha1ClusterGenerator) SetValues ¶

func (o *V1alpha1ClusterGenerator) SetValues(v map[string]string)

SetValues gets a reference to the given map[string]string and assigns it to the Values field.

func (V1alpha1ClusterGenerator) ToMap ¶

func (o V1alpha1ClusterGenerator) ToMap() (map[string]interface{}, error)

type V1alpha1ClusterInfo ¶

type V1alpha1ClusterInfo struct {
	ApiVersions       []string                  `json:"apiVersions,omitempty"`
	ApplicationsCount *int32                    `json:"applicationsCount,omitempty"`
	CacheInfo         *V1alpha1ClusterCacheInfo `json:"cacheInfo,omitempty"`
	ConnectionState   *V1alpha1ConnectionState  `json:"connectionState,omitempty"`
	ServerVersion     *string                   `json:"serverVersion,omitempty"`
}

V1alpha1ClusterInfo struct for V1alpha1ClusterInfo

func NewV1alpha1ClusterInfo ¶

func NewV1alpha1ClusterInfo() *V1alpha1ClusterInfo

NewV1alpha1ClusterInfo instantiates a new V1alpha1ClusterInfo 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 NewV1alpha1ClusterInfoWithDefaults ¶

func NewV1alpha1ClusterInfoWithDefaults() *V1alpha1ClusterInfo

NewV1alpha1ClusterInfoWithDefaults instantiates a new V1alpha1ClusterInfo 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 (*V1alpha1ClusterInfo) GetApiVersions ¶

func (o *V1alpha1ClusterInfo) GetApiVersions() []string

GetApiVersions returns the ApiVersions field value if set, zero value otherwise.

func (*V1alpha1ClusterInfo) GetApiVersionsOk ¶

func (o *V1alpha1ClusterInfo) GetApiVersionsOk() ([]string, bool)

GetApiVersionsOk returns a tuple with the ApiVersions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ClusterInfo) GetApplicationsCount ¶

func (o *V1alpha1ClusterInfo) GetApplicationsCount() int32

GetApplicationsCount returns the ApplicationsCount field value if set, zero value otherwise.

func (*V1alpha1ClusterInfo) GetApplicationsCountOk ¶

func (o *V1alpha1ClusterInfo) GetApplicationsCountOk() (*int32, bool)

GetApplicationsCountOk returns a tuple with the ApplicationsCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ClusterInfo) GetCacheInfo ¶

GetCacheInfo returns the CacheInfo field value if set, zero value otherwise.

func (*V1alpha1ClusterInfo) GetCacheInfoOk ¶

func (o *V1alpha1ClusterInfo) GetCacheInfoOk() (*V1alpha1ClusterCacheInfo, bool)

GetCacheInfoOk returns a tuple with the CacheInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ClusterInfo) GetConnectionState ¶

func (o *V1alpha1ClusterInfo) GetConnectionState() V1alpha1ConnectionState

GetConnectionState returns the ConnectionState field value if set, zero value otherwise.

func (*V1alpha1ClusterInfo) GetConnectionStateOk ¶

func (o *V1alpha1ClusterInfo) GetConnectionStateOk() (*V1alpha1ConnectionState, bool)

GetConnectionStateOk returns a tuple with the ConnectionState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ClusterInfo) GetServerVersion ¶

func (o *V1alpha1ClusterInfo) GetServerVersion() string

GetServerVersion returns the ServerVersion field value if set, zero value otherwise.

func (*V1alpha1ClusterInfo) GetServerVersionOk ¶

func (o *V1alpha1ClusterInfo) GetServerVersionOk() (*string, bool)

GetServerVersionOk returns a tuple with the ServerVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ClusterInfo) HasApiVersions ¶

func (o *V1alpha1ClusterInfo) HasApiVersions() bool

HasApiVersions returns a boolean if a field has been set.

func (*V1alpha1ClusterInfo) HasApplicationsCount ¶

func (o *V1alpha1ClusterInfo) HasApplicationsCount() bool

HasApplicationsCount returns a boolean if a field has been set.

func (*V1alpha1ClusterInfo) HasCacheInfo ¶

func (o *V1alpha1ClusterInfo) HasCacheInfo() bool

HasCacheInfo returns a boolean if a field has been set.

func (*V1alpha1ClusterInfo) HasConnectionState ¶

func (o *V1alpha1ClusterInfo) HasConnectionState() bool

HasConnectionState returns a boolean if a field has been set.

func (*V1alpha1ClusterInfo) HasServerVersion ¶

func (o *V1alpha1ClusterInfo) HasServerVersion() bool

HasServerVersion returns a boolean if a field has been set.

func (V1alpha1ClusterInfo) MarshalJSON ¶

func (o V1alpha1ClusterInfo) MarshalJSON() ([]byte, error)

func (*V1alpha1ClusterInfo) SetApiVersions ¶

func (o *V1alpha1ClusterInfo) SetApiVersions(v []string)

SetApiVersions gets a reference to the given []string and assigns it to the ApiVersions field.

func (*V1alpha1ClusterInfo) SetApplicationsCount ¶

func (o *V1alpha1ClusterInfo) SetApplicationsCount(v int32)

SetApplicationsCount gets a reference to the given int32 and assigns it to the ApplicationsCount field.

func (*V1alpha1ClusterInfo) SetCacheInfo ¶

func (o *V1alpha1ClusterInfo) SetCacheInfo(v V1alpha1ClusterCacheInfo)

SetCacheInfo gets a reference to the given V1alpha1ClusterCacheInfo and assigns it to the CacheInfo field.

func (*V1alpha1ClusterInfo) SetConnectionState ¶

func (o *V1alpha1ClusterInfo) SetConnectionState(v V1alpha1ConnectionState)

SetConnectionState gets a reference to the given V1alpha1ConnectionState and assigns it to the ConnectionState field.

func (*V1alpha1ClusterInfo) SetServerVersion ¶

func (o *V1alpha1ClusterInfo) SetServerVersion(v string)

SetServerVersion gets a reference to the given string and assigns it to the ServerVersion field.

func (V1alpha1ClusterInfo) ToMap ¶

func (o V1alpha1ClusterInfo) ToMap() (map[string]interface{}, error)

type V1alpha1ClusterList ¶

type V1alpha1ClusterList struct {
	Items    []V1alpha1Cluster `json:"items,omitempty"`
	Metadata *V1ListMeta       `json:"metadata,omitempty"`
}

V1alpha1ClusterList ClusterList is a collection of Clusters.

func NewV1alpha1ClusterList ¶

func NewV1alpha1ClusterList() *V1alpha1ClusterList

NewV1alpha1ClusterList instantiates a new V1alpha1ClusterList 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 NewV1alpha1ClusterListWithDefaults ¶

func NewV1alpha1ClusterListWithDefaults() *V1alpha1ClusterList

NewV1alpha1ClusterListWithDefaults instantiates a new V1alpha1ClusterList 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 (*V1alpha1ClusterList) GetItems ¶

func (o *V1alpha1ClusterList) GetItems() []V1alpha1Cluster

GetItems returns the Items field value if set, zero value otherwise.

func (*V1alpha1ClusterList) GetItemsOk ¶

func (o *V1alpha1ClusterList) GetItemsOk() ([]V1alpha1Cluster, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ClusterList) GetMetadata ¶

func (o *V1alpha1ClusterList) GetMetadata() V1ListMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*V1alpha1ClusterList) GetMetadataOk ¶

func (o *V1alpha1ClusterList) GetMetadataOk() (*V1ListMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ClusterList) HasItems ¶

func (o *V1alpha1ClusterList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*V1alpha1ClusterList) HasMetadata ¶

func (o *V1alpha1ClusterList) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (V1alpha1ClusterList) MarshalJSON ¶

func (o V1alpha1ClusterList) MarshalJSON() ([]byte, error)

func (*V1alpha1ClusterList) SetItems ¶

func (o *V1alpha1ClusterList) SetItems(v []V1alpha1Cluster)

SetItems gets a reference to the given []V1alpha1Cluster and assigns it to the Items field.

func (*V1alpha1ClusterList) SetMetadata ¶

func (o *V1alpha1ClusterList) SetMetadata(v V1ListMeta)

SetMetadata gets a reference to the given V1ListMeta and assigns it to the Metadata field.

func (V1alpha1ClusterList) ToMap ¶

func (o V1alpha1ClusterList) ToMap() (map[string]interface{}, error)

type V1alpha1Command ¶

type V1alpha1Command struct {
	Args    []string `json:"args,omitempty"`
	Command []string `json:"command,omitempty"`
}

V1alpha1Command struct for V1alpha1Command

func NewV1alpha1Command ¶

func NewV1alpha1Command() *V1alpha1Command

NewV1alpha1Command instantiates a new V1alpha1Command 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 NewV1alpha1CommandWithDefaults ¶

func NewV1alpha1CommandWithDefaults() *V1alpha1Command

NewV1alpha1CommandWithDefaults instantiates a new V1alpha1Command 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 (*V1alpha1Command) GetArgs ¶

func (o *V1alpha1Command) GetArgs() []string

GetArgs returns the Args field value if set, zero value otherwise.

func (*V1alpha1Command) GetArgsOk ¶

func (o *V1alpha1Command) GetArgsOk() ([]string, bool)

GetArgsOk returns a tuple with the Args field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Command) GetCommand ¶

func (o *V1alpha1Command) GetCommand() []string

GetCommand returns the Command field value if set, zero value otherwise.

func (*V1alpha1Command) GetCommandOk ¶

func (o *V1alpha1Command) GetCommandOk() ([]string, bool)

GetCommandOk returns a tuple with the Command field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Command) HasArgs ¶

func (o *V1alpha1Command) HasArgs() bool

HasArgs returns a boolean if a field has been set.

func (*V1alpha1Command) HasCommand ¶

func (o *V1alpha1Command) HasCommand() bool

HasCommand returns a boolean if a field has been set.

func (V1alpha1Command) MarshalJSON ¶

func (o V1alpha1Command) MarshalJSON() ([]byte, error)

func (*V1alpha1Command) SetArgs ¶

func (o *V1alpha1Command) SetArgs(v []string)

SetArgs gets a reference to the given []string and assigns it to the Args field.

func (*V1alpha1Command) SetCommand ¶

func (o *V1alpha1Command) SetCommand(v []string)

SetCommand gets a reference to the given []string and assigns it to the Command field.

func (V1alpha1Command) ToMap ¶

func (o V1alpha1Command) ToMap() (map[string]interface{}, error)

type V1alpha1ComparedTo ¶

type V1alpha1ComparedTo struct {
	Destination *V1alpha1ApplicationDestination `json:"destination,omitempty"`
	Source      *V1alpha1ApplicationSource      `json:"source,omitempty"`
}

V1alpha1ComparedTo struct for V1alpha1ComparedTo

func NewV1alpha1ComparedTo ¶

func NewV1alpha1ComparedTo() *V1alpha1ComparedTo

NewV1alpha1ComparedTo instantiates a new V1alpha1ComparedTo 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 NewV1alpha1ComparedToWithDefaults ¶

func NewV1alpha1ComparedToWithDefaults() *V1alpha1ComparedTo

NewV1alpha1ComparedToWithDefaults instantiates a new V1alpha1ComparedTo 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 (*V1alpha1ComparedTo) GetDestination ¶

GetDestination returns the Destination field value if set, zero value otherwise.

func (*V1alpha1ComparedTo) GetDestinationOk ¶

func (o *V1alpha1ComparedTo) GetDestinationOk() (*V1alpha1ApplicationDestination, bool)

GetDestinationOk returns a tuple with the Destination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ComparedTo) GetSource ¶

GetSource returns the Source field value if set, zero value otherwise.

func (*V1alpha1ComparedTo) GetSourceOk ¶

func (o *V1alpha1ComparedTo) GetSourceOk() (*V1alpha1ApplicationSource, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ComparedTo) HasDestination ¶

func (o *V1alpha1ComparedTo) HasDestination() bool

HasDestination returns a boolean if a field has been set.

func (*V1alpha1ComparedTo) HasSource ¶

func (o *V1alpha1ComparedTo) HasSource() bool

HasSource returns a boolean if a field has been set.

func (V1alpha1ComparedTo) MarshalJSON ¶

func (o V1alpha1ComparedTo) MarshalJSON() ([]byte, error)

func (*V1alpha1ComparedTo) SetDestination ¶

SetDestination gets a reference to the given V1alpha1ApplicationDestination and assigns it to the Destination field.

func (*V1alpha1ComparedTo) SetSource ¶

SetSource gets a reference to the given V1alpha1ApplicationSource and assigns it to the Source field.

func (V1alpha1ComparedTo) ToMap ¶

func (o V1alpha1ComparedTo) ToMap() (map[string]interface{}, error)

type V1alpha1ConfigManagementPlugin ¶

type V1alpha1ConfigManagementPlugin struct {
	Generate *V1alpha1Command `json:"generate,omitempty"`
	Init     *V1alpha1Command `json:"init,omitempty"`
	LockRepo *bool            `json:"lockRepo,omitempty"`
	Name     *string          `json:"name,omitempty"`
}

V1alpha1ConfigManagementPlugin struct for V1alpha1ConfigManagementPlugin

func NewV1alpha1ConfigManagementPlugin ¶

func NewV1alpha1ConfigManagementPlugin() *V1alpha1ConfigManagementPlugin

NewV1alpha1ConfigManagementPlugin instantiates a new V1alpha1ConfigManagementPlugin 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 NewV1alpha1ConfigManagementPluginWithDefaults ¶

func NewV1alpha1ConfigManagementPluginWithDefaults() *V1alpha1ConfigManagementPlugin

NewV1alpha1ConfigManagementPluginWithDefaults instantiates a new V1alpha1ConfigManagementPlugin 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 (*V1alpha1ConfigManagementPlugin) GetGenerate ¶

GetGenerate returns the Generate field value if set, zero value otherwise.

func (*V1alpha1ConfigManagementPlugin) GetGenerateOk ¶

func (o *V1alpha1ConfigManagementPlugin) GetGenerateOk() (*V1alpha1Command, bool)

GetGenerateOk returns a tuple with the Generate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ConfigManagementPlugin) GetInit ¶

GetInit returns the Init field value if set, zero value otherwise.

func (*V1alpha1ConfigManagementPlugin) GetInitOk ¶

GetInitOk returns a tuple with the Init field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ConfigManagementPlugin) GetLockRepo ¶

func (o *V1alpha1ConfigManagementPlugin) GetLockRepo() bool

GetLockRepo returns the LockRepo field value if set, zero value otherwise.

func (*V1alpha1ConfigManagementPlugin) GetLockRepoOk ¶

func (o *V1alpha1ConfigManagementPlugin) GetLockRepoOk() (*bool, bool)

GetLockRepoOk returns a tuple with the LockRepo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ConfigManagementPlugin) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1ConfigManagementPlugin) GetNameOk ¶

func (o *V1alpha1ConfigManagementPlugin) 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 (*V1alpha1ConfigManagementPlugin) HasGenerate ¶

func (o *V1alpha1ConfigManagementPlugin) HasGenerate() bool

HasGenerate returns a boolean if a field has been set.

func (*V1alpha1ConfigManagementPlugin) HasInit ¶

func (o *V1alpha1ConfigManagementPlugin) HasInit() bool

HasInit returns a boolean if a field has been set.

func (*V1alpha1ConfigManagementPlugin) HasLockRepo ¶

func (o *V1alpha1ConfigManagementPlugin) HasLockRepo() bool

HasLockRepo returns a boolean if a field has been set.

func (*V1alpha1ConfigManagementPlugin) HasName ¶

func (o *V1alpha1ConfigManagementPlugin) HasName() bool

HasName returns a boolean if a field has been set.

func (V1alpha1ConfigManagementPlugin) MarshalJSON ¶

func (o V1alpha1ConfigManagementPlugin) MarshalJSON() ([]byte, error)

func (*V1alpha1ConfigManagementPlugin) SetGenerate ¶

SetGenerate gets a reference to the given V1alpha1Command and assigns it to the Generate field.

func (*V1alpha1ConfigManagementPlugin) SetInit ¶

SetInit gets a reference to the given V1alpha1Command and assigns it to the Init field.

func (*V1alpha1ConfigManagementPlugin) SetLockRepo ¶

func (o *V1alpha1ConfigManagementPlugin) SetLockRepo(v bool)

SetLockRepo gets a reference to the given bool and assigns it to the LockRepo field.

func (*V1alpha1ConfigManagementPlugin) SetName ¶

func (o *V1alpha1ConfigManagementPlugin) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (V1alpha1ConfigManagementPlugin) ToMap ¶

func (o V1alpha1ConfigManagementPlugin) ToMap() (map[string]interface{}, error)

type V1alpha1ConnectionState ¶

type V1alpha1ConnectionState struct {
	AttemptedAt *string `json:"attemptedAt,omitempty"`
	Message     *string `json:"message,omitempty"`
	Status      *string `json:"status,omitempty"`
}

V1alpha1ConnectionState struct for V1alpha1ConnectionState

func NewV1alpha1ConnectionState ¶

func NewV1alpha1ConnectionState() *V1alpha1ConnectionState

NewV1alpha1ConnectionState instantiates a new V1alpha1ConnectionState 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 NewV1alpha1ConnectionStateWithDefaults ¶

func NewV1alpha1ConnectionStateWithDefaults() *V1alpha1ConnectionState

NewV1alpha1ConnectionStateWithDefaults instantiates a new V1alpha1ConnectionState 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 (*V1alpha1ConnectionState) GetAttemptedAt ¶

func (o *V1alpha1ConnectionState) GetAttemptedAt() string

GetAttemptedAt returns the AttemptedAt field value if set, zero value otherwise.

func (*V1alpha1ConnectionState) GetAttemptedAtOk ¶

func (o *V1alpha1ConnectionState) GetAttemptedAtOk() (*string, bool)

GetAttemptedAtOk returns a tuple with the AttemptedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ConnectionState) GetMessage ¶

func (o *V1alpha1ConnectionState) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*V1alpha1ConnectionState) GetMessageOk ¶

func (o *V1alpha1ConnectionState) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ConnectionState) GetStatus ¶

func (o *V1alpha1ConnectionState) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*V1alpha1ConnectionState) GetStatusOk ¶

func (o *V1alpha1ConnectionState) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ConnectionState) HasAttemptedAt ¶

func (o *V1alpha1ConnectionState) HasAttemptedAt() bool

HasAttemptedAt returns a boolean if a field has been set.

func (*V1alpha1ConnectionState) HasMessage ¶

func (o *V1alpha1ConnectionState) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*V1alpha1ConnectionState) HasStatus ¶

func (o *V1alpha1ConnectionState) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (V1alpha1ConnectionState) MarshalJSON ¶

func (o V1alpha1ConnectionState) MarshalJSON() ([]byte, error)

func (*V1alpha1ConnectionState) SetAttemptedAt ¶

func (o *V1alpha1ConnectionState) SetAttemptedAt(v string)

SetAttemptedAt gets a reference to the given string and assigns it to the AttemptedAt field.

func (*V1alpha1ConnectionState) SetMessage ¶

func (o *V1alpha1ConnectionState) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*V1alpha1ConnectionState) SetStatus ¶

func (o *V1alpha1ConnectionState) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (V1alpha1ConnectionState) ToMap ¶

func (o V1alpha1ConnectionState) ToMap() (map[string]interface{}, error)

type V1alpha1DuckTypeGenerator ¶

type V1alpha1DuckTypeGenerator struct {
	ConfigMapRef        *string                         `json:"configMapRef,omitempty"`
	LabelSelector       *V1LabelSelector                `json:"labelSelector,omitempty"`
	Name                *string                         `json:"name,omitempty"`
	RequeueAfterSeconds *string                         `json:"requeueAfterSeconds,omitempty"`
	Template            *V1alpha1ApplicationSetTemplate `json:"template,omitempty"`
	Values              *map[string]string              `json:"values,omitempty"`
}

V1alpha1DuckTypeGenerator DuckType defines a generator to match against clusters registered with ArgoCD.

func NewV1alpha1DuckTypeGenerator ¶

func NewV1alpha1DuckTypeGenerator() *V1alpha1DuckTypeGenerator

NewV1alpha1DuckTypeGenerator instantiates a new V1alpha1DuckTypeGenerator 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 NewV1alpha1DuckTypeGeneratorWithDefaults ¶

func NewV1alpha1DuckTypeGeneratorWithDefaults() *V1alpha1DuckTypeGenerator

NewV1alpha1DuckTypeGeneratorWithDefaults instantiates a new V1alpha1DuckTypeGenerator 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 (*V1alpha1DuckTypeGenerator) GetConfigMapRef ¶

func (o *V1alpha1DuckTypeGenerator) GetConfigMapRef() string

GetConfigMapRef returns the ConfigMapRef field value if set, zero value otherwise.

func (*V1alpha1DuckTypeGenerator) GetConfigMapRefOk ¶

func (o *V1alpha1DuckTypeGenerator) GetConfigMapRefOk() (*string, bool)

GetConfigMapRefOk returns a tuple with the ConfigMapRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1DuckTypeGenerator) GetLabelSelector ¶

func (o *V1alpha1DuckTypeGenerator) GetLabelSelector() V1LabelSelector

GetLabelSelector returns the LabelSelector field value if set, zero value otherwise.

func (*V1alpha1DuckTypeGenerator) GetLabelSelectorOk ¶

func (o *V1alpha1DuckTypeGenerator) GetLabelSelectorOk() (*V1LabelSelector, bool)

GetLabelSelectorOk returns a tuple with the LabelSelector field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1DuckTypeGenerator) GetName ¶

func (o *V1alpha1DuckTypeGenerator) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1DuckTypeGenerator) GetNameOk ¶

func (o *V1alpha1DuckTypeGenerator) 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 (*V1alpha1DuckTypeGenerator) GetRequeueAfterSeconds ¶

func (o *V1alpha1DuckTypeGenerator) GetRequeueAfterSeconds() string

GetRequeueAfterSeconds returns the RequeueAfterSeconds field value if set, zero value otherwise.

func (*V1alpha1DuckTypeGenerator) GetRequeueAfterSecondsOk ¶

func (o *V1alpha1DuckTypeGenerator) GetRequeueAfterSecondsOk() (*string, bool)

GetRequeueAfterSecondsOk returns a tuple with the RequeueAfterSeconds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1DuckTypeGenerator) GetTemplate ¶

GetTemplate returns the Template field value if set, zero value otherwise.

func (*V1alpha1DuckTypeGenerator) GetTemplateOk ¶

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1DuckTypeGenerator) GetValues ¶

func (o *V1alpha1DuckTypeGenerator) GetValues() map[string]string

GetValues returns the Values field value if set, zero value otherwise.

func (*V1alpha1DuckTypeGenerator) GetValuesOk ¶

func (o *V1alpha1DuckTypeGenerator) GetValuesOk() (*map[string]string, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1DuckTypeGenerator) HasConfigMapRef ¶

func (o *V1alpha1DuckTypeGenerator) HasConfigMapRef() bool

HasConfigMapRef returns a boolean if a field has been set.

func (*V1alpha1DuckTypeGenerator) HasLabelSelector ¶

func (o *V1alpha1DuckTypeGenerator) HasLabelSelector() bool

HasLabelSelector returns a boolean if a field has been set.

func (*V1alpha1DuckTypeGenerator) HasName ¶

func (o *V1alpha1DuckTypeGenerator) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1alpha1DuckTypeGenerator) HasRequeueAfterSeconds ¶

func (o *V1alpha1DuckTypeGenerator) HasRequeueAfterSeconds() bool

HasRequeueAfterSeconds returns a boolean if a field has been set.

func (*V1alpha1DuckTypeGenerator) HasTemplate ¶

func (o *V1alpha1DuckTypeGenerator) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (*V1alpha1DuckTypeGenerator) HasValues ¶

func (o *V1alpha1DuckTypeGenerator) HasValues() bool

HasValues returns a boolean if a field has been set.

func (V1alpha1DuckTypeGenerator) MarshalJSON ¶

func (o V1alpha1DuckTypeGenerator) MarshalJSON() ([]byte, error)

func (*V1alpha1DuckTypeGenerator) SetConfigMapRef ¶

func (o *V1alpha1DuckTypeGenerator) SetConfigMapRef(v string)

SetConfigMapRef gets a reference to the given string and assigns it to the ConfigMapRef field.

func (*V1alpha1DuckTypeGenerator) SetLabelSelector ¶

func (o *V1alpha1DuckTypeGenerator) SetLabelSelector(v V1LabelSelector)

SetLabelSelector gets a reference to the given V1LabelSelector and assigns it to the LabelSelector field.

func (*V1alpha1DuckTypeGenerator) SetName ¶

func (o *V1alpha1DuckTypeGenerator) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1DuckTypeGenerator) SetRequeueAfterSeconds ¶

func (o *V1alpha1DuckTypeGenerator) SetRequeueAfterSeconds(v string)

SetRequeueAfterSeconds gets a reference to the given string and assigns it to the RequeueAfterSeconds field.

func (*V1alpha1DuckTypeGenerator) SetTemplate ¶

SetTemplate gets a reference to the given V1alpha1ApplicationSetTemplate and assigns it to the Template field.

func (*V1alpha1DuckTypeGenerator) SetValues ¶

func (o *V1alpha1DuckTypeGenerator) SetValues(v map[string]string)

SetValues gets a reference to the given map[string]string and assigns it to the Values field.

func (V1alpha1DuckTypeGenerator) ToMap ¶

func (o V1alpha1DuckTypeGenerator) ToMap() (map[string]interface{}, error)

type V1alpha1ExecProviderConfig ¶

type V1alpha1ExecProviderConfig struct {
	ApiVersion  *string            `json:"apiVersion,omitempty"`
	Args        []string           `json:"args,omitempty"`
	Command     *string            `json:"command,omitempty"`
	Env         *map[string]string `json:"env,omitempty"`
	InstallHint *string            `json:"installHint,omitempty"`
}

V1alpha1ExecProviderConfig struct for V1alpha1ExecProviderConfig

func NewV1alpha1ExecProviderConfig ¶

func NewV1alpha1ExecProviderConfig() *V1alpha1ExecProviderConfig

NewV1alpha1ExecProviderConfig instantiates a new V1alpha1ExecProviderConfig 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 NewV1alpha1ExecProviderConfigWithDefaults ¶

func NewV1alpha1ExecProviderConfigWithDefaults() *V1alpha1ExecProviderConfig

NewV1alpha1ExecProviderConfigWithDefaults instantiates a new V1alpha1ExecProviderConfig 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 (*V1alpha1ExecProviderConfig) GetApiVersion ¶

func (o *V1alpha1ExecProviderConfig) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*V1alpha1ExecProviderConfig) GetApiVersionOk ¶

func (o *V1alpha1ExecProviderConfig) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ExecProviderConfig) GetArgs ¶

func (o *V1alpha1ExecProviderConfig) GetArgs() []string

GetArgs returns the Args field value if set, zero value otherwise.

func (*V1alpha1ExecProviderConfig) GetArgsOk ¶

func (o *V1alpha1ExecProviderConfig) GetArgsOk() ([]string, bool)

GetArgsOk returns a tuple with the Args field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ExecProviderConfig) GetCommand ¶

func (o *V1alpha1ExecProviderConfig) GetCommand() string

GetCommand returns the Command field value if set, zero value otherwise.

func (*V1alpha1ExecProviderConfig) GetCommandOk ¶

func (o *V1alpha1ExecProviderConfig) GetCommandOk() (*string, bool)

GetCommandOk returns a tuple with the Command field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ExecProviderConfig) GetEnv ¶

func (o *V1alpha1ExecProviderConfig) GetEnv() map[string]string

GetEnv returns the Env field value if set, zero value otherwise.

func (*V1alpha1ExecProviderConfig) GetEnvOk ¶

func (o *V1alpha1ExecProviderConfig) GetEnvOk() (*map[string]string, bool)

GetEnvOk returns a tuple with the Env field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ExecProviderConfig) GetInstallHint ¶

func (o *V1alpha1ExecProviderConfig) GetInstallHint() string

GetInstallHint returns the InstallHint field value if set, zero value otherwise.

func (*V1alpha1ExecProviderConfig) GetInstallHintOk ¶

func (o *V1alpha1ExecProviderConfig) GetInstallHintOk() (*string, bool)

GetInstallHintOk returns a tuple with the InstallHint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ExecProviderConfig) HasApiVersion ¶

func (o *V1alpha1ExecProviderConfig) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*V1alpha1ExecProviderConfig) HasArgs ¶

func (o *V1alpha1ExecProviderConfig) HasArgs() bool

HasArgs returns a boolean if a field has been set.

func (*V1alpha1ExecProviderConfig) HasCommand ¶

func (o *V1alpha1ExecProviderConfig) HasCommand() bool

HasCommand returns a boolean if a field has been set.

func (*V1alpha1ExecProviderConfig) HasEnv ¶

func (o *V1alpha1ExecProviderConfig) HasEnv() bool

HasEnv returns a boolean if a field has been set.

func (*V1alpha1ExecProviderConfig) HasInstallHint ¶

func (o *V1alpha1ExecProviderConfig) HasInstallHint() bool

HasInstallHint returns a boolean if a field has been set.

func (V1alpha1ExecProviderConfig) MarshalJSON ¶

func (o V1alpha1ExecProviderConfig) MarshalJSON() ([]byte, error)

func (*V1alpha1ExecProviderConfig) SetApiVersion ¶

func (o *V1alpha1ExecProviderConfig) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*V1alpha1ExecProviderConfig) SetArgs ¶

func (o *V1alpha1ExecProviderConfig) SetArgs(v []string)

SetArgs gets a reference to the given []string and assigns it to the Args field.

func (*V1alpha1ExecProviderConfig) SetCommand ¶

func (o *V1alpha1ExecProviderConfig) SetCommand(v string)

SetCommand gets a reference to the given string and assigns it to the Command field.

func (*V1alpha1ExecProviderConfig) SetEnv ¶

func (o *V1alpha1ExecProviderConfig) SetEnv(v map[string]string)

SetEnv gets a reference to the given map[string]string and assigns it to the Env field.

func (*V1alpha1ExecProviderConfig) SetInstallHint ¶

func (o *V1alpha1ExecProviderConfig) SetInstallHint(v string)

SetInstallHint gets a reference to the given string and assigns it to the InstallHint field.

func (V1alpha1ExecProviderConfig) ToMap ¶

func (o V1alpha1ExecProviderConfig) ToMap() (map[string]interface{}, error)

type V1alpha1GitDirectoryGeneratorItem ¶

type V1alpha1GitDirectoryGeneratorItem struct {
	Exclude *bool   `json:"exclude,omitempty"`
	Path    *string `json:"path,omitempty"`
}

V1alpha1GitDirectoryGeneratorItem struct for V1alpha1GitDirectoryGeneratorItem

func NewV1alpha1GitDirectoryGeneratorItem ¶

func NewV1alpha1GitDirectoryGeneratorItem() *V1alpha1GitDirectoryGeneratorItem

NewV1alpha1GitDirectoryGeneratorItem instantiates a new V1alpha1GitDirectoryGeneratorItem 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 NewV1alpha1GitDirectoryGeneratorItemWithDefaults ¶

func NewV1alpha1GitDirectoryGeneratorItemWithDefaults() *V1alpha1GitDirectoryGeneratorItem

NewV1alpha1GitDirectoryGeneratorItemWithDefaults instantiates a new V1alpha1GitDirectoryGeneratorItem 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 (*V1alpha1GitDirectoryGeneratorItem) GetExclude ¶

func (o *V1alpha1GitDirectoryGeneratorItem) GetExclude() bool

GetExclude returns the Exclude field value if set, zero value otherwise.

func (*V1alpha1GitDirectoryGeneratorItem) GetExcludeOk ¶

func (o *V1alpha1GitDirectoryGeneratorItem) GetExcludeOk() (*bool, bool)

GetExcludeOk returns a tuple with the Exclude field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1GitDirectoryGeneratorItem) GetPath ¶

GetPath returns the Path field value if set, zero value otherwise.

func (*V1alpha1GitDirectoryGeneratorItem) GetPathOk ¶

func (o *V1alpha1GitDirectoryGeneratorItem) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1GitDirectoryGeneratorItem) HasExclude ¶

func (o *V1alpha1GitDirectoryGeneratorItem) HasExclude() bool

HasExclude returns a boolean if a field has been set.

func (*V1alpha1GitDirectoryGeneratorItem) HasPath ¶

HasPath returns a boolean if a field has been set.

func (V1alpha1GitDirectoryGeneratorItem) MarshalJSON ¶

func (o V1alpha1GitDirectoryGeneratorItem) MarshalJSON() ([]byte, error)

func (*V1alpha1GitDirectoryGeneratorItem) SetExclude ¶

func (o *V1alpha1GitDirectoryGeneratorItem) SetExclude(v bool)

SetExclude gets a reference to the given bool and assigns it to the Exclude field.

func (*V1alpha1GitDirectoryGeneratorItem) SetPath ¶

SetPath gets a reference to the given string and assigns it to the Path field.

func (V1alpha1GitDirectoryGeneratorItem) ToMap ¶

func (o V1alpha1GitDirectoryGeneratorItem) ToMap() (map[string]interface{}, error)

type V1alpha1GitFileGeneratorItem ¶

type V1alpha1GitFileGeneratorItem struct {
	Path *string `json:"path,omitempty"`
}

V1alpha1GitFileGeneratorItem struct for V1alpha1GitFileGeneratorItem

func NewV1alpha1GitFileGeneratorItem ¶

func NewV1alpha1GitFileGeneratorItem() *V1alpha1GitFileGeneratorItem

NewV1alpha1GitFileGeneratorItem instantiates a new V1alpha1GitFileGeneratorItem 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 NewV1alpha1GitFileGeneratorItemWithDefaults ¶

func NewV1alpha1GitFileGeneratorItemWithDefaults() *V1alpha1GitFileGeneratorItem

NewV1alpha1GitFileGeneratorItemWithDefaults instantiates a new V1alpha1GitFileGeneratorItem 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 (*V1alpha1GitFileGeneratorItem) GetPath ¶

func (o *V1alpha1GitFileGeneratorItem) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*V1alpha1GitFileGeneratorItem) GetPathOk ¶

func (o *V1alpha1GitFileGeneratorItem) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1GitFileGeneratorItem) HasPath ¶

func (o *V1alpha1GitFileGeneratorItem) HasPath() bool

HasPath returns a boolean if a field has been set.

func (V1alpha1GitFileGeneratorItem) MarshalJSON ¶

func (o V1alpha1GitFileGeneratorItem) MarshalJSON() ([]byte, error)

func (*V1alpha1GitFileGeneratorItem) SetPath ¶

func (o *V1alpha1GitFileGeneratorItem) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (V1alpha1GitFileGeneratorItem) ToMap ¶

func (o V1alpha1GitFileGeneratorItem) ToMap() (map[string]interface{}, error)

type V1alpha1GitGenerator ¶

type V1alpha1GitGenerator struct {
	Directories         []V1alpha1GitDirectoryGeneratorItem `json:"directories,omitempty"`
	Files               []V1alpha1GitFileGeneratorItem      `json:"files,omitempty"`
	RepoURL             *string                             `json:"repoURL,omitempty"`
	RequeueAfterSeconds *string                             `json:"requeueAfterSeconds,omitempty"`
	Revision            *string                             `json:"revision,omitempty"`
	Template            *V1alpha1ApplicationSetTemplate     `json:"template,omitempty"`
}

V1alpha1GitGenerator struct for V1alpha1GitGenerator

func NewV1alpha1GitGenerator ¶

func NewV1alpha1GitGenerator() *V1alpha1GitGenerator

NewV1alpha1GitGenerator instantiates a new V1alpha1GitGenerator 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 NewV1alpha1GitGeneratorWithDefaults ¶

func NewV1alpha1GitGeneratorWithDefaults() *V1alpha1GitGenerator

NewV1alpha1GitGeneratorWithDefaults instantiates a new V1alpha1GitGenerator 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 (*V1alpha1GitGenerator) GetDirectories ¶

GetDirectories returns the Directories field value if set, zero value otherwise.

func (*V1alpha1GitGenerator) GetDirectoriesOk ¶

func (o *V1alpha1GitGenerator) GetDirectoriesOk() ([]V1alpha1GitDirectoryGeneratorItem, bool)

GetDirectoriesOk returns a tuple with the Directories field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1GitGenerator) GetFiles ¶

GetFiles returns the Files field value if set, zero value otherwise.

func (*V1alpha1GitGenerator) GetFilesOk ¶

GetFilesOk returns a tuple with the Files field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1GitGenerator) GetRepoURL ¶

func (o *V1alpha1GitGenerator) GetRepoURL() string

GetRepoURL returns the RepoURL field value if set, zero value otherwise.

func (*V1alpha1GitGenerator) GetRepoURLOk ¶

func (o *V1alpha1GitGenerator) GetRepoURLOk() (*string, bool)

GetRepoURLOk returns a tuple with the RepoURL field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1GitGenerator) GetRequeueAfterSeconds ¶

func (o *V1alpha1GitGenerator) GetRequeueAfterSeconds() string

GetRequeueAfterSeconds returns the RequeueAfterSeconds field value if set, zero value otherwise.

func (*V1alpha1GitGenerator) GetRequeueAfterSecondsOk ¶

func (o *V1alpha1GitGenerator) GetRequeueAfterSecondsOk() (*string, bool)

GetRequeueAfterSecondsOk returns a tuple with the RequeueAfterSeconds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1GitGenerator) GetRevision ¶

func (o *V1alpha1GitGenerator) GetRevision() string

GetRevision returns the Revision field value if set, zero value otherwise.

func (*V1alpha1GitGenerator) GetRevisionOk ¶

func (o *V1alpha1GitGenerator) GetRevisionOk() (*string, bool)

GetRevisionOk returns a tuple with the Revision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1GitGenerator) GetTemplate ¶

GetTemplate returns the Template field value if set, zero value otherwise.

func (*V1alpha1GitGenerator) GetTemplateOk ¶

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1GitGenerator) HasDirectories ¶

func (o *V1alpha1GitGenerator) HasDirectories() bool

HasDirectories returns a boolean if a field has been set.

func (*V1alpha1GitGenerator) HasFiles ¶

func (o *V1alpha1GitGenerator) HasFiles() bool

HasFiles returns a boolean if a field has been set.

func (*V1alpha1GitGenerator) HasRepoURL ¶

func (o *V1alpha1GitGenerator) HasRepoURL() bool

HasRepoURL returns a boolean if a field has been set.

func (*V1alpha1GitGenerator) HasRequeueAfterSeconds ¶

func (o *V1alpha1GitGenerator) HasRequeueAfterSeconds() bool

HasRequeueAfterSeconds returns a boolean if a field has been set.

func (*V1alpha1GitGenerator) HasRevision ¶

func (o *V1alpha1GitGenerator) HasRevision() bool

HasRevision returns a boolean if a field has been set.

func (*V1alpha1GitGenerator) HasTemplate ¶

func (o *V1alpha1GitGenerator) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (V1alpha1GitGenerator) MarshalJSON ¶

func (o V1alpha1GitGenerator) MarshalJSON() ([]byte, error)

func (*V1alpha1GitGenerator) SetDirectories ¶

SetDirectories gets a reference to the given []V1alpha1GitDirectoryGeneratorItem and assigns it to the Directories field.

func (*V1alpha1GitGenerator) SetFiles ¶

SetFiles gets a reference to the given []V1alpha1GitFileGeneratorItem and assigns it to the Files field.

func (*V1alpha1GitGenerator) SetRepoURL ¶

func (o *V1alpha1GitGenerator) SetRepoURL(v string)

SetRepoURL gets a reference to the given string and assigns it to the RepoURL field.

func (*V1alpha1GitGenerator) SetRequeueAfterSeconds ¶

func (o *V1alpha1GitGenerator) SetRequeueAfterSeconds(v string)

SetRequeueAfterSeconds gets a reference to the given string and assigns it to the RequeueAfterSeconds field.

func (*V1alpha1GitGenerator) SetRevision ¶

func (o *V1alpha1GitGenerator) SetRevision(v string)

SetRevision gets a reference to the given string and assigns it to the Revision field.

func (*V1alpha1GitGenerator) SetTemplate ¶

SetTemplate gets a reference to the given V1alpha1ApplicationSetTemplate and assigns it to the Template field.

func (V1alpha1GitGenerator) ToMap ¶

func (o V1alpha1GitGenerator) ToMap() (map[string]interface{}, error)

type V1alpha1GnuPGPublicKey ¶

type V1alpha1GnuPGPublicKey struct {
	Fingerprint *string `json:"fingerprint,omitempty"`
	KeyData     *string `json:"keyData,omitempty"`
	KeyID       *string `json:"keyID,omitempty"`
	Owner       *string `json:"owner,omitempty"`
	SubType     *string `json:"subType,omitempty"`
	Trust       *string `json:"trust,omitempty"`
}

V1alpha1GnuPGPublicKey struct for V1alpha1GnuPGPublicKey

func NewV1alpha1GnuPGPublicKey ¶

func NewV1alpha1GnuPGPublicKey() *V1alpha1GnuPGPublicKey

NewV1alpha1GnuPGPublicKey instantiates a new V1alpha1GnuPGPublicKey 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 NewV1alpha1GnuPGPublicKeyWithDefaults ¶

func NewV1alpha1GnuPGPublicKeyWithDefaults() *V1alpha1GnuPGPublicKey

NewV1alpha1GnuPGPublicKeyWithDefaults instantiates a new V1alpha1GnuPGPublicKey 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 (*V1alpha1GnuPGPublicKey) GetFingerprint ¶

func (o *V1alpha1GnuPGPublicKey) GetFingerprint() string

GetFingerprint returns the Fingerprint field value if set, zero value otherwise.

func (*V1alpha1GnuPGPublicKey) GetFingerprintOk ¶

func (o *V1alpha1GnuPGPublicKey) GetFingerprintOk() (*string, bool)

GetFingerprintOk returns a tuple with the Fingerprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1GnuPGPublicKey) GetKeyData ¶

func (o *V1alpha1GnuPGPublicKey) GetKeyData() string

GetKeyData returns the KeyData field value if set, zero value otherwise.

func (*V1alpha1GnuPGPublicKey) GetKeyDataOk ¶

func (o *V1alpha1GnuPGPublicKey) GetKeyDataOk() (*string, bool)

GetKeyDataOk returns a tuple with the KeyData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1GnuPGPublicKey) GetKeyID ¶

func (o *V1alpha1GnuPGPublicKey) GetKeyID() string

GetKeyID returns the KeyID field value if set, zero value otherwise.

func (*V1alpha1GnuPGPublicKey) GetKeyIDOk ¶

func (o *V1alpha1GnuPGPublicKey) GetKeyIDOk() (*string, bool)

GetKeyIDOk returns a tuple with the KeyID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1GnuPGPublicKey) GetOwner ¶

func (o *V1alpha1GnuPGPublicKey) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*V1alpha1GnuPGPublicKey) GetOwnerOk ¶

func (o *V1alpha1GnuPGPublicKey) GetOwnerOk() (*string, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1GnuPGPublicKey) GetSubType ¶

func (o *V1alpha1GnuPGPublicKey) GetSubType() string

GetSubType returns the SubType field value if set, zero value otherwise.

func (*V1alpha1GnuPGPublicKey) GetSubTypeOk ¶

func (o *V1alpha1GnuPGPublicKey) GetSubTypeOk() (*string, bool)

GetSubTypeOk returns a tuple with the SubType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1GnuPGPublicKey) GetTrust ¶

func (o *V1alpha1GnuPGPublicKey) GetTrust() string

GetTrust returns the Trust field value if set, zero value otherwise.

func (*V1alpha1GnuPGPublicKey) GetTrustOk ¶

func (o *V1alpha1GnuPGPublicKey) GetTrustOk() (*string, bool)

GetTrustOk returns a tuple with the Trust field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1GnuPGPublicKey) HasFingerprint ¶

func (o *V1alpha1GnuPGPublicKey) HasFingerprint() bool

HasFingerprint returns a boolean if a field has been set.

func (*V1alpha1GnuPGPublicKey) HasKeyData ¶

func (o *V1alpha1GnuPGPublicKey) HasKeyData() bool

HasKeyData returns a boolean if a field has been set.

func (*V1alpha1GnuPGPublicKey) HasKeyID ¶

func (o *V1alpha1GnuPGPublicKey) HasKeyID() bool

HasKeyID returns a boolean if a field has been set.

func (*V1alpha1GnuPGPublicKey) HasOwner ¶

func (o *V1alpha1GnuPGPublicKey) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*V1alpha1GnuPGPublicKey) HasSubType ¶

func (o *V1alpha1GnuPGPublicKey) HasSubType() bool

HasSubType returns a boolean if a field has been set.

func (*V1alpha1GnuPGPublicKey) HasTrust ¶

func (o *V1alpha1GnuPGPublicKey) HasTrust() bool

HasTrust returns a boolean if a field has been set.

func (V1alpha1GnuPGPublicKey) MarshalJSON ¶

func (o V1alpha1GnuPGPublicKey) MarshalJSON() ([]byte, error)

func (*V1alpha1GnuPGPublicKey) SetFingerprint ¶

func (o *V1alpha1GnuPGPublicKey) SetFingerprint(v string)

SetFingerprint gets a reference to the given string and assigns it to the Fingerprint field.

func (*V1alpha1GnuPGPublicKey) SetKeyData ¶

func (o *V1alpha1GnuPGPublicKey) SetKeyData(v string)

SetKeyData gets a reference to the given string and assigns it to the KeyData field.

func (*V1alpha1GnuPGPublicKey) SetKeyID ¶

func (o *V1alpha1GnuPGPublicKey) SetKeyID(v string)

SetKeyID gets a reference to the given string and assigns it to the KeyID field.

func (*V1alpha1GnuPGPublicKey) SetOwner ¶

func (o *V1alpha1GnuPGPublicKey) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*V1alpha1GnuPGPublicKey) SetSubType ¶

func (o *V1alpha1GnuPGPublicKey) SetSubType(v string)

SetSubType gets a reference to the given string and assigns it to the SubType field.

func (*V1alpha1GnuPGPublicKey) SetTrust ¶

func (o *V1alpha1GnuPGPublicKey) SetTrust(v string)

SetTrust gets a reference to the given string and assigns it to the Trust field.

func (V1alpha1GnuPGPublicKey) ToMap ¶

func (o V1alpha1GnuPGPublicKey) ToMap() (map[string]interface{}, error)

type V1alpha1GnuPGPublicKeyList ¶

type V1alpha1GnuPGPublicKeyList struct {
	Items    []V1alpha1GnuPGPublicKey `json:"items,omitempty"`
	Metadata *V1ListMeta              `json:"metadata,omitempty"`
}

V1alpha1GnuPGPublicKeyList struct for V1alpha1GnuPGPublicKeyList

func NewV1alpha1GnuPGPublicKeyList ¶

func NewV1alpha1GnuPGPublicKeyList() *V1alpha1GnuPGPublicKeyList

NewV1alpha1GnuPGPublicKeyList instantiates a new V1alpha1GnuPGPublicKeyList 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 NewV1alpha1GnuPGPublicKeyListWithDefaults ¶

func NewV1alpha1GnuPGPublicKeyListWithDefaults() *V1alpha1GnuPGPublicKeyList

NewV1alpha1GnuPGPublicKeyListWithDefaults instantiates a new V1alpha1GnuPGPublicKeyList 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 (*V1alpha1GnuPGPublicKeyList) GetItems ¶

GetItems returns the Items field value if set, zero value otherwise.

func (*V1alpha1GnuPGPublicKeyList) GetItemsOk ¶

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1GnuPGPublicKeyList) GetMetadata ¶

func (o *V1alpha1GnuPGPublicKeyList) GetMetadata() V1ListMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*V1alpha1GnuPGPublicKeyList) GetMetadataOk ¶

func (o *V1alpha1GnuPGPublicKeyList) GetMetadataOk() (*V1ListMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1GnuPGPublicKeyList) HasItems ¶

func (o *V1alpha1GnuPGPublicKeyList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*V1alpha1GnuPGPublicKeyList) HasMetadata ¶

func (o *V1alpha1GnuPGPublicKeyList) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (V1alpha1GnuPGPublicKeyList) MarshalJSON ¶

func (o V1alpha1GnuPGPublicKeyList) MarshalJSON() ([]byte, error)

func (*V1alpha1GnuPGPublicKeyList) SetItems ¶

SetItems gets a reference to the given []V1alpha1GnuPGPublicKey and assigns it to the Items field.

func (*V1alpha1GnuPGPublicKeyList) SetMetadata ¶

func (o *V1alpha1GnuPGPublicKeyList) SetMetadata(v V1ListMeta)

SetMetadata gets a reference to the given V1ListMeta and assigns it to the Metadata field.

func (V1alpha1GnuPGPublicKeyList) ToMap ¶

func (o V1alpha1GnuPGPublicKeyList) ToMap() (map[string]interface{}, error)

type V1alpha1HealthStatus ¶

type V1alpha1HealthStatus struct {
	Message *string `json:"message,omitempty"`
	Status  *string `json:"status,omitempty"`
}

V1alpha1HealthStatus struct for V1alpha1HealthStatus

func NewV1alpha1HealthStatus ¶

func NewV1alpha1HealthStatus() *V1alpha1HealthStatus

NewV1alpha1HealthStatus instantiates a new V1alpha1HealthStatus 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 NewV1alpha1HealthStatusWithDefaults ¶

func NewV1alpha1HealthStatusWithDefaults() *V1alpha1HealthStatus

NewV1alpha1HealthStatusWithDefaults instantiates a new V1alpha1HealthStatus 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 (*V1alpha1HealthStatus) GetMessage ¶

func (o *V1alpha1HealthStatus) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*V1alpha1HealthStatus) GetMessageOk ¶

func (o *V1alpha1HealthStatus) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1HealthStatus) GetStatus ¶

func (o *V1alpha1HealthStatus) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*V1alpha1HealthStatus) GetStatusOk ¶

func (o *V1alpha1HealthStatus) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1HealthStatus) HasMessage ¶

func (o *V1alpha1HealthStatus) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*V1alpha1HealthStatus) HasStatus ¶

func (o *V1alpha1HealthStatus) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (V1alpha1HealthStatus) MarshalJSON ¶

func (o V1alpha1HealthStatus) MarshalJSON() ([]byte, error)

func (*V1alpha1HealthStatus) SetMessage ¶

func (o *V1alpha1HealthStatus) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*V1alpha1HealthStatus) SetStatus ¶

func (o *V1alpha1HealthStatus) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (V1alpha1HealthStatus) ToMap ¶

func (o V1alpha1HealthStatus) ToMap() (map[string]interface{}, error)

type V1alpha1HelmFileParameter ¶

type V1alpha1HelmFileParameter struct {
	Name *string `json:"name,omitempty"`
	Path *string `json:"path,omitempty"`
}

V1alpha1HelmFileParameter struct for V1alpha1HelmFileParameter

func NewV1alpha1HelmFileParameter ¶

func NewV1alpha1HelmFileParameter() *V1alpha1HelmFileParameter

NewV1alpha1HelmFileParameter instantiates a new V1alpha1HelmFileParameter 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 NewV1alpha1HelmFileParameterWithDefaults ¶

func NewV1alpha1HelmFileParameterWithDefaults() *V1alpha1HelmFileParameter

NewV1alpha1HelmFileParameterWithDefaults instantiates a new V1alpha1HelmFileParameter 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 (*V1alpha1HelmFileParameter) GetName ¶

func (o *V1alpha1HelmFileParameter) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1HelmFileParameter) GetNameOk ¶

func (o *V1alpha1HelmFileParameter) 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 (*V1alpha1HelmFileParameter) GetPath ¶

func (o *V1alpha1HelmFileParameter) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*V1alpha1HelmFileParameter) GetPathOk ¶

func (o *V1alpha1HelmFileParameter) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1HelmFileParameter) HasName ¶

func (o *V1alpha1HelmFileParameter) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1alpha1HelmFileParameter) HasPath ¶

func (o *V1alpha1HelmFileParameter) HasPath() bool

HasPath returns a boolean if a field has been set.

func (V1alpha1HelmFileParameter) MarshalJSON ¶

func (o V1alpha1HelmFileParameter) MarshalJSON() ([]byte, error)

func (*V1alpha1HelmFileParameter) SetName ¶

func (o *V1alpha1HelmFileParameter) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1HelmFileParameter) SetPath ¶

func (o *V1alpha1HelmFileParameter) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (V1alpha1HelmFileParameter) ToMap ¶

func (o V1alpha1HelmFileParameter) ToMap() (map[string]interface{}, error)

type V1alpha1HelmParameter ¶

type V1alpha1HelmParameter struct {
	ForceString *bool   `json:"forceString,omitempty"`
	Name        *string `json:"name,omitempty"`
	Value       *string `json:"value,omitempty"`
}

V1alpha1HelmParameter struct for V1alpha1HelmParameter

func NewV1alpha1HelmParameter ¶

func NewV1alpha1HelmParameter() *V1alpha1HelmParameter

NewV1alpha1HelmParameter instantiates a new V1alpha1HelmParameter 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 NewV1alpha1HelmParameterWithDefaults ¶

func NewV1alpha1HelmParameterWithDefaults() *V1alpha1HelmParameter

NewV1alpha1HelmParameterWithDefaults instantiates a new V1alpha1HelmParameter 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 (*V1alpha1HelmParameter) GetForceString ¶

func (o *V1alpha1HelmParameter) GetForceString() bool

GetForceString returns the ForceString field value if set, zero value otherwise.

func (*V1alpha1HelmParameter) GetForceStringOk ¶

func (o *V1alpha1HelmParameter) GetForceStringOk() (*bool, bool)

GetForceStringOk returns a tuple with the ForceString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1HelmParameter) GetName ¶

func (o *V1alpha1HelmParameter) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1HelmParameter) GetNameOk ¶

func (o *V1alpha1HelmParameter) 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 (*V1alpha1HelmParameter) GetValue ¶

func (o *V1alpha1HelmParameter) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*V1alpha1HelmParameter) GetValueOk ¶

func (o *V1alpha1HelmParameter) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1HelmParameter) HasForceString ¶

func (o *V1alpha1HelmParameter) HasForceString() bool

HasForceString returns a boolean if a field has been set.

func (*V1alpha1HelmParameter) HasName ¶

func (o *V1alpha1HelmParameter) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1alpha1HelmParameter) HasValue ¶

func (o *V1alpha1HelmParameter) HasValue() bool

HasValue returns a boolean if a field has been set.

func (V1alpha1HelmParameter) MarshalJSON ¶

func (o V1alpha1HelmParameter) MarshalJSON() ([]byte, error)

func (*V1alpha1HelmParameter) SetForceString ¶

func (o *V1alpha1HelmParameter) SetForceString(v bool)

SetForceString gets a reference to the given bool and assigns it to the ForceString field.

func (*V1alpha1HelmParameter) SetName ¶

func (o *V1alpha1HelmParameter) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1HelmParameter) SetValue ¶

func (o *V1alpha1HelmParameter) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (V1alpha1HelmParameter) ToMap ¶

func (o V1alpha1HelmParameter) ToMap() (map[string]interface{}, error)

type V1alpha1HostInfo ¶

type V1alpha1HostInfo struct {
	Name          *string                    `json:"name,omitempty"`
	ResourcesInfo []V1alpha1HostResourceInfo `json:"resourcesInfo,omitempty"`
	SystemInfo    *V1NodeSystemInfo          `json:"systemInfo,omitempty"`
}

V1alpha1HostInfo struct for V1alpha1HostInfo

func NewV1alpha1HostInfo ¶

func NewV1alpha1HostInfo() *V1alpha1HostInfo

NewV1alpha1HostInfo instantiates a new V1alpha1HostInfo 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 NewV1alpha1HostInfoWithDefaults ¶

func NewV1alpha1HostInfoWithDefaults() *V1alpha1HostInfo

NewV1alpha1HostInfoWithDefaults instantiates a new V1alpha1HostInfo 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 (*V1alpha1HostInfo) GetName ¶

func (o *V1alpha1HostInfo) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1HostInfo) GetNameOk ¶

func (o *V1alpha1HostInfo) 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 (*V1alpha1HostInfo) GetResourcesInfo ¶

func (o *V1alpha1HostInfo) GetResourcesInfo() []V1alpha1HostResourceInfo

GetResourcesInfo returns the ResourcesInfo field value if set, zero value otherwise.

func (*V1alpha1HostInfo) GetResourcesInfoOk ¶

func (o *V1alpha1HostInfo) GetResourcesInfoOk() ([]V1alpha1HostResourceInfo, bool)

GetResourcesInfoOk returns a tuple with the ResourcesInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1HostInfo) GetSystemInfo ¶

func (o *V1alpha1HostInfo) GetSystemInfo() V1NodeSystemInfo

GetSystemInfo returns the SystemInfo field value if set, zero value otherwise.

func (*V1alpha1HostInfo) GetSystemInfoOk ¶

func (o *V1alpha1HostInfo) GetSystemInfoOk() (*V1NodeSystemInfo, bool)

GetSystemInfoOk returns a tuple with the SystemInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1HostInfo) HasName ¶

func (o *V1alpha1HostInfo) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1alpha1HostInfo) HasResourcesInfo ¶

func (o *V1alpha1HostInfo) HasResourcesInfo() bool

HasResourcesInfo returns a boolean if a field has been set.

func (*V1alpha1HostInfo) HasSystemInfo ¶

func (o *V1alpha1HostInfo) HasSystemInfo() bool

HasSystemInfo returns a boolean if a field has been set.

func (V1alpha1HostInfo) MarshalJSON ¶

func (o V1alpha1HostInfo) MarshalJSON() ([]byte, error)

func (*V1alpha1HostInfo) SetName ¶

func (o *V1alpha1HostInfo) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1HostInfo) SetResourcesInfo ¶

func (o *V1alpha1HostInfo) SetResourcesInfo(v []V1alpha1HostResourceInfo)

SetResourcesInfo gets a reference to the given []V1alpha1HostResourceInfo and assigns it to the ResourcesInfo field.

func (*V1alpha1HostInfo) SetSystemInfo ¶

func (o *V1alpha1HostInfo) SetSystemInfo(v V1NodeSystemInfo)

SetSystemInfo gets a reference to the given V1NodeSystemInfo and assigns it to the SystemInfo field.

func (V1alpha1HostInfo) ToMap ¶

func (o V1alpha1HostInfo) ToMap() (map[string]interface{}, error)

type V1alpha1HostResourceInfo ¶

type V1alpha1HostResourceInfo struct {
	Capacity             *string `json:"capacity,omitempty"`
	RequestedByApp       *string `json:"requestedByApp,omitempty"`
	RequestedByNeighbors *string `json:"requestedByNeighbors,omitempty"`
	ResourceName         *string `json:"resourceName,omitempty"`
}

V1alpha1HostResourceInfo struct for V1alpha1HostResourceInfo

func NewV1alpha1HostResourceInfo ¶

func NewV1alpha1HostResourceInfo() *V1alpha1HostResourceInfo

NewV1alpha1HostResourceInfo instantiates a new V1alpha1HostResourceInfo 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 NewV1alpha1HostResourceInfoWithDefaults ¶

func NewV1alpha1HostResourceInfoWithDefaults() *V1alpha1HostResourceInfo

NewV1alpha1HostResourceInfoWithDefaults instantiates a new V1alpha1HostResourceInfo 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 (*V1alpha1HostResourceInfo) GetCapacity ¶

func (o *V1alpha1HostResourceInfo) GetCapacity() string

GetCapacity returns the Capacity field value if set, zero value otherwise.

func (*V1alpha1HostResourceInfo) GetCapacityOk ¶

func (o *V1alpha1HostResourceInfo) GetCapacityOk() (*string, bool)

GetCapacityOk returns a tuple with the Capacity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1HostResourceInfo) GetRequestedByApp ¶

func (o *V1alpha1HostResourceInfo) GetRequestedByApp() string

GetRequestedByApp returns the RequestedByApp field value if set, zero value otherwise.

func (*V1alpha1HostResourceInfo) GetRequestedByAppOk ¶

func (o *V1alpha1HostResourceInfo) GetRequestedByAppOk() (*string, bool)

GetRequestedByAppOk returns a tuple with the RequestedByApp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1HostResourceInfo) GetRequestedByNeighbors ¶

func (o *V1alpha1HostResourceInfo) GetRequestedByNeighbors() string

GetRequestedByNeighbors returns the RequestedByNeighbors field value if set, zero value otherwise.

func (*V1alpha1HostResourceInfo) GetRequestedByNeighborsOk ¶

func (o *V1alpha1HostResourceInfo) GetRequestedByNeighborsOk() (*string, bool)

GetRequestedByNeighborsOk returns a tuple with the RequestedByNeighbors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1HostResourceInfo) GetResourceName ¶

func (o *V1alpha1HostResourceInfo) GetResourceName() string

GetResourceName returns the ResourceName field value if set, zero value otherwise.

func (*V1alpha1HostResourceInfo) GetResourceNameOk ¶

func (o *V1alpha1HostResourceInfo) GetResourceNameOk() (*string, bool)

GetResourceNameOk returns a tuple with the ResourceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1HostResourceInfo) HasCapacity ¶

func (o *V1alpha1HostResourceInfo) HasCapacity() bool

HasCapacity returns a boolean if a field has been set.

func (*V1alpha1HostResourceInfo) HasRequestedByApp ¶

func (o *V1alpha1HostResourceInfo) HasRequestedByApp() bool

HasRequestedByApp returns a boolean if a field has been set.

func (*V1alpha1HostResourceInfo) HasRequestedByNeighbors ¶

func (o *V1alpha1HostResourceInfo) HasRequestedByNeighbors() bool

HasRequestedByNeighbors returns a boolean if a field has been set.

func (*V1alpha1HostResourceInfo) HasResourceName ¶

func (o *V1alpha1HostResourceInfo) HasResourceName() bool

HasResourceName returns a boolean if a field has been set.

func (V1alpha1HostResourceInfo) MarshalJSON ¶

func (o V1alpha1HostResourceInfo) MarshalJSON() ([]byte, error)

func (*V1alpha1HostResourceInfo) SetCapacity ¶

func (o *V1alpha1HostResourceInfo) SetCapacity(v string)

SetCapacity gets a reference to the given string and assigns it to the Capacity field.

func (*V1alpha1HostResourceInfo) SetRequestedByApp ¶

func (o *V1alpha1HostResourceInfo) SetRequestedByApp(v string)

SetRequestedByApp gets a reference to the given string and assigns it to the RequestedByApp field.

func (*V1alpha1HostResourceInfo) SetRequestedByNeighbors ¶

func (o *V1alpha1HostResourceInfo) SetRequestedByNeighbors(v string)

SetRequestedByNeighbors gets a reference to the given string and assigns it to the RequestedByNeighbors field.

func (*V1alpha1HostResourceInfo) SetResourceName ¶

func (o *V1alpha1HostResourceInfo) SetResourceName(v string)

SetResourceName gets a reference to the given string and assigns it to the ResourceName field.

func (V1alpha1HostResourceInfo) ToMap ¶

func (o V1alpha1HostResourceInfo) ToMap() (map[string]interface{}, error)

type V1alpha1Info ¶

type V1alpha1Info struct {
	Name  *string `json:"name,omitempty"`
	Value *string `json:"value,omitempty"`
}

V1alpha1Info struct for V1alpha1Info

func NewV1alpha1Info ¶

func NewV1alpha1Info() *V1alpha1Info

NewV1alpha1Info instantiates a new V1alpha1Info 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 NewV1alpha1InfoWithDefaults ¶

func NewV1alpha1InfoWithDefaults() *V1alpha1Info

NewV1alpha1InfoWithDefaults instantiates a new V1alpha1Info 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 (*V1alpha1Info) GetName ¶

func (o *V1alpha1Info) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1Info) GetNameOk ¶

func (o *V1alpha1Info) 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 (*V1alpha1Info) GetValue ¶

func (o *V1alpha1Info) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*V1alpha1Info) GetValueOk ¶

func (o *V1alpha1Info) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Info) HasName ¶

func (o *V1alpha1Info) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1alpha1Info) HasValue ¶

func (o *V1alpha1Info) HasValue() bool

HasValue returns a boolean if a field has been set.

func (V1alpha1Info) MarshalJSON ¶

func (o V1alpha1Info) MarshalJSON() ([]byte, error)

func (*V1alpha1Info) SetName ¶

func (o *V1alpha1Info) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1Info) SetValue ¶

func (o *V1alpha1Info) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (V1alpha1Info) ToMap ¶

func (o V1alpha1Info) ToMap() (map[string]interface{}, error)

type V1alpha1InfoItem ¶

type V1alpha1InfoItem struct {
	// Name is a human readable title for this piece of information.
	Name *string `json:"name,omitempty"`
	// Value is human readable content.
	Value *string `json:"value,omitempty"`
}

V1alpha1InfoItem struct for V1alpha1InfoItem

func NewV1alpha1InfoItem ¶

func NewV1alpha1InfoItem() *V1alpha1InfoItem

NewV1alpha1InfoItem instantiates a new V1alpha1InfoItem 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 NewV1alpha1InfoItemWithDefaults ¶

func NewV1alpha1InfoItemWithDefaults() *V1alpha1InfoItem

NewV1alpha1InfoItemWithDefaults instantiates a new V1alpha1InfoItem 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 (*V1alpha1InfoItem) GetName ¶

func (o *V1alpha1InfoItem) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1InfoItem) GetNameOk ¶

func (o *V1alpha1InfoItem) 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 (*V1alpha1InfoItem) GetValue ¶

func (o *V1alpha1InfoItem) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*V1alpha1InfoItem) GetValueOk ¶

func (o *V1alpha1InfoItem) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1InfoItem) HasName ¶

func (o *V1alpha1InfoItem) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1alpha1InfoItem) HasValue ¶

func (o *V1alpha1InfoItem) HasValue() bool

HasValue returns a boolean if a field has been set.

func (V1alpha1InfoItem) MarshalJSON ¶

func (o V1alpha1InfoItem) MarshalJSON() ([]byte, error)

func (*V1alpha1InfoItem) SetName ¶

func (o *V1alpha1InfoItem) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1InfoItem) SetValue ¶

func (o *V1alpha1InfoItem) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (V1alpha1InfoItem) ToMap ¶

func (o V1alpha1InfoItem) ToMap() (map[string]interface{}, error)

type V1alpha1JWTToken ¶

type V1alpha1JWTToken struct {
	Exp *string `json:"exp,omitempty"`
	Iat *string `json:"iat,omitempty"`
	Id  *string `json:"id,omitempty"`
}

V1alpha1JWTToken struct for V1alpha1JWTToken

func NewV1alpha1JWTToken ¶

func NewV1alpha1JWTToken() *V1alpha1JWTToken

NewV1alpha1JWTToken instantiates a new V1alpha1JWTToken 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 NewV1alpha1JWTTokenWithDefaults ¶

func NewV1alpha1JWTTokenWithDefaults() *V1alpha1JWTToken

NewV1alpha1JWTTokenWithDefaults instantiates a new V1alpha1JWTToken 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 (*V1alpha1JWTToken) GetExp ¶

func (o *V1alpha1JWTToken) GetExp() string

GetExp returns the Exp field value if set, zero value otherwise.

func (*V1alpha1JWTToken) GetExpOk ¶

func (o *V1alpha1JWTToken) GetExpOk() (*string, bool)

GetExpOk returns a tuple with the Exp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1JWTToken) GetIat ¶

func (o *V1alpha1JWTToken) GetIat() string

GetIat returns the Iat field value if set, zero value otherwise.

func (*V1alpha1JWTToken) GetIatOk ¶

func (o *V1alpha1JWTToken) GetIatOk() (*string, bool)

GetIatOk returns a tuple with the Iat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1JWTToken) GetId ¶

func (o *V1alpha1JWTToken) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*V1alpha1JWTToken) GetIdOk ¶

func (o *V1alpha1JWTToken) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1JWTToken) HasExp ¶

func (o *V1alpha1JWTToken) HasExp() bool

HasExp returns a boolean if a field has been set.

func (*V1alpha1JWTToken) HasIat ¶

func (o *V1alpha1JWTToken) HasIat() bool

HasIat returns a boolean if a field has been set.

func (*V1alpha1JWTToken) HasId ¶

func (o *V1alpha1JWTToken) HasId() bool

HasId returns a boolean if a field has been set.

func (V1alpha1JWTToken) MarshalJSON ¶

func (o V1alpha1JWTToken) MarshalJSON() ([]byte, error)

func (*V1alpha1JWTToken) SetExp ¶

func (o *V1alpha1JWTToken) SetExp(v string)

SetExp gets a reference to the given string and assigns it to the Exp field.

func (*V1alpha1JWTToken) SetIat ¶

func (o *V1alpha1JWTToken) SetIat(v string)

SetIat gets a reference to the given string and assigns it to the Iat field.

func (*V1alpha1JWTToken) SetId ¶

func (o *V1alpha1JWTToken) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (V1alpha1JWTToken) ToMap ¶

func (o V1alpha1JWTToken) ToMap() (map[string]interface{}, error)

type V1alpha1JWTTokens ¶

type V1alpha1JWTTokens struct {
	Items []V1alpha1JWTToken `json:"items,omitempty"`
}

V1alpha1JWTTokens struct for V1alpha1JWTTokens

func NewV1alpha1JWTTokens ¶

func NewV1alpha1JWTTokens() *V1alpha1JWTTokens

NewV1alpha1JWTTokens instantiates a new V1alpha1JWTTokens 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 NewV1alpha1JWTTokensWithDefaults ¶

func NewV1alpha1JWTTokensWithDefaults() *V1alpha1JWTTokens

NewV1alpha1JWTTokensWithDefaults instantiates a new V1alpha1JWTTokens 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 (*V1alpha1JWTTokens) GetItems ¶

func (o *V1alpha1JWTTokens) GetItems() []V1alpha1JWTToken

GetItems returns the Items field value if set, zero value otherwise.

func (*V1alpha1JWTTokens) GetItemsOk ¶

func (o *V1alpha1JWTTokens) GetItemsOk() ([]V1alpha1JWTToken, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1JWTTokens) HasItems ¶

func (o *V1alpha1JWTTokens) HasItems() bool

HasItems returns a boolean if a field has been set.

func (V1alpha1JWTTokens) MarshalJSON ¶

func (o V1alpha1JWTTokens) MarshalJSON() ([]byte, error)

func (*V1alpha1JWTTokens) SetItems ¶

func (o *V1alpha1JWTTokens) SetItems(v []V1alpha1JWTToken)

SetItems gets a reference to the given []V1alpha1JWTToken and assigns it to the Items field.

func (V1alpha1JWTTokens) ToMap ¶

func (o V1alpha1JWTTokens) ToMap() (map[string]interface{}, error)

type V1alpha1JsonnetVar ¶

type V1alpha1JsonnetVar struct {
	Code  *bool   `json:"code,omitempty"`
	Name  *string `json:"name,omitempty"`
	Value *string `json:"value,omitempty"`
}

V1alpha1JsonnetVar struct for V1alpha1JsonnetVar

func NewV1alpha1JsonnetVar ¶

func NewV1alpha1JsonnetVar() *V1alpha1JsonnetVar

NewV1alpha1JsonnetVar instantiates a new V1alpha1JsonnetVar 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 NewV1alpha1JsonnetVarWithDefaults ¶

func NewV1alpha1JsonnetVarWithDefaults() *V1alpha1JsonnetVar

NewV1alpha1JsonnetVarWithDefaults instantiates a new V1alpha1JsonnetVar 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 (*V1alpha1JsonnetVar) GetCode ¶

func (o *V1alpha1JsonnetVar) GetCode() bool

GetCode returns the Code field value if set, zero value otherwise.

func (*V1alpha1JsonnetVar) GetCodeOk ¶

func (o *V1alpha1JsonnetVar) GetCodeOk() (*bool, bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1JsonnetVar) GetName ¶

func (o *V1alpha1JsonnetVar) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1JsonnetVar) GetNameOk ¶

func (o *V1alpha1JsonnetVar) 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 (*V1alpha1JsonnetVar) GetValue ¶

func (o *V1alpha1JsonnetVar) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*V1alpha1JsonnetVar) GetValueOk ¶

func (o *V1alpha1JsonnetVar) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1JsonnetVar) HasCode ¶

func (o *V1alpha1JsonnetVar) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*V1alpha1JsonnetVar) HasName ¶

func (o *V1alpha1JsonnetVar) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1alpha1JsonnetVar) HasValue ¶

func (o *V1alpha1JsonnetVar) HasValue() bool

HasValue returns a boolean if a field has been set.

func (V1alpha1JsonnetVar) MarshalJSON ¶

func (o V1alpha1JsonnetVar) MarshalJSON() ([]byte, error)

func (*V1alpha1JsonnetVar) SetCode ¶

func (o *V1alpha1JsonnetVar) SetCode(v bool)

SetCode gets a reference to the given bool and assigns it to the Code field.

func (*V1alpha1JsonnetVar) SetName ¶

func (o *V1alpha1JsonnetVar) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1JsonnetVar) SetValue ¶

func (o *V1alpha1JsonnetVar) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (V1alpha1JsonnetVar) ToMap ¶

func (o V1alpha1JsonnetVar) ToMap() (map[string]interface{}, error)

type V1alpha1KnownTypeField ¶

type V1alpha1KnownTypeField struct {
	Field *string `json:"field,omitempty"`
	Type  *string `json:"type,omitempty"`
}

V1alpha1KnownTypeField struct for V1alpha1KnownTypeField

func NewV1alpha1KnownTypeField ¶

func NewV1alpha1KnownTypeField() *V1alpha1KnownTypeField

NewV1alpha1KnownTypeField instantiates a new V1alpha1KnownTypeField 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 NewV1alpha1KnownTypeFieldWithDefaults ¶

func NewV1alpha1KnownTypeFieldWithDefaults() *V1alpha1KnownTypeField

NewV1alpha1KnownTypeFieldWithDefaults instantiates a new V1alpha1KnownTypeField 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 (*V1alpha1KnownTypeField) GetField ¶

func (o *V1alpha1KnownTypeField) GetField() string

GetField returns the Field field value if set, zero value otherwise.

func (*V1alpha1KnownTypeField) GetFieldOk ¶

func (o *V1alpha1KnownTypeField) GetFieldOk() (*string, bool)

GetFieldOk returns a tuple with the Field field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1KnownTypeField) GetType ¶

func (o *V1alpha1KnownTypeField) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*V1alpha1KnownTypeField) GetTypeOk ¶

func (o *V1alpha1KnownTypeField) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1KnownTypeField) HasField ¶

func (o *V1alpha1KnownTypeField) HasField() bool

HasField returns a boolean if a field has been set.

func (*V1alpha1KnownTypeField) HasType ¶

func (o *V1alpha1KnownTypeField) HasType() bool

HasType returns a boolean if a field has been set.

func (V1alpha1KnownTypeField) MarshalJSON ¶

func (o V1alpha1KnownTypeField) MarshalJSON() ([]byte, error)

func (*V1alpha1KnownTypeField) SetField ¶

func (o *V1alpha1KnownTypeField) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

func (*V1alpha1KnownTypeField) SetType ¶

func (o *V1alpha1KnownTypeField) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (V1alpha1KnownTypeField) ToMap ¶

func (o V1alpha1KnownTypeField) ToMap() (map[string]interface{}, error)

type V1alpha1KustomizeOptions ¶

type V1alpha1KustomizeOptions struct {
	BinaryPath   *string `json:"binaryPath,omitempty"`
	BuildOptions *string `json:"buildOptions,omitempty"`
}

V1alpha1KustomizeOptions struct for V1alpha1KustomizeOptions

func NewV1alpha1KustomizeOptions ¶

func NewV1alpha1KustomizeOptions() *V1alpha1KustomizeOptions

NewV1alpha1KustomizeOptions instantiates a new V1alpha1KustomizeOptions 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 NewV1alpha1KustomizeOptionsWithDefaults ¶

func NewV1alpha1KustomizeOptionsWithDefaults() *V1alpha1KustomizeOptions

NewV1alpha1KustomizeOptionsWithDefaults instantiates a new V1alpha1KustomizeOptions 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 (*V1alpha1KustomizeOptions) GetBinaryPath ¶

func (o *V1alpha1KustomizeOptions) GetBinaryPath() string

GetBinaryPath returns the BinaryPath field value if set, zero value otherwise.

func (*V1alpha1KustomizeOptions) GetBinaryPathOk ¶

func (o *V1alpha1KustomizeOptions) GetBinaryPathOk() (*string, bool)

GetBinaryPathOk returns a tuple with the BinaryPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1KustomizeOptions) GetBuildOptions ¶

func (o *V1alpha1KustomizeOptions) GetBuildOptions() string

GetBuildOptions returns the BuildOptions field value if set, zero value otherwise.

func (*V1alpha1KustomizeOptions) GetBuildOptionsOk ¶

func (o *V1alpha1KustomizeOptions) GetBuildOptionsOk() (*string, bool)

GetBuildOptionsOk returns a tuple with the BuildOptions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1KustomizeOptions) HasBinaryPath ¶

func (o *V1alpha1KustomizeOptions) HasBinaryPath() bool

HasBinaryPath returns a boolean if a field has been set.

func (*V1alpha1KustomizeOptions) HasBuildOptions ¶

func (o *V1alpha1KustomizeOptions) HasBuildOptions() bool

HasBuildOptions returns a boolean if a field has been set.

func (V1alpha1KustomizeOptions) MarshalJSON ¶

func (o V1alpha1KustomizeOptions) MarshalJSON() ([]byte, error)

func (*V1alpha1KustomizeOptions) SetBinaryPath ¶

func (o *V1alpha1KustomizeOptions) SetBinaryPath(v string)

SetBinaryPath gets a reference to the given string and assigns it to the BinaryPath field.

func (*V1alpha1KustomizeOptions) SetBuildOptions ¶

func (o *V1alpha1KustomizeOptions) SetBuildOptions(v string)

SetBuildOptions gets a reference to the given string and assigns it to the BuildOptions field.

func (V1alpha1KustomizeOptions) ToMap ¶

func (o V1alpha1KustomizeOptions) ToMap() (map[string]interface{}, error)

type V1alpha1ListGenerator ¶

type V1alpha1ListGenerator struct {
	Elements []V1JSON                        `json:"elements,omitempty"`
	Template *V1alpha1ApplicationSetTemplate `json:"template,omitempty"`
}

V1alpha1ListGenerator struct for V1alpha1ListGenerator

func NewV1alpha1ListGenerator ¶

func NewV1alpha1ListGenerator() *V1alpha1ListGenerator

NewV1alpha1ListGenerator instantiates a new V1alpha1ListGenerator 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 NewV1alpha1ListGeneratorWithDefaults ¶

func NewV1alpha1ListGeneratorWithDefaults() *V1alpha1ListGenerator

NewV1alpha1ListGeneratorWithDefaults instantiates a new V1alpha1ListGenerator 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 (*V1alpha1ListGenerator) GetElements ¶

func (o *V1alpha1ListGenerator) GetElements() []V1JSON

GetElements returns the Elements field value if set, zero value otherwise.

func (*V1alpha1ListGenerator) GetElementsOk ¶

func (o *V1alpha1ListGenerator) GetElementsOk() ([]V1JSON, bool)

GetElementsOk returns a tuple with the Elements field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ListGenerator) GetTemplate ¶

GetTemplate returns the Template field value if set, zero value otherwise.

func (*V1alpha1ListGenerator) GetTemplateOk ¶

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ListGenerator) HasElements ¶

func (o *V1alpha1ListGenerator) HasElements() bool

HasElements returns a boolean if a field has been set.

func (*V1alpha1ListGenerator) HasTemplate ¶

func (o *V1alpha1ListGenerator) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (V1alpha1ListGenerator) MarshalJSON ¶

func (o V1alpha1ListGenerator) MarshalJSON() ([]byte, error)

func (*V1alpha1ListGenerator) SetElements ¶

func (o *V1alpha1ListGenerator) SetElements(v []V1JSON)

SetElements gets a reference to the given []V1JSON and assigns it to the Elements field.

func (*V1alpha1ListGenerator) SetTemplate ¶

SetTemplate gets a reference to the given V1alpha1ApplicationSetTemplate and assigns it to the Template field.

func (V1alpha1ListGenerator) ToMap ¶

func (o V1alpha1ListGenerator) ToMap() (map[string]interface{}, error)

type V1alpha1MatrixGenerator ¶

type V1alpha1MatrixGenerator struct {
	Generators []V1alpha1ApplicationSetNestedGenerator `json:"generators,omitempty"`
	Template   *V1alpha1ApplicationSetTemplate         `json:"template,omitempty"`
}

V1alpha1MatrixGenerator MatrixGenerator generates the cartesian product of two sets of parameters. The parameters are defined by two nested generators.

func NewV1alpha1MatrixGenerator ¶

func NewV1alpha1MatrixGenerator() *V1alpha1MatrixGenerator

NewV1alpha1MatrixGenerator instantiates a new V1alpha1MatrixGenerator 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 NewV1alpha1MatrixGeneratorWithDefaults ¶

func NewV1alpha1MatrixGeneratorWithDefaults() *V1alpha1MatrixGenerator

NewV1alpha1MatrixGeneratorWithDefaults instantiates a new V1alpha1MatrixGenerator 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 (*V1alpha1MatrixGenerator) GetGenerators ¶

GetGenerators returns the Generators field value if set, zero value otherwise.

func (*V1alpha1MatrixGenerator) GetGeneratorsOk ¶

GetGeneratorsOk returns a tuple with the Generators field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1MatrixGenerator) GetTemplate ¶

GetTemplate returns the Template field value if set, zero value otherwise.

func (*V1alpha1MatrixGenerator) GetTemplateOk ¶

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1MatrixGenerator) HasGenerators ¶

func (o *V1alpha1MatrixGenerator) HasGenerators() bool

HasGenerators returns a boolean if a field has been set.

func (*V1alpha1MatrixGenerator) HasTemplate ¶

func (o *V1alpha1MatrixGenerator) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (V1alpha1MatrixGenerator) MarshalJSON ¶

func (o V1alpha1MatrixGenerator) MarshalJSON() ([]byte, error)

func (*V1alpha1MatrixGenerator) SetGenerators ¶

SetGenerators gets a reference to the given []V1alpha1ApplicationSetNestedGenerator and assigns it to the Generators field.

func (*V1alpha1MatrixGenerator) SetTemplate ¶

SetTemplate gets a reference to the given V1alpha1ApplicationSetTemplate and assigns it to the Template field.

func (V1alpha1MatrixGenerator) ToMap ¶

func (o V1alpha1MatrixGenerator) ToMap() (map[string]interface{}, error)

type V1alpha1MergeGenerator ¶

type V1alpha1MergeGenerator struct {
	Generators []V1alpha1ApplicationSetNestedGenerator `json:"generators,omitempty"`
	MergeKeys  []string                                `json:"mergeKeys,omitempty"`
	Template   *V1alpha1ApplicationSetTemplate         `json:"template,omitempty"`
}

V1alpha1MergeGenerator MergeGenerator merges the output of two or more generators. Where the values for all specified merge keys are equal between two sets of generated parameters, the parameter sets will be merged with the parameters from the latter generator taking precedence. Parameter sets with merge keys not present in the base generator's params will be ignored. For example, if the first generator produced [{a: '1', b: '2'}, {c: '1', d: '1'}] and the second generator produced [{'a': 'override'}], the united parameters for merge keys = ['a'] would be [{a: 'override', b: '1'}, {c: '1', d: '1'}]. MergeGenerator supports template overriding. If a MergeGenerator is one of multiple top-level generators, its template will be merged with the top-level generator before the parameters are applied.

func NewV1alpha1MergeGenerator ¶

func NewV1alpha1MergeGenerator() *V1alpha1MergeGenerator

NewV1alpha1MergeGenerator instantiates a new V1alpha1MergeGenerator 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 NewV1alpha1MergeGeneratorWithDefaults ¶

func NewV1alpha1MergeGeneratorWithDefaults() *V1alpha1MergeGenerator

NewV1alpha1MergeGeneratorWithDefaults instantiates a new V1alpha1MergeGenerator 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 (*V1alpha1MergeGenerator) GetGenerators ¶

GetGenerators returns the Generators field value if set, zero value otherwise.

func (*V1alpha1MergeGenerator) GetGeneratorsOk ¶

GetGeneratorsOk returns a tuple with the Generators field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1MergeGenerator) GetMergeKeys ¶

func (o *V1alpha1MergeGenerator) GetMergeKeys() []string

GetMergeKeys returns the MergeKeys field value if set, zero value otherwise.

func (*V1alpha1MergeGenerator) GetMergeKeysOk ¶

func (o *V1alpha1MergeGenerator) GetMergeKeysOk() ([]string, bool)

GetMergeKeysOk returns a tuple with the MergeKeys field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1MergeGenerator) GetTemplate ¶

GetTemplate returns the Template field value if set, zero value otherwise.

func (*V1alpha1MergeGenerator) GetTemplateOk ¶

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1MergeGenerator) HasGenerators ¶

func (o *V1alpha1MergeGenerator) HasGenerators() bool

HasGenerators returns a boolean if a field has been set.

func (*V1alpha1MergeGenerator) HasMergeKeys ¶

func (o *V1alpha1MergeGenerator) HasMergeKeys() bool

HasMergeKeys returns a boolean if a field has been set.

func (*V1alpha1MergeGenerator) HasTemplate ¶

func (o *V1alpha1MergeGenerator) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (V1alpha1MergeGenerator) MarshalJSON ¶

func (o V1alpha1MergeGenerator) MarshalJSON() ([]byte, error)

func (*V1alpha1MergeGenerator) SetGenerators ¶

SetGenerators gets a reference to the given []V1alpha1ApplicationSetNestedGenerator and assigns it to the Generators field.

func (*V1alpha1MergeGenerator) SetMergeKeys ¶

func (o *V1alpha1MergeGenerator) SetMergeKeys(v []string)

SetMergeKeys gets a reference to the given []string and assigns it to the MergeKeys field.

func (*V1alpha1MergeGenerator) SetTemplate ¶

SetTemplate gets a reference to the given V1alpha1ApplicationSetTemplate and assigns it to the Template field.

func (V1alpha1MergeGenerator) ToMap ¶

func (o V1alpha1MergeGenerator) ToMap() (map[string]interface{}, error)

type V1alpha1Operation ¶

type V1alpha1Operation struct {
	Info        []V1alpha1Info              `json:"info,omitempty"`
	InitiatedBy *V1alpha1OperationInitiator `json:"initiatedBy,omitempty"`
	Retry       *V1alpha1RetryStrategy      `json:"retry,omitempty"`
	Sync        *V1alpha1SyncOperation      `json:"sync,omitempty"`
}

V1alpha1Operation struct for V1alpha1Operation

func NewV1alpha1Operation ¶

func NewV1alpha1Operation() *V1alpha1Operation

NewV1alpha1Operation instantiates a new V1alpha1Operation 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 NewV1alpha1OperationWithDefaults ¶

func NewV1alpha1OperationWithDefaults() *V1alpha1Operation

NewV1alpha1OperationWithDefaults instantiates a new V1alpha1Operation 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 (*V1alpha1Operation) GetInfo ¶

func (o *V1alpha1Operation) GetInfo() []V1alpha1Info

GetInfo returns the Info field value if set, zero value otherwise.

func (*V1alpha1Operation) GetInfoOk ¶

func (o *V1alpha1Operation) GetInfoOk() ([]V1alpha1Info, bool)

GetInfoOk returns a tuple with the Info field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Operation) GetInitiatedBy ¶

func (o *V1alpha1Operation) GetInitiatedBy() V1alpha1OperationInitiator

GetInitiatedBy returns the InitiatedBy field value if set, zero value otherwise.

func (*V1alpha1Operation) GetInitiatedByOk ¶

func (o *V1alpha1Operation) GetInitiatedByOk() (*V1alpha1OperationInitiator, bool)

GetInitiatedByOk returns a tuple with the InitiatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Operation) GetRetry ¶

GetRetry returns the Retry field value if set, zero value otherwise.

func (*V1alpha1Operation) GetRetryOk ¶

func (o *V1alpha1Operation) GetRetryOk() (*V1alpha1RetryStrategy, bool)

GetRetryOk returns a tuple with the Retry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Operation) GetSync ¶

GetSync returns the Sync field value if set, zero value otherwise.

func (*V1alpha1Operation) GetSyncOk ¶

func (o *V1alpha1Operation) GetSyncOk() (*V1alpha1SyncOperation, bool)

GetSyncOk returns a tuple with the Sync field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Operation) HasInfo ¶

func (o *V1alpha1Operation) HasInfo() bool

HasInfo returns a boolean if a field has been set.

func (*V1alpha1Operation) HasInitiatedBy ¶

func (o *V1alpha1Operation) HasInitiatedBy() bool

HasInitiatedBy returns a boolean if a field has been set.

func (*V1alpha1Operation) HasRetry ¶

func (o *V1alpha1Operation) HasRetry() bool

HasRetry returns a boolean if a field has been set.

func (*V1alpha1Operation) HasSync ¶

func (o *V1alpha1Operation) HasSync() bool

HasSync returns a boolean if a field has been set.

func (V1alpha1Operation) MarshalJSON ¶

func (o V1alpha1Operation) MarshalJSON() ([]byte, error)

func (*V1alpha1Operation) SetInfo ¶

func (o *V1alpha1Operation) SetInfo(v []V1alpha1Info)

SetInfo gets a reference to the given []V1alpha1Info and assigns it to the Info field.

func (*V1alpha1Operation) SetInitiatedBy ¶

func (o *V1alpha1Operation) SetInitiatedBy(v V1alpha1OperationInitiator)

SetInitiatedBy gets a reference to the given V1alpha1OperationInitiator and assigns it to the InitiatedBy field.

func (*V1alpha1Operation) SetRetry ¶

SetRetry gets a reference to the given V1alpha1RetryStrategy and assigns it to the Retry field.

func (*V1alpha1Operation) SetSync ¶

SetSync gets a reference to the given V1alpha1SyncOperation and assigns it to the Sync field.

func (V1alpha1Operation) ToMap ¶

func (o V1alpha1Operation) ToMap() (map[string]interface{}, error)

type V1alpha1OperationInitiator ¶

type V1alpha1OperationInitiator struct {
	// Automated is set to true if operation was initiated automatically by the application controller.
	Automated *bool   `json:"automated,omitempty"`
	Username  *string `json:"username,omitempty"`
}

V1alpha1OperationInitiator struct for V1alpha1OperationInitiator

func NewV1alpha1OperationInitiator ¶

func NewV1alpha1OperationInitiator() *V1alpha1OperationInitiator

NewV1alpha1OperationInitiator instantiates a new V1alpha1OperationInitiator 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 NewV1alpha1OperationInitiatorWithDefaults ¶

func NewV1alpha1OperationInitiatorWithDefaults() *V1alpha1OperationInitiator

NewV1alpha1OperationInitiatorWithDefaults instantiates a new V1alpha1OperationInitiator 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 (*V1alpha1OperationInitiator) GetAutomated ¶

func (o *V1alpha1OperationInitiator) GetAutomated() bool

GetAutomated returns the Automated field value if set, zero value otherwise.

func (*V1alpha1OperationInitiator) GetAutomatedOk ¶

func (o *V1alpha1OperationInitiator) GetAutomatedOk() (*bool, bool)

GetAutomatedOk returns a tuple with the Automated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1OperationInitiator) GetUsername ¶

func (o *V1alpha1OperationInitiator) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*V1alpha1OperationInitiator) GetUsernameOk ¶

func (o *V1alpha1OperationInitiator) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1OperationInitiator) HasAutomated ¶

func (o *V1alpha1OperationInitiator) HasAutomated() bool

HasAutomated returns a boolean if a field has been set.

func (*V1alpha1OperationInitiator) HasUsername ¶

func (o *V1alpha1OperationInitiator) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (V1alpha1OperationInitiator) MarshalJSON ¶

func (o V1alpha1OperationInitiator) MarshalJSON() ([]byte, error)

func (*V1alpha1OperationInitiator) SetAutomated ¶

func (o *V1alpha1OperationInitiator) SetAutomated(v bool)

SetAutomated gets a reference to the given bool and assigns it to the Automated field.

func (*V1alpha1OperationInitiator) SetUsername ¶

func (o *V1alpha1OperationInitiator) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (V1alpha1OperationInitiator) ToMap ¶

func (o V1alpha1OperationInitiator) ToMap() (map[string]interface{}, error)

type V1alpha1OperationState ¶

type V1alpha1OperationState struct {
	FinishedAt *string `json:"finishedAt,omitempty"`
	// Message holds any pertinent messages when attempting to perform operation (typically errors).
	Message    *string                      `json:"message,omitempty"`
	Operation  *V1alpha1Operation           `json:"operation,omitempty"`
	Phase      *string                      `json:"phase,omitempty"`
	RetryCount *string                      `json:"retryCount,omitempty"`
	StartedAt  *string                      `json:"startedAt,omitempty"`
	SyncResult *V1alpha1SyncOperationResult `json:"syncResult,omitempty"`
}

V1alpha1OperationState struct for V1alpha1OperationState

func NewV1alpha1OperationState ¶

func NewV1alpha1OperationState() *V1alpha1OperationState

NewV1alpha1OperationState instantiates a new V1alpha1OperationState 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 NewV1alpha1OperationStateWithDefaults ¶

func NewV1alpha1OperationStateWithDefaults() *V1alpha1OperationState

NewV1alpha1OperationStateWithDefaults instantiates a new V1alpha1OperationState 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 (*V1alpha1OperationState) GetFinishedAt ¶

func (o *V1alpha1OperationState) GetFinishedAt() string

GetFinishedAt returns the FinishedAt field value if set, zero value otherwise.

func (*V1alpha1OperationState) GetFinishedAtOk ¶

func (o *V1alpha1OperationState) GetFinishedAtOk() (*string, bool)

GetFinishedAtOk returns a tuple with the FinishedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1OperationState) GetMessage ¶

func (o *V1alpha1OperationState) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*V1alpha1OperationState) GetMessageOk ¶

func (o *V1alpha1OperationState) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1OperationState) GetOperation ¶

func (o *V1alpha1OperationState) GetOperation() V1alpha1Operation

GetOperation returns the Operation field value if set, zero value otherwise.

func (*V1alpha1OperationState) GetOperationOk ¶

func (o *V1alpha1OperationState) GetOperationOk() (*V1alpha1Operation, bool)

GetOperationOk returns a tuple with the Operation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1OperationState) GetPhase ¶

func (o *V1alpha1OperationState) GetPhase() string

GetPhase returns the Phase field value if set, zero value otherwise.

func (*V1alpha1OperationState) GetPhaseOk ¶

func (o *V1alpha1OperationState) GetPhaseOk() (*string, bool)

GetPhaseOk returns a tuple with the Phase field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1OperationState) GetRetryCount ¶

func (o *V1alpha1OperationState) GetRetryCount() string

GetRetryCount returns the RetryCount field value if set, zero value otherwise.

func (*V1alpha1OperationState) GetRetryCountOk ¶

func (o *V1alpha1OperationState) GetRetryCountOk() (*string, bool)

GetRetryCountOk returns a tuple with the RetryCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1OperationState) GetStartedAt ¶

func (o *V1alpha1OperationState) GetStartedAt() string

GetStartedAt returns the StartedAt field value if set, zero value otherwise.

func (*V1alpha1OperationState) GetStartedAtOk ¶

func (o *V1alpha1OperationState) GetStartedAtOk() (*string, bool)

GetStartedAtOk returns a tuple with the StartedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1OperationState) GetSyncResult ¶

GetSyncResult returns the SyncResult field value if set, zero value otherwise.

func (*V1alpha1OperationState) GetSyncResultOk ¶

func (o *V1alpha1OperationState) GetSyncResultOk() (*V1alpha1SyncOperationResult, bool)

GetSyncResultOk returns a tuple with the SyncResult field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1OperationState) HasFinishedAt ¶

func (o *V1alpha1OperationState) HasFinishedAt() bool

HasFinishedAt returns a boolean if a field has been set.

func (*V1alpha1OperationState) HasMessage ¶

func (o *V1alpha1OperationState) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*V1alpha1OperationState) HasOperation ¶

func (o *V1alpha1OperationState) HasOperation() bool

HasOperation returns a boolean if a field has been set.

func (*V1alpha1OperationState) HasPhase ¶

func (o *V1alpha1OperationState) HasPhase() bool

HasPhase returns a boolean if a field has been set.

func (*V1alpha1OperationState) HasRetryCount ¶

func (o *V1alpha1OperationState) HasRetryCount() bool

HasRetryCount returns a boolean if a field has been set.

func (*V1alpha1OperationState) HasStartedAt ¶

func (o *V1alpha1OperationState) HasStartedAt() bool

HasStartedAt returns a boolean if a field has been set.

func (*V1alpha1OperationState) HasSyncResult ¶

func (o *V1alpha1OperationState) HasSyncResult() bool

HasSyncResult returns a boolean if a field has been set.

func (V1alpha1OperationState) MarshalJSON ¶

func (o V1alpha1OperationState) MarshalJSON() ([]byte, error)

func (*V1alpha1OperationState) SetFinishedAt ¶

func (o *V1alpha1OperationState) SetFinishedAt(v string)

SetFinishedAt gets a reference to the given string and assigns it to the FinishedAt field.

func (*V1alpha1OperationState) SetMessage ¶

func (o *V1alpha1OperationState) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*V1alpha1OperationState) SetOperation ¶

func (o *V1alpha1OperationState) SetOperation(v V1alpha1Operation)

SetOperation gets a reference to the given V1alpha1Operation and assigns it to the Operation field.

func (*V1alpha1OperationState) SetPhase ¶

func (o *V1alpha1OperationState) SetPhase(v string)

SetPhase gets a reference to the given string and assigns it to the Phase field.

func (*V1alpha1OperationState) SetRetryCount ¶

func (o *V1alpha1OperationState) SetRetryCount(v string)

SetRetryCount gets a reference to the given string and assigns it to the RetryCount field.

func (*V1alpha1OperationState) SetStartedAt ¶

func (o *V1alpha1OperationState) SetStartedAt(v string)

SetStartedAt gets a reference to the given string and assigns it to the StartedAt field.

func (*V1alpha1OperationState) SetSyncResult ¶

SetSyncResult gets a reference to the given V1alpha1SyncOperationResult and assigns it to the SyncResult field.

func (V1alpha1OperationState) ToMap ¶

func (o V1alpha1OperationState) ToMap() (map[string]interface{}, error)

type V1alpha1OrphanedResourceKey ¶

type V1alpha1OrphanedResourceKey struct {
	Group *string `json:"group,omitempty"`
	Kind  *string `json:"kind,omitempty"`
	Name  *string `json:"name,omitempty"`
}

V1alpha1OrphanedResourceKey struct for V1alpha1OrphanedResourceKey

func NewV1alpha1OrphanedResourceKey ¶

func NewV1alpha1OrphanedResourceKey() *V1alpha1OrphanedResourceKey

NewV1alpha1OrphanedResourceKey instantiates a new V1alpha1OrphanedResourceKey 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 NewV1alpha1OrphanedResourceKeyWithDefaults ¶

func NewV1alpha1OrphanedResourceKeyWithDefaults() *V1alpha1OrphanedResourceKey

NewV1alpha1OrphanedResourceKeyWithDefaults instantiates a new V1alpha1OrphanedResourceKey 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 (*V1alpha1OrphanedResourceKey) GetGroup ¶

func (o *V1alpha1OrphanedResourceKey) GetGroup() string

GetGroup returns the Group field value if set, zero value otherwise.

func (*V1alpha1OrphanedResourceKey) GetGroupOk ¶

func (o *V1alpha1OrphanedResourceKey) 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 (*V1alpha1OrphanedResourceKey) GetKind ¶

func (o *V1alpha1OrphanedResourceKey) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*V1alpha1OrphanedResourceKey) GetKindOk ¶

func (o *V1alpha1OrphanedResourceKey) 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 (*V1alpha1OrphanedResourceKey) GetName ¶

func (o *V1alpha1OrphanedResourceKey) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1OrphanedResourceKey) GetNameOk ¶

func (o *V1alpha1OrphanedResourceKey) 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 (*V1alpha1OrphanedResourceKey) HasGroup ¶

func (o *V1alpha1OrphanedResourceKey) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (*V1alpha1OrphanedResourceKey) HasKind ¶

func (o *V1alpha1OrphanedResourceKey) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*V1alpha1OrphanedResourceKey) HasName ¶

func (o *V1alpha1OrphanedResourceKey) HasName() bool

HasName returns a boolean if a field has been set.

func (V1alpha1OrphanedResourceKey) MarshalJSON ¶

func (o V1alpha1OrphanedResourceKey) MarshalJSON() ([]byte, error)

func (*V1alpha1OrphanedResourceKey) SetGroup ¶

func (o *V1alpha1OrphanedResourceKey) SetGroup(v string)

SetGroup gets a reference to the given string and assigns it to the Group field.

func (*V1alpha1OrphanedResourceKey) SetKind ¶

func (o *V1alpha1OrphanedResourceKey) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*V1alpha1OrphanedResourceKey) SetName ¶

func (o *V1alpha1OrphanedResourceKey) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (V1alpha1OrphanedResourceKey) ToMap ¶

func (o V1alpha1OrphanedResourceKey) ToMap() (map[string]interface{}, error)

type V1alpha1OrphanedResourcesMonitorSettings ¶

type V1alpha1OrphanedResourcesMonitorSettings struct {
	Ignore []V1alpha1OrphanedResourceKey `json:"ignore,omitempty"`
	Warn   *bool                         `json:"warn,omitempty"`
}

V1alpha1OrphanedResourcesMonitorSettings struct for V1alpha1OrphanedResourcesMonitorSettings

func NewV1alpha1OrphanedResourcesMonitorSettings ¶

func NewV1alpha1OrphanedResourcesMonitorSettings() *V1alpha1OrphanedResourcesMonitorSettings

NewV1alpha1OrphanedResourcesMonitorSettings instantiates a new V1alpha1OrphanedResourcesMonitorSettings 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 NewV1alpha1OrphanedResourcesMonitorSettingsWithDefaults ¶

func NewV1alpha1OrphanedResourcesMonitorSettingsWithDefaults() *V1alpha1OrphanedResourcesMonitorSettings

NewV1alpha1OrphanedResourcesMonitorSettingsWithDefaults instantiates a new V1alpha1OrphanedResourcesMonitorSettings 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 (*V1alpha1OrphanedResourcesMonitorSettings) GetIgnore ¶

GetIgnore returns the Ignore field value if set, zero value otherwise.

func (*V1alpha1OrphanedResourcesMonitorSettings) GetIgnoreOk ¶

GetIgnoreOk returns a tuple with the Ignore field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1OrphanedResourcesMonitorSettings) GetWarn ¶

GetWarn returns the Warn field value if set, zero value otherwise.

func (*V1alpha1OrphanedResourcesMonitorSettings) GetWarnOk ¶

GetWarnOk returns a tuple with the Warn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1OrphanedResourcesMonitorSettings) HasIgnore ¶

HasIgnore returns a boolean if a field has been set.

func (*V1alpha1OrphanedResourcesMonitorSettings) HasWarn ¶

HasWarn returns a boolean if a field has been set.

func (V1alpha1OrphanedResourcesMonitorSettings) MarshalJSON ¶

func (*V1alpha1OrphanedResourcesMonitorSettings) SetIgnore ¶

SetIgnore gets a reference to the given []V1alpha1OrphanedResourceKey and assigns it to the Ignore field.

func (*V1alpha1OrphanedResourcesMonitorSettings) SetWarn ¶

SetWarn gets a reference to the given bool and assigns it to the Warn field.

func (V1alpha1OrphanedResourcesMonitorSettings) ToMap ¶

func (o V1alpha1OrphanedResourcesMonitorSettings) ToMap() (map[string]interface{}, error)

type V1alpha1OverrideIgnoreDiff ¶

type V1alpha1OverrideIgnoreDiff struct {
	JSONPointers          []string `json:"jSONPointers,omitempty"`
	JqPathExpressions     []string `json:"jqPathExpressions,omitempty"`
	ManagedFieldsManagers []string `json:"managedFieldsManagers,omitempty"`
}

V1alpha1OverrideIgnoreDiff struct for V1alpha1OverrideIgnoreDiff

func NewV1alpha1OverrideIgnoreDiff ¶

func NewV1alpha1OverrideIgnoreDiff() *V1alpha1OverrideIgnoreDiff

NewV1alpha1OverrideIgnoreDiff instantiates a new V1alpha1OverrideIgnoreDiff 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 NewV1alpha1OverrideIgnoreDiffWithDefaults ¶

func NewV1alpha1OverrideIgnoreDiffWithDefaults() *V1alpha1OverrideIgnoreDiff

NewV1alpha1OverrideIgnoreDiffWithDefaults instantiates a new V1alpha1OverrideIgnoreDiff 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 (*V1alpha1OverrideIgnoreDiff) GetJSONPointers ¶

func (o *V1alpha1OverrideIgnoreDiff) GetJSONPointers() []string

GetJSONPointers returns the JSONPointers field value if set, zero value otherwise.

func (*V1alpha1OverrideIgnoreDiff) GetJSONPointersOk ¶

func (o *V1alpha1OverrideIgnoreDiff) GetJSONPointersOk() ([]string, bool)

GetJSONPointersOk returns a tuple with the JSONPointers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1OverrideIgnoreDiff) GetJqPathExpressions ¶

func (o *V1alpha1OverrideIgnoreDiff) GetJqPathExpressions() []string

GetJqPathExpressions returns the JqPathExpressions field value if set, zero value otherwise.

func (*V1alpha1OverrideIgnoreDiff) GetJqPathExpressionsOk ¶

func (o *V1alpha1OverrideIgnoreDiff) GetJqPathExpressionsOk() ([]string, bool)

GetJqPathExpressionsOk returns a tuple with the JqPathExpressions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1OverrideIgnoreDiff) GetManagedFieldsManagers ¶

func (o *V1alpha1OverrideIgnoreDiff) GetManagedFieldsManagers() []string

GetManagedFieldsManagers returns the ManagedFieldsManagers field value if set, zero value otherwise.

func (*V1alpha1OverrideIgnoreDiff) GetManagedFieldsManagersOk ¶

func (o *V1alpha1OverrideIgnoreDiff) GetManagedFieldsManagersOk() ([]string, bool)

GetManagedFieldsManagersOk returns a tuple with the ManagedFieldsManagers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1OverrideIgnoreDiff) HasJSONPointers ¶

func (o *V1alpha1OverrideIgnoreDiff) HasJSONPointers() bool

HasJSONPointers returns a boolean if a field has been set.

func (*V1alpha1OverrideIgnoreDiff) HasJqPathExpressions ¶

func (o *V1alpha1OverrideIgnoreDiff) HasJqPathExpressions() bool

HasJqPathExpressions returns a boolean if a field has been set.

func (*V1alpha1OverrideIgnoreDiff) HasManagedFieldsManagers ¶

func (o *V1alpha1OverrideIgnoreDiff) HasManagedFieldsManagers() bool

HasManagedFieldsManagers returns a boolean if a field has been set.

func (V1alpha1OverrideIgnoreDiff) MarshalJSON ¶

func (o V1alpha1OverrideIgnoreDiff) MarshalJSON() ([]byte, error)

func (*V1alpha1OverrideIgnoreDiff) SetJSONPointers ¶

func (o *V1alpha1OverrideIgnoreDiff) SetJSONPointers(v []string)

SetJSONPointers gets a reference to the given []string and assigns it to the JSONPointers field.

func (*V1alpha1OverrideIgnoreDiff) SetJqPathExpressions ¶

func (o *V1alpha1OverrideIgnoreDiff) SetJqPathExpressions(v []string)

SetJqPathExpressions gets a reference to the given []string and assigns it to the JqPathExpressions field.

func (*V1alpha1OverrideIgnoreDiff) SetManagedFieldsManagers ¶

func (o *V1alpha1OverrideIgnoreDiff) SetManagedFieldsManagers(v []string)

SetManagedFieldsManagers gets a reference to the given []string and assigns it to the ManagedFieldsManagers field.

func (V1alpha1OverrideIgnoreDiff) ToMap ¶

func (o V1alpha1OverrideIgnoreDiff) ToMap() (map[string]interface{}, error)

type V1alpha1ProjectRole ¶

type V1alpha1ProjectRole struct {
	Description *string            `json:"description,omitempty"`
	Groups      []string           `json:"groups,omitempty"`
	JwtTokens   []V1alpha1JWTToken `json:"jwtTokens,omitempty"`
	Name        *string            `json:"name,omitempty"`
	Policies    []string           `json:"policies,omitempty"`
}

V1alpha1ProjectRole struct for V1alpha1ProjectRole

func NewV1alpha1ProjectRole ¶

func NewV1alpha1ProjectRole() *V1alpha1ProjectRole

NewV1alpha1ProjectRole instantiates a new V1alpha1ProjectRole 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 NewV1alpha1ProjectRoleWithDefaults ¶

func NewV1alpha1ProjectRoleWithDefaults() *V1alpha1ProjectRole

NewV1alpha1ProjectRoleWithDefaults instantiates a new V1alpha1ProjectRole 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 (*V1alpha1ProjectRole) GetDescription ¶

func (o *V1alpha1ProjectRole) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*V1alpha1ProjectRole) GetDescriptionOk ¶

func (o *V1alpha1ProjectRole) 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 (*V1alpha1ProjectRole) GetGroups ¶

func (o *V1alpha1ProjectRole) GetGroups() []string

GetGroups returns the Groups field value if set, zero value otherwise.

func (*V1alpha1ProjectRole) GetGroupsOk ¶

func (o *V1alpha1ProjectRole) GetGroupsOk() ([]string, bool)

GetGroupsOk returns a tuple with the Groups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ProjectRole) GetJwtTokens ¶

func (o *V1alpha1ProjectRole) GetJwtTokens() []V1alpha1JWTToken

GetJwtTokens returns the JwtTokens field value if set, zero value otherwise.

func (*V1alpha1ProjectRole) GetJwtTokensOk ¶

func (o *V1alpha1ProjectRole) GetJwtTokensOk() ([]V1alpha1JWTToken, bool)

GetJwtTokensOk returns a tuple with the JwtTokens field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ProjectRole) GetName ¶

func (o *V1alpha1ProjectRole) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1ProjectRole) GetNameOk ¶

func (o *V1alpha1ProjectRole) 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 (*V1alpha1ProjectRole) GetPolicies ¶

func (o *V1alpha1ProjectRole) GetPolicies() []string

GetPolicies returns the Policies field value if set, zero value otherwise.

func (*V1alpha1ProjectRole) GetPoliciesOk ¶

func (o *V1alpha1ProjectRole) GetPoliciesOk() ([]string, bool)

GetPoliciesOk returns a tuple with the Policies field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ProjectRole) HasDescription ¶

func (o *V1alpha1ProjectRole) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*V1alpha1ProjectRole) HasGroups ¶

func (o *V1alpha1ProjectRole) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (*V1alpha1ProjectRole) HasJwtTokens ¶

func (o *V1alpha1ProjectRole) HasJwtTokens() bool

HasJwtTokens returns a boolean if a field has been set.

func (*V1alpha1ProjectRole) HasName ¶

func (o *V1alpha1ProjectRole) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1alpha1ProjectRole) HasPolicies ¶

func (o *V1alpha1ProjectRole) HasPolicies() bool

HasPolicies returns a boolean if a field has been set.

func (V1alpha1ProjectRole) MarshalJSON ¶

func (o V1alpha1ProjectRole) MarshalJSON() ([]byte, error)

func (*V1alpha1ProjectRole) SetDescription ¶

func (o *V1alpha1ProjectRole) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*V1alpha1ProjectRole) SetGroups ¶

func (o *V1alpha1ProjectRole) SetGroups(v []string)

SetGroups gets a reference to the given []string and assigns it to the Groups field.

func (*V1alpha1ProjectRole) SetJwtTokens ¶

func (o *V1alpha1ProjectRole) SetJwtTokens(v []V1alpha1JWTToken)

SetJwtTokens gets a reference to the given []V1alpha1JWTToken and assigns it to the JwtTokens field.

func (*V1alpha1ProjectRole) SetName ¶

func (o *V1alpha1ProjectRole) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1ProjectRole) SetPolicies ¶

func (o *V1alpha1ProjectRole) SetPolicies(v []string)

SetPolicies gets a reference to the given []string and assigns it to the Policies field.

func (V1alpha1ProjectRole) ToMap ¶

func (o V1alpha1ProjectRole) ToMap() (map[string]interface{}, error)

type V1alpha1PullRequestGenerator ¶

type V1alpha1PullRequestGenerator struct {
	BitbucketServer *V1alpha1PullRequestGeneratorBitbucketServer `json:"bitbucketServer,omitempty"`
	// Filters for which pull requests should be considered.
	Filters []V1alpha1PullRequestGeneratorFilter `json:"filters,omitempty"`
	Gitea   *V1alpha1PullRequestGeneratorGitea   `json:"gitea,omitempty"`
	Github  *V1alpha1PullRequestGeneratorGithub  `json:"github,omitempty"`
	Gitlab  *V1alpha1PullRequestGeneratorGitLab  `json:"gitlab,omitempty"`
	// Standard parameters.
	RequeueAfterSeconds *string                         `json:"requeueAfterSeconds,omitempty"`
	Template            *V1alpha1ApplicationSetTemplate `json:"template,omitempty"`
}

V1alpha1PullRequestGenerator PullRequestGenerator defines a generator that scrapes a PullRequest API to find candidate pull requests.

func NewV1alpha1PullRequestGenerator ¶

func NewV1alpha1PullRequestGenerator() *V1alpha1PullRequestGenerator

NewV1alpha1PullRequestGenerator instantiates a new V1alpha1PullRequestGenerator 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 NewV1alpha1PullRequestGeneratorWithDefaults ¶

func NewV1alpha1PullRequestGeneratorWithDefaults() *V1alpha1PullRequestGenerator

NewV1alpha1PullRequestGeneratorWithDefaults instantiates a new V1alpha1PullRequestGenerator 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 (*V1alpha1PullRequestGenerator) GetBitbucketServer ¶

GetBitbucketServer returns the BitbucketServer field value if set, zero value otherwise.

func (*V1alpha1PullRequestGenerator) GetBitbucketServerOk ¶

GetBitbucketServerOk returns a tuple with the BitbucketServer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGenerator) GetFilters ¶

GetFilters returns the Filters field value if set, zero value otherwise.

func (*V1alpha1PullRequestGenerator) GetFiltersOk ¶

GetFiltersOk returns a tuple with the Filters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGenerator) GetGitea ¶

GetGitea returns the Gitea field value if set, zero value otherwise.

func (*V1alpha1PullRequestGenerator) GetGiteaOk ¶

GetGiteaOk returns a tuple with the Gitea field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGenerator) GetGithub ¶

GetGithub returns the Github field value if set, zero value otherwise.

func (*V1alpha1PullRequestGenerator) GetGithubOk ¶

GetGithubOk returns a tuple with the Github field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGenerator) GetGitlab ¶

GetGitlab returns the Gitlab field value if set, zero value otherwise.

func (*V1alpha1PullRequestGenerator) GetGitlabOk ¶

GetGitlabOk returns a tuple with the Gitlab field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGenerator) GetRequeueAfterSeconds ¶

func (o *V1alpha1PullRequestGenerator) GetRequeueAfterSeconds() string

GetRequeueAfterSeconds returns the RequeueAfterSeconds field value if set, zero value otherwise.

func (*V1alpha1PullRequestGenerator) GetRequeueAfterSecondsOk ¶

func (o *V1alpha1PullRequestGenerator) GetRequeueAfterSecondsOk() (*string, bool)

GetRequeueAfterSecondsOk returns a tuple with the RequeueAfterSeconds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGenerator) GetTemplate ¶

GetTemplate returns the Template field value if set, zero value otherwise.

func (*V1alpha1PullRequestGenerator) GetTemplateOk ¶

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGenerator) HasBitbucketServer ¶

func (o *V1alpha1PullRequestGenerator) HasBitbucketServer() bool

HasBitbucketServer returns a boolean if a field has been set.

func (*V1alpha1PullRequestGenerator) HasFilters ¶

func (o *V1alpha1PullRequestGenerator) HasFilters() bool

HasFilters returns a boolean if a field has been set.

func (*V1alpha1PullRequestGenerator) HasGitea ¶

func (o *V1alpha1PullRequestGenerator) HasGitea() bool

HasGitea returns a boolean if a field has been set.

func (*V1alpha1PullRequestGenerator) HasGithub ¶

func (o *V1alpha1PullRequestGenerator) HasGithub() bool

HasGithub returns a boolean if a field has been set.

func (*V1alpha1PullRequestGenerator) HasGitlab ¶

func (o *V1alpha1PullRequestGenerator) HasGitlab() bool

HasGitlab returns a boolean if a field has been set.

func (*V1alpha1PullRequestGenerator) HasRequeueAfterSeconds ¶

func (o *V1alpha1PullRequestGenerator) HasRequeueAfterSeconds() bool

HasRequeueAfterSeconds returns a boolean if a field has been set.

func (*V1alpha1PullRequestGenerator) HasTemplate ¶

func (o *V1alpha1PullRequestGenerator) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (V1alpha1PullRequestGenerator) MarshalJSON ¶

func (o V1alpha1PullRequestGenerator) MarshalJSON() ([]byte, error)

func (*V1alpha1PullRequestGenerator) SetBitbucketServer ¶

SetBitbucketServer gets a reference to the given V1alpha1PullRequestGeneratorBitbucketServer and assigns it to the BitbucketServer field.

func (*V1alpha1PullRequestGenerator) SetFilters ¶

SetFilters gets a reference to the given []V1alpha1PullRequestGeneratorFilter and assigns it to the Filters field.

func (*V1alpha1PullRequestGenerator) SetGitea ¶

SetGitea gets a reference to the given V1alpha1PullRequestGeneratorGitea and assigns it to the Gitea field.

func (*V1alpha1PullRequestGenerator) SetGithub ¶

SetGithub gets a reference to the given V1alpha1PullRequestGeneratorGithub and assigns it to the Github field.

func (*V1alpha1PullRequestGenerator) SetGitlab ¶

SetGitlab gets a reference to the given V1alpha1PullRequestGeneratorGitLab and assigns it to the Gitlab field.

func (*V1alpha1PullRequestGenerator) SetRequeueAfterSeconds ¶

func (o *V1alpha1PullRequestGenerator) SetRequeueAfterSeconds(v string)

SetRequeueAfterSeconds gets a reference to the given string and assigns it to the RequeueAfterSeconds field.

func (*V1alpha1PullRequestGenerator) SetTemplate ¶

SetTemplate gets a reference to the given V1alpha1ApplicationSetTemplate and assigns it to the Template field.

func (V1alpha1PullRequestGenerator) ToMap ¶

func (o V1alpha1PullRequestGenerator) ToMap() (map[string]interface{}, error)

type V1alpha1PullRequestGeneratorBitbucketServer ¶

type V1alpha1PullRequestGeneratorBitbucketServer struct {
	// The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest Required.
	Api       *string                           `json:"api,omitempty"`
	BasicAuth *V1alpha1BasicAuthBitbucketServer `json:"basicAuth,omitempty"`
	// Project to scan. Required.
	Project *string `json:"project,omitempty"`
	// Repo name to scan. Required.
	Repo *string `json:"repo,omitempty"`
}

V1alpha1PullRequestGeneratorBitbucketServer PullRequestGenerator defines connection info specific to BitbucketServer.

func NewV1alpha1PullRequestGeneratorBitbucketServer ¶

func NewV1alpha1PullRequestGeneratorBitbucketServer() *V1alpha1PullRequestGeneratorBitbucketServer

NewV1alpha1PullRequestGeneratorBitbucketServer instantiates a new V1alpha1PullRequestGeneratorBitbucketServer 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 NewV1alpha1PullRequestGeneratorBitbucketServerWithDefaults ¶

func NewV1alpha1PullRequestGeneratorBitbucketServerWithDefaults() *V1alpha1PullRequestGeneratorBitbucketServer

NewV1alpha1PullRequestGeneratorBitbucketServerWithDefaults instantiates a new V1alpha1PullRequestGeneratorBitbucketServer 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 (*V1alpha1PullRequestGeneratorBitbucketServer) GetApi ¶

GetApi returns the Api field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorBitbucketServer) GetApiOk ¶

GetApiOk returns a tuple with the Api field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorBitbucketServer) GetBasicAuth ¶

GetBasicAuth returns the BasicAuth field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorBitbucketServer) GetBasicAuthOk ¶

GetBasicAuthOk returns a tuple with the BasicAuth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorBitbucketServer) GetProject ¶

GetProject returns the Project field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorBitbucketServer) GetProjectOk ¶

GetProjectOk returns a tuple with the Project field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorBitbucketServer) GetRepo ¶

GetRepo returns the Repo field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorBitbucketServer) GetRepoOk ¶

GetRepoOk returns a tuple with the Repo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorBitbucketServer) HasApi ¶

HasApi returns a boolean if a field has been set.

func (*V1alpha1PullRequestGeneratorBitbucketServer) HasBasicAuth ¶

HasBasicAuth returns a boolean if a field has been set.

func (*V1alpha1PullRequestGeneratorBitbucketServer) HasProject ¶

HasProject returns a boolean if a field has been set.

func (*V1alpha1PullRequestGeneratorBitbucketServer) HasRepo ¶

HasRepo returns a boolean if a field has been set.

func (V1alpha1PullRequestGeneratorBitbucketServer) MarshalJSON ¶

func (*V1alpha1PullRequestGeneratorBitbucketServer) SetApi ¶

SetApi gets a reference to the given string and assigns it to the Api field.

func (*V1alpha1PullRequestGeneratorBitbucketServer) SetBasicAuth ¶

SetBasicAuth gets a reference to the given V1alpha1BasicAuthBitbucketServer and assigns it to the BasicAuth field.

func (*V1alpha1PullRequestGeneratorBitbucketServer) SetProject ¶

SetProject gets a reference to the given string and assigns it to the Project field.

func (*V1alpha1PullRequestGeneratorBitbucketServer) SetRepo ¶

SetRepo gets a reference to the given string and assigns it to the Repo field.

func (V1alpha1PullRequestGeneratorBitbucketServer) ToMap ¶

func (o V1alpha1PullRequestGeneratorBitbucketServer) ToMap() (map[string]interface{}, error)

type V1alpha1PullRequestGeneratorFilter ¶

type V1alpha1PullRequestGeneratorFilter struct {
	BranchMatch *string `json:"branchMatch,omitempty"`
}

V1alpha1PullRequestGeneratorFilter PullRequestGeneratorFilter is a single pull request filter. If multiple filter types are set on a single struct, they will be AND'd together. All filters must pass for a pull request to be included.

func NewV1alpha1PullRequestGeneratorFilter ¶

func NewV1alpha1PullRequestGeneratorFilter() *V1alpha1PullRequestGeneratorFilter

NewV1alpha1PullRequestGeneratorFilter instantiates a new V1alpha1PullRequestGeneratorFilter 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 NewV1alpha1PullRequestGeneratorFilterWithDefaults ¶

func NewV1alpha1PullRequestGeneratorFilterWithDefaults() *V1alpha1PullRequestGeneratorFilter

NewV1alpha1PullRequestGeneratorFilterWithDefaults instantiates a new V1alpha1PullRequestGeneratorFilter 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 (*V1alpha1PullRequestGeneratorFilter) GetBranchMatch ¶

func (o *V1alpha1PullRequestGeneratorFilter) GetBranchMatch() string

GetBranchMatch returns the BranchMatch field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorFilter) GetBranchMatchOk ¶

func (o *V1alpha1PullRequestGeneratorFilter) GetBranchMatchOk() (*string, bool)

GetBranchMatchOk returns a tuple with the BranchMatch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorFilter) HasBranchMatch ¶

func (o *V1alpha1PullRequestGeneratorFilter) HasBranchMatch() bool

HasBranchMatch returns a boolean if a field has been set.

func (V1alpha1PullRequestGeneratorFilter) MarshalJSON ¶

func (o V1alpha1PullRequestGeneratorFilter) MarshalJSON() ([]byte, error)

func (*V1alpha1PullRequestGeneratorFilter) SetBranchMatch ¶

func (o *V1alpha1PullRequestGeneratorFilter) SetBranchMatch(v string)

SetBranchMatch gets a reference to the given string and assigns it to the BranchMatch field.

func (V1alpha1PullRequestGeneratorFilter) ToMap ¶

func (o V1alpha1PullRequestGeneratorFilter) ToMap() (map[string]interface{}, error)

type V1alpha1PullRequestGeneratorGitLab ¶

type V1alpha1PullRequestGeneratorGitLab struct {
	// The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
	Api    *string  `json:"api,omitempty"`
	Labels []string `json:"labels,omitempty"`
	// GitLab project to scan. Required.
	Project          *string            `json:"project,omitempty"`
	PullRequestState *string            `json:"pullRequestState,omitempty"`
	TokenRef         *V1alpha1SecretRef `json:"tokenRef,omitempty"`
}

V1alpha1PullRequestGeneratorGitLab PullRequestGeneratorGitLab defines connection info specific to GitLab.

func NewV1alpha1PullRequestGeneratorGitLab ¶

func NewV1alpha1PullRequestGeneratorGitLab() *V1alpha1PullRequestGeneratorGitLab

NewV1alpha1PullRequestGeneratorGitLab instantiates a new V1alpha1PullRequestGeneratorGitLab 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 NewV1alpha1PullRequestGeneratorGitLabWithDefaults ¶

func NewV1alpha1PullRequestGeneratorGitLabWithDefaults() *V1alpha1PullRequestGeneratorGitLab

NewV1alpha1PullRequestGeneratorGitLabWithDefaults instantiates a new V1alpha1PullRequestGeneratorGitLab 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 (*V1alpha1PullRequestGeneratorGitLab) GetApi ¶

GetApi returns the Api field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorGitLab) GetApiOk ¶

GetApiOk returns a tuple with the Api field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorGitLab) GetLabels ¶

func (o *V1alpha1PullRequestGeneratorGitLab) GetLabels() []string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorGitLab) GetLabelsOk ¶

func (o *V1alpha1PullRequestGeneratorGitLab) GetLabelsOk() ([]string, bool)

GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorGitLab) GetProject ¶

GetProject returns the Project field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorGitLab) GetProjectOk ¶

func (o *V1alpha1PullRequestGeneratorGitLab) GetProjectOk() (*string, bool)

GetProjectOk returns a tuple with the Project field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorGitLab) GetPullRequestState ¶

func (o *V1alpha1PullRequestGeneratorGitLab) GetPullRequestState() string

GetPullRequestState returns the PullRequestState field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorGitLab) GetPullRequestStateOk ¶

func (o *V1alpha1PullRequestGeneratorGitLab) GetPullRequestStateOk() (*string, bool)

GetPullRequestStateOk returns a tuple with the PullRequestState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorGitLab) GetTokenRef ¶

GetTokenRef returns the TokenRef field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorGitLab) GetTokenRefOk ¶

GetTokenRefOk returns a tuple with the TokenRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorGitLab) HasApi ¶

HasApi returns a boolean if a field has been set.

func (*V1alpha1PullRequestGeneratorGitLab) HasLabels ¶

HasLabels returns a boolean if a field has been set.

func (*V1alpha1PullRequestGeneratorGitLab) HasProject ¶

func (o *V1alpha1PullRequestGeneratorGitLab) HasProject() bool

HasProject returns a boolean if a field has been set.

func (*V1alpha1PullRequestGeneratorGitLab) HasPullRequestState ¶

func (o *V1alpha1PullRequestGeneratorGitLab) HasPullRequestState() bool

HasPullRequestState returns a boolean if a field has been set.

func (*V1alpha1PullRequestGeneratorGitLab) HasTokenRef ¶

func (o *V1alpha1PullRequestGeneratorGitLab) HasTokenRef() bool

HasTokenRef returns a boolean if a field has been set.

func (V1alpha1PullRequestGeneratorGitLab) MarshalJSON ¶

func (o V1alpha1PullRequestGeneratorGitLab) MarshalJSON() ([]byte, error)

func (*V1alpha1PullRequestGeneratorGitLab) SetApi ¶

SetApi gets a reference to the given string and assigns it to the Api field.

func (*V1alpha1PullRequestGeneratorGitLab) SetLabels ¶

func (o *V1alpha1PullRequestGeneratorGitLab) SetLabels(v []string)

SetLabels gets a reference to the given []string and assigns it to the Labels field.

func (*V1alpha1PullRequestGeneratorGitLab) SetProject ¶

func (o *V1alpha1PullRequestGeneratorGitLab) SetProject(v string)

SetProject gets a reference to the given string and assigns it to the Project field.

func (*V1alpha1PullRequestGeneratorGitLab) SetPullRequestState ¶

func (o *V1alpha1PullRequestGeneratorGitLab) SetPullRequestState(v string)

SetPullRequestState gets a reference to the given string and assigns it to the PullRequestState field.

func (*V1alpha1PullRequestGeneratorGitLab) SetTokenRef ¶

SetTokenRef gets a reference to the given V1alpha1SecretRef and assigns it to the TokenRef field.

func (V1alpha1PullRequestGeneratorGitLab) ToMap ¶

func (o V1alpha1PullRequestGeneratorGitLab) ToMap() (map[string]interface{}, error)

type V1alpha1PullRequestGeneratorGitea ¶

type V1alpha1PullRequestGeneratorGitea struct {
	Api *string `json:"api,omitempty"`
	// Allow insecure tls, for self-signed certificates; default: false.
	Insecure *bool `json:"insecure,omitempty"`
	// Gitea org or user to scan. Required.
	Owner *string `json:"owner,omitempty"`
	// Gitea repo name to scan. Required.
	Repo     *string            `json:"repo,omitempty"`
	TokenRef *V1alpha1SecretRef `json:"tokenRef,omitempty"`
}

V1alpha1PullRequestGeneratorGitea PullRequestGenerator defines connection info specific to Gitea.

func NewV1alpha1PullRequestGeneratorGitea ¶

func NewV1alpha1PullRequestGeneratorGitea() *V1alpha1PullRequestGeneratorGitea

NewV1alpha1PullRequestGeneratorGitea instantiates a new V1alpha1PullRequestGeneratorGitea 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 NewV1alpha1PullRequestGeneratorGiteaWithDefaults ¶

func NewV1alpha1PullRequestGeneratorGiteaWithDefaults() *V1alpha1PullRequestGeneratorGitea

NewV1alpha1PullRequestGeneratorGiteaWithDefaults instantiates a new V1alpha1PullRequestGeneratorGitea 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 (*V1alpha1PullRequestGeneratorGitea) GetApi ¶

GetApi returns the Api field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorGitea) GetApiOk ¶

func (o *V1alpha1PullRequestGeneratorGitea) GetApiOk() (*string, bool)

GetApiOk returns a tuple with the Api field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorGitea) GetInsecure ¶

func (o *V1alpha1PullRequestGeneratorGitea) GetInsecure() bool

GetInsecure returns the Insecure field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorGitea) GetInsecureOk ¶

func (o *V1alpha1PullRequestGeneratorGitea) GetInsecureOk() (*bool, bool)

GetInsecureOk returns a tuple with the Insecure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorGitea) GetOwner ¶

GetOwner returns the Owner field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorGitea) GetOwnerOk ¶

func (o *V1alpha1PullRequestGeneratorGitea) GetOwnerOk() (*string, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorGitea) GetRepo ¶

GetRepo returns the Repo field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorGitea) GetRepoOk ¶

func (o *V1alpha1PullRequestGeneratorGitea) GetRepoOk() (*string, bool)

GetRepoOk returns a tuple with the Repo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorGitea) GetTokenRef ¶

GetTokenRef returns the TokenRef field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorGitea) GetTokenRefOk ¶

GetTokenRefOk returns a tuple with the TokenRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorGitea) HasApi ¶

HasApi returns a boolean if a field has been set.

func (*V1alpha1PullRequestGeneratorGitea) HasInsecure ¶

func (o *V1alpha1PullRequestGeneratorGitea) HasInsecure() bool

HasInsecure returns a boolean if a field has been set.

func (*V1alpha1PullRequestGeneratorGitea) HasOwner ¶

HasOwner returns a boolean if a field has been set.

func (*V1alpha1PullRequestGeneratorGitea) HasRepo ¶

HasRepo returns a boolean if a field has been set.

func (*V1alpha1PullRequestGeneratorGitea) HasTokenRef ¶

func (o *V1alpha1PullRequestGeneratorGitea) HasTokenRef() bool

HasTokenRef returns a boolean if a field has been set.

func (V1alpha1PullRequestGeneratorGitea) MarshalJSON ¶

func (o V1alpha1PullRequestGeneratorGitea) MarshalJSON() ([]byte, error)

func (*V1alpha1PullRequestGeneratorGitea) SetApi ¶

SetApi gets a reference to the given string and assigns it to the Api field.

func (*V1alpha1PullRequestGeneratorGitea) SetInsecure ¶

func (o *V1alpha1PullRequestGeneratorGitea) SetInsecure(v bool)

SetInsecure gets a reference to the given bool and assigns it to the Insecure field.

func (*V1alpha1PullRequestGeneratorGitea) SetOwner ¶

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*V1alpha1PullRequestGeneratorGitea) SetRepo ¶

SetRepo gets a reference to the given string and assigns it to the Repo field.

func (*V1alpha1PullRequestGeneratorGitea) SetTokenRef ¶

SetTokenRef gets a reference to the given V1alpha1SecretRef and assigns it to the TokenRef field.

func (V1alpha1PullRequestGeneratorGitea) ToMap ¶

func (o V1alpha1PullRequestGeneratorGitea) ToMap() (map[string]interface{}, error)

type V1alpha1PullRequestGeneratorGithub ¶

type V1alpha1PullRequestGeneratorGithub struct {
	// The GitHub API URL to talk to. If blank, use https://api.github.com/.
	Api *string `json:"api,omitempty"`
	// AppSecretName is a reference to a GitHub App repo-creds secret with permission to access pull requests.
	AppSecretName *string  `json:"appSecretName,omitempty"`
	Labels        []string `json:"labels,omitempty"`
	// GitHub org or user to scan. Required.
	Owner *string `json:"owner,omitempty"`
	// GitHub repo name to scan. Required.
	Repo     *string            `json:"repo,omitempty"`
	TokenRef *V1alpha1SecretRef `json:"tokenRef,omitempty"`
}

V1alpha1PullRequestGeneratorGithub PullRequestGenerator defines connection info specific to GitHub.

func NewV1alpha1PullRequestGeneratorGithub ¶

func NewV1alpha1PullRequestGeneratorGithub() *V1alpha1PullRequestGeneratorGithub

NewV1alpha1PullRequestGeneratorGithub instantiates a new V1alpha1PullRequestGeneratorGithub 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 NewV1alpha1PullRequestGeneratorGithubWithDefaults ¶

func NewV1alpha1PullRequestGeneratorGithubWithDefaults() *V1alpha1PullRequestGeneratorGithub

NewV1alpha1PullRequestGeneratorGithubWithDefaults instantiates a new V1alpha1PullRequestGeneratorGithub 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 (*V1alpha1PullRequestGeneratorGithub) GetApi ¶

GetApi returns the Api field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorGithub) GetApiOk ¶

GetApiOk returns a tuple with the Api field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorGithub) GetAppSecretName ¶

func (o *V1alpha1PullRequestGeneratorGithub) GetAppSecretName() string

GetAppSecretName returns the AppSecretName field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorGithub) GetAppSecretNameOk ¶

func (o *V1alpha1PullRequestGeneratorGithub) GetAppSecretNameOk() (*string, bool)

GetAppSecretNameOk returns a tuple with the AppSecretName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorGithub) GetLabels ¶

func (o *V1alpha1PullRequestGeneratorGithub) GetLabels() []string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorGithub) GetLabelsOk ¶

func (o *V1alpha1PullRequestGeneratorGithub) GetLabelsOk() ([]string, bool)

GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorGithub) GetOwner ¶

GetOwner returns the Owner field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorGithub) GetOwnerOk ¶

func (o *V1alpha1PullRequestGeneratorGithub) GetOwnerOk() (*string, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorGithub) GetRepo ¶

GetRepo returns the Repo field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorGithub) GetRepoOk ¶

func (o *V1alpha1PullRequestGeneratorGithub) GetRepoOk() (*string, bool)

GetRepoOk returns a tuple with the Repo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorGithub) GetTokenRef ¶

GetTokenRef returns the TokenRef field value if set, zero value otherwise.

func (*V1alpha1PullRequestGeneratorGithub) GetTokenRefOk ¶

GetTokenRefOk returns a tuple with the TokenRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1PullRequestGeneratorGithub) HasApi ¶

HasApi returns a boolean if a field has been set.

func (*V1alpha1PullRequestGeneratorGithub) HasAppSecretName ¶

func (o *V1alpha1PullRequestGeneratorGithub) HasAppSecretName() bool

HasAppSecretName returns a boolean if a field has been set.

func (*V1alpha1PullRequestGeneratorGithub) HasLabels ¶

HasLabels returns a boolean if a field has been set.

func (*V1alpha1PullRequestGeneratorGithub) HasOwner ¶

HasOwner returns a boolean if a field has been set.

func (*V1alpha1PullRequestGeneratorGithub) HasRepo ¶

HasRepo returns a boolean if a field has been set.

func (*V1alpha1PullRequestGeneratorGithub) HasTokenRef ¶

func (o *V1alpha1PullRequestGeneratorGithub) HasTokenRef() bool

HasTokenRef returns a boolean if a field has been set.

func (V1alpha1PullRequestGeneratorGithub) MarshalJSON ¶

func (o V1alpha1PullRequestGeneratorGithub) MarshalJSON() ([]byte, error)

func (*V1alpha1PullRequestGeneratorGithub) SetApi ¶

SetApi gets a reference to the given string and assigns it to the Api field.

func (*V1alpha1PullRequestGeneratorGithub) SetAppSecretName ¶

func (o *V1alpha1PullRequestGeneratorGithub) SetAppSecretName(v string)

SetAppSecretName gets a reference to the given string and assigns it to the AppSecretName field.

func (*V1alpha1PullRequestGeneratorGithub) SetLabels ¶

func (o *V1alpha1PullRequestGeneratorGithub) SetLabels(v []string)

SetLabels gets a reference to the given []string and assigns it to the Labels field.

func (*V1alpha1PullRequestGeneratorGithub) SetOwner ¶

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*V1alpha1PullRequestGeneratorGithub) SetRepo ¶

SetRepo gets a reference to the given string and assigns it to the Repo field.

func (*V1alpha1PullRequestGeneratorGithub) SetTokenRef ¶

SetTokenRef gets a reference to the given V1alpha1SecretRef and assigns it to the TokenRef field.

func (V1alpha1PullRequestGeneratorGithub) ToMap ¶

func (o V1alpha1PullRequestGeneratorGithub) ToMap() (map[string]interface{}, error)

type V1alpha1RepoCreds ¶

type V1alpha1RepoCreds struct {
	EnableOCI                  *bool   `json:"enableOCI,omitempty"`
	GithubAppEnterpriseBaseUrl *string `json:"githubAppEnterpriseBaseUrl,omitempty"`
	GithubAppID                *string `json:"githubAppID,omitempty"`
	GithubAppInstallationID    *string `json:"githubAppInstallationID,omitempty"`
	GithubAppPrivateKey        *string `json:"githubAppPrivateKey,omitempty"`
	Password                   *string `json:"password,omitempty"`
	SshPrivateKey              *string `json:"sshPrivateKey,omitempty"`
	TlsClientCertData          *string `json:"tlsClientCertData,omitempty"`
	TlsClientCertKey           *string `json:"tlsClientCertKey,omitempty"`
	// Type specifies the type of the repoCreds. Can be either \"git\" or \"helm. \"git\" is assumed if empty or absent.
	Type     *string `json:"type,omitempty"`
	Url      *string `json:"url,omitempty"`
	Username *string `json:"username,omitempty"`
}

V1alpha1RepoCreds struct for V1alpha1RepoCreds

func NewV1alpha1RepoCreds ¶

func NewV1alpha1RepoCreds() *V1alpha1RepoCreds

NewV1alpha1RepoCreds instantiates a new V1alpha1RepoCreds 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 NewV1alpha1RepoCredsWithDefaults ¶

func NewV1alpha1RepoCredsWithDefaults() *V1alpha1RepoCreds

NewV1alpha1RepoCredsWithDefaults instantiates a new V1alpha1RepoCreds 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 (*V1alpha1RepoCreds) GetEnableOCI ¶

func (o *V1alpha1RepoCreds) GetEnableOCI() bool

GetEnableOCI returns the EnableOCI field value if set, zero value otherwise.

func (*V1alpha1RepoCreds) GetEnableOCIOk ¶

func (o *V1alpha1RepoCreds) GetEnableOCIOk() (*bool, bool)

GetEnableOCIOk returns a tuple with the EnableOCI field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepoCreds) GetGithubAppEnterpriseBaseUrl ¶

func (o *V1alpha1RepoCreds) GetGithubAppEnterpriseBaseUrl() string

GetGithubAppEnterpriseBaseUrl returns the GithubAppEnterpriseBaseUrl field value if set, zero value otherwise.

func (*V1alpha1RepoCreds) GetGithubAppEnterpriseBaseUrlOk ¶

func (o *V1alpha1RepoCreds) GetGithubAppEnterpriseBaseUrlOk() (*string, bool)

GetGithubAppEnterpriseBaseUrlOk returns a tuple with the GithubAppEnterpriseBaseUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepoCreds) GetGithubAppID ¶

func (o *V1alpha1RepoCreds) GetGithubAppID() string

GetGithubAppID returns the GithubAppID field value if set, zero value otherwise.

func (*V1alpha1RepoCreds) GetGithubAppIDOk ¶

func (o *V1alpha1RepoCreds) GetGithubAppIDOk() (*string, bool)

GetGithubAppIDOk returns a tuple with the GithubAppID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepoCreds) GetGithubAppInstallationID ¶

func (o *V1alpha1RepoCreds) GetGithubAppInstallationID() string

GetGithubAppInstallationID returns the GithubAppInstallationID field value if set, zero value otherwise.

func (*V1alpha1RepoCreds) GetGithubAppInstallationIDOk ¶

func (o *V1alpha1RepoCreds) GetGithubAppInstallationIDOk() (*string, bool)

GetGithubAppInstallationIDOk returns a tuple with the GithubAppInstallationID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepoCreds) GetGithubAppPrivateKey ¶

func (o *V1alpha1RepoCreds) GetGithubAppPrivateKey() string

GetGithubAppPrivateKey returns the GithubAppPrivateKey field value if set, zero value otherwise.

func (*V1alpha1RepoCreds) GetGithubAppPrivateKeyOk ¶

func (o *V1alpha1RepoCreds) GetGithubAppPrivateKeyOk() (*string, bool)

GetGithubAppPrivateKeyOk returns a tuple with the GithubAppPrivateKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepoCreds) GetPassword ¶

func (o *V1alpha1RepoCreds) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*V1alpha1RepoCreds) GetPasswordOk ¶

func (o *V1alpha1RepoCreds) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepoCreds) GetSshPrivateKey ¶

func (o *V1alpha1RepoCreds) GetSshPrivateKey() string

GetSshPrivateKey returns the SshPrivateKey field value if set, zero value otherwise.

func (*V1alpha1RepoCreds) GetSshPrivateKeyOk ¶

func (o *V1alpha1RepoCreds) GetSshPrivateKeyOk() (*string, bool)

GetSshPrivateKeyOk returns a tuple with the SshPrivateKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepoCreds) GetTlsClientCertData ¶

func (o *V1alpha1RepoCreds) GetTlsClientCertData() string

GetTlsClientCertData returns the TlsClientCertData field value if set, zero value otherwise.

func (*V1alpha1RepoCreds) GetTlsClientCertDataOk ¶

func (o *V1alpha1RepoCreds) GetTlsClientCertDataOk() (*string, bool)

GetTlsClientCertDataOk returns a tuple with the TlsClientCertData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepoCreds) GetTlsClientCertKey ¶

func (o *V1alpha1RepoCreds) GetTlsClientCertKey() string

GetTlsClientCertKey returns the TlsClientCertKey field value if set, zero value otherwise.

func (*V1alpha1RepoCreds) GetTlsClientCertKeyOk ¶

func (o *V1alpha1RepoCreds) GetTlsClientCertKeyOk() (*string, bool)

GetTlsClientCertKeyOk returns a tuple with the TlsClientCertKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepoCreds) GetType ¶

func (o *V1alpha1RepoCreds) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*V1alpha1RepoCreds) GetTypeOk ¶

func (o *V1alpha1RepoCreds) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepoCreds) GetUrl ¶

func (o *V1alpha1RepoCreds) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*V1alpha1RepoCreds) GetUrlOk ¶

func (o *V1alpha1RepoCreds) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepoCreds) GetUsername ¶

func (o *V1alpha1RepoCreds) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*V1alpha1RepoCreds) GetUsernameOk ¶

func (o *V1alpha1RepoCreds) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepoCreds) HasEnableOCI ¶

func (o *V1alpha1RepoCreds) HasEnableOCI() bool

HasEnableOCI returns a boolean if a field has been set.

func (*V1alpha1RepoCreds) HasGithubAppEnterpriseBaseUrl ¶

func (o *V1alpha1RepoCreds) HasGithubAppEnterpriseBaseUrl() bool

HasGithubAppEnterpriseBaseUrl returns a boolean if a field has been set.

func (*V1alpha1RepoCreds) HasGithubAppID ¶

func (o *V1alpha1RepoCreds) HasGithubAppID() bool

HasGithubAppID returns a boolean if a field has been set.

func (*V1alpha1RepoCreds) HasGithubAppInstallationID ¶

func (o *V1alpha1RepoCreds) HasGithubAppInstallationID() bool

HasGithubAppInstallationID returns a boolean if a field has been set.

func (*V1alpha1RepoCreds) HasGithubAppPrivateKey ¶

func (o *V1alpha1RepoCreds) HasGithubAppPrivateKey() bool

HasGithubAppPrivateKey returns a boolean if a field has been set.

func (*V1alpha1RepoCreds) HasPassword ¶

func (o *V1alpha1RepoCreds) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*V1alpha1RepoCreds) HasSshPrivateKey ¶

func (o *V1alpha1RepoCreds) HasSshPrivateKey() bool

HasSshPrivateKey returns a boolean if a field has been set.

func (*V1alpha1RepoCreds) HasTlsClientCertData ¶

func (o *V1alpha1RepoCreds) HasTlsClientCertData() bool

HasTlsClientCertData returns a boolean if a field has been set.

func (*V1alpha1RepoCreds) HasTlsClientCertKey ¶

func (o *V1alpha1RepoCreds) HasTlsClientCertKey() bool

HasTlsClientCertKey returns a boolean if a field has been set.

func (*V1alpha1RepoCreds) HasType ¶

func (o *V1alpha1RepoCreds) HasType() bool

HasType returns a boolean if a field has been set.

func (*V1alpha1RepoCreds) HasUrl ¶

func (o *V1alpha1RepoCreds) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*V1alpha1RepoCreds) HasUsername ¶

func (o *V1alpha1RepoCreds) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (V1alpha1RepoCreds) MarshalJSON ¶

func (o V1alpha1RepoCreds) MarshalJSON() ([]byte, error)

func (*V1alpha1RepoCreds) SetEnableOCI ¶

func (o *V1alpha1RepoCreds) SetEnableOCI(v bool)

SetEnableOCI gets a reference to the given bool and assigns it to the EnableOCI field.

func (*V1alpha1RepoCreds) SetGithubAppEnterpriseBaseUrl ¶

func (o *V1alpha1RepoCreds) SetGithubAppEnterpriseBaseUrl(v string)

SetGithubAppEnterpriseBaseUrl gets a reference to the given string and assigns it to the GithubAppEnterpriseBaseUrl field.

func (*V1alpha1RepoCreds) SetGithubAppID ¶

func (o *V1alpha1RepoCreds) SetGithubAppID(v string)

SetGithubAppID gets a reference to the given string and assigns it to the GithubAppID field.

func (*V1alpha1RepoCreds) SetGithubAppInstallationID ¶

func (o *V1alpha1RepoCreds) SetGithubAppInstallationID(v string)

SetGithubAppInstallationID gets a reference to the given string and assigns it to the GithubAppInstallationID field.

func (*V1alpha1RepoCreds) SetGithubAppPrivateKey ¶

func (o *V1alpha1RepoCreds) SetGithubAppPrivateKey(v string)

SetGithubAppPrivateKey gets a reference to the given string and assigns it to the GithubAppPrivateKey field.

func (*V1alpha1RepoCreds) SetPassword ¶

func (o *V1alpha1RepoCreds) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*V1alpha1RepoCreds) SetSshPrivateKey ¶

func (o *V1alpha1RepoCreds) SetSshPrivateKey(v string)

SetSshPrivateKey gets a reference to the given string and assigns it to the SshPrivateKey field.

func (*V1alpha1RepoCreds) SetTlsClientCertData ¶

func (o *V1alpha1RepoCreds) SetTlsClientCertData(v string)

SetTlsClientCertData gets a reference to the given string and assigns it to the TlsClientCertData field.

func (*V1alpha1RepoCreds) SetTlsClientCertKey ¶

func (o *V1alpha1RepoCreds) SetTlsClientCertKey(v string)

SetTlsClientCertKey gets a reference to the given string and assigns it to the TlsClientCertKey field.

func (*V1alpha1RepoCreds) SetType ¶

func (o *V1alpha1RepoCreds) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*V1alpha1RepoCreds) SetUrl ¶

func (o *V1alpha1RepoCreds) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*V1alpha1RepoCreds) SetUsername ¶

func (o *V1alpha1RepoCreds) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (V1alpha1RepoCreds) ToMap ¶

func (o V1alpha1RepoCreds) ToMap() (map[string]interface{}, error)

type V1alpha1RepoCredsList ¶

type V1alpha1RepoCredsList struct {
	Items    []V1alpha1RepoCreds `json:"items,omitempty"`
	Metadata *V1ListMeta         `json:"metadata,omitempty"`
}

V1alpha1RepoCredsList RepositoryList is a collection of Repositories.

func NewV1alpha1RepoCredsList ¶

func NewV1alpha1RepoCredsList() *V1alpha1RepoCredsList

NewV1alpha1RepoCredsList instantiates a new V1alpha1RepoCredsList 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 NewV1alpha1RepoCredsListWithDefaults ¶

func NewV1alpha1RepoCredsListWithDefaults() *V1alpha1RepoCredsList

NewV1alpha1RepoCredsListWithDefaults instantiates a new V1alpha1RepoCredsList 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 (*V1alpha1RepoCredsList) GetItems ¶

func (o *V1alpha1RepoCredsList) GetItems() []V1alpha1RepoCreds

GetItems returns the Items field value if set, zero value otherwise.

func (*V1alpha1RepoCredsList) GetItemsOk ¶

func (o *V1alpha1RepoCredsList) GetItemsOk() ([]V1alpha1RepoCreds, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepoCredsList) GetMetadata ¶

func (o *V1alpha1RepoCredsList) GetMetadata() V1ListMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*V1alpha1RepoCredsList) GetMetadataOk ¶

func (o *V1alpha1RepoCredsList) GetMetadataOk() (*V1ListMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepoCredsList) HasItems ¶

func (o *V1alpha1RepoCredsList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*V1alpha1RepoCredsList) HasMetadata ¶

func (o *V1alpha1RepoCredsList) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (V1alpha1RepoCredsList) MarshalJSON ¶

func (o V1alpha1RepoCredsList) MarshalJSON() ([]byte, error)

func (*V1alpha1RepoCredsList) SetItems ¶

func (o *V1alpha1RepoCredsList) SetItems(v []V1alpha1RepoCreds)

SetItems gets a reference to the given []V1alpha1RepoCreds and assigns it to the Items field.

func (*V1alpha1RepoCredsList) SetMetadata ¶

func (o *V1alpha1RepoCredsList) SetMetadata(v V1ListMeta)

SetMetadata gets a reference to the given V1ListMeta and assigns it to the Metadata field.

func (V1alpha1RepoCredsList) ToMap ¶

func (o V1alpha1RepoCredsList) ToMap() (map[string]interface{}, error)

type V1alpha1Repository ¶

type V1alpha1Repository struct {
	ConnectionState *V1alpha1ConnectionState `json:"connectionState,omitempty"`
	// EnableLFS specifies whether git-lfs support should be enabled for this repo. Only valid for Git repositories.
	EnableLfs                  *bool   `json:"enableLfs,omitempty"`
	EnableOCI                  *bool   `json:"enableOCI,omitempty"`
	GithubAppEnterpriseBaseUrl *string `json:"githubAppEnterpriseBaseUrl,omitempty"`
	GithubAppID                *string `json:"githubAppID,omitempty"`
	GithubAppInstallationID    *string `json:"githubAppInstallationID,omitempty"`
	GithubAppPrivateKey        *string `json:"githubAppPrivateKey,omitempty"`
	InheritedCreds             *bool   `json:"inheritedCreds,omitempty"`
	Insecure                   *bool   `json:"insecure,omitempty"`
	InsecureIgnoreHostKey      *bool   `json:"insecureIgnoreHostKey,omitempty"`
	Name                       *string `json:"name,omitempty"`
	Password                   *string `json:"password,omitempty"`
	Project                    *string `json:"project,omitempty"`
	Proxy                      *string `json:"proxy,omitempty"`
	Repo                       *string `json:"repo,omitempty"`
	// SSHPrivateKey contains the PEM data for authenticating at the repo server. Only used with Git repos.
	SshPrivateKey     *string `json:"sshPrivateKey,omitempty"`
	TlsClientCertData *string `json:"tlsClientCertData,omitempty"`
	TlsClientCertKey  *string `json:"tlsClientCertKey,omitempty"`
	// Type specifies the type of the repo. Can be either \"git\" or \"helm. \"git\" is assumed if empty or absent.
	Type     *string `json:"type,omitempty"`
	Username *string `json:"username,omitempty"`
}

V1alpha1Repository struct for V1alpha1Repository

func NewV1alpha1Repository ¶

func NewV1alpha1Repository() *V1alpha1Repository

NewV1alpha1Repository instantiates a new V1alpha1Repository 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 NewV1alpha1RepositoryWithDefaults ¶

func NewV1alpha1RepositoryWithDefaults() *V1alpha1Repository

NewV1alpha1RepositoryWithDefaults instantiates a new V1alpha1Repository 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 (*V1alpha1Repository) GetConnectionState ¶

func (o *V1alpha1Repository) GetConnectionState() V1alpha1ConnectionState

GetConnectionState returns the ConnectionState field value if set, zero value otherwise.

func (*V1alpha1Repository) GetConnectionStateOk ¶

func (o *V1alpha1Repository) GetConnectionStateOk() (*V1alpha1ConnectionState, bool)

GetConnectionStateOk returns a tuple with the ConnectionState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Repository) GetEnableLfs ¶

func (o *V1alpha1Repository) GetEnableLfs() bool

GetEnableLfs returns the EnableLfs field value if set, zero value otherwise.

func (*V1alpha1Repository) GetEnableLfsOk ¶

func (o *V1alpha1Repository) GetEnableLfsOk() (*bool, bool)

GetEnableLfsOk returns a tuple with the EnableLfs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Repository) GetEnableOCI ¶

func (o *V1alpha1Repository) GetEnableOCI() bool

GetEnableOCI returns the EnableOCI field value if set, zero value otherwise.

func (*V1alpha1Repository) GetEnableOCIOk ¶

func (o *V1alpha1Repository) GetEnableOCIOk() (*bool, bool)

GetEnableOCIOk returns a tuple with the EnableOCI field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Repository) GetGithubAppEnterpriseBaseUrl ¶

func (o *V1alpha1Repository) GetGithubAppEnterpriseBaseUrl() string

GetGithubAppEnterpriseBaseUrl returns the GithubAppEnterpriseBaseUrl field value if set, zero value otherwise.

func (*V1alpha1Repository) GetGithubAppEnterpriseBaseUrlOk ¶

func (o *V1alpha1Repository) GetGithubAppEnterpriseBaseUrlOk() (*string, bool)

GetGithubAppEnterpriseBaseUrlOk returns a tuple with the GithubAppEnterpriseBaseUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Repository) GetGithubAppID ¶

func (o *V1alpha1Repository) GetGithubAppID() string

GetGithubAppID returns the GithubAppID field value if set, zero value otherwise.

func (*V1alpha1Repository) GetGithubAppIDOk ¶

func (o *V1alpha1Repository) GetGithubAppIDOk() (*string, bool)

GetGithubAppIDOk returns a tuple with the GithubAppID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Repository) GetGithubAppInstallationID ¶

func (o *V1alpha1Repository) GetGithubAppInstallationID() string

GetGithubAppInstallationID returns the GithubAppInstallationID field value if set, zero value otherwise.

func (*V1alpha1Repository) GetGithubAppInstallationIDOk ¶

func (o *V1alpha1Repository) GetGithubAppInstallationIDOk() (*string, bool)

GetGithubAppInstallationIDOk returns a tuple with the GithubAppInstallationID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Repository) GetGithubAppPrivateKey ¶

func (o *V1alpha1Repository) GetGithubAppPrivateKey() string

GetGithubAppPrivateKey returns the GithubAppPrivateKey field value if set, zero value otherwise.

func (*V1alpha1Repository) GetGithubAppPrivateKeyOk ¶

func (o *V1alpha1Repository) GetGithubAppPrivateKeyOk() (*string, bool)

GetGithubAppPrivateKeyOk returns a tuple with the GithubAppPrivateKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Repository) GetInheritedCreds ¶

func (o *V1alpha1Repository) GetInheritedCreds() bool

GetInheritedCreds returns the InheritedCreds field value if set, zero value otherwise.

func (*V1alpha1Repository) GetInheritedCredsOk ¶

func (o *V1alpha1Repository) GetInheritedCredsOk() (*bool, bool)

GetInheritedCredsOk returns a tuple with the InheritedCreds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Repository) GetInsecure ¶

func (o *V1alpha1Repository) GetInsecure() bool

GetInsecure returns the Insecure field value if set, zero value otherwise.

func (*V1alpha1Repository) GetInsecureIgnoreHostKey ¶

func (o *V1alpha1Repository) GetInsecureIgnoreHostKey() bool

GetInsecureIgnoreHostKey returns the InsecureIgnoreHostKey field value if set, zero value otherwise.

func (*V1alpha1Repository) GetInsecureIgnoreHostKeyOk ¶

func (o *V1alpha1Repository) GetInsecureIgnoreHostKeyOk() (*bool, bool)

GetInsecureIgnoreHostKeyOk returns a tuple with the InsecureIgnoreHostKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Repository) GetInsecureOk ¶

func (o *V1alpha1Repository) GetInsecureOk() (*bool, bool)

GetInsecureOk returns a tuple with the Insecure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Repository) GetName ¶

func (o *V1alpha1Repository) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1Repository) GetNameOk ¶

func (o *V1alpha1Repository) 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 (*V1alpha1Repository) GetPassword ¶

func (o *V1alpha1Repository) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*V1alpha1Repository) GetPasswordOk ¶

func (o *V1alpha1Repository) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Repository) GetProject ¶

func (o *V1alpha1Repository) GetProject() string

GetProject returns the Project field value if set, zero value otherwise.

func (*V1alpha1Repository) GetProjectOk ¶

func (o *V1alpha1Repository) GetProjectOk() (*string, bool)

GetProjectOk returns a tuple with the Project field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Repository) GetProxy ¶

func (o *V1alpha1Repository) GetProxy() string

GetProxy returns the Proxy field value if set, zero value otherwise.

func (*V1alpha1Repository) GetProxyOk ¶

func (o *V1alpha1Repository) GetProxyOk() (*string, bool)

GetProxyOk returns a tuple with the Proxy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Repository) GetRepo ¶

func (o *V1alpha1Repository) GetRepo() string

GetRepo returns the Repo field value if set, zero value otherwise.

func (*V1alpha1Repository) GetRepoOk ¶

func (o *V1alpha1Repository) GetRepoOk() (*string, bool)

GetRepoOk returns a tuple with the Repo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Repository) GetSshPrivateKey ¶

func (o *V1alpha1Repository) GetSshPrivateKey() string

GetSshPrivateKey returns the SshPrivateKey field value if set, zero value otherwise.

func (*V1alpha1Repository) GetSshPrivateKeyOk ¶

func (o *V1alpha1Repository) GetSshPrivateKeyOk() (*string, bool)

GetSshPrivateKeyOk returns a tuple with the SshPrivateKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Repository) GetTlsClientCertData ¶

func (o *V1alpha1Repository) GetTlsClientCertData() string

GetTlsClientCertData returns the TlsClientCertData field value if set, zero value otherwise.

func (*V1alpha1Repository) GetTlsClientCertDataOk ¶

func (o *V1alpha1Repository) GetTlsClientCertDataOk() (*string, bool)

GetTlsClientCertDataOk returns a tuple with the TlsClientCertData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Repository) GetTlsClientCertKey ¶

func (o *V1alpha1Repository) GetTlsClientCertKey() string

GetTlsClientCertKey returns the TlsClientCertKey field value if set, zero value otherwise.

func (*V1alpha1Repository) GetTlsClientCertKeyOk ¶

func (o *V1alpha1Repository) GetTlsClientCertKeyOk() (*string, bool)

GetTlsClientCertKeyOk returns a tuple with the TlsClientCertKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Repository) GetType ¶

func (o *V1alpha1Repository) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*V1alpha1Repository) GetTypeOk ¶

func (o *V1alpha1Repository) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Repository) GetUsername ¶

func (o *V1alpha1Repository) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*V1alpha1Repository) GetUsernameOk ¶

func (o *V1alpha1Repository) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1Repository) HasConnectionState ¶

func (o *V1alpha1Repository) HasConnectionState() bool

HasConnectionState returns a boolean if a field has been set.

func (*V1alpha1Repository) HasEnableLfs ¶

func (o *V1alpha1Repository) HasEnableLfs() bool

HasEnableLfs returns a boolean if a field has been set.

func (*V1alpha1Repository) HasEnableOCI ¶

func (o *V1alpha1Repository) HasEnableOCI() bool

HasEnableOCI returns a boolean if a field has been set.

func (*V1alpha1Repository) HasGithubAppEnterpriseBaseUrl ¶

func (o *V1alpha1Repository) HasGithubAppEnterpriseBaseUrl() bool

HasGithubAppEnterpriseBaseUrl returns a boolean if a field has been set.

func (*V1alpha1Repository) HasGithubAppID ¶

func (o *V1alpha1Repository) HasGithubAppID() bool

HasGithubAppID returns a boolean if a field has been set.

func (*V1alpha1Repository) HasGithubAppInstallationID ¶

func (o *V1alpha1Repository) HasGithubAppInstallationID() bool

HasGithubAppInstallationID returns a boolean if a field has been set.

func (*V1alpha1Repository) HasGithubAppPrivateKey ¶

func (o *V1alpha1Repository) HasGithubAppPrivateKey() bool

HasGithubAppPrivateKey returns a boolean if a field has been set.

func (*V1alpha1Repository) HasInheritedCreds ¶

func (o *V1alpha1Repository) HasInheritedCreds() bool

HasInheritedCreds returns a boolean if a field has been set.

func (*V1alpha1Repository) HasInsecure ¶

func (o *V1alpha1Repository) HasInsecure() bool

HasInsecure returns a boolean if a field has been set.

func (*V1alpha1Repository) HasInsecureIgnoreHostKey ¶

func (o *V1alpha1Repository) HasInsecureIgnoreHostKey() bool

HasInsecureIgnoreHostKey returns a boolean if a field has been set.

func (*V1alpha1Repository) HasName ¶

func (o *V1alpha1Repository) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1alpha1Repository) HasPassword ¶

func (o *V1alpha1Repository) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*V1alpha1Repository) HasProject ¶

func (o *V1alpha1Repository) HasProject() bool

HasProject returns a boolean if a field has been set.

func (*V1alpha1Repository) HasProxy ¶

func (o *V1alpha1Repository) HasProxy() bool

HasProxy returns a boolean if a field has been set.

func (*V1alpha1Repository) HasRepo ¶

func (o *V1alpha1Repository) HasRepo() bool

HasRepo returns a boolean if a field has been set.

func (*V1alpha1Repository) HasSshPrivateKey ¶

func (o *V1alpha1Repository) HasSshPrivateKey() bool

HasSshPrivateKey returns a boolean if a field has been set.

func (*V1alpha1Repository) HasTlsClientCertData ¶

func (o *V1alpha1Repository) HasTlsClientCertData() bool

HasTlsClientCertData returns a boolean if a field has been set.

func (*V1alpha1Repository) HasTlsClientCertKey ¶

func (o *V1alpha1Repository) HasTlsClientCertKey() bool

HasTlsClientCertKey returns a boolean if a field has been set.

func (*V1alpha1Repository) HasType ¶

func (o *V1alpha1Repository) HasType() bool

HasType returns a boolean if a field has been set.

func (*V1alpha1Repository) HasUsername ¶

func (o *V1alpha1Repository) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (V1alpha1Repository) MarshalJSON ¶

func (o V1alpha1Repository) MarshalJSON() ([]byte, error)

func (*V1alpha1Repository) SetConnectionState ¶

func (o *V1alpha1Repository) SetConnectionState(v V1alpha1ConnectionState)

SetConnectionState gets a reference to the given V1alpha1ConnectionState and assigns it to the ConnectionState field.

func (*V1alpha1Repository) SetEnableLfs ¶

func (o *V1alpha1Repository) SetEnableLfs(v bool)

SetEnableLfs gets a reference to the given bool and assigns it to the EnableLfs field.

func (*V1alpha1Repository) SetEnableOCI ¶

func (o *V1alpha1Repository) SetEnableOCI(v bool)

SetEnableOCI gets a reference to the given bool and assigns it to the EnableOCI field.

func (*V1alpha1Repository) SetGithubAppEnterpriseBaseUrl ¶

func (o *V1alpha1Repository) SetGithubAppEnterpriseBaseUrl(v string)

SetGithubAppEnterpriseBaseUrl gets a reference to the given string and assigns it to the GithubAppEnterpriseBaseUrl field.

func (*V1alpha1Repository) SetGithubAppID ¶

func (o *V1alpha1Repository) SetGithubAppID(v string)

SetGithubAppID gets a reference to the given string and assigns it to the GithubAppID field.

func (*V1alpha1Repository) SetGithubAppInstallationID ¶

func (o *V1alpha1Repository) SetGithubAppInstallationID(v string)

SetGithubAppInstallationID gets a reference to the given string and assigns it to the GithubAppInstallationID field.

func (*V1alpha1Repository) SetGithubAppPrivateKey ¶

func (o *V1alpha1Repository) SetGithubAppPrivateKey(v string)

SetGithubAppPrivateKey gets a reference to the given string and assigns it to the GithubAppPrivateKey field.

func (*V1alpha1Repository) SetInheritedCreds ¶

func (o *V1alpha1Repository) SetInheritedCreds(v bool)

SetInheritedCreds gets a reference to the given bool and assigns it to the InheritedCreds field.

func (*V1alpha1Repository) SetInsecure ¶

func (o *V1alpha1Repository) SetInsecure(v bool)

SetInsecure gets a reference to the given bool and assigns it to the Insecure field.

func (*V1alpha1Repository) SetInsecureIgnoreHostKey ¶

func (o *V1alpha1Repository) SetInsecureIgnoreHostKey(v bool)

SetInsecureIgnoreHostKey gets a reference to the given bool and assigns it to the InsecureIgnoreHostKey field.

func (*V1alpha1Repository) SetName ¶

func (o *V1alpha1Repository) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1Repository) SetPassword ¶

func (o *V1alpha1Repository) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*V1alpha1Repository) SetProject ¶

func (o *V1alpha1Repository) SetProject(v string)

SetProject gets a reference to the given string and assigns it to the Project field.

func (*V1alpha1Repository) SetProxy ¶

func (o *V1alpha1Repository) SetProxy(v string)

SetProxy gets a reference to the given string and assigns it to the Proxy field.

func (*V1alpha1Repository) SetRepo ¶

func (o *V1alpha1Repository) SetRepo(v string)

SetRepo gets a reference to the given string and assigns it to the Repo field.

func (*V1alpha1Repository) SetSshPrivateKey ¶

func (o *V1alpha1Repository) SetSshPrivateKey(v string)

SetSshPrivateKey gets a reference to the given string and assigns it to the SshPrivateKey field.

func (*V1alpha1Repository) SetTlsClientCertData ¶

func (o *V1alpha1Repository) SetTlsClientCertData(v string)

SetTlsClientCertData gets a reference to the given string and assigns it to the TlsClientCertData field.

func (*V1alpha1Repository) SetTlsClientCertKey ¶

func (o *V1alpha1Repository) SetTlsClientCertKey(v string)

SetTlsClientCertKey gets a reference to the given string and assigns it to the TlsClientCertKey field.

func (*V1alpha1Repository) SetType ¶

func (o *V1alpha1Repository) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*V1alpha1Repository) SetUsername ¶

func (o *V1alpha1Repository) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (V1alpha1Repository) ToMap ¶

func (o V1alpha1Repository) ToMap() (map[string]interface{}, error)

type V1alpha1RepositoryCertificate ¶

type V1alpha1RepositoryCertificate struct {
	CertData    *string `json:"certData,omitempty"`
	CertInfo    *string `json:"certInfo,omitempty"`
	CertSubType *string `json:"certSubType,omitempty"`
	CertType    *string `json:"certType,omitempty"`
	ServerName  *string `json:"serverName,omitempty"`
}

V1alpha1RepositoryCertificate struct for V1alpha1RepositoryCertificate

func NewV1alpha1RepositoryCertificate ¶

func NewV1alpha1RepositoryCertificate() *V1alpha1RepositoryCertificate

NewV1alpha1RepositoryCertificate instantiates a new V1alpha1RepositoryCertificate 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 NewV1alpha1RepositoryCertificateWithDefaults ¶

func NewV1alpha1RepositoryCertificateWithDefaults() *V1alpha1RepositoryCertificate

NewV1alpha1RepositoryCertificateWithDefaults instantiates a new V1alpha1RepositoryCertificate 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 (*V1alpha1RepositoryCertificate) GetCertData ¶

func (o *V1alpha1RepositoryCertificate) GetCertData() string

GetCertData returns the CertData field value if set, zero value otherwise.

func (*V1alpha1RepositoryCertificate) GetCertDataOk ¶

func (o *V1alpha1RepositoryCertificate) GetCertDataOk() (*string, bool)

GetCertDataOk returns a tuple with the CertData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepositoryCertificate) GetCertInfo ¶

func (o *V1alpha1RepositoryCertificate) GetCertInfo() string

GetCertInfo returns the CertInfo field value if set, zero value otherwise.

func (*V1alpha1RepositoryCertificate) GetCertInfoOk ¶

func (o *V1alpha1RepositoryCertificate) GetCertInfoOk() (*string, bool)

GetCertInfoOk returns a tuple with the CertInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepositoryCertificate) GetCertSubType ¶

func (o *V1alpha1RepositoryCertificate) GetCertSubType() string

GetCertSubType returns the CertSubType field value if set, zero value otherwise.

func (*V1alpha1RepositoryCertificate) GetCertSubTypeOk ¶

func (o *V1alpha1RepositoryCertificate) GetCertSubTypeOk() (*string, bool)

GetCertSubTypeOk returns a tuple with the CertSubType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepositoryCertificate) GetCertType ¶

func (o *V1alpha1RepositoryCertificate) GetCertType() string

GetCertType returns the CertType field value if set, zero value otherwise.

func (*V1alpha1RepositoryCertificate) GetCertTypeOk ¶

func (o *V1alpha1RepositoryCertificate) GetCertTypeOk() (*string, bool)

GetCertTypeOk returns a tuple with the CertType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepositoryCertificate) GetServerName ¶

func (o *V1alpha1RepositoryCertificate) GetServerName() string

GetServerName returns the ServerName field value if set, zero value otherwise.

func (*V1alpha1RepositoryCertificate) GetServerNameOk ¶

func (o *V1alpha1RepositoryCertificate) GetServerNameOk() (*string, bool)

GetServerNameOk returns a tuple with the ServerName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepositoryCertificate) HasCertData ¶

func (o *V1alpha1RepositoryCertificate) HasCertData() bool

HasCertData returns a boolean if a field has been set.

func (*V1alpha1RepositoryCertificate) HasCertInfo ¶

func (o *V1alpha1RepositoryCertificate) HasCertInfo() bool

HasCertInfo returns a boolean if a field has been set.

func (*V1alpha1RepositoryCertificate) HasCertSubType ¶

func (o *V1alpha1RepositoryCertificate) HasCertSubType() bool

HasCertSubType returns a boolean if a field has been set.

func (*V1alpha1RepositoryCertificate) HasCertType ¶

func (o *V1alpha1RepositoryCertificate) HasCertType() bool

HasCertType returns a boolean if a field has been set.

func (*V1alpha1RepositoryCertificate) HasServerName ¶

func (o *V1alpha1RepositoryCertificate) HasServerName() bool

HasServerName returns a boolean if a field has been set.

func (V1alpha1RepositoryCertificate) MarshalJSON ¶

func (o V1alpha1RepositoryCertificate) MarshalJSON() ([]byte, error)

func (*V1alpha1RepositoryCertificate) SetCertData ¶

func (o *V1alpha1RepositoryCertificate) SetCertData(v string)

SetCertData gets a reference to the given string and assigns it to the CertData field.

func (*V1alpha1RepositoryCertificate) SetCertInfo ¶

func (o *V1alpha1RepositoryCertificate) SetCertInfo(v string)

SetCertInfo gets a reference to the given string and assigns it to the CertInfo field.

func (*V1alpha1RepositoryCertificate) SetCertSubType ¶

func (o *V1alpha1RepositoryCertificate) SetCertSubType(v string)

SetCertSubType gets a reference to the given string and assigns it to the CertSubType field.

func (*V1alpha1RepositoryCertificate) SetCertType ¶

func (o *V1alpha1RepositoryCertificate) SetCertType(v string)

SetCertType gets a reference to the given string and assigns it to the CertType field.

func (*V1alpha1RepositoryCertificate) SetServerName ¶

func (o *V1alpha1RepositoryCertificate) SetServerName(v string)

SetServerName gets a reference to the given string and assigns it to the ServerName field.

func (V1alpha1RepositoryCertificate) ToMap ¶

func (o V1alpha1RepositoryCertificate) ToMap() (map[string]interface{}, error)

type V1alpha1RepositoryCertificateList ¶

type V1alpha1RepositoryCertificateList struct {
	Items    []V1alpha1RepositoryCertificate `json:"items,omitempty"`
	Metadata *V1ListMeta                     `json:"metadata,omitempty"`
}

V1alpha1RepositoryCertificateList struct for V1alpha1RepositoryCertificateList

func NewV1alpha1RepositoryCertificateList ¶

func NewV1alpha1RepositoryCertificateList() *V1alpha1RepositoryCertificateList

NewV1alpha1RepositoryCertificateList instantiates a new V1alpha1RepositoryCertificateList 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 NewV1alpha1RepositoryCertificateListWithDefaults ¶

func NewV1alpha1RepositoryCertificateListWithDefaults() *V1alpha1RepositoryCertificateList

NewV1alpha1RepositoryCertificateListWithDefaults instantiates a new V1alpha1RepositoryCertificateList 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 (*V1alpha1RepositoryCertificateList) GetItems ¶

GetItems returns the Items field value if set, zero value otherwise.

func (*V1alpha1RepositoryCertificateList) GetItemsOk ¶

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepositoryCertificateList) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*V1alpha1RepositoryCertificateList) GetMetadataOk ¶

func (o *V1alpha1RepositoryCertificateList) GetMetadataOk() (*V1ListMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepositoryCertificateList) HasItems ¶

HasItems returns a boolean if a field has been set.

func (*V1alpha1RepositoryCertificateList) HasMetadata ¶

func (o *V1alpha1RepositoryCertificateList) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (V1alpha1RepositoryCertificateList) MarshalJSON ¶

func (o V1alpha1RepositoryCertificateList) MarshalJSON() ([]byte, error)

func (*V1alpha1RepositoryCertificateList) SetItems ¶

SetItems gets a reference to the given []V1alpha1RepositoryCertificate and assigns it to the Items field.

func (*V1alpha1RepositoryCertificateList) SetMetadata ¶

SetMetadata gets a reference to the given V1ListMeta and assigns it to the Metadata field.

func (V1alpha1RepositoryCertificateList) ToMap ¶

func (o V1alpha1RepositoryCertificateList) ToMap() (map[string]interface{}, error)

type V1alpha1RepositoryList ¶

type V1alpha1RepositoryList struct {
	Items    []V1alpha1Repository `json:"items,omitempty"`
	Metadata *V1ListMeta          `json:"metadata,omitempty"`
}

V1alpha1RepositoryList RepositoryList is a collection of Repositories.

func NewV1alpha1RepositoryList ¶

func NewV1alpha1RepositoryList() *V1alpha1RepositoryList

NewV1alpha1RepositoryList instantiates a new V1alpha1RepositoryList 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 NewV1alpha1RepositoryListWithDefaults ¶

func NewV1alpha1RepositoryListWithDefaults() *V1alpha1RepositoryList

NewV1alpha1RepositoryListWithDefaults instantiates a new V1alpha1RepositoryList 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 (*V1alpha1RepositoryList) GetItems ¶

GetItems returns the Items field value if set, zero value otherwise.

func (*V1alpha1RepositoryList) GetItemsOk ¶

func (o *V1alpha1RepositoryList) GetItemsOk() ([]V1alpha1Repository, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepositoryList) GetMetadata ¶

func (o *V1alpha1RepositoryList) GetMetadata() V1ListMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*V1alpha1RepositoryList) GetMetadataOk ¶

func (o *V1alpha1RepositoryList) GetMetadataOk() (*V1ListMeta, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RepositoryList) HasItems ¶

func (o *V1alpha1RepositoryList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*V1alpha1RepositoryList) HasMetadata ¶

func (o *V1alpha1RepositoryList) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (V1alpha1RepositoryList) MarshalJSON ¶

func (o V1alpha1RepositoryList) MarshalJSON() ([]byte, error)

func (*V1alpha1RepositoryList) SetItems ¶

func (o *V1alpha1RepositoryList) SetItems(v []V1alpha1Repository)

SetItems gets a reference to the given []V1alpha1Repository and assigns it to the Items field.

func (*V1alpha1RepositoryList) SetMetadata ¶

func (o *V1alpha1RepositoryList) SetMetadata(v V1ListMeta)

SetMetadata gets a reference to the given V1ListMeta and assigns it to the Metadata field.

func (V1alpha1RepositoryList) ToMap ¶

func (o V1alpha1RepositoryList) ToMap() (map[string]interface{}, error)

type V1alpha1ResourceAction ¶

type V1alpha1ResourceAction struct {
	Disabled *bool                         `json:"disabled,omitempty"`
	Name     *string                       `json:"name,omitempty"`
	Params   []V1alpha1ResourceActionParam `json:"params,omitempty"`
}

V1alpha1ResourceAction struct for V1alpha1ResourceAction

func NewV1alpha1ResourceAction ¶

func NewV1alpha1ResourceAction() *V1alpha1ResourceAction

NewV1alpha1ResourceAction instantiates a new V1alpha1ResourceAction 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 NewV1alpha1ResourceActionWithDefaults ¶

func NewV1alpha1ResourceActionWithDefaults() *V1alpha1ResourceAction

NewV1alpha1ResourceActionWithDefaults instantiates a new V1alpha1ResourceAction 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 (*V1alpha1ResourceAction) GetDisabled ¶

func (o *V1alpha1ResourceAction) GetDisabled() bool

GetDisabled returns the Disabled field value if set, zero value otherwise.

func (*V1alpha1ResourceAction) GetDisabledOk ¶

func (o *V1alpha1ResourceAction) GetDisabledOk() (*bool, bool)

GetDisabledOk returns a tuple with the Disabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceAction) GetName ¶

func (o *V1alpha1ResourceAction) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1ResourceAction) GetNameOk ¶

func (o *V1alpha1ResourceAction) 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 (*V1alpha1ResourceAction) GetParams ¶

GetParams returns the Params field value if set, zero value otherwise.

func (*V1alpha1ResourceAction) GetParamsOk ¶

GetParamsOk returns a tuple with the Params field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceAction) HasDisabled ¶

func (o *V1alpha1ResourceAction) HasDisabled() bool

HasDisabled returns a boolean if a field has been set.

func (*V1alpha1ResourceAction) HasName ¶

func (o *V1alpha1ResourceAction) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1alpha1ResourceAction) HasParams ¶

func (o *V1alpha1ResourceAction) HasParams() bool

HasParams returns a boolean if a field has been set.

func (V1alpha1ResourceAction) MarshalJSON ¶

func (o V1alpha1ResourceAction) MarshalJSON() ([]byte, error)

func (*V1alpha1ResourceAction) SetDisabled ¶

func (o *V1alpha1ResourceAction) SetDisabled(v bool)

SetDisabled gets a reference to the given bool and assigns it to the Disabled field.

func (*V1alpha1ResourceAction) SetName ¶

func (o *V1alpha1ResourceAction) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1ResourceAction) SetParams ¶

SetParams gets a reference to the given []V1alpha1ResourceActionParam and assigns it to the Params field.

func (V1alpha1ResourceAction) ToMap ¶

func (o V1alpha1ResourceAction) ToMap() (map[string]interface{}, error)

type V1alpha1ResourceActionParam ¶

type V1alpha1ResourceActionParam struct {
	Default *string `json:"default,omitempty"`
	Name    *string `json:"name,omitempty"`
	Type    *string `json:"type,omitempty"`
	Value   *string `json:"value,omitempty"`
}

V1alpha1ResourceActionParam struct for V1alpha1ResourceActionParam

func NewV1alpha1ResourceActionParam ¶

func NewV1alpha1ResourceActionParam() *V1alpha1ResourceActionParam

NewV1alpha1ResourceActionParam instantiates a new V1alpha1ResourceActionParam 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 NewV1alpha1ResourceActionParamWithDefaults ¶

func NewV1alpha1ResourceActionParamWithDefaults() *V1alpha1ResourceActionParam

NewV1alpha1ResourceActionParamWithDefaults instantiates a new V1alpha1ResourceActionParam 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 (*V1alpha1ResourceActionParam) GetDefault ¶

func (o *V1alpha1ResourceActionParam) GetDefault() string

GetDefault returns the Default field value if set, zero value otherwise.

func (*V1alpha1ResourceActionParam) GetDefaultOk ¶

func (o *V1alpha1ResourceActionParam) GetDefaultOk() (*string, bool)

GetDefaultOk returns a tuple with the Default field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceActionParam) GetName ¶

func (o *V1alpha1ResourceActionParam) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1ResourceActionParam) GetNameOk ¶

func (o *V1alpha1ResourceActionParam) 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 (*V1alpha1ResourceActionParam) GetType ¶

func (o *V1alpha1ResourceActionParam) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*V1alpha1ResourceActionParam) GetTypeOk ¶

func (o *V1alpha1ResourceActionParam) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceActionParam) GetValue ¶

func (o *V1alpha1ResourceActionParam) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*V1alpha1ResourceActionParam) GetValueOk ¶

func (o *V1alpha1ResourceActionParam) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceActionParam) HasDefault ¶

func (o *V1alpha1ResourceActionParam) HasDefault() bool

HasDefault returns a boolean if a field has been set.

func (*V1alpha1ResourceActionParam) HasName ¶

func (o *V1alpha1ResourceActionParam) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1alpha1ResourceActionParam) HasType ¶

func (o *V1alpha1ResourceActionParam) HasType() bool

HasType returns a boolean if a field has been set.

func (*V1alpha1ResourceActionParam) HasValue ¶

func (o *V1alpha1ResourceActionParam) HasValue() bool

HasValue returns a boolean if a field has been set.

func (V1alpha1ResourceActionParam) MarshalJSON ¶

func (o V1alpha1ResourceActionParam) MarshalJSON() ([]byte, error)

func (*V1alpha1ResourceActionParam) SetDefault ¶

func (o *V1alpha1ResourceActionParam) SetDefault(v string)

SetDefault gets a reference to the given string and assigns it to the Default field.

func (*V1alpha1ResourceActionParam) SetName ¶

func (o *V1alpha1ResourceActionParam) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1ResourceActionParam) SetType ¶

func (o *V1alpha1ResourceActionParam) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*V1alpha1ResourceActionParam) SetValue ¶

func (o *V1alpha1ResourceActionParam) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (V1alpha1ResourceActionParam) ToMap ¶

func (o V1alpha1ResourceActionParam) ToMap() (map[string]interface{}, error)

type V1alpha1ResourceDiff ¶

type V1alpha1ResourceDiff struct {
	Diff                *string `json:"diff,omitempty"`
	Group               *string `json:"group,omitempty"`
	Hook                *bool   `json:"hook,omitempty"`
	Kind                *string `json:"kind,omitempty"`
	LiveState           *string `json:"liveState,omitempty"`
	Modified            *bool   `json:"modified,omitempty"`
	Name                *string `json:"name,omitempty"`
	Namespace           *string `json:"namespace,omitempty"`
	NormalizedLiveState *string `json:"normalizedLiveState,omitempty"`
	PredictedLiveState  *string `json:"predictedLiveState,omitempty"`
	ResourceVersion     *string `json:"resourceVersion,omitempty"`
	TargetState         *string `json:"targetState,omitempty"`
}

V1alpha1ResourceDiff struct for V1alpha1ResourceDiff

func NewV1alpha1ResourceDiff ¶

func NewV1alpha1ResourceDiff() *V1alpha1ResourceDiff

NewV1alpha1ResourceDiff instantiates a new V1alpha1ResourceDiff 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 NewV1alpha1ResourceDiffWithDefaults ¶

func NewV1alpha1ResourceDiffWithDefaults() *V1alpha1ResourceDiff

NewV1alpha1ResourceDiffWithDefaults instantiates a new V1alpha1ResourceDiff 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 (*V1alpha1ResourceDiff) GetDiff ¶

func (o *V1alpha1ResourceDiff) GetDiff() string

GetDiff returns the Diff field value if set, zero value otherwise.

func (*V1alpha1ResourceDiff) GetDiffOk ¶

func (o *V1alpha1ResourceDiff) GetDiffOk() (*string, bool)

GetDiffOk returns a tuple with the Diff field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceDiff) GetGroup ¶

func (o *V1alpha1ResourceDiff) GetGroup() string

GetGroup returns the Group field value if set, zero value otherwise.

func (*V1alpha1ResourceDiff) GetGroupOk ¶

func (o *V1alpha1ResourceDiff) 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 (*V1alpha1ResourceDiff) GetHook ¶

func (o *V1alpha1ResourceDiff) GetHook() bool

GetHook returns the Hook field value if set, zero value otherwise.

func (*V1alpha1ResourceDiff) GetHookOk ¶

func (o *V1alpha1ResourceDiff) GetHookOk() (*bool, bool)

GetHookOk returns a tuple with the Hook field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceDiff) GetKind ¶

func (o *V1alpha1ResourceDiff) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*V1alpha1ResourceDiff) GetKindOk ¶

func (o *V1alpha1ResourceDiff) 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 (*V1alpha1ResourceDiff) GetLiveState ¶

func (o *V1alpha1ResourceDiff) GetLiveState() string

GetLiveState returns the LiveState field value if set, zero value otherwise.

func (*V1alpha1ResourceDiff) GetLiveStateOk ¶

func (o *V1alpha1ResourceDiff) GetLiveStateOk() (*string, bool)

GetLiveStateOk returns a tuple with the LiveState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceDiff) GetModified ¶

func (o *V1alpha1ResourceDiff) GetModified() bool

GetModified returns the Modified field value if set, zero value otherwise.

func (*V1alpha1ResourceDiff) GetModifiedOk ¶

func (o *V1alpha1ResourceDiff) GetModifiedOk() (*bool, bool)

GetModifiedOk returns a tuple with the Modified field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceDiff) GetName ¶

func (o *V1alpha1ResourceDiff) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1ResourceDiff) GetNameOk ¶

func (o *V1alpha1ResourceDiff) 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 (*V1alpha1ResourceDiff) GetNamespace ¶

func (o *V1alpha1ResourceDiff) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*V1alpha1ResourceDiff) GetNamespaceOk ¶

func (o *V1alpha1ResourceDiff) 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 (*V1alpha1ResourceDiff) GetNormalizedLiveState ¶

func (o *V1alpha1ResourceDiff) GetNormalizedLiveState() string

GetNormalizedLiveState returns the NormalizedLiveState field value if set, zero value otherwise.

func (*V1alpha1ResourceDiff) GetNormalizedLiveStateOk ¶

func (o *V1alpha1ResourceDiff) GetNormalizedLiveStateOk() (*string, bool)

GetNormalizedLiveStateOk returns a tuple with the NormalizedLiveState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceDiff) GetPredictedLiveState ¶

func (o *V1alpha1ResourceDiff) GetPredictedLiveState() string

GetPredictedLiveState returns the PredictedLiveState field value if set, zero value otherwise.

func (*V1alpha1ResourceDiff) GetPredictedLiveStateOk ¶

func (o *V1alpha1ResourceDiff) GetPredictedLiveStateOk() (*string, bool)

GetPredictedLiveStateOk returns a tuple with the PredictedLiveState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceDiff) GetResourceVersion ¶

func (o *V1alpha1ResourceDiff) GetResourceVersion() string

GetResourceVersion returns the ResourceVersion field value if set, zero value otherwise.

func (*V1alpha1ResourceDiff) GetResourceVersionOk ¶

func (o *V1alpha1ResourceDiff) GetResourceVersionOk() (*string, bool)

GetResourceVersionOk returns a tuple with the ResourceVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceDiff) GetTargetState ¶

func (o *V1alpha1ResourceDiff) GetTargetState() string

GetTargetState returns the TargetState field value if set, zero value otherwise.

func (*V1alpha1ResourceDiff) GetTargetStateOk ¶

func (o *V1alpha1ResourceDiff) GetTargetStateOk() (*string, bool)

GetTargetStateOk returns a tuple with the TargetState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceDiff) HasDiff ¶

func (o *V1alpha1ResourceDiff) HasDiff() bool

HasDiff returns a boolean if a field has been set.

func (*V1alpha1ResourceDiff) HasGroup ¶

func (o *V1alpha1ResourceDiff) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (*V1alpha1ResourceDiff) HasHook ¶

func (o *V1alpha1ResourceDiff) HasHook() bool

HasHook returns a boolean if a field has been set.

func (*V1alpha1ResourceDiff) HasKind ¶

func (o *V1alpha1ResourceDiff) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*V1alpha1ResourceDiff) HasLiveState ¶

func (o *V1alpha1ResourceDiff) HasLiveState() bool

HasLiveState returns a boolean if a field has been set.

func (*V1alpha1ResourceDiff) HasModified ¶

func (o *V1alpha1ResourceDiff) HasModified() bool

HasModified returns a boolean if a field has been set.

func (*V1alpha1ResourceDiff) HasName ¶

func (o *V1alpha1ResourceDiff) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1alpha1ResourceDiff) HasNamespace ¶

func (o *V1alpha1ResourceDiff) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*V1alpha1ResourceDiff) HasNormalizedLiveState ¶

func (o *V1alpha1ResourceDiff) HasNormalizedLiveState() bool

HasNormalizedLiveState returns a boolean if a field has been set.

func (*V1alpha1ResourceDiff) HasPredictedLiveState ¶

func (o *V1alpha1ResourceDiff) HasPredictedLiveState() bool

HasPredictedLiveState returns a boolean if a field has been set.

func (*V1alpha1ResourceDiff) HasResourceVersion ¶

func (o *V1alpha1ResourceDiff) HasResourceVersion() bool

HasResourceVersion returns a boolean if a field has been set.

func (*V1alpha1ResourceDiff) HasTargetState ¶

func (o *V1alpha1ResourceDiff) HasTargetState() bool

HasTargetState returns a boolean if a field has been set.

func (V1alpha1ResourceDiff) MarshalJSON ¶

func (o V1alpha1ResourceDiff) MarshalJSON() ([]byte, error)

func (*V1alpha1ResourceDiff) SetDiff ¶

func (o *V1alpha1ResourceDiff) SetDiff(v string)

SetDiff gets a reference to the given string and assigns it to the Diff field.

func (*V1alpha1ResourceDiff) SetGroup ¶

func (o *V1alpha1ResourceDiff) SetGroup(v string)

SetGroup gets a reference to the given string and assigns it to the Group field.

func (*V1alpha1ResourceDiff) SetHook ¶

func (o *V1alpha1ResourceDiff) SetHook(v bool)

SetHook gets a reference to the given bool and assigns it to the Hook field.

func (*V1alpha1ResourceDiff) SetKind ¶

func (o *V1alpha1ResourceDiff) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*V1alpha1ResourceDiff) SetLiveState ¶

func (o *V1alpha1ResourceDiff) SetLiveState(v string)

SetLiveState gets a reference to the given string and assigns it to the LiveState field.

func (*V1alpha1ResourceDiff) SetModified ¶

func (o *V1alpha1ResourceDiff) SetModified(v bool)

SetModified gets a reference to the given bool and assigns it to the Modified field.

func (*V1alpha1ResourceDiff) SetName ¶

func (o *V1alpha1ResourceDiff) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1ResourceDiff) SetNamespace ¶

func (o *V1alpha1ResourceDiff) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*V1alpha1ResourceDiff) SetNormalizedLiveState ¶

func (o *V1alpha1ResourceDiff) SetNormalizedLiveState(v string)

SetNormalizedLiveState gets a reference to the given string and assigns it to the NormalizedLiveState field.

func (*V1alpha1ResourceDiff) SetPredictedLiveState ¶

func (o *V1alpha1ResourceDiff) SetPredictedLiveState(v string)

SetPredictedLiveState gets a reference to the given string and assigns it to the PredictedLiveState field.

func (*V1alpha1ResourceDiff) SetResourceVersion ¶

func (o *V1alpha1ResourceDiff) SetResourceVersion(v string)

SetResourceVersion gets a reference to the given string and assigns it to the ResourceVersion field.

func (*V1alpha1ResourceDiff) SetTargetState ¶

func (o *V1alpha1ResourceDiff) SetTargetState(v string)

SetTargetState gets a reference to the given string and assigns it to the TargetState field.

func (V1alpha1ResourceDiff) ToMap ¶

func (o V1alpha1ResourceDiff) ToMap() (map[string]interface{}, error)

type V1alpha1ResourceIgnoreDifferences ¶

type V1alpha1ResourceIgnoreDifferences struct {
	Group                 *string  `json:"group,omitempty"`
	JqPathExpressions     []string `json:"jqPathExpressions,omitempty"`
	JsonPointers          []string `json:"jsonPointers,omitempty"`
	Kind                  *string  `json:"kind,omitempty"`
	ManagedFieldsManagers []string `json:"managedFieldsManagers,omitempty"`
	Name                  *string  `json:"name,omitempty"`
	Namespace             *string  `json:"namespace,omitempty"`
}

V1alpha1ResourceIgnoreDifferences ResourceIgnoreDifferences contains resource filter and list of json paths which should be ignored during comparison with live state.

func NewV1alpha1ResourceIgnoreDifferences ¶

func NewV1alpha1ResourceIgnoreDifferences() *V1alpha1ResourceIgnoreDifferences

NewV1alpha1ResourceIgnoreDifferences instantiates a new V1alpha1ResourceIgnoreDifferences 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 NewV1alpha1ResourceIgnoreDifferencesWithDefaults ¶

func NewV1alpha1ResourceIgnoreDifferencesWithDefaults() *V1alpha1ResourceIgnoreDifferences

NewV1alpha1ResourceIgnoreDifferencesWithDefaults instantiates a new V1alpha1ResourceIgnoreDifferences 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 (*V1alpha1ResourceIgnoreDifferences) GetGroup ¶

GetGroup returns the Group field value if set, zero value otherwise.

func (*V1alpha1ResourceIgnoreDifferences) GetGroupOk ¶

func (o *V1alpha1ResourceIgnoreDifferences) 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 (*V1alpha1ResourceIgnoreDifferences) GetJqPathExpressions ¶

func (o *V1alpha1ResourceIgnoreDifferences) GetJqPathExpressions() []string

GetJqPathExpressions returns the JqPathExpressions field value if set, zero value otherwise.

func (*V1alpha1ResourceIgnoreDifferences) GetJqPathExpressionsOk ¶

func (o *V1alpha1ResourceIgnoreDifferences) GetJqPathExpressionsOk() ([]string, bool)

GetJqPathExpressionsOk returns a tuple with the JqPathExpressions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceIgnoreDifferences) GetJsonPointers ¶

func (o *V1alpha1ResourceIgnoreDifferences) GetJsonPointers() []string

GetJsonPointers returns the JsonPointers field value if set, zero value otherwise.

func (*V1alpha1ResourceIgnoreDifferences) GetJsonPointersOk ¶

func (o *V1alpha1ResourceIgnoreDifferences) GetJsonPointersOk() ([]string, bool)

GetJsonPointersOk returns a tuple with the JsonPointers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceIgnoreDifferences) GetKind ¶

GetKind returns the Kind field value if set, zero value otherwise.

func (*V1alpha1ResourceIgnoreDifferences) GetKindOk ¶

func (o *V1alpha1ResourceIgnoreDifferences) 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 (*V1alpha1ResourceIgnoreDifferences) GetManagedFieldsManagers ¶

func (o *V1alpha1ResourceIgnoreDifferences) GetManagedFieldsManagers() []string

GetManagedFieldsManagers returns the ManagedFieldsManagers field value if set, zero value otherwise.

func (*V1alpha1ResourceIgnoreDifferences) GetManagedFieldsManagersOk ¶

func (o *V1alpha1ResourceIgnoreDifferences) GetManagedFieldsManagersOk() ([]string, bool)

GetManagedFieldsManagersOk returns a tuple with the ManagedFieldsManagers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceIgnoreDifferences) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1ResourceIgnoreDifferences) GetNameOk ¶

func (o *V1alpha1ResourceIgnoreDifferences) 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 (*V1alpha1ResourceIgnoreDifferences) GetNamespace ¶

func (o *V1alpha1ResourceIgnoreDifferences) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*V1alpha1ResourceIgnoreDifferences) GetNamespaceOk ¶

func (o *V1alpha1ResourceIgnoreDifferences) 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 (*V1alpha1ResourceIgnoreDifferences) HasGroup ¶

HasGroup returns a boolean if a field has been set.

func (*V1alpha1ResourceIgnoreDifferences) HasJqPathExpressions ¶

func (o *V1alpha1ResourceIgnoreDifferences) HasJqPathExpressions() bool

HasJqPathExpressions returns a boolean if a field has been set.

func (*V1alpha1ResourceIgnoreDifferences) HasJsonPointers ¶

func (o *V1alpha1ResourceIgnoreDifferences) HasJsonPointers() bool

HasJsonPointers returns a boolean if a field has been set.

func (*V1alpha1ResourceIgnoreDifferences) HasKind ¶

HasKind returns a boolean if a field has been set.

func (*V1alpha1ResourceIgnoreDifferences) HasManagedFieldsManagers ¶

func (o *V1alpha1ResourceIgnoreDifferences) HasManagedFieldsManagers() bool

HasManagedFieldsManagers returns a boolean if a field has been set.

func (*V1alpha1ResourceIgnoreDifferences) HasName ¶

HasName returns a boolean if a field has been set.

func (*V1alpha1ResourceIgnoreDifferences) HasNamespace ¶

func (o *V1alpha1ResourceIgnoreDifferences) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (V1alpha1ResourceIgnoreDifferences) MarshalJSON ¶

func (o V1alpha1ResourceIgnoreDifferences) MarshalJSON() ([]byte, error)

func (*V1alpha1ResourceIgnoreDifferences) SetGroup ¶

SetGroup gets a reference to the given string and assigns it to the Group field.

func (*V1alpha1ResourceIgnoreDifferences) SetJqPathExpressions ¶

func (o *V1alpha1ResourceIgnoreDifferences) SetJqPathExpressions(v []string)

SetJqPathExpressions gets a reference to the given []string and assigns it to the JqPathExpressions field.

func (*V1alpha1ResourceIgnoreDifferences) SetJsonPointers ¶

func (o *V1alpha1ResourceIgnoreDifferences) SetJsonPointers(v []string)

SetJsonPointers gets a reference to the given []string and assigns it to the JsonPointers field.

func (*V1alpha1ResourceIgnoreDifferences) SetKind ¶

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*V1alpha1ResourceIgnoreDifferences) SetManagedFieldsManagers ¶

func (o *V1alpha1ResourceIgnoreDifferences) SetManagedFieldsManagers(v []string)

SetManagedFieldsManagers gets a reference to the given []string and assigns it to the ManagedFieldsManagers field.

func (*V1alpha1ResourceIgnoreDifferences) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1ResourceIgnoreDifferences) SetNamespace ¶

func (o *V1alpha1ResourceIgnoreDifferences) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (V1alpha1ResourceIgnoreDifferences) ToMap ¶

func (o V1alpha1ResourceIgnoreDifferences) ToMap() (map[string]interface{}, error)

type V1alpha1ResourceNetworkingInfo ¶

type V1alpha1ResourceNetworkingInfo struct {
	// ExternalURLs holds list of URLs which should be available externally. List is populated for ingress resources using rules hostnames.
	ExternalURLs []string                `json:"externalURLs,omitempty"`
	Ingress      []V1LoadBalancerIngress `json:"ingress,omitempty"`
	Labels       *map[string]string      `json:"labels,omitempty"`
	TargetLabels *map[string]string      `json:"targetLabels,omitempty"`
	TargetRefs   []V1alpha1ResourceRef   `json:"targetRefs,omitempty"`
}

V1alpha1ResourceNetworkingInfo struct for V1alpha1ResourceNetworkingInfo

func NewV1alpha1ResourceNetworkingInfo ¶

func NewV1alpha1ResourceNetworkingInfo() *V1alpha1ResourceNetworkingInfo

NewV1alpha1ResourceNetworkingInfo instantiates a new V1alpha1ResourceNetworkingInfo 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 NewV1alpha1ResourceNetworkingInfoWithDefaults ¶

func NewV1alpha1ResourceNetworkingInfoWithDefaults() *V1alpha1ResourceNetworkingInfo

NewV1alpha1ResourceNetworkingInfoWithDefaults instantiates a new V1alpha1ResourceNetworkingInfo 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 (*V1alpha1ResourceNetworkingInfo) GetExternalURLs ¶

func (o *V1alpha1ResourceNetworkingInfo) GetExternalURLs() []string

GetExternalURLs returns the ExternalURLs field value if set, zero value otherwise.

func (*V1alpha1ResourceNetworkingInfo) GetExternalURLsOk ¶

func (o *V1alpha1ResourceNetworkingInfo) GetExternalURLsOk() ([]string, bool)

GetExternalURLsOk returns a tuple with the ExternalURLs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceNetworkingInfo) GetIngress ¶

GetIngress returns the Ingress field value if set, zero value otherwise.

func (*V1alpha1ResourceNetworkingInfo) GetIngressOk ¶

GetIngressOk returns a tuple with the Ingress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceNetworkingInfo) GetLabels ¶

func (o *V1alpha1ResourceNetworkingInfo) GetLabels() map[string]string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*V1alpha1ResourceNetworkingInfo) GetLabelsOk ¶

func (o *V1alpha1ResourceNetworkingInfo) GetLabelsOk() (*map[string]string, bool)

GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceNetworkingInfo) GetTargetLabels ¶

func (o *V1alpha1ResourceNetworkingInfo) GetTargetLabels() map[string]string

GetTargetLabels returns the TargetLabels field value if set, zero value otherwise.

func (*V1alpha1ResourceNetworkingInfo) GetTargetLabelsOk ¶

func (o *V1alpha1ResourceNetworkingInfo) GetTargetLabelsOk() (*map[string]string, bool)

GetTargetLabelsOk returns a tuple with the TargetLabels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceNetworkingInfo) GetTargetRefs ¶

GetTargetRefs returns the TargetRefs field value if set, zero value otherwise.

func (*V1alpha1ResourceNetworkingInfo) GetTargetRefsOk ¶

func (o *V1alpha1ResourceNetworkingInfo) GetTargetRefsOk() ([]V1alpha1ResourceRef, bool)

GetTargetRefsOk returns a tuple with the TargetRefs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceNetworkingInfo) HasExternalURLs ¶

func (o *V1alpha1ResourceNetworkingInfo) HasExternalURLs() bool

HasExternalURLs returns a boolean if a field has been set.

func (*V1alpha1ResourceNetworkingInfo) HasIngress ¶

func (o *V1alpha1ResourceNetworkingInfo) HasIngress() bool

HasIngress returns a boolean if a field has been set.

func (*V1alpha1ResourceNetworkingInfo) HasLabels ¶

func (o *V1alpha1ResourceNetworkingInfo) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*V1alpha1ResourceNetworkingInfo) HasTargetLabels ¶

func (o *V1alpha1ResourceNetworkingInfo) HasTargetLabels() bool

HasTargetLabels returns a boolean if a field has been set.

func (*V1alpha1ResourceNetworkingInfo) HasTargetRefs ¶

func (o *V1alpha1ResourceNetworkingInfo) HasTargetRefs() bool

HasTargetRefs returns a boolean if a field has been set.

func (V1alpha1ResourceNetworkingInfo) MarshalJSON ¶

func (o V1alpha1ResourceNetworkingInfo) MarshalJSON() ([]byte, error)

func (*V1alpha1ResourceNetworkingInfo) SetExternalURLs ¶

func (o *V1alpha1ResourceNetworkingInfo) SetExternalURLs(v []string)

SetExternalURLs gets a reference to the given []string and assigns it to the ExternalURLs field.

func (*V1alpha1ResourceNetworkingInfo) SetIngress ¶

SetIngress gets a reference to the given []V1LoadBalancerIngress and assigns it to the Ingress field.

func (*V1alpha1ResourceNetworkingInfo) SetLabels ¶

func (o *V1alpha1ResourceNetworkingInfo) SetLabels(v map[string]string)

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*V1alpha1ResourceNetworkingInfo) SetTargetLabels ¶

func (o *V1alpha1ResourceNetworkingInfo) SetTargetLabels(v map[string]string)

SetTargetLabels gets a reference to the given map[string]string and assigns it to the TargetLabels field.

func (*V1alpha1ResourceNetworkingInfo) SetTargetRefs ¶

SetTargetRefs gets a reference to the given []V1alpha1ResourceRef and assigns it to the TargetRefs field.

func (V1alpha1ResourceNetworkingInfo) ToMap ¶

func (o V1alpha1ResourceNetworkingInfo) ToMap() (map[string]interface{}, error)

type V1alpha1ResourceNode ¶

type V1alpha1ResourceNode struct {
	CreatedAt       *string                         `json:"createdAt,omitempty"`
	Health          *V1alpha1HealthStatus           `json:"health,omitempty"`
	Images          []string                        `json:"images,omitempty"`
	Info            []V1alpha1InfoItem              `json:"info,omitempty"`
	NetworkingInfo  *V1alpha1ResourceNetworkingInfo `json:"networkingInfo,omitempty"`
	ParentRefs      []V1alpha1ResourceRef           `json:"parentRefs,omitempty"`
	ResourceRef     *V1alpha1ResourceRef            `json:"resourceRef,omitempty"`
	ResourceVersion *string                         `json:"resourceVersion,omitempty"`
}

V1alpha1ResourceNode struct for V1alpha1ResourceNode

func NewV1alpha1ResourceNode ¶

func NewV1alpha1ResourceNode() *V1alpha1ResourceNode

NewV1alpha1ResourceNode instantiates a new V1alpha1ResourceNode 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 NewV1alpha1ResourceNodeWithDefaults ¶

func NewV1alpha1ResourceNodeWithDefaults() *V1alpha1ResourceNode

NewV1alpha1ResourceNodeWithDefaults instantiates a new V1alpha1ResourceNode 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 (*V1alpha1ResourceNode) GetCreatedAt ¶

func (o *V1alpha1ResourceNode) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*V1alpha1ResourceNode) GetCreatedAtOk ¶

func (o *V1alpha1ResourceNode) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceNode) GetHealth ¶

GetHealth returns the Health field value if set, zero value otherwise.

func (*V1alpha1ResourceNode) GetHealthOk ¶

func (o *V1alpha1ResourceNode) GetHealthOk() (*V1alpha1HealthStatus, bool)

GetHealthOk returns a tuple with the Health field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceNode) GetImages ¶

func (o *V1alpha1ResourceNode) GetImages() []string

GetImages returns the Images field value if set, zero value otherwise.

func (*V1alpha1ResourceNode) GetImagesOk ¶

func (o *V1alpha1ResourceNode) GetImagesOk() ([]string, bool)

GetImagesOk returns a tuple with the Images field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceNode) GetInfo ¶

func (o *V1alpha1ResourceNode) GetInfo() []V1alpha1InfoItem

GetInfo returns the Info field value if set, zero value otherwise.

func (*V1alpha1ResourceNode) GetInfoOk ¶

func (o *V1alpha1ResourceNode) GetInfoOk() ([]V1alpha1InfoItem, bool)

GetInfoOk returns a tuple with the Info field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceNode) GetNetworkingInfo ¶

GetNetworkingInfo returns the NetworkingInfo field value if set, zero value otherwise.

func (*V1alpha1ResourceNode) GetNetworkingInfoOk ¶

func (o *V1alpha1ResourceNode) GetNetworkingInfoOk() (*V1alpha1ResourceNetworkingInfo, bool)

GetNetworkingInfoOk returns a tuple with the NetworkingInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceNode) GetParentRefs ¶

func (o *V1alpha1ResourceNode) GetParentRefs() []V1alpha1ResourceRef

GetParentRefs returns the ParentRefs field value if set, zero value otherwise.

func (*V1alpha1ResourceNode) GetParentRefsOk ¶

func (o *V1alpha1ResourceNode) GetParentRefsOk() ([]V1alpha1ResourceRef, bool)

GetParentRefsOk returns a tuple with the ParentRefs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceNode) GetResourceRef ¶

func (o *V1alpha1ResourceNode) GetResourceRef() V1alpha1ResourceRef

GetResourceRef returns the ResourceRef field value if set, zero value otherwise.

func (*V1alpha1ResourceNode) GetResourceRefOk ¶

func (o *V1alpha1ResourceNode) GetResourceRefOk() (*V1alpha1ResourceRef, bool)

GetResourceRefOk returns a tuple with the ResourceRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceNode) GetResourceVersion ¶

func (o *V1alpha1ResourceNode) GetResourceVersion() string

GetResourceVersion returns the ResourceVersion field value if set, zero value otherwise.

func (*V1alpha1ResourceNode) GetResourceVersionOk ¶

func (o *V1alpha1ResourceNode) GetResourceVersionOk() (*string, bool)

GetResourceVersionOk returns a tuple with the ResourceVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceNode) HasCreatedAt ¶

func (o *V1alpha1ResourceNode) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*V1alpha1ResourceNode) HasHealth ¶

func (o *V1alpha1ResourceNode) HasHealth() bool

HasHealth returns a boolean if a field has been set.

func (*V1alpha1ResourceNode) HasImages ¶

func (o *V1alpha1ResourceNode) HasImages() bool

HasImages returns a boolean if a field has been set.

func (*V1alpha1ResourceNode) HasInfo ¶

func (o *V1alpha1ResourceNode) HasInfo() bool

HasInfo returns a boolean if a field has been set.

func (*V1alpha1ResourceNode) HasNetworkingInfo ¶

func (o *V1alpha1ResourceNode) HasNetworkingInfo() bool

HasNetworkingInfo returns a boolean if a field has been set.

func (*V1alpha1ResourceNode) HasParentRefs ¶

func (o *V1alpha1ResourceNode) HasParentRefs() bool

HasParentRefs returns a boolean if a field has been set.

func (*V1alpha1ResourceNode) HasResourceRef ¶

func (o *V1alpha1ResourceNode) HasResourceRef() bool

HasResourceRef returns a boolean if a field has been set.

func (*V1alpha1ResourceNode) HasResourceVersion ¶

func (o *V1alpha1ResourceNode) HasResourceVersion() bool

HasResourceVersion returns a boolean if a field has been set.

func (V1alpha1ResourceNode) MarshalJSON ¶

func (o V1alpha1ResourceNode) MarshalJSON() ([]byte, error)

func (*V1alpha1ResourceNode) SetCreatedAt ¶

func (o *V1alpha1ResourceNode) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.

func (*V1alpha1ResourceNode) SetHealth ¶

SetHealth gets a reference to the given V1alpha1HealthStatus and assigns it to the Health field.

func (*V1alpha1ResourceNode) SetImages ¶

func (o *V1alpha1ResourceNode) SetImages(v []string)

SetImages gets a reference to the given []string and assigns it to the Images field.

func (*V1alpha1ResourceNode) SetInfo ¶

func (o *V1alpha1ResourceNode) SetInfo(v []V1alpha1InfoItem)

SetInfo gets a reference to the given []V1alpha1InfoItem and assigns it to the Info field.

func (*V1alpha1ResourceNode) SetNetworkingInfo ¶

func (o *V1alpha1ResourceNode) SetNetworkingInfo(v V1alpha1ResourceNetworkingInfo)

SetNetworkingInfo gets a reference to the given V1alpha1ResourceNetworkingInfo and assigns it to the NetworkingInfo field.

func (*V1alpha1ResourceNode) SetParentRefs ¶

func (o *V1alpha1ResourceNode) SetParentRefs(v []V1alpha1ResourceRef)

SetParentRefs gets a reference to the given []V1alpha1ResourceRef and assigns it to the ParentRefs field.

func (*V1alpha1ResourceNode) SetResourceRef ¶

func (o *V1alpha1ResourceNode) SetResourceRef(v V1alpha1ResourceRef)

SetResourceRef gets a reference to the given V1alpha1ResourceRef and assigns it to the ResourceRef field.

func (*V1alpha1ResourceNode) SetResourceVersion ¶

func (o *V1alpha1ResourceNode) SetResourceVersion(v string)

SetResourceVersion gets a reference to the given string and assigns it to the ResourceVersion field.

func (V1alpha1ResourceNode) ToMap ¶

func (o V1alpha1ResourceNode) ToMap() (map[string]interface{}, error)

type V1alpha1ResourceOverride ¶

type V1alpha1ResourceOverride struct {
	Actions           *string                     `json:"actions,omitempty"`
	HealthLua         *string                     `json:"healthLua,omitempty"`
	IgnoreDifferences *V1alpha1OverrideIgnoreDiff `json:"ignoreDifferences,omitempty"`
	KnownTypeFields   []V1alpha1KnownTypeField    `json:"knownTypeFields,omitempty"`
	UseOpenLibs       *bool                       `json:"useOpenLibs,omitempty"`
}

V1alpha1ResourceOverride struct for V1alpha1ResourceOverride

func NewV1alpha1ResourceOverride ¶

func NewV1alpha1ResourceOverride() *V1alpha1ResourceOverride

NewV1alpha1ResourceOverride instantiates a new V1alpha1ResourceOverride 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 NewV1alpha1ResourceOverrideWithDefaults ¶

func NewV1alpha1ResourceOverrideWithDefaults() *V1alpha1ResourceOverride

NewV1alpha1ResourceOverrideWithDefaults instantiates a new V1alpha1ResourceOverride 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 (*V1alpha1ResourceOverride) GetActions ¶

func (o *V1alpha1ResourceOverride) GetActions() string

GetActions returns the Actions field value if set, zero value otherwise.

func (*V1alpha1ResourceOverride) GetActionsOk ¶

func (o *V1alpha1ResourceOverride) GetActionsOk() (*string, bool)

GetActionsOk returns a tuple with the Actions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceOverride) GetHealthLua ¶

func (o *V1alpha1ResourceOverride) GetHealthLua() string

GetHealthLua returns the HealthLua field value if set, zero value otherwise.

func (*V1alpha1ResourceOverride) GetHealthLuaOk ¶

func (o *V1alpha1ResourceOverride) GetHealthLuaOk() (*string, bool)

GetHealthLuaOk returns a tuple with the HealthLua field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceOverride) GetIgnoreDifferences ¶

func (o *V1alpha1ResourceOverride) GetIgnoreDifferences() V1alpha1OverrideIgnoreDiff

GetIgnoreDifferences returns the IgnoreDifferences field value if set, zero value otherwise.

func (*V1alpha1ResourceOverride) GetIgnoreDifferencesOk ¶

func (o *V1alpha1ResourceOverride) GetIgnoreDifferencesOk() (*V1alpha1OverrideIgnoreDiff, bool)

GetIgnoreDifferencesOk returns a tuple with the IgnoreDifferences field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceOverride) GetKnownTypeFields ¶

func (o *V1alpha1ResourceOverride) GetKnownTypeFields() []V1alpha1KnownTypeField

GetKnownTypeFields returns the KnownTypeFields field value if set, zero value otherwise.

func (*V1alpha1ResourceOverride) GetKnownTypeFieldsOk ¶

func (o *V1alpha1ResourceOverride) GetKnownTypeFieldsOk() ([]V1alpha1KnownTypeField, bool)

GetKnownTypeFieldsOk returns a tuple with the KnownTypeFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceOverride) GetUseOpenLibs ¶

func (o *V1alpha1ResourceOverride) GetUseOpenLibs() bool

GetUseOpenLibs returns the UseOpenLibs field value if set, zero value otherwise.

func (*V1alpha1ResourceOverride) GetUseOpenLibsOk ¶

func (o *V1alpha1ResourceOverride) GetUseOpenLibsOk() (*bool, bool)

GetUseOpenLibsOk returns a tuple with the UseOpenLibs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceOverride) HasActions ¶

func (o *V1alpha1ResourceOverride) HasActions() bool

HasActions returns a boolean if a field has been set.

func (*V1alpha1ResourceOverride) HasHealthLua ¶

func (o *V1alpha1ResourceOverride) HasHealthLua() bool

HasHealthLua returns a boolean if a field has been set.

func (*V1alpha1ResourceOverride) HasIgnoreDifferences ¶

func (o *V1alpha1ResourceOverride) HasIgnoreDifferences() bool

HasIgnoreDifferences returns a boolean if a field has been set.

func (*V1alpha1ResourceOverride) HasKnownTypeFields ¶

func (o *V1alpha1ResourceOverride) HasKnownTypeFields() bool

HasKnownTypeFields returns a boolean if a field has been set.

func (*V1alpha1ResourceOverride) HasUseOpenLibs ¶

func (o *V1alpha1ResourceOverride) HasUseOpenLibs() bool

HasUseOpenLibs returns a boolean if a field has been set.

func (V1alpha1ResourceOverride) MarshalJSON ¶

func (o V1alpha1ResourceOverride) MarshalJSON() ([]byte, error)

func (*V1alpha1ResourceOverride) SetActions ¶

func (o *V1alpha1ResourceOverride) SetActions(v string)

SetActions gets a reference to the given string and assigns it to the Actions field.

func (*V1alpha1ResourceOverride) SetHealthLua ¶

func (o *V1alpha1ResourceOverride) SetHealthLua(v string)

SetHealthLua gets a reference to the given string and assigns it to the HealthLua field.

func (*V1alpha1ResourceOverride) SetIgnoreDifferences ¶

func (o *V1alpha1ResourceOverride) SetIgnoreDifferences(v V1alpha1OverrideIgnoreDiff)

SetIgnoreDifferences gets a reference to the given V1alpha1OverrideIgnoreDiff and assigns it to the IgnoreDifferences field.

func (*V1alpha1ResourceOverride) SetKnownTypeFields ¶

func (o *V1alpha1ResourceOverride) SetKnownTypeFields(v []V1alpha1KnownTypeField)

SetKnownTypeFields gets a reference to the given []V1alpha1KnownTypeField and assigns it to the KnownTypeFields field.

func (*V1alpha1ResourceOverride) SetUseOpenLibs ¶

func (o *V1alpha1ResourceOverride) SetUseOpenLibs(v bool)

SetUseOpenLibs gets a reference to the given bool and assigns it to the UseOpenLibs field.

func (V1alpha1ResourceOverride) ToMap ¶

func (o V1alpha1ResourceOverride) ToMap() (map[string]interface{}, error)

type V1alpha1ResourceRef ¶

type V1alpha1ResourceRef struct {
	Group     *string `json:"group,omitempty"`
	Kind      *string `json:"kind,omitempty"`
	Name      *string `json:"name,omitempty"`
	Namespace *string `json:"namespace,omitempty"`
	Uid       *string `json:"uid,omitempty"`
	Version   *string `json:"version,omitempty"`
}

V1alpha1ResourceRef struct for V1alpha1ResourceRef

func NewV1alpha1ResourceRef ¶

func NewV1alpha1ResourceRef() *V1alpha1ResourceRef

NewV1alpha1ResourceRef instantiates a new V1alpha1ResourceRef 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 NewV1alpha1ResourceRefWithDefaults ¶

func NewV1alpha1ResourceRefWithDefaults() *V1alpha1ResourceRef

NewV1alpha1ResourceRefWithDefaults instantiates a new V1alpha1ResourceRef 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 (*V1alpha1ResourceRef) GetGroup ¶

func (o *V1alpha1ResourceRef) GetGroup() string

GetGroup returns the Group field value if set, zero value otherwise.

func (*V1alpha1ResourceRef) GetGroupOk ¶

func (o *V1alpha1ResourceRef) 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 (*V1alpha1ResourceRef) GetKind ¶

func (o *V1alpha1ResourceRef) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*V1alpha1ResourceRef) GetKindOk ¶

func (o *V1alpha1ResourceRef) 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 (*V1alpha1ResourceRef) GetName ¶

func (o *V1alpha1ResourceRef) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1ResourceRef) GetNameOk ¶

func (o *V1alpha1ResourceRef) 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 (*V1alpha1ResourceRef) GetNamespace ¶

func (o *V1alpha1ResourceRef) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*V1alpha1ResourceRef) GetNamespaceOk ¶

func (o *V1alpha1ResourceRef) 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 (*V1alpha1ResourceRef) GetUid ¶

func (o *V1alpha1ResourceRef) GetUid() string

GetUid returns the Uid field value if set, zero value otherwise.

func (*V1alpha1ResourceRef) GetUidOk ¶

func (o *V1alpha1ResourceRef) GetUidOk() (*string, bool)

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceRef) GetVersion ¶

func (o *V1alpha1ResourceRef) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*V1alpha1ResourceRef) GetVersionOk ¶

func (o *V1alpha1ResourceRef) 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 (*V1alpha1ResourceRef) HasGroup ¶

func (o *V1alpha1ResourceRef) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (*V1alpha1ResourceRef) HasKind ¶

func (o *V1alpha1ResourceRef) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*V1alpha1ResourceRef) HasName ¶

func (o *V1alpha1ResourceRef) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1alpha1ResourceRef) HasNamespace ¶

func (o *V1alpha1ResourceRef) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*V1alpha1ResourceRef) HasUid ¶

func (o *V1alpha1ResourceRef) HasUid() bool

HasUid returns a boolean if a field has been set.

func (*V1alpha1ResourceRef) HasVersion ¶

func (o *V1alpha1ResourceRef) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (V1alpha1ResourceRef) MarshalJSON ¶

func (o V1alpha1ResourceRef) MarshalJSON() ([]byte, error)

func (*V1alpha1ResourceRef) SetGroup ¶

func (o *V1alpha1ResourceRef) SetGroup(v string)

SetGroup gets a reference to the given string and assigns it to the Group field.

func (*V1alpha1ResourceRef) SetKind ¶

func (o *V1alpha1ResourceRef) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*V1alpha1ResourceRef) SetName ¶

func (o *V1alpha1ResourceRef) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1ResourceRef) SetNamespace ¶

func (o *V1alpha1ResourceRef) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*V1alpha1ResourceRef) SetUid ¶

func (o *V1alpha1ResourceRef) SetUid(v string)

SetUid gets a reference to the given string and assigns it to the Uid field.

func (*V1alpha1ResourceRef) SetVersion ¶

func (o *V1alpha1ResourceRef) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (V1alpha1ResourceRef) ToMap ¶

func (o V1alpha1ResourceRef) ToMap() (map[string]interface{}, error)

type V1alpha1ResourceResult ¶

type V1alpha1ResourceResult struct {
	Group *string `json:"group,omitempty"`
	// HookPhase contains the state of any operation associated with this resource OR hook This can also contain values for non-hook resources.
	HookPhase *string `json:"hookPhase,omitempty"`
	HookType  *string `json:"hookType,omitempty"`
	Kind      *string `json:"kind,omitempty"`
	Message   *string `json:"message,omitempty"`
	Name      *string `json:"name,omitempty"`
	Namespace *string `json:"namespace,omitempty"`
	Status    *string `json:"status,omitempty"`
	SyncPhase *string `json:"syncPhase,omitempty"`
	Version   *string `json:"version,omitempty"`
}

V1alpha1ResourceResult struct for V1alpha1ResourceResult

func NewV1alpha1ResourceResult ¶

func NewV1alpha1ResourceResult() *V1alpha1ResourceResult

NewV1alpha1ResourceResult instantiates a new V1alpha1ResourceResult 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 NewV1alpha1ResourceResultWithDefaults ¶

func NewV1alpha1ResourceResultWithDefaults() *V1alpha1ResourceResult

NewV1alpha1ResourceResultWithDefaults instantiates a new V1alpha1ResourceResult 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 (*V1alpha1ResourceResult) GetGroup ¶

func (o *V1alpha1ResourceResult) GetGroup() string

GetGroup returns the Group field value if set, zero value otherwise.

func (*V1alpha1ResourceResult) GetGroupOk ¶

func (o *V1alpha1ResourceResult) 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 (*V1alpha1ResourceResult) GetHookPhase ¶

func (o *V1alpha1ResourceResult) GetHookPhase() string

GetHookPhase returns the HookPhase field value if set, zero value otherwise.

func (*V1alpha1ResourceResult) GetHookPhaseOk ¶

func (o *V1alpha1ResourceResult) GetHookPhaseOk() (*string, bool)

GetHookPhaseOk returns a tuple with the HookPhase field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceResult) GetHookType ¶

func (o *V1alpha1ResourceResult) GetHookType() string

GetHookType returns the HookType field value if set, zero value otherwise.

func (*V1alpha1ResourceResult) GetHookTypeOk ¶

func (o *V1alpha1ResourceResult) GetHookTypeOk() (*string, bool)

GetHookTypeOk returns a tuple with the HookType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceResult) GetKind ¶

func (o *V1alpha1ResourceResult) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*V1alpha1ResourceResult) GetKindOk ¶

func (o *V1alpha1ResourceResult) 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 (*V1alpha1ResourceResult) GetMessage ¶

func (o *V1alpha1ResourceResult) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*V1alpha1ResourceResult) GetMessageOk ¶

func (o *V1alpha1ResourceResult) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceResult) GetName ¶

func (o *V1alpha1ResourceResult) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1ResourceResult) GetNameOk ¶

func (o *V1alpha1ResourceResult) 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 (*V1alpha1ResourceResult) GetNamespace ¶

func (o *V1alpha1ResourceResult) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*V1alpha1ResourceResult) GetNamespaceOk ¶

func (o *V1alpha1ResourceResult) 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 (*V1alpha1ResourceResult) GetStatus ¶

func (o *V1alpha1ResourceResult) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*V1alpha1ResourceResult) GetStatusOk ¶

func (o *V1alpha1ResourceResult) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceResult) GetSyncPhase ¶

func (o *V1alpha1ResourceResult) GetSyncPhase() string

GetSyncPhase returns the SyncPhase field value if set, zero value otherwise.

func (*V1alpha1ResourceResult) GetSyncPhaseOk ¶

func (o *V1alpha1ResourceResult) GetSyncPhaseOk() (*string, bool)

GetSyncPhaseOk returns a tuple with the SyncPhase field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceResult) GetVersion ¶

func (o *V1alpha1ResourceResult) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*V1alpha1ResourceResult) GetVersionOk ¶

func (o *V1alpha1ResourceResult) 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 (*V1alpha1ResourceResult) HasGroup ¶

func (o *V1alpha1ResourceResult) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (*V1alpha1ResourceResult) HasHookPhase ¶

func (o *V1alpha1ResourceResult) HasHookPhase() bool

HasHookPhase returns a boolean if a field has been set.

func (*V1alpha1ResourceResult) HasHookType ¶

func (o *V1alpha1ResourceResult) HasHookType() bool

HasHookType returns a boolean if a field has been set.

func (*V1alpha1ResourceResult) HasKind ¶

func (o *V1alpha1ResourceResult) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*V1alpha1ResourceResult) HasMessage ¶

func (o *V1alpha1ResourceResult) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*V1alpha1ResourceResult) HasName ¶

func (o *V1alpha1ResourceResult) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1alpha1ResourceResult) HasNamespace ¶

func (o *V1alpha1ResourceResult) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*V1alpha1ResourceResult) HasStatus ¶

func (o *V1alpha1ResourceResult) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*V1alpha1ResourceResult) HasSyncPhase ¶

func (o *V1alpha1ResourceResult) HasSyncPhase() bool

HasSyncPhase returns a boolean if a field has been set.

func (*V1alpha1ResourceResult) HasVersion ¶

func (o *V1alpha1ResourceResult) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (V1alpha1ResourceResult) MarshalJSON ¶

func (o V1alpha1ResourceResult) MarshalJSON() ([]byte, error)

func (*V1alpha1ResourceResult) SetGroup ¶

func (o *V1alpha1ResourceResult) SetGroup(v string)

SetGroup gets a reference to the given string and assigns it to the Group field.

func (*V1alpha1ResourceResult) SetHookPhase ¶

func (o *V1alpha1ResourceResult) SetHookPhase(v string)

SetHookPhase gets a reference to the given string and assigns it to the HookPhase field.

func (*V1alpha1ResourceResult) SetHookType ¶

func (o *V1alpha1ResourceResult) SetHookType(v string)

SetHookType gets a reference to the given string and assigns it to the HookType field.

func (*V1alpha1ResourceResult) SetKind ¶

func (o *V1alpha1ResourceResult) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*V1alpha1ResourceResult) SetMessage ¶

func (o *V1alpha1ResourceResult) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*V1alpha1ResourceResult) SetName ¶

func (o *V1alpha1ResourceResult) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1ResourceResult) SetNamespace ¶

func (o *V1alpha1ResourceResult) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*V1alpha1ResourceResult) SetStatus ¶

func (o *V1alpha1ResourceResult) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*V1alpha1ResourceResult) SetSyncPhase ¶

func (o *V1alpha1ResourceResult) SetSyncPhase(v string)

SetSyncPhase gets a reference to the given string and assigns it to the SyncPhase field.

func (*V1alpha1ResourceResult) SetVersion ¶

func (o *V1alpha1ResourceResult) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (V1alpha1ResourceResult) ToMap ¶

func (o V1alpha1ResourceResult) ToMap() (map[string]interface{}, error)

type V1alpha1ResourceStatus ¶

type V1alpha1ResourceStatus struct {
	Group           *string               `json:"group,omitempty"`
	Health          *V1alpha1HealthStatus `json:"health,omitempty"`
	Hook            *bool                 `json:"hook,omitempty"`
	Kind            *string               `json:"kind,omitempty"`
	Name            *string               `json:"name,omitempty"`
	Namespace       *string               `json:"namespace,omitempty"`
	RequiresPruning *bool                 `json:"requiresPruning,omitempty"`
	Status          *string               `json:"status,omitempty"`
	SyncWave        *string               `json:"syncWave,omitempty"`
	Version         *string               `json:"version,omitempty"`
}

V1alpha1ResourceStatus struct for V1alpha1ResourceStatus

func NewV1alpha1ResourceStatus ¶

func NewV1alpha1ResourceStatus() *V1alpha1ResourceStatus

NewV1alpha1ResourceStatus instantiates a new V1alpha1ResourceStatus 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 NewV1alpha1ResourceStatusWithDefaults ¶

func NewV1alpha1ResourceStatusWithDefaults() *V1alpha1ResourceStatus

NewV1alpha1ResourceStatusWithDefaults instantiates a new V1alpha1ResourceStatus 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 (*V1alpha1ResourceStatus) GetGroup ¶

func (o *V1alpha1ResourceStatus) GetGroup() string

GetGroup returns the Group field value if set, zero value otherwise.

func (*V1alpha1ResourceStatus) GetGroupOk ¶

func (o *V1alpha1ResourceStatus) 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 (*V1alpha1ResourceStatus) GetHealth ¶

GetHealth returns the Health field value if set, zero value otherwise.

func (*V1alpha1ResourceStatus) GetHealthOk ¶

func (o *V1alpha1ResourceStatus) GetHealthOk() (*V1alpha1HealthStatus, bool)

GetHealthOk returns a tuple with the Health field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceStatus) GetHook ¶

func (o *V1alpha1ResourceStatus) GetHook() bool

GetHook returns the Hook field value if set, zero value otherwise.

func (*V1alpha1ResourceStatus) GetHookOk ¶

func (o *V1alpha1ResourceStatus) GetHookOk() (*bool, bool)

GetHookOk returns a tuple with the Hook field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceStatus) GetKind ¶

func (o *V1alpha1ResourceStatus) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*V1alpha1ResourceStatus) GetKindOk ¶

func (o *V1alpha1ResourceStatus) 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 (*V1alpha1ResourceStatus) GetName ¶

func (o *V1alpha1ResourceStatus) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1ResourceStatus) GetNameOk ¶

func (o *V1alpha1ResourceStatus) 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 (*V1alpha1ResourceStatus) GetNamespace ¶

func (o *V1alpha1ResourceStatus) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*V1alpha1ResourceStatus) GetNamespaceOk ¶

func (o *V1alpha1ResourceStatus) 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 (*V1alpha1ResourceStatus) GetRequiresPruning ¶

func (o *V1alpha1ResourceStatus) GetRequiresPruning() bool

GetRequiresPruning returns the RequiresPruning field value if set, zero value otherwise.

func (*V1alpha1ResourceStatus) GetRequiresPruningOk ¶

func (o *V1alpha1ResourceStatus) GetRequiresPruningOk() (*bool, bool)

GetRequiresPruningOk returns a tuple with the RequiresPruning field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceStatus) GetStatus ¶

func (o *V1alpha1ResourceStatus) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*V1alpha1ResourceStatus) GetStatusOk ¶

func (o *V1alpha1ResourceStatus) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceStatus) GetSyncWave ¶

func (o *V1alpha1ResourceStatus) GetSyncWave() string

GetSyncWave returns the SyncWave field value if set, zero value otherwise.

func (*V1alpha1ResourceStatus) GetSyncWaveOk ¶

func (o *V1alpha1ResourceStatus) GetSyncWaveOk() (*string, bool)

GetSyncWaveOk returns a tuple with the SyncWave field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1ResourceStatus) GetVersion ¶

func (o *V1alpha1ResourceStatus) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*V1alpha1ResourceStatus) GetVersionOk ¶

func (o *V1alpha1ResourceStatus) 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 (*V1alpha1ResourceStatus) HasGroup ¶

func (o *V1alpha1ResourceStatus) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (*V1alpha1ResourceStatus) HasHealth ¶

func (o *V1alpha1ResourceStatus) HasHealth() bool

HasHealth returns a boolean if a field has been set.

func (*V1alpha1ResourceStatus) HasHook ¶

func (o *V1alpha1ResourceStatus) HasHook() bool

HasHook returns a boolean if a field has been set.

func (*V1alpha1ResourceStatus) HasKind ¶

func (o *V1alpha1ResourceStatus) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*V1alpha1ResourceStatus) HasName ¶

func (o *V1alpha1ResourceStatus) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1alpha1ResourceStatus) HasNamespace ¶

func (o *V1alpha1ResourceStatus) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*V1alpha1ResourceStatus) HasRequiresPruning ¶

func (o *V1alpha1ResourceStatus) HasRequiresPruning() bool

HasRequiresPruning returns a boolean if a field has been set.

func (*V1alpha1ResourceStatus) HasStatus ¶

func (o *V1alpha1ResourceStatus) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*V1alpha1ResourceStatus) HasSyncWave ¶

func (o *V1alpha1ResourceStatus) HasSyncWave() bool

HasSyncWave returns a boolean if a field has been set.

func (*V1alpha1ResourceStatus) HasVersion ¶

func (o *V1alpha1ResourceStatus) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (V1alpha1ResourceStatus) MarshalJSON ¶

func (o V1alpha1ResourceStatus) MarshalJSON() ([]byte, error)

func (*V1alpha1ResourceStatus) SetGroup ¶

func (o *V1alpha1ResourceStatus) SetGroup(v string)

SetGroup gets a reference to the given string and assigns it to the Group field.

func (*V1alpha1ResourceStatus) SetHealth ¶

SetHealth gets a reference to the given V1alpha1HealthStatus and assigns it to the Health field.

func (*V1alpha1ResourceStatus) SetHook ¶

func (o *V1alpha1ResourceStatus) SetHook(v bool)

SetHook gets a reference to the given bool and assigns it to the Hook field.

func (*V1alpha1ResourceStatus) SetKind ¶

func (o *V1alpha1ResourceStatus) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*V1alpha1ResourceStatus) SetName ¶

func (o *V1alpha1ResourceStatus) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1ResourceStatus) SetNamespace ¶

func (o *V1alpha1ResourceStatus) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*V1alpha1ResourceStatus) SetRequiresPruning ¶

func (o *V1alpha1ResourceStatus) SetRequiresPruning(v bool)

SetRequiresPruning gets a reference to the given bool and assigns it to the RequiresPruning field.

func (*V1alpha1ResourceStatus) SetStatus ¶

func (o *V1alpha1ResourceStatus) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*V1alpha1ResourceStatus) SetSyncWave ¶

func (o *V1alpha1ResourceStatus) SetSyncWave(v string)

SetSyncWave gets a reference to the given string and assigns it to the SyncWave field.

func (*V1alpha1ResourceStatus) SetVersion ¶

func (o *V1alpha1ResourceStatus) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (V1alpha1ResourceStatus) ToMap ¶

func (o V1alpha1ResourceStatus) ToMap() (map[string]interface{}, error)

type V1alpha1RetryStrategy ¶

type V1alpha1RetryStrategy struct {
	Backoff *V1alpha1Backoff `json:"backoff,omitempty"`
	// Limit is the maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
	Limit *string `json:"limit,omitempty"`
}

V1alpha1RetryStrategy struct for V1alpha1RetryStrategy

func NewV1alpha1RetryStrategy ¶

func NewV1alpha1RetryStrategy() *V1alpha1RetryStrategy

NewV1alpha1RetryStrategy instantiates a new V1alpha1RetryStrategy 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 NewV1alpha1RetryStrategyWithDefaults ¶

func NewV1alpha1RetryStrategyWithDefaults() *V1alpha1RetryStrategy

NewV1alpha1RetryStrategyWithDefaults instantiates a new V1alpha1RetryStrategy 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 (*V1alpha1RetryStrategy) GetBackoff ¶

func (o *V1alpha1RetryStrategy) GetBackoff() V1alpha1Backoff

GetBackoff returns the Backoff field value if set, zero value otherwise.

func (*V1alpha1RetryStrategy) GetBackoffOk ¶

func (o *V1alpha1RetryStrategy) GetBackoffOk() (*V1alpha1Backoff, bool)

GetBackoffOk returns a tuple with the Backoff field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RetryStrategy) GetLimit ¶

func (o *V1alpha1RetryStrategy) GetLimit() string

GetLimit returns the Limit field value if set, zero value otherwise.

func (*V1alpha1RetryStrategy) GetLimitOk ¶

func (o *V1alpha1RetryStrategy) GetLimitOk() (*string, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RetryStrategy) HasBackoff ¶

func (o *V1alpha1RetryStrategy) HasBackoff() bool

HasBackoff returns a boolean if a field has been set.

func (*V1alpha1RetryStrategy) HasLimit ¶

func (o *V1alpha1RetryStrategy) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (V1alpha1RetryStrategy) MarshalJSON ¶

func (o V1alpha1RetryStrategy) MarshalJSON() ([]byte, error)

func (*V1alpha1RetryStrategy) SetBackoff ¶

func (o *V1alpha1RetryStrategy) SetBackoff(v V1alpha1Backoff)

SetBackoff gets a reference to the given V1alpha1Backoff and assigns it to the Backoff field.

func (*V1alpha1RetryStrategy) SetLimit ¶

func (o *V1alpha1RetryStrategy) SetLimit(v string)

SetLimit gets a reference to the given string and assigns it to the Limit field.

func (V1alpha1RetryStrategy) ToMap ¶

func (o V1alpha1RetryStrategy) ToMap() (map[string]interface{}, error)

type V1alpha1RevisionHistory ¶

type V1alpha1RevisionHistory struct {
	DeployStartedAt *string                    `json:"deployStartedAt,omitempty"`
	DeployedAt      *string                    `json:"deployedAt,omitempty"`
	Id              *string                    `json:"id,omitempty"`
	Revision        *string                    `json:"revision,omitempty"`
	Source          *V1alpha1ApplicationSource `json:"source,omitempty"`
}

V1alpha1RevisionHistory struct for V1alpha1RevisionHistory

func NewV1alpha1RevisionHistory ¶

func NewV1alpha1RevisionHistory() *V1alpha1RevisionHistory

NewV1alpha1RevisionHistory instantiates a new V1alpha1RevisionHistory 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 NewV1alpha1RevisionHistoryWithDefaults ¶

func NewV1alpha1RevisionHistoryWithDefaults() *V1alpha1RevisionHistory

NewV1alpha1RevisionHistoryWithDefaults instantiates a new V1alpha1RevisionHistory 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 (*V1alpha1RevisionHistory) GetDeployStartedAt ¶

func (o *V1alpha1RevisionHistory) GetDeployStartedAt() string

GetDeployStartedAt returns the DeployStartedAt field value if set, zero value otherwise.

func (*V1alpha1RevisionHistory) GetDeployStartedAtOk ¶

func (o *V1alpha1RevisionHistory) GetDeployStartedAtOk() (*string, bool)

GetDeployStartedAtOk returns a tuple with the DeployStartedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RevisionHistory) GetDeployedAt ¶

func (o *V1alpha1RevisionHistory) GetDeployedAt() string

GetDeployedAt returns the DeployedAt field value if set, zero value otherwise.

func (*V1alpha1RevisionHistory) GetDeployedAtOk ¶

func (o *V1alpha1RevisionHistory) GetDeployedAtOk() (*string, 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 (*V1alpha1RevisionHistory) GetId ¶

func (o *V1alpha1RevisionHistory) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*V1alpha1RevisionHistory) GetIdOk ¶

func (o *V1alpha1RevisionHistory) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RevisionHistory) GetRevision ¶

func (o *V1alpha1RevisionHistory) GetRevision() string

GetRevision returns the Revision field value if set, zero value otherwise.

func (*V1alpha1RevisionHistory) GetRevisionOk ¶

func (o *V1alpha1RevisionHistory) GetRevisionOk() (*string, bool)

GetRevisionOk returns a tuple with the Revision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RevisionHistory) GetSource ¶

GetSource returns the Source field value if set, zero value otherwise.

func (*V1alpha1RevisionHistory) GetSourceOk ¶

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RevisionHistory) HasDeployStartedAt ¶

func (o *V1alpha1RevisionHistory) HasDeployStartedAt() bool

HasDeployStartedAt returns a boolean if a field has been set.

func (*V1alpha1RevisionHistory) HasDeployedAt ¶

func (o *V1alpha1RevisionHistory) HasDeployedAt() bool

HasDeployedAt returns a boolean if a field has been set.

func (*V1alpha1RevisionHistory) HasId ¶

func (o *V1alpha1RevisionHistory) HasId() bool

HasId returns a boolean if a field has been set.

func (*V1alpha1RevisionHistory) HasRevision ¶

func (o *V1alpha1RevisionHistory) HasRevision() bool

HasRevision returns a boolean if a field has been set.

func (*V1alpha1RevisionHistory) HasSource ¶

func (o *V1alpha1RevisionHistory) HasSource() bool

HasSource returns a boolean if a field has been set.

func (V1alpha1RevisionHistory) MarshalJSON ¶

func (o V1alpha1RevisionHistory) MarshalJSON() ([]byte, error)

func (*V1alpha1RevisionHistory) SetDeployStartedAt ¶

func (o *V1alpha1RevisionHistory) SetDeployStartedAt(v string)

SetDeployStartedAt gets a reference to the given string and assigns it to the DeployStartedAt field.

func (*V1alpha1RevisionHistory) SetDeployedAt ¶

func (o *V1alpha1RevisionHistory) SetDeployedAt(v string)

SetDeployedAt gets a reference to the given string and assigns it to the DeployedAt field.

func (*V1alpha1RevisionHistory) SetId ¶

func (o *V1alpha1RevisionHistory) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*V1alpha1RevisionHistory) SetRevision ¶

func (o *V1alpha1RevisionHistory) SetRevision(v string)

SetRevision gets a reference to the given string and assigns it to the Revision field.

func (*V1alpha1RevisionHistory) SetSource ¶

SetSource gets a reference to the given V1alpha1ApplicationSource and assigns it to the Source field.

func (V1alpha1RevisionHistory) ToMap ¶

func (o V1alpha1RevisionHistory) ToMap() (map[string]interface{}, error)

type V1alpha1RevisionMetadata ¶

type V1alpha1RevisionMetadata struct {
	Author  *string `json:"author,omitempty"`
	Date    *string `json:"date,omitempty"`
	Message *string `json:"message,omitempty"`
	// SignatureInfo contains a hint on the signer if the revision was signed with GPG, and signature verification is enabled.
	SignatureInfo *string  `json:"signatureInfo,omitempty"`
	Tags          []string `json:"tags,omitempty"`
}

V1alpha1RevisionMetadata struct for V1alpha1RevisionMetadata

func NewV1alpha1RevisionMetadata ¶

func NewV1alpha1RevisionMetadata() *V1alpha1RevisionMetadata

NewV1alpha1RevisionMetadata instantiates a new V1alpha1RevisionMetadata 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 NewV1alpha1RevisionMetadataWithDefaults ¶

func NewV1alpha1RevisionMetadataWithDefaults() *V1alpha1RevisionMetadata

NewV1alpha1RevisionMetadataWithDefaults instantiates a new V1alpha1RevisionMetadata 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 (*V1alpha1RevisionMetadata) GetAuthor ¶

func (o *V1alpha1RevisionMetadata) GetAuthor() string

GetAuthor returns the Author field value if set, zero value otherwise.

func (*V1alpha1RevisionMetadata) GetAuthorOk ¶

func (o *V1alpha1RevisionMetadata) GetAuthorOk() (*string, bool)

GetAuthorOk returns a tuple with the Author field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RevisionMetadata) GetDate ¶

func (o *V1alpha1RevisionMetadata) GetDate() string

GetDate returns the Date field value if set, zero value otherwise.

func (*V1alpha1RevisionMetadata) GetDateOk ¶

func (o *V1alpha1RevisionMetadata) GetDateOk() (*string, bool)

GetDateOk returns a tuple with the Date field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RevisionMetadata) GetMessage ¶

func (o *V1alpha1RevisionMetadata) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*V1alpha1RevisionMetadata) GetMessageOk ¶

func (o *V1alpha1RevisionMetadata) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RevisionMetadata) GetSignatureInfo ¶

func (o *V1alpha1RevisionMetadata) GetSignatureInfo() string

GetSignatureInfo returns the SignatureInfo field value if set, zero value otherwise.

func (*V1alpha1RevisionMetadata) GetSignatureInfoOk ¶

func (o *V1alpha1RevisionMetadata) GetSignatureInfoOk() (*string, bool)

GetSignatureInfoOk returns a tuple with the SignatureInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RevisionMetadata) GetTags ¶

func (o *V1alpha1RevisionMetadata) GetTags() []string

GetTags returns the Tags field value if set, zero value otherwise.

func (*V1alpha1RevisionMetadata) GetTagsOk ¶

func (o *V1alpha1RevisionMetadata) GetTagsOk() ([]string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1RevisionMetadata) HasAuthor ¶

func (o *V1alpha1RevisionMetadata) HasAuthor() bool

HasAuthor returns a boolean if a field has been set.

func (*V1alpha1RevisionMetadata) HasDate ¶

func (o *V1alpha1RevisionMetadata) HasDate() bool

HasDate returns a boolean if a field has been set.

func (*V1alpha1RevisionMetadata) HasMessage ¶

func (o *V1alpha1RevisionMetadata) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*V1alpha1RevisionMetadata) HasSignatureInfo ¶

func (o *V1alpha1RevisionMetadata) HasSignatureInfo() bool

HasSignatureInfo returns a boolean if a field has been set.

func (*V1alpha1RevisionMetadata) HasTags ¶

func (o *V1alpha1RevisionMetadata) HasTags() bool

HasTags returns a boolean if a field has been set.

func (V1alpha1RevisionMetadata) MarshalJSON ¶

func (o V1alpha1RevisionMetadata) MarshalJSON() ([]byte, error)

func (*V1alpha1RevisionMetadata) SetAuthor ¶

func (o *V1alpha1RevisionMetadata) SetAuthor(v string)

SetAuthor gets a reference to the given string and assigns it to the Author field.

func (*V1alpha1RevisionMetadata) SetDate ¶

func (o *V1alpha1RevisionMetadata) SetDate(v string)

SetDate gets a reference to the given string and assigns it to the Date field.

func (*V1alpha1RevisionMetadata) SetMessage ¶

func (o *V1alpha1RevisionMetadata) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*V1alpha1RevisionMetadata) SetSignatureInfo ¶

func (o *V1alpha1RevisionMetadata) SetSignatureInfo(v string)

SetSignatureInfo gets a reference to the given string and assigns it to the SignatureInfo field.

func (*V1alpha1RevisionMetadata) SetTags ¶

func (o *V1alpha1RevisionMetadata) SetTags(v []string)

SetTags gets a reference to the given []string and assigns it to the Tags field.

func (V1alpha1RevisionMetadata) ToMap ¶

func (o V1alpha1RevisionMetadata) ToMap() (map[string]interface{}, error)

type V1alpha1SCMProviderGenerator ¶

type V1alpha1SCMProviderGenerator struct {
	AzureDevOps     *V1alpha1SCMProviderGeneratorAzureDevOps     `json:"azureDevOps,omitempty"`
	Bitbucket       *V1alpha1SCMProviderGeneratorBitbucket       `json:"bitbucket,omitempty"`
	BitbucketServer *V1alpha1SCMProviderGeneratorBitbucketServer `json:"bitbucketServer,omitempty"`
	// Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
	CloneProtocol *string `json:"cloneProtocol,omitempty"`
	// Filters for which repos should be considered.
	Filters []V1alpha1SCMProviderGeneratorFilter `json:"filters,omitempty"`
	Gitea   *V1alpha1SCMProviderGeneratorGitea   `json:"gitea,omitempty"`
	Github  *V1alpha1SCMProviderGeneratorGithub  `json:"github,omitempty"`
	Gitlab  *V1alpha1SCMProviderGeneratorGitlab  `json:"gitlab,omitempty"`
	// Standard parameters.
	RequeueAfterSeconds *string                         `json:"requeueAfterSeconds,omitempty"`
	Template            *V1alpha1ApplicationSetTemplate `json:"template,omitempty"`
}

V1alpha1SCMProviderGenerator SCMProviderGenerator defines a generator that scrapes a SCMaaS API to find candidate repos.

func NewV1alpha1SCMProviderGenerator ¶

func NewV1alpha1SCMProviderGenerator() *V1alpha1SCMProviderGenerator

NewV1alpha1SCMProviderGenerator instantiates a new V1alpha1SCMProviderGenerator 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 NewV1alpha1SCMProviderGeneratorWithDefaults ¶

func NewV1alpha1SCMProviderGeneratorWithDefaults() *V1alpha1SCMProviderGenerator

NewV1alpha1SCMProviderGeneratorWithDefaults instantiates a new V1alpha1SCMProviderGenerator 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 (*V1alpha1SCMProviderGenerator) GetAzureDevOps ¶

GetAzureDevOps returns the AzureDevOps field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGenerator) GetAzureDevOpsOk ¶

GetAzureDevOpsOk returns a tuple with the AzureDevOps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGenerator) GetBitbucket ¶

GetBitbucket returns the Bitbucket field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGenerator) GetBitbucketOk ¶

GetBitbucketOk returns a tuple with the Bitbucket field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGenerator) GetBitbucketServer ¶

GetBitbucketServer returns the BitbucketServer field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGenerator) GetBitbucketServerOk ¶

GetBitbucketServerOk returns a tuple with the BitbucketServer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGenerator) GetCloneProtocol ¶

func (o *V1alpha1SCMProviderGenerator) GetCloneProtocol() string

GetCloneProtocol returns the CloneProtocol field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGenerator) GetCloneProtocolOk ¶

func (o *V1alpha1SCMProviderGenerator) GetCloneProtocolOk() (*string, bool)

GetCloneProtocolOk returns a tuple with the CloneProtocol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGenerator) GetFilters ¶

GetFilters returns the Filters field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGenerator) GetFiltersOk ¶

GetFiltersOk returns a tuple with the Filters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGenerator) GetGitea ¶

GetGitea returns the Gitea field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGenerator) GetGiteaOk ¶

GetGiteaOk returns a tuple with the Gitea field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGenerator) GetGithub ¶

GetGithub returns the Github field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGenerator) GetGithubOk ¶

GetGithubOk returns a tuple with the Github field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGenerator) GetGitlab ¶

GetGitlab returns the Gitlab field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGenerator) GetGitlabOk ¶

GetGitlabOk returns a tuple with the Gitlab field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGenerator) GetRequeueAfterSeconds ¶

func (o *V1alpha1SCMProviderGenerator) GetRequeueAfterSeconds() string

GetRequeueAfterSeconds returns the RequeueAfterSeconds field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGenerator) GetRequeueAfterSecondsOk ¶

func (o *V1alpha1SCMProviderGenerator) GetRequeueAfterSecondsOk() (*string, bool)

GetRequeueAfterSecondsOk returns a tuple with the RequeueAfterSeconds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGenerator) GetTemplate ¶

GetTemplate returns the Template field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGenerator) GetTemplateOk ¶

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGenerator) HasAzureDevOps ¶

func (o *V1alpha1SCMProviderGenerator) HasAzureDevOps() bool

HasAzureDevOps returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGenerator) HasBitbucket ¶

func (o *V1alpha1SCMProviderGenerator) HasBitbucket() bool

HasBitbucket returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGenerator) HasBitbucketServer ¶

func (o *V1alpha1SCMProviderGenerator) HasBitbucketServer() bool

HasBitbucketServer returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGenerator) HasCloneProtocol ¶

func (o *V1alpha1SCMProviderGenerator) HasCloneProtocol() bool

HasCloneProtocol returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGenerator) HasFilters ¶

func (o *V1alpha1SCMProviderGenerator) HasFilters() bool

HasFilters returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGenerator) HasGitea ¶

func (o *V1alpha1SCMProviderGenerator) HasGitea() bool

HasGitea returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGenerator) HasGithub ¶

func (o *V1alpha1SCMProviderGenerator) HasGithub() bool

HasGithub returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGenerator) HasGitlab ¶

func (o *V1alpha1SCMProviderGenerator) HasGitlab() bool

HasGitlab returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGenerator) HasRequeueAfterSeconds ¶

func (o *V1alpha1SCMProviderGenerator) HasRequeueAfterSeconds() bool

HasRequeueAfterSeconds returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGenerator) HasTemplate ¶

func (o *V1alpha1SCMProviderGenerator) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (V1alpha1SCMProviderGenerator) MarshalJSON ¶

func (o V1alpha1SCMProviderGenerator) MarshalJSON() ([]byte, error)

func (*V1alpha1SCMProviderGenerator) SetAzureDevOps ¶

SetAzureDevOps gets a reference to the given V1alpha1SCMProviderGeneratorAzureDevOps and assigns it to the AzureDevOps field.

func (*V1alpha1SCMProviderGenerator) SetBitbucket ¶

SetBitbucket gets a reference to the given V1alpha1SCMProviderGeneratorBitbucket and assigns it to the Bitbucket field.

func (*V1alpha1SCMProviderGenerator) SetBitbucketServer ¶

SetBitbucketServer gets a reference to the given V1alpha1SCMProviderGeneratorBitbucketServer and assigns it to the BitbucketServer field.

func (*V1alpha1SCMProviderGenerator) SetCloneProtocol ¶

func (o *V1alpha1SCMProviderGenerator) SetCloneProtocol(v string)

SetCloneProtocol gets a reference to the given string and assigns it to the CloneProtocol field.

func (*V1alpha1SCMProviderGenerator) SetFilters ¶

SetFilters gets a reference to the given []V1alpha1SCMProviderGeneratorFilter and assigns it to the Filters field.

func (*V1alpha1SCMProviderGenerator) SetGitea ¶

SetGitea gets a reference to the given V1alpha1SCMProviderGeneratorGitea and assigns it to the Gitea field.

func (*V1alpha1SCMProviderGenerator) SetGithub ¶

SetGithub gets a reference to the given V1alpha1SCMProviderGeneratorGithub and assigns it to the Github field.

func (*V1alpha1SCMProviderGenerator) SetGitlab ¶

SetGitlab gets a reference to the given V1alpha1SCMProviderGeneratorGitlab and assigns it to the Gitlab field.

func (*V1alpha1SCMProviderGenerator) SetRequeueAfterSeconds ¶

func (o *V1alpha1SCMProviderGenerator) SetRequeueAfterSeconds(v string)

SetRequeueAfterSeconds gets a reference to the given string and assigns it to the RequeueAfterSeconds field.

func (*V1alpha1SCMProviderGenerator) SetTemplate ¶

SetTemplate gets a reference to the given V1alpha1ApplicationSetTemplate and assigns it to the Template field.

func (V1alpha1SCMProviderGenerator) ToMap ¶

func (o V1alpha1SCMProviderGenerator) ToMap() (map[string]interface{}, error)

type V1alpha1SCMProviderGeneratorAzureDevOps ¶

type V1alpha1SCMProviderGeneratorAzureDevOps struct {
	AccessTokenRef *V1alpha1SecretRef `json:"accessTokenRef,omitempty"`
	// Scan all branches instead of just the default branch.
	AllBranches *bool `json:"allBranches,omitempty"`
	// The URL to Azure DevOps. If blank, use https://dev.azure.com.
	Api *string `json:"api,omitempty"`
	// Azure Devops organization. Required. E.g. \"my-organization\".
	Organization *string `json:"organization,omitempty"`
	// Azure Devops team project. Required. E.g. \"my-team\".
	TeamProject *string `json:"teamProject,omitempty"`
}

V1alpha1SCMProviderGeneratorAzureDevOps SCMProviderGeneratorAzureDevOps defines connection info specific to Azure DevOps.

func NewV1alpha1SCMProviderGeneratorAzureDevOps ¶

func NewV1alpha1SCMProviderGeneratorAzureDevOps() *V1alpha1SCMProviderGeneratorAzureDevOps

NewV1alpha1SCMProviderGeneratorAzureDevOps instantiates a new V1alpha1SCMProviderGeneratorAzureDevOps 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 NewV1alpha1SCMProviderGeneratorAzureDevOpsWithDefaults ¶

func NewV1alpha1SCMProviderGeneratorAzureDevOpsWithDefaults() *V1alpha1SCMProviderGeneratorAzureDevOps

NewV1alpha1SCMProviderGeneratorAzureDevOpsWithDefaults instantiates a new V1alpha1SCMProviderGeneratorAzureDevOps 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 (*V1alpha1SCMProviderGeneratorAzureDevOps) GetAccessTokenRef ¶

GetAccessTokenRef returns the AccessTokenRef field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorAzureDevOps) GetAccessTokenRefOk ¶

func (o *V1alpha1SCMProviderGeneratorAzureDevOps) GetAccessTokenRefOk() (*V1alpha1SecretRef, bool)

GetAccessTokenRefOk returns a tuple with the AccessTokenRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorAzureDevOps) GetAllBranches ¶

func (o *V1alpha1SCMProviderGeneratorAzureDevOps) GetAllBranches() bool

GetAllBranches returns the AllBranches field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorAzureDevOps) GetAllBranchesOk ¶

func (o *V1alpha1SCMProviderGeneratorAzureDevOps) GetAllBranchesOk() (*bool, bool)

GetAllBranchesOk returns a tuple with the AllBranches field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorAzureDevOps) GetApi ¶

GetApi returns the Api field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorAzureDevOps) GetApiOk ¶

GetApiOk returns a tuple with the Api field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorAzureDevOps) GetOrganization ¶

func (o *V1alpha1SCMProviderGeneratorAzureDevOps) GetOrganization() string

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorAzureDevOps) GetOrganizationOk ¶

func (o *V1alpha1SCMProviderGeneratorAzureDevOps) GetOrganizationOk() (*string, bool)

GetOrganizationOk returns a tuple with the Organization field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorAzureDevOps) GetTeamProject ¶

func (o *V1alpha1SCMProviderGeneratorAzureDevOps) GetTeamProject() string

GetTeamProject returns the TeamProject field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorAzureDevOps) GetTeamProjectOk ¶

func (o *V1alpha1SCMProviderGeneratorAzureDevOps) GetTeamProjectOk() (*string, bool)

GetTeamProjectOk returns a tuple with the TeamProject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorAzureDevOps) HasAccessTokenRef ¶

func (o *V1alpha1SCMProviderGeneratorAzureDevOps) HasAccessTokenRef() bool

HasAccessTokenRef returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorAzureDevOps) HasAllBranches ¶

func (o *V1alpha1SCMProviderGeneratorAzureDevOps) HasAllBranches() bool

HasAllBranches returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorAzureDevOps) HasApi ¶

HasApi returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorAzureDevOps) HasOrganization ¶

func (o *V1alpha1SCMProviderGeneratorAzureDevOps) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorAzureDevOps) HasTeamProject ¶

func (o *V1alpha1SCMProviderGeneratorAzureDevOps) HasTeamProject() bool

HasTeamProject returns a boolean if a field has been set.

func (V1alpha1SCMProviderGeneratorAzureDevOps) MarshalJSON ¶

func (o V1alpha1SCMProviderGeneratorAzureDevOps) MarshalJSON() ([]byte, error)

func (*V1alpha1SCMProviderGeneratorAzureDevOps) SetAccessTokenRef ¶

SetAccessTokenRef gets a reference to the given V1alpha1SecretRef and assigns it to the AccessTokenRef field.

func (*V1alpha1SCMProviderGeneratorAzureDevOps) SetAllBranches ¶

func (o *V1alpha1SCMProviderGeneratorAzureDevOps) SetAllBranches(v bool)

SetAllBranches gets a reference to the given bool and assigns it to the AllBranches field.

func (*V1alpha1SCMProviderGeneratorAzureDevOps) SetApi ¶

SetApi gets a reference to the given string and assigns it to the Api field.

func (*V1alpha1SCMProviderGeneratorAzureDevOps) SetOrganization ¶

func (o *V1alpha1SCMProviderGeneratorAzureDevOps) SetOrganization(v string)

SetOrganization gets a reference to the given string and assigns it to the Organization field.

func (*V1alpha1SCMProviderGeneratorAzureDevOps) SetTeamProject ¶

func (o *V1alpha1SCMProviderGeneratorAzureDevOps) SetTeamProject(v string)

SetTeamProject gets a reference to the given string and assigns it to the TeamProject field.

func (V1alpha1SCMProviderGeneratorAzureDevOps) ToMap ¶

func (o V1alpha1SCMProviderGeneratorAzureDevOps) ToMap() (map[string]interface{}, error)

type V1alpha1SCMProviderGeneratorBitbucket ¶

type V1alpha1SCMProviderGeneratorBitbucket struct {
	// Scan all branches instead of just the main branch.
	AllBranches    *bool              `json:"allBranches,omitempty"`
	AppPasswordRef *V1alpha1SecretRef `json:"appPasswordRef,omitempty"`
	// Bitbucket workspace to scan. Required.
	Owner *string `json:"owner,omitempty"`
	User  *string `json:"user,omitempty"`
}

V1alpha1SCMProviderGeneratorBitbucket SCMProviderGeneratorBitbucket defines connection info specific to Bitbucket Cloud (API version 2).

func NewV1alpha1SCMProviderGeneratorBitbucket ¶

func NewV1alpha1SCMProviderGeneratorBitbucket() *V1alpha1SCMProviderGeneratorBitbucket

NewV1alpha1SCMProviderGeneratorBitbucket instantiates a new V1alpha1SCMProviderGeneratorBitbucket 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 NewV1alpha1SCMProviderGeneratorBitbucketWithDefaults ¶

func NewV1alpha1SCMProviderGeneratorBitbucketWithDefaults() *V1alpha1SCMProviderGeneratorBitbucket

NewV1alpha1SCMProviderGeneratorBitbucketWithDefaults instantiates a new V1alpha1SCMProviderGeneratorBitbucket 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 (*V1alpha1SCMProviderGeneratorBitbucket) GetAllBranches ¶

func (o *V1alpha1SCMProviderGeneratorBitbucket) GetAllBranches() bool

GetAllBranches returns the AllBranches field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorBitbucket) GetAllBranchesOk ¶

func (o *V1alpha1SCMProviderGeneratorBitbucket) GetAllBranchesOk() (*bool, bool)

GetAllBranchesOk returns a tuple with the AllBranches field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorBitbucket) GetAppPasswordRef ¶

GetAppPasswordRef returns the AppPasswordRef field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorBitbucket) GetAppPasswordRefOk ¶

func (o *V1alpha1SCMProviderGeneratorBitbucket) GetAppPasswordRefOk() (*V1alpha1SecretRef, bool)

GetAppPasswordRefOk returns a tuple with the AppPasswordRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorBitbucket) GetOwner ¶

GetOwner returns the Owner field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorBitbucket) GetOwnerOk ¶

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorBitbucket) GetUser ¶

GetUser returns the User field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorBitbucket) GetUserOk ¶

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorBitbucket) HasAllBranches ¶

func (o *V1alpha1SCMProviderGeneratorBitbucket) HasAllBranches() bool

HasAllBranches returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorBitbucket) HasAppPasswordRef ¶

func (o *V1alpha1SCMProviderGeneratorBitbucket) HasAppPasswordRef() bool

HasAppPasswordRef returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorBitbucket) HasOwner ¶

HasOwner returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorBitbucket) HasUser ¶

HasUser returns a boolean if a field has been set.

func (V1alpha1SCMProviderGeneratorBitbucket) MarshalJSON ¶

func (o V1alpha1SCMProviderGeneratorBitbucket) MarshalJSON() ([]byte, error)

func (*V1alpha1SCMProviderGeneratorBitbucket) SetAllBranches ¶

func (o *V1alpha1SCMProviderGeneratorBitbucket) SetAllBranches(v bool)

SetAllBranches gets a reference to the given bool and assigns it to the AllBranches field.

func (*V1alpha1SCMProviderGeneratorBitbucket) SetAppPasswordRef ¶

SetAppPasswordRef gets a reference to the given V1alpha1SecretRef and assigns it to the AppPasswordRef field.

func (*V1alpha1SCMProviderGeneratorBitbucket) SetOwner ¶

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*V1alpha1SCMProviderGeneratorBitbucket) SetUser ¶

SetUser gets a reference to the given string and assigns it to the User field.

func (V1alpha1SCMProviderGeneratorBitbucket) ToMap ¶

func (o V1alpha1SCMProviderGeneratorBitbucket) ToMap() (map[string]interface{}, error)

type V1alpha1SCMProviderGeneratorBitbucketServer ¶

type V1alpha1SCMProviderGeneratorBitbucketServer struct {
	// Scan all branches instead of just the default branch.
	AllBranches *bool `json:"allBranches,omitempty"`
	// The Bitbucket Server REST API URL to talk to. Required.
	Api       *string                           `json:"api,omitempty"`
	BasicAuth *V1alpha1BasicAuthBitbucketServer `json:"basicAuth,omitempty"`
	// Project to scan. Required.
	Project *string `json:"project,omitempty"`
}

V1alpha1SCMProviderGeneratorBitbucketServer SCMProviderGeneratorBitbucketServer defines connection info specific to Bitbucket Server.

func NewV1alpha1SCMProviderGeneratorBitbucketServer ¶

func NewV1alpha1SCMProviderGeneratorBitbucketServer() *V1alpha1SCMProviderGeneratorBitbucketServer

NewV1alpha1SCMProviderGeneratorBitbucketServer instantiates a new V1alpha1SCMProviderGeneratorBitbucketServer 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 NewV1alpha1SCMProviderGeneratorBitbucketServerWithDefaults ¶

func NewV1alpha1SCMProviderGeneratorBitbucketServerWithDefaults() *V1alpha1SCMProviderGeneratorBitbucketServer

NewV1alpha1SCMProviderGeneratorBitbucketServerWithDefaults instantiates a new V1alpha1SCMProviderGeneratorBitbucketServer 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 (*V1alpha1SCMProviderGeneratorBitbucketServer) GetAllBranches ¶

GetAllBranches returns the AllBranches field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorBitbucketServer) GetAllBranchesOk ¶

func (o *V1alpha1SCMProviderGeneratorBitbucketServer) GetAllBranchesOk() (*bool, bool)

GetAllBranchesOk returns a tuple with the AllBranches field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorBitbucketServer) GetApi ¶

GetApi returns the Api field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorBitbucketServer) GetApiOk ¶

GetApiOk returns a tuple with the Api field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorBitbucketServer) GetBasicAuth ¶

GetBasicAuth returns the BasicAuth field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorBitbucketServer) GetBasicAuthOk ¶

GetBasicAuthOk returns a tuple with the BasicAuth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorBitbucketServer) GetProject ¶

GetProject returns the Project field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorBitbucketServer) GetProjectOk ¶

GetProjectOk returns a tuple with the Project field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorBitbucketServer) HasAllBranches ¶

HasAllBranches returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorBitbucketServer) HasApi ¶

HasApi returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorBitbucketServer) HasBasicAuth ¶

HasBasicAuth returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorBitbucketServer) HasProject ¶

HasProject returns a boolean if a field has been set.

func (V1alpha1SCMProviderGeneratorBitbucketServer) MarshalJSON ¶

func (*V1alpha1SCMProviderGeneratorBitbucketServer) SetAllBranches ¶

SetAllBranches gets a reference to the given bool and assigns it to the AllBranches field.

func (*V1alpha1SCMProviderGeneratorBitbucketServer) SetApi ¶

SetApi gets a reference to the given string and assigns it to the Api field.

func (*V1alpha1SCMProviderGeneratorBitbucketServer) SetBasicAuth ¶

SetBasicAuth gets a reference to the given V1alpha1BasicAuthBitbucketServer and assigns it to the BasicAuth field.

func (*V1alpha1SCMProviderGeneratorBitbucketServer) SetProject ¶

SetProject gets a reference to the given string and assigns it to the Project field.

func (V1alpha1SCMProviderGeneratorBitbucketServer) ToMap ¶

func (o V1alpha1SCMProviderGeneratorBitbucketServer) ToMap() (map[string]interface{}, error)

type V1alpha1SCMProviderGeneratorFilter ¶

type V1alpha1SCMProviderGeneratorFilter struct {
	// A regex which must match the branch name.
	BranchMatch *string `json:"branchMatch,omitempty"`
	// A regex which must match at least one label.
	LabelMatch *string `json:"labelMatch,omitempty"`
	// An array of paths, all of which must not exist.
	PathsDoNotExist []string `json:"pathsDoNotExist,omitempty"`
	// An array of paths, all of which must exist.
	PathsExist []string `json:"pathsExist,omitempty"`
	// A regex for repo names.
	RepositoryMatch *string `json:"repositoryMatch,omitempty"`
}

V1alpha1SCMProviderGeneratorFilter SCMProviderGeneratorFilter is a single repository filter. If multiple filter types are set on a single struct, they will be AND'd together. All filters must pass for a repo to be included.

func NewV1alpha1SCMProviderGeneratorFilter ¶

func NewV1alpha1SCMProviderGeneratorFilter() *V1alpha1SCMProviderGeneratorFilter

NewV1alpha1SCMProviderGeneratorFilter instantiates a new V1alpha1SCMProviderGeneratorFilter 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 NewV1alpha1SCMProviderGeneratorFilterWithDefaults ¶

func NewV1alpha1SCMProviderGeneratorFilterWithDefaults() *V1alpha1SCMProviderGeneratorFilter

NewV1alpha1SCMProviderGeneratorFilterWithDefaults instantiates a new V1alpha1SCMProviderGeneratorFilter 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 (*V1alpha1SCMProviderGeneratorFilter) GetBranchMatch ¶

func (o *V1alpha1SCMProviderGeneratorFilter) GetBranchMatch() string

GetBranchMatch returns the BranchMatch field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorFilter) GetBranchMatchOk ¶

func (o *V1alpha1SCMProviderGeneratorFilter) GetBranchMatchOk() (*string, bool)

GetBranchMatchOk returns a tuple with the BranchMatch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorFilter) GetLabelMatch ¶

func (o *V1alpha1SCMProviderGeneratorFilter) GetLabelMatch() string

GetLabelMatch returns the LabelMatch field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorFilter) GetLabelMatchOk ¶

func (o *V1alpha1SCMProviderGeneratorFilter) GetLabelMatchOk() (*string, bool)

GetLabelMatchOk returns a tuple with the LabelMatch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorFilter) GetPathsDoNotExist ¶

func (o *V1alpha1SCMProviderGeneratorFilter) GetPathsDoNotExist() []string

GetPathsDoNotExist returns the PathsDoNotExist field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorFilter) GetPathsDoNotExistOk ¶

func (o *V1alpha1SCMProviderGeneratorFilter) GetPathsDoNotExistOk() ([]string, bool)

GetPathsDoNotExistOk returns a tuple with the PathsDoNotExist field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorFilter) GetPathsExist ¶

func (o *V1alpha1SCMProviderGeneratorFilter) GetPathsExist() []string

GetPathsExist returns the PathsExist field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorFilter) GetPathsExistOk ¶

func (o *V1alpha1SCMProviderGeneratorFilter) GetPathsExistOk() ([]string, bool)

GetPathsExistOk returns a tuple with the PathsExist field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorFilter) GetRepositoryMatch ¶

func (o *V1alpha1SCMProviderGeneratorFilter) GetRepositoryMatch() string

GetRepositoryMatch returns the RepositoryMatch field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorFilter) GetRepositoryMatchOk ¶

func (o *V1alpha1SCMProviderGeneratorFilter) GetRepositoryMatchOk() (*string, bool)

GetRepositoryMatchOk returns a tuple with the RepositoryMatch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorFilter) HasBranchMatch ¶

func (o *V1alpha1SCMProviderGeneratorFilter) HasBranchMatch() bool

HasBranchMatch returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorFilter) HasLabelMatch ¶

func (o *V1alpha1SCMProviderGeneratorFilter) HasLabelMatch() bool

HasLabelMatch returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorFilter) HasPathsDoNotExist ¶

func (o *V1alpha1SCMProviderGeneratorFilter) HasPathsDoNotExist() bool

HasPathsDoNotExist returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorFilter) HasPathsExist ¶

func (o *V1alpha1SCMProviderGeneratorFilter) HasPathsExist() bool

HasPathsExist returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorFilter) HasRepositoryMatch ¶

func (o *V1alpha1SCMProviderGeneratorFilter) HasRepositoryMatch() bool

HasRepositoryMatch returns a boolean if a field has been set.

func (V1alpha1SCMProviderGeneratorFilter) MarshalJSON ¶

func (o V1alpha1SCMProviderGeneratorFilter) MarshalJSON() ([]byte, error)

func (*V1alpha1SCMProviderGeneratorFilter) SetBranchMatch ¶

func (o *V1alpha1SCMProviderGeneratorFilter) SetBranchMatch(v string)

SetBranchMatch gets a reference to the given string and assigns it to the BranchMatch field.

func (*V1alpha1SCMProviderGeneratorFilter) SetLabelMatch ¶

func (o *V1alpha1SCMProviderGeneratorFilter) SetLabelMatch(v string)

SetLabelMatch gets a reference to the given string and assigns it to the LabelMatch field.

func (*V1alpha1SCMProviderGeneratorFilter) SetPathsDoNotExist ¶

func (o *V1alpha1SCMProviderGeneratorFilter) SetPathsDoNotExist(v []string)

SetPathsDoNotExist gets a reference to the given []string and assigns it to the PathsDoNotExist field.

func (*V1alpha1SCMProviderGeneratorFilter) SetPathsExist ¶

func (o *V1alpha1SCMProviderGeneratorFilter) SetPathsExist(v []string)

SetPathsExist gets a reference to the given []string and assigns it to the PathsExist field.

func (*V1alpha1SCMProviderGeneratorFilter) SetRepositoryMatch ¶

func (o *V1alpha1SCMProviderGeneratorFilter) SetRepositoryMatch(v string)

SetRepositoryMatch gets a reference to the given string and assigns it to the RepositoryMatch field.

func (V1alpha1SCMProviderGeneratorFilter) ToMap ¶

func (o V1alpha1SCMProviderGeneratorFilter) ToMap() (map[string]interface{}, error)

type V1alpha1SCMProviderGeneratorGitea ¶

type V1alpha1SCMProviderGeneratorGitea struct {
	// Scan all branches instead of just the default branch.
	AllBranches *bool `json:"allBranches,omitempty"`
	// The Gitea URL to talk to. For example https://gitea.mydomain.com/.
	Api      *string `json:"api,omitempty"`
	Insecure *bool   `json:"insecure,omitempty"`
	// Gitea organization or user to scan. Required.
	Owner    *string            `json:"owner,omitempty"`
	TokenRef *V1alpha1SecretRef `json:"tokenRef,omitempty"`
}

V1alpha1SCMProviderGeneratorGitea SCMProviderGeneratorGitea defines a connection info specific to Gitea.

func NewV1alpha1SCMProviderGeneratorGitea ¶

func NewV1alpha1SCMProviderGeneratorGitea() *V1alpha1SCMProviderGeneratorGitea

NewV1alpha1SCMProviderGeneratorGitea instantiates a new V1alpha1SCMProviderGeneratorGitea 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 NewV1alpha1SCMProviderGeneratorGiteaWithDefaults ¶

func NewV1alpha1SCMProviderGeneratorGiteaWithDefaults() *V1alpha1SCMProviderGeneratorGitea

NewV1alpha1SCMProviderGeneratorGiteaWithDefaults instantiates a new V1alpha1SCMProviderGeneratorGitea 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 (*V1alpha1SCMProviderGeneratorGitea) GetAllBranches ¶

func (o *V1alpha1SCMProviderGeneratorGitea) GetAllBranches() bool

GetAllBranches returns the AllBranches field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorGitea) GetAllBranchesOk ¶

func (o *V1alpha1SCMProviderGeneratorGitea) GetAllBranchesOk() (*bool, bool)

GetAllBranchesOk returns a tuple with the AllBranches field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorGitea) GetApi ¶

GetApi returns the Api field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorGitea) GetApiOk ¶

func (o *V1alpha1SCMProviderGeneratorGitea) GetApiOk() (*string, bool)

GetApiOk returns a tuple with the Api field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorGitea) GetInsecure ¶

func (o *V1alpha1SCMProviderGeneratorGitea) GetInsecure() bool

GetInsecure returns the Insecure field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorGitea) GetInsecureOk ¶

func (o *V1alpha1SCMProviderGeneratorGitea) GetInsecureOk() (*bool, bool)

GetInsecureOk returns a tuple with the Insecure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorGitea) GetOwner ¶

GetOwner returns the Owner field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorGitea) GetOwnerOk ¶

func (o *V1alpha1SCMProviderGeneratorGitea) GetOwnerOk() (*string, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorGitea) GetTokenRef ¶

GetTokenRef returns the TokenRef field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorGitea) GetTokenRefOk ¶

GetTokenRefOk returns a tuple with the TokenRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorGitea) HasAllBranches ¶

func (o *V1alpha1SCMProviderGeneratorGitea) HasAllBranches() bool

HasAllBranches returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorGitea) HasApi ¶

HasApi returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorGitea) HasInsecure ¶

func (o *V1alpha1SCMProviderGeneratorGitea) HasInsecure() bool

HasInsecure returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorGitea) HasOwner ¶

HasOwner returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorGitea) HasTokenRef ¶

func (o *V1alpha1SCMProviderGeneratorGitea) HasTokenRef() bool

HasTokenRef returns a boolean if a field has been set.

func (V1alpha1SCMProviderGeneratorGitea) MarshalJSON ¶

func (o V1alpha1SCMProviderGeneratorGitea) MarshalJSON() ([]byte, error)

func (*V1alpha1SCMProviderGeneratorGitea) SetAllBranches ¶

func (o *V1alpha1SCMProviderGeneratorGitea) SetAllBranches(v bool)

SetAllBranches gets a reference to the given bool and assigns it to the AllBranches field.

func (*V1alpha1SCMProviderGeneratorGitea) SetApi ¶

SetApi gets a reference to the given string and assigns it to the Api field.

func (*V1alpha1SCMProviderGeneratorGitea) SetInsecure ¶

func (o *V1alpha1SCMProviderGeneratorGitea) SetInsecure(v bool)

SetInsecure gets a reference to the given bool and assigns it to the Insecure field.

func (*V1alpha1SCMProviderGeneratorGitea) SetOwner ¶

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*V1alpha1SCMProviderGeneratorGitea) SetTokenRef ¶

SetTokenRef gets a reference to the given V1alpha1SecretRef and assigns it to the TokenRef field.

func (V1alpha1SCMProviderGeneratorGitea) ToMap ¶

func (o V1alpha1SCMProviderGeneratorGitea) ToMap() (map[string]interface{}, error)

type V1alpha1SCMProviderGeneratorGithub ¶

type V1alpha1SCMProviderGeneratorGithub struct {
	// Scan all branches instead of just the default branch.
	AllBranches *bool `json:"allBranches,omitempty"`
	// The GitHub API URL to talk to. If blank, use https://api.github.com/.
	Api *string `json:"api,omitempty"`
	// AppSecretName is a reference to a GitHub App repo-creds secret.
	AppSecretName *string `json:"appSecretName,omitempty"`
	// GitHub org to scan. Required.
	Organization *string            `json:"organization,omitempty"`
	TokenRef     *V1alpha1SecretRef `json:"tokenRef,omitempty"`
}

V1alpha1SCMProviderGeneratorGithub SCMProviderGeneratorGithub defines connection info specific to GitHub.

func NewV1alpha1SCMProviderGeneratorGithub ¶

func NewV1alpha1SCMProviderGeneratorGithub() *V1alpha1SCMProviderGeneratorGithub

NewV1alpha1SCMProviderGeneratorGithub instantiates a new V1alpha1SCMProviderGeneratorGithub 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 NewV1alpha1SCMProviderGeneratorGithubWithDefaults ¶

func NewV1alpha1SCMProviderGeneratorGithubWithDefaults() *V1alpha1SCMProviderGeneratorGithub

NewV1alpha1SCMProviderGeneratorGithubWithDefaults instantiates a new V1alpha1SCMProviderGeneratorGithub 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 (*V1alpha1SCMProviderGeneratorGithub) GetAllBranches ¶

func (o *V1alpha1SCMProviderGeneratorGithub) GetAllBranches() bool

GetAllBranches returns the AllBranches field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorGithub) GetAllBranchesOk ¶

func (o *V1alpha1SCMProviderGeneratorGithub) GetAllBranchesOk() (*bool, bool)

GetAllBranchesOk returns a tuple with the AllBranches field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorGithub) GetApi ¶

GetApi returns the Api field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorGithub) GetApiOk ¶

GetApiOk returns a tuple with the Api field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorGithub) GetAppSecretName ¶

func (o *V1alpha1SCMProviderGeneratorGithub) GetAppSecretName() string

GetAppSecretName returns the AppSecretName field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorGithub) GetAppSecretNameOk ¶

func (o *V1alpha1SCMProviderGeneratorGithub) GetAppSecretNameOk() (*string, bool)

GetAppSecretNameOk returns a tuple with the AppSecretName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorGithub) GetOrganization ¶

func (o *V1alpha1SCMProviderGeneratorGithub) GetOrganization() string

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorGithub) GetOrganizationOk ¶

func (o *V1alpha1SCMProviderGeneratorGithub) GetOrganizationOk() (*string, bool)

GetOrganizationOk returns a tuple with the Organization field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorGithub) GetTokenRef ¶

GetTokenRef returns the TokenRef field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorGithub) GetTokenRefOk ¶

GetTokenRefOk returns a tuple with the TokenRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorGithub) HasAllBranches ¶

func (o *V1alpha1SCMProviderGeneratorGithub) HasAllBranches() bool

HasAllBranches returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorGithub) HasApi ¶

HasApi returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorGithub) HasAppSecretName ¶

func (o *V1alpha1SCMProviderGeneratorGithub) HasAppSecretName() bool

HasAppSecretName returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorGithub) HasOrganization ¶

func (o *V1alpha1SCMProviderGeneratorGithub) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorGithub) HasTokenRef ¶

func (o *V1alpha1SCMProviderGeneratorGithub) HasTokenRef() bool

HasTokenRef returns a boolean if a field has been set.

func (V1alpha1SCMProviderGeneratorGithub) MarshalJSON ¶

func (o V1alpha1SCMProviderGeneratorGithub) MarshalJSON() ([]byte, error)

func (*V1alpha1SCMProviderGeneratorGithub) SetAllBranches ¶

func (o *V1alpha1SCMProviderGeneratorGithub) SetAllBranches(v bool)

SetAllBranches gets a reference to the given bool and assigns it to the AllBranches field.

func (*V1alpha1SCMProviderGeneratorGithub) SetApi ¶

SetApi gets a reference to the given string and assigns it to the Api field.

func (*V1alpha1SCMProviderGeneratorGithub) SetAppSecretName ¶

func (o *V1alpha1SCMProviderGeneratorGithub) SetAppSecretName(v string)

SetAppSecretName gets a reference to the given string and assigns it to the AppSecretName field.

func (*V1alpha1SCMProviderGeneratorGithub) SetOrganization ¶

func (o *V1alpha1SCMProviderGeneratorGithub) SetOrganization(v string)

SetOrganization gets a reference to the given string and assigns it to the Organization field.

func (*V1alpha1SCMProviderGeneratorGithub) SetTokenRef ¶

SetTokenRef gets a reference to the given V1alpha1SecretRef and assigns it to the TokenRef field.

func (V1alpha1SCMProviderGeneratorGithub) ToMap ¶

func (o V1alpha1SCMProviderGeneratorGithub) ToMap() (map[string]interface{}, error)

type V1alpha1SCMProviderGeneratorGitlab ¶

type V1alpha1SCMProviderGeneratorGitlab struct {
	// Scan all branches instead of just the default branch.
	AllBranches *bool `json:"allBranches,omitempty"`
	// The Gitlab API URL to talk to.
	Api *string `json:"api,omitempty"`
	// Gitlab group to scan. Required.  You can use either the project id (recommended) or the full namespaced path.
	Group            *string            `json:"group,omitempty"`
	IncludeSubgroups *bool              `json:"includeSubgroups,omitempty"`
	TokenRef         *V1alpha1SecretRef `json:"tokenRef,omitempty"`
}

V1alpha1SCMProviderGeneratorGitlab SCMProviderGeneratorGitlab defines connection info specific to Gitlab.

func NewV1alpha1SCMProviderGeneratorGitlab ¶

func NewV1alpha1SCMProviderGeneratorGitlab() *V1alpha1SCMProviderGeneratorGitlab

NewV1alpha1SCMProviderGeneratorGitlab instantiates a new V1alpha1SCMProviderGeneratorGitlab 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 NewV1alpha1SCMProviderGeneratorGitlabWithDefaults ¶

func NewV1alpha1SCMProviderGeneratorGitlabWithDefaults() *V1alpha1SCMProviderGeneratorGitlab

NewV1alpha1SCMProviderGeneratorGitlabWithDefaults instantiates a new V1alpha1SCMProviderGeneratorGitlab 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 (*V1alpha1SCMProviderGeneratorGitlab) GetAllBranches ¶

func (o *V1alpha1SCMProviderGeneratorGitlab) GetAllBranches() bool

GetAllBranches returns the AllBranches field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorGitlab) GetAllBranchesOk ¶

func (o *V1alpha1SCMProviderGeneratorGitlab) GetAllBranchesOk() (*bool, bool)

GetAllBranchesOk returns a tuple with the AllBranches field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorGitlab) GetApi ¶

GetApi returns the Api field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorGitlab) GetApiOk ¶

GetApiOk returns a tuple with the Api field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorGitlab) GetGroup ¶

GetGroup returns the Group field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorGitlab) GetGroupOk ¶

func (o *V1alpha1SCMProviderGeneratorGitlab) 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 (*V1alpha1SCMProviderGeneratorGitlab) GetIncludeSubgroups ¶

func (o *V1alpha1SCMProviderGeneratorGitlab) GetIncludeSubgroups() bool

GetIncludeSubgroups returns the IncludeSubgroups field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorGitlab) GetIncludeSubgroupsOk ¶

func (o *V1alpha1SCMProviderGeneratorGitlab) GetIncludeSubgroupsOk() (*bool, bool)

GetIncludeSubgroupsOk returns a tuple with the IncludeSubgroups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorGitlab) GetTokenRef ¶

GetTokenRef returns the TokenRef field value if set, zero value otherwise.

func (*V1alpha1SCMProviderGeneratorGitlab) GetTokenRefOk ¶

GetTokenRefOk returns a tuple with the TokenRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SCMProviderGeneratorGitlab) HasAllBranches ¶

func (o *V1alpha1SCMProviderGeneratorGitlab) HasAllBranches() bool

HasAllBranches returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorGitlab) HasApi ¶

HasApi returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorGitlab) HasGroup ¶

HasGroup returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorGitlab) HasIncludeSubgroups ¶

func (o *V1alpha1SCMProviderGeneratorGitlab) HasIncludeSubgroups() bool

HasIncludeSubgroups returns a boolean if a field has been set.

func (*V1alpha1SCMProviderGeneratorGitlab) HasTokenRef ¶

func (o *V1alpha1SCMProviderGeneratorGitlab) HasTokenRef() bool

HasTokenRef returns a boolean if a field has been set.

func (V1alpha1SCMProviderGeneratorGitlab) MarshalJSON ¶

func (o V1alpha1SCMProviderGeneratorGitlab) MarshalJSON() ([]byte, error)

func (*V1alpha1SCMProviderGeneratorGitlab) SetAllBranches ¶

func (o *V1alpha1SCMProviderGeneratorGitlab) SetAllBranches(v bool)

SetAllBranches gets a reference to the given bool and assigns it to the AllBranches field.

func (*V1alpha1SCMProviderGeneratorGitlab) SetApi ¶

SetApi gets a reference to the given string and assigns it to the Api field.

func (*V1alpha1SCMProviderGeneratorGitlab) SetGroup ¶

SetGroup gets a reference to the given string and assigns it to the Group field.

func (*V1alpha1SCMProviderGeneratorGitlab) SetIncludeSubgroups ¶

func (o *V1alpha1SCMProviderGeneratorGitlab) SetIncludeSubgroups(v bool)

SetIncludeSubgroups gets a reference to the given bool and assigns it to the IncludeSubgroups field.

func (*V1alpha1SCMProviderGeneratorGitlab) SetTokenRef ¶

SetTokenRef gets a reference to the given V1alpha1SecretRef and assigns it to the TokenRef field.

func (V1alpha1SCMProviderGeneratorGitlab) ToMap ¶

func (o V1alpha1SCMProviderGeneratorGitlab) ToMap() (map[string]interface{}, error)

type V1alpha1SecretRef ¶

type V1alpha1SecretRef struct {
	Key        *string `json:"key,omitempty"`
	SecretName *string `json:"secretName,omitempty"`
}

V1alpha1SecretRef Utility struct for a reference to a secret key.

func NewV1alpha1SecretRef ¶

func NewV1alpha1SecretRef() *V1alpha1SecretRef

NewV1alpha1SecretRef instantiates a new V1alpha1SecretRef 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 NewV1alpha1SecretRefWithDefaults ¶

func NewV1alpha1SecretRefWithDefaults() *V1alpha1SecretRef

NewV1alpha1SecretRefWithDefaults instantiates a new V1alpha1SecretRef 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 (*V1alpha1SecretRef) GetKey ¶

func (o *V1alpha1SecretRef) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*V1alpha1SecretRef) GetKeyOk ¶

func (o *V1alpha1SecretRef) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SecretRef) GetSecretName ¶

func (o *V1alpha1SecretRef) GetSecretName() string

GetSecretName returns the SecretName field value if set, zero value otherwise.

func (*V1alpha1SecretRef) GetSecretNameOk ¶

func (o *V1alpha1SecretRef) GetSecretNameOk() (*string, bool)

GetSecretNameOk returns a tuple with the SecretName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SecretRef) HasKey ¶

func (o *V1alpha1SecretRef) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*V1alpha1SecretRef) HasSecretName ¶

func (o *V1alpha1SecretRef) HasSecretName() bool

HasSecretName returns a boolean if a field has been set.

func (V1alpha1SecretRef) MarshalJSON ¶

func (o V1alpha1SecretRef) MarshalJSON() ([]byte, error)

func (*V1alpha1SecretRef) SetKey ¶

func (o *V1alpha1SecretRef) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*V1alpha1SecretRef) SetSecretName ¶

func (o *V1alpha1SecretRef) SetSecretName(v string)

SetSecretName gets a reference to the given string and assigns it to the SecretName field.

func (V1alpha1SecretRef) ToMap ¶

func (o V1alpha1SecretRef) ToMap() (map[string]interface{}, error)

type V1alpha1SignatureKey ¶

type V1alpha1SignatureKey struct {
	KeyID *string `json:"keyID,omitempty"`
}

V1alpha1SignatureKey struct for V1alpha1SignatureKey

func NewV1alpha1SignatureKey ¶

func NewV1alpha1SignatureKey() *V1alpha1SignatureKey

NewV1alpha1SignatureKey instantiates a new V1alpha1SignatureKey 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 NewV1alpha1SignatureKeyWithDefaults ¶

func NewV1alpha1SignatureKeyWithDefaults() *V1alpha1SignatureKey

NewV1alpha1SignatureKeyWithDefaults instantiates a new V1alpha1SignatureKey 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 (*V1alpha1SignatureKey) GetKeyID ¶

func (o *V1alpha1SignatureKey) GetKeyID() string

GetKeyID returns the KeyID field value if set, zero value otherwise.

func (*V1alpha1SignatureKey) GetKeyIDOk ¶

func (o *V1alpha1SignatureKey) GetKeyIDOk() (*string, bool)

GetKeyIDOk returns a tuple with the KeyID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SignatureKey) HasKeyID ¶

func (o *V1alpha1SignatureKey) HasKeyID() bool

HasKeyID returns a boolean if a field has been set.

func (V1alpha1SignatureKey) MarshalJSON ¶

func (o V1alpha1SignatureKey) MarshalJSON() ([]byte, error)

func (*V1alpha1SignatureKey) SetKeyID ¶

func (o *V1alpha1SignatureKey) SetKeyID(v string)

SetKeyID gets a reference to the given string and assigns it to the KeyID field.

func (V1alpha1SignatureKey) ToMap ¶

func (o V1alpha1SignatureKey) ToMap() (map[string]interface{}, error)

type V1alpha1SyncOperation ¶

type V1alpha1SyncOperation struct {
	DryRun    *bool                           `json:"dryRun,omitempty"`
	Manifests []string                        `json:"manifests,omitempty"`
	Prune     *bool                           `json:"prune,omitempty"`
	Resources []V1alpha1SyncOperationResource `json:"resources,omitempty"`
	// Revision is the revision (Git) or chart version (Helm) which to sync the application to If omitted, will use the revision specified in app spec.
	Revision     *string                    `json:"revision,omitempty"`
	Source       *V1alpha1ApplicationSource `json:"source,omitempty"`
	SyncOptions  []string                   `json:"syncOptions,omitempty"`
	SyncStrategy *V1alpha1SyncStrategy      `json:"syncStrategy,omitempty"`
}

V1alpha1SyncOperation SyncOperation contains details about a sync operation.

func NewV1alpha1SyncOperation ¶

func NewV1alpha1SyncOperation() *V1alpha1SyncOperation

NewV1alpha1SyncOperation instantiates a new V1alpha1SyncOperation 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 NewV1alpha1SyncOperationWithDefaults ¶

func NewV1alpha1SyncOperationWithDefaults() *V1alpha1SyncOperation

NewV1alpha1SyncOperationWithDefaults instantiates a new V1alpha1SyncOperation 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 (*V1alpha1SyncOperation) GetDryRun ¶

func (o *V1alpha1SyncOperation) GetDryRun() bool

GetDryRun returns the DryRun field value if set, zero value otherwise.

func (*V1alpha1SyncOperation) GetDryRunOk ¶

func (o *V1alpha1SyncOperation) GetDryRunOk() (*bool, bool)

GetDryRunOk returns a tuple with the DryRun field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncOperation) GetManifests ¶

func (o *V1alpha1SyncOperation) GetManifests() []string

GetManifests returns the Manifests field value if set, zero value otherwise.

func (*V1alpha1SyncOperation) GetManifestsOk ¶

func (o *V1alpha1SyncOperation) GetManifestsOk() ([]string, bool)

GetManifestsOk returns a tuple with the Manifests field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncOperation) GetPrune ¶

func (o *V1alpha1SyncOperation) GetPrune() bool

GetPrune returns the Prune field value if set, zero value otherwise.

func (*V1alpha1SyncOperation) GetPruneOk ¶

func (o *V1alpha1SyncOperation) GetPruneOk() (*bool, bool)

GetPruneOk returns a tuple with the Prune field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncOperation) GetResources ¶

GetResources returns the Resources field value if set, zero value otherwise.

func (*V1alpha1SyncOperation) GetResourcesOk ¶

func (o *V1alpha1SyncOperation) GetResourcesOk() ([]V1alpha1SyncOperationResource, 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 (*V1alpha1SyncOperation) GetRevision ¶

func (o *V1alpha1SyncOperation) GetRevision() string

GetRevision returns the Revision field value if set, zero value otherwise.

func (*V1alpha1SyncOperation) GetRevisionOk ¶

func (o *V1alpha1SyncOperation) GetRevisionOk() (*string, bool)

GetRevisionOk returns a tuple with the Revision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncOperation) GetSource ¶

GetSource returns the Source field value if set, zero value otherwise.

func (*V1alpha1SyncOperation) GetSourceOk ¶

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncOperation) GetSyncOptions ¶

func (o *V1alpha1SyncOperation) GetSyncOptions() []string

GetSyncOptions returns the SyncOptions field value if set, zero value otherwise.

func (*V1alpha1SyncOperation) GetSyncOptionsOk ¶

func (o *V1alpha1SyncOperation) GetSyncOptionsOk() ([]string, bool)

GetSyncOptionsOk returns a tuple with the SyncOptions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncOperation) GetSyncStrategy ¶

func (o *V1alpha1SyncOperation) GetSyncStrategy() V1alpha1SyncStrategy

GetSyncStrategy returns the SyncStrategy field value if set, zero value otherwise.

func (*V1alpha1SyncOperation) GetSyncStrategyOk ¶

func (o *V1alpha1SyncOperation) GetSyncStrategyOk() (*V1alpha1SyncStrategy, bool)

GetSyncStrategyOk returns a tuple with the SyncStrategy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncOperation) HasDryRun ¶

func (o *V1alpha1SyncOperation) HasDryRun() bool

HasDryRun returns a boolean if a field has been set.

func (*V1alpha1SyncOperation) HasManifests ¶

func (o *V1alpha1SyncOperation) HasManifests() bool

HasManifests returns a boolean if a field has been set.

func (*V1alpha1SyncOperation) HasPrune ¶

func (o *V1alpha1SyncOperation) HasPrune() bool

HasPrune returns a boolean if a field has been set.

func (*V1alpha1SyncOperation) HasResources ¶

func (o *V1alpha1SyncOperation) HasResources() bool

HasResources returns a boolean if a field has been set.

func (*V1alpha1SyncOperation) HasRevision ¶

func (o *V1alpha1SyncOperation) HasRevision() bool

HasRevision returns a boolean if a field has been set.

func (*V1alpha1SyncOperation) HasSource ¶

func (o *V1alpha1SyncOperation) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*V1alpha1SyncOperation) HasSyncOptions ¶

func (o *V1alpha1SyncOperation) HasSyncOptions() bool

HasSyncOptions returns a boolean if a field has been set.

func (*V1alpha1SyncOperation) HasSyncStrategy ¶

func (o *V1alpha1SyncOperation) HasSyncStrategy() bool

HasSyncStrategy returns a boolean if a field has been set.

func (V1alpha1SyncOperation) MarshalJSON ¶

func (o V1alpha1SyncOperation) MarshalJSON() ([]byte, error)

func (*V1alpha1SyncOperation) SetDryRun ¶

func (o *V1alpha1SyncOperation) SetDryRun(v bool)

SetDryRun gets a reference to the given bool and assigns it to the DryRun field.

func (*V1alpha1SyncOperation) SetManifests ¶

func (o *V1alpha1SyncOperation) SetManifests(v []string)

SetManifests gets a reference to the given []string and assigns it to the Manifests field.

func (*V1alpha1SyncOperation) SetPrune ¶

func (o *V1alpha1SyncOperation) SetPrune(v bool)

SetPrune gets a reference to the given bool and assigns it to the Prune field.

func (*V1alpha1SyncOperation) SetResources ¶

SetResources gets a reference to the given []V1alpha1SyncOperationResource and assigns it to the Resources field.

func (*V1alpha1SyncOperation) SetRevision ¶

func (o *V1alpha1SyncOperation) SetRevision(v string)

SetRevision gets a reference to the given string and assigns it to the Revision field.

func (*V1alpha1SyncOperation) SetSource ¶

SetSource gets a reference to the given V1alpha1ApplicationSource and assigns it to the Source field.

func (*V1alpha1SyncOperation) SetSyncOptions ¶

func (o *V1alpha1SyncOperation) SetSyncOptions(v []string)

SetSyncOptions gets a reference to the given []string and assigns it to the SyncOptions field.

func (*V1alpha1SyncOperation) SetSyncStrategy ¶

func (o *V1alpha1SyncOperation) SetSyncStrategy(v V1alpha1SyncStrategy)

SetSyncStrategy gets a reference to the given V1alpha1SyncStrategy and assigns it to the SyncStrategy field.

func (V1alpha1SyncOperation) ToMap ¶

func (o V1alpha1SyncOperation) ToMap() (map[string]interface{}, error)

type V1alpha1SyncOperationResource ¶

type V1alpha1SyncOperationResource struct {
	Group     *string `json:"group,omitempty"`
	Kind      *string `json:"kind,omitempty"`
	Name      *string `json:"name,omitempty"`
	Namespace *string `json:"namespace,omitempty"`
}

V1alpha1SyncOperationResource SyncOperationResource contains resources to sync.

func NewV1alpha1SyncOperationResource ¶

func NewV1alpha1SyncOperationResource() *V1alpha1SyncOperationResource

NewV1alpha1SyncOperationResource instantiates a new V1alpha1SyncOperationResource 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 NewV1alpha1SyncOperationResourceWithDefaults ¶

func NewV1alpha1SyncOperationResourceWithDefaults() *V1alpha1SyncOperationResource

NewV1alpha1SyncOperationResourceWithDefaults instantiates a new V1alpha1SyncOperationResource 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 (*V1alpha1SyncOperationResource) GetGroup ¶

func (o *V1alpha1SyncOperationResource) GetGroup() string

GetGroup returns the Group field value if set, zero value otherwise.

func (*V1alpha1SyncOperationResource) GetGroupOk ¶

func (o *V1alpha1SyncOperationResource) 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 (*V1alpha1SyncOperationResource) GetKind ¶

GetKind returns the Kind field value if set, zero value otherwise.

func (*V1alpha1SyncOperationResource) GetKindOk ¶

func (o *V1alpha1SyncOperationResource) 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 (*V1alpha1SyncOperationResource) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*V1alpha1SyncOperationResource) GetNameOk ¶

func (o *V1alpha1SyncOperationResource) 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 (*V1alpha1SyncOperationResource) GetNamespace ¶

func (o *V1alpha1SyncOperationResource) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*V1alpha1SyncOperationResource) GetNamespaceOk ¶

func (o *V1alpha1SyncOperationResource) 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 (*V1alpha1SyncOperationResource) HasGroup ¶

func (o *V1alpha1SyncOperationResource) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (*V1alpha1SyncOperationResource) HasKind ¶

func (o *V1alpha1SyncOperationResource) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*V1alpha1SyncOperationResource) HasName ¶

func (o *V1alpha1SyncOperationResource) HasName() bool

HasName returns a boolean if a field has been set.

func (*V1alpha1SyncOperationResource) HasNamespace ¶

func (o *V1alpha1SyncOperationResource) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (V1alpha1SyncOperationResource) MarshalJSON ¶

func (o V1alpha1SyncOperationResource) MarshalJSON() ([]byte, error)

func (*V1alpha1SyncOperationResource) SetGroup ¶

func (o *V1alpha1SyncOperationResource) SetGroup(v string)

SetGroup gets a reference to the given string and assigns it to the Group field.

func (*V1alpha1SyncOperationResource) SetKind ¶

func (o *V1alpha1SyncOperationResource) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*V1alpha1SyncOperationResource) SetName ¶

func (o *V1alpha1SyncOperationResource) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*V1alpha1SyncOperationResource) SetNamespace ¶

func (o *V1alpha1SyncOperationResource) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (V1alpha1SyncOperationResource) ToMap ¶

func (o V1alpha1SyncOperationResource) ToMap() (map[string]interface{}, error)

type V1alpha1SyncOperationResult ¶

type V1alpha1SyncOperationResult struct {
	Resources []V1alpha1ResourceResult   `json:"resources,omitempty"`
	Revision  *string                    `json:"revision,omitempty"`
	Source    *V1alpha1ApplicationSource `json:"source,omitempty"`
}

V1alpha1SyncOperationResult struct for V1alpha1SyncOperationResult

func NewV1alpha1SyncOperationResult ¶

func NewV1alpha1SyncOperationResult() *V1alpha1SyncOperationResult

NewV1alpha1SyncOperationResult instantiates a new V1alpha1SyncOperationResult 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 NewV1alpha1SyncOperationResultWithDefaults ¶

func NewV1alpha1SyncOperationResultWithDefaults() *V1alpha1SyncOperationResult

NewV1alpha1SyncOperationResultWithDefaults instantiates a new V1alpha1SyncOperationResult 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 (*V1alpha1SyncOperationResult) GetResources ¶

GetResources returns the Resources field value if set, zero value otherwise.

func (*V1alpha1SyncOperationResult) GetResourcesOk ¶

func (o *V1alpha1SyncOperationResult) GetResourcesOk() ([]V1alpha1ResourceResult, 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 (*V1alpha1SyncOperationResult) GetRevision ¶

func (o *V1alpha1SyncOperationResult) GetRevision() string

GetRevision returns the Revision field value if set, zero value otherwise.

func (*V1alpha1SyncOperationResult) GetRevisionOk ¶

func (o *V1alpha1SyncOperationResult) GetRevisionOk() (*string, bool)

GetRevisionOk returns a tuple with the Revision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncOperationResult) GetSource ¶

GetSource returns the Source field value if set, zero value otherwise.

func (*V1alpha1SyncOperationResult) GetSourceOk ¶

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncOperationResult) HasResources ¶

func (o *V1alpha1SyncOperationResult) HasResources() bool

HasResources returns a boolean if a field has been set.

func (*V1alpha1SyncOperationResult) HasRevision ¶

func (o *V1alpha1SyncOperationResult) HasRevision() bool

HasRevision returns a boolean if a field has been set.

func (*V1alpha1SyncOperationResult) HasSource ¶

func (o *V1alpha1SyncOperationResult) HasSource() bool

HasSource returns a boolean if a field has been set.

func (V1alpha1SyncOperationResult) MarshalJSON ¶

func (o V1alpha1SyncOperationResult) MarshalJSON() ([]byte, error)

func (*V1alpha1SyncOperationResult) SetResources ¶

SetResources gets a reference to the given []V1alpha1ResourceResult and assigns it to the Resources field.

func (*V1alpha1SyncOperationResult) SetRevision ¶

func (o *V1alpha1SyncOperationResult) SetRevision(v string)

SetRevision gets a reference to the given string and assigns it to the Revision field.

func (*V1alpha1SyncOperationResult) SetSource ¶

SetSource gets a reference to the given V1alpha1ApplicationSource and assigns it to the Source field.

func (V1alpha1SyncOperationResult) ToMap ¶

func (o V1alpha1SyncOperationResult) ToMap() (map[string]interface{}, error)

type V1alpha1SyncPolicy ¶

type V1alpha1SyncPolicy struct {
	Automated   *V1alpha1SyncPolicyAutomated `json:"automated,omitempty"`
	Retry       *V1alpha1RetryStrategy       `json:"retry,omitempty"`
	SyncOptions []string                     `json:"syncOptions,omitempty"`
}

V1alpha1SyncPolicy struct for V1alpha1SyncPolicy

func NewV1alpha1SyncPolicy ¶

func NewV1alpha1SyncPolicy() *V1alpha1SyncPolicy

NewV1alpha1SyncPolicy instantiates a new V1alpha1SyncPolicy 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 NewV1alpha1SyncPolicyWithDefaults ¶

func NewV1alpha1SyncPolicyWithDefaults() *V1alpha1SyncPolicy

NewV1alpha1SyncPolicyWithDefaults instantiates a new V1alpha1SyncPolicy 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 (*V1alpha1SyncPolicy) GetAutomated ¶

GetAutomated returns the Automated field value if set, zero value otherwise.

func (*V1alpha1SyncPolicy) GetAutomatedOk ¶

func (o *V1alpha1SyncPolicy) GetAutomatedOk() (*V1alpha1SyncPolicyAutomated, bool)

GetAutomatedOk returns a tuple with the Automated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncPolicy) GetRetry ¶

GetRetry returns the Retry field value if set, zero value otherwise.

func (*V1alpha1SyncPolicy) GetRetryOk ¶

func (o *V1alpha1SyncPolicy) GetRetryOk() (*V1alpha1RetryStrategy, bool)

GetRetryOk returns a tuple with the Retry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncPolicy) GetSyncOptions ¶

func (o *V1alpha1SyncPolicy) GetSyncOptions() []string

GetSyncOptions returns the SyncOptions field value if set, zero value otherwise.

func (*V1alpha1SyncPolicy) GetSyncOptionsOk ¶

func (o *V1alpha1SyncPolicy) GetSyncOptionsOk() ([]string, bool)

GetSyncOptionsOk returns a tuple with the SyncOptions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncPolicy) HasAutomated ¶

func (o *V1alpha1SyncPolicy) HasAutomated() bool

HasAutomated returns a boolean if a field has been set.

func (*V1alpha1SyncPolicy) HasRetry ¶

func (o *V1alpha1SyncPolicy) HasRetry() bool

HasRetry returns a boolean if a field has been set.

func (*V1alpha1SyncPolicy) HasSyncOptions ¶

func (o *V1alpha1SyncPolicy) HasSyncOptions() bool

HasSyncOptions returns a boolean if a field has been set.

func (V1alpha1SyncPolicy) MarshalJSON ¶

func (o V1alpha1SyncPolicy) MarshalJSON() ([]byte, error)

func (*V1alpha1SyncPolicy) SetAutomated ¶

SetAutomated gets a reference to the given V1alpha1SyncPolicyAutomated and assigns it to the Automated field.

func (*V1alpha1SyncPolicy) SetRetry ¶

SetRetry gets a reference to the given V1alpha1RetryStrategy and assigns it to the Retry field.

func (*V1alpha1SyncPolicy) SetSyncOptions ¶

func (o *V1alpha1SyncPolicy) SetSyncOptions(v []string)

SetSyncOptions gets a reference to the given []string and assigns it to the SyncOptions field.

func (V1alpha1SyncPolicy) ToMap ¶

func (o V1alpha1SyncPolicy) ToMap() (map[string]interface{}, error)

type V1alpha1SyncPolicyAutomated ¶

type V1alpha1SyncPolicyAutomated struct {
	AllowEmpty *bool `json:"allowEmpty,omitempty"`
	Prune      *bool `json:"prune,omitempty"`
	SelfHeal   *bool `json:"selfHeal,omitempty"`
}

V1alpha1SyncPolicyAutomated struct for V1alpha1SyncPolicyAutomated

func NewV1alpha1SyncPolicyAutomated ¶

func NewV1alpha1SyncPolicyAutomated() *V1alpha1SyncPolicyAutomated

NewV1alpha1SyncPolicyAutomated instantiates a new V1alpha1SyncPolicyAutomated 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 NewV1alpha1SyncPolicyAutomatedWithDefaults ¶

func NewV1alpha1SyncPolicyAutomatedWithDefaults() *V1alpha1SyncPolicyAutomated

NewV1alpha1SyncPolicyAutomatedWithDefaults instantiates a new V1alpha1SyncPolicyAutomated 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 (*V1alpha1SyncPolicyAutomated) GetAllowEmpty ¶

func (o *V1alpha1SyncPolicyAutomated) GetAllowEmpty() bool

GetAllowEmpty returns the AllowEmpty field value if set, zero value otherwise.

func (*V1alpha1SyncPolicyAutomated) GetAllowEmptyOk ¶

func (o *V1alpha1SyncPolicyAutomated) GetAllowEmptyOk() (*bool, bool)

GetAllowEmptyOk returns a tuple with the AllowEmpty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncPolicyAutomated) GetPrune ¶

func (o *V1alpha1SyncPolicyAutomated) GetPrune() bool

GetPrune returns the Prune field value if set, zero value otherwise.

func (*V1alpha1SyncPolicyAutomated) GetPruneOk ¶

func (o *V1alpha1SyncPolicyAutomated) GetPruneOk() (*bool, bool)

GetPruneOk returns a tuple with the Prune field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncPolicyAutomated) GetSelfHeal ¶

func (o *V1alpha1SyncPolicyAutomated) GetSelfHeal() bool

GetSelfHeal returns the SelfHeal field value if set, zero value otherwise.

func (*V1alpha1SyncPolicyAutomated) GetSelfHealOk ¶

func (o *V1alpha1SyncPolicyAutomated) GetSelfHealOk() (*bool, bool)

GetSelfHealOk returns a tuple with the SelfHeal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncPolicyAutomated) HasAllowEmpty ¶

func (o *V1alpha1SyncPolicyAutomated) HasAllowEmpty() bool

HasAllowEmpty returns a boolean if a field has been set.

func (*V1alpha1SyncPolicyAutomated) HasPrune ¶

func (o *V1alpha1SyncPolicyAutomated) HasPrune() bool

HasPrune returns a boolean if a field has been set.

func (*V1alpha1SyncPolicyAutomated) HasSelfHeal ¶

func (o *V1alpha1SyncPolicyAutomated) HasSelfHeal() bool

HasSelfHeal returns a boolean if a field has been set.

func (V1alpha1SyncPolicyAutomated) MarshalJSON ¶

func (o V1alpha1SyncPolicyAutomated) MarshalJSON() ([]byte, error)

func (*V1alpha1SyncPolicyAutomated) SetAllowEmpty ¶

func (o *V1alpha1SyncPolicyAutomated) SetAllowEmpty(v bool)

SetAllowEmpty gets a reference to the given bool and assigns it to the AllowEmpty field.

func (*V1alpha1SyncPolicyAutomated) SetPrune ¶

func (o *V1alpha1SyncPolicyAutomated) SetPrune(v bool)

SetPrune gets a reference to the given bool and assigns it to the Prune field.

func (*V1alpha1SyncPolicyAutomated) SetSelfHeal ¶

func (o *V1alpha1SyncPolicyAutomated) SetSelfHeal(v bool)

SetSelfHeal gets a reference to the given bool and assigns it to the SelfHeal field.

func (V1alpha1SyncPolicyAutomated) ToMap ¶

func (o V1alpha1SyncPolicyAutomated) ToMap() (map[string]interface{}, error)

type V1alpha1SyncStatus ¶

type V1alpha1SyncStatus struct {
	ComparedTo *V1alpha1ComparedTo `json:"comparedTo,omitempty"`
	Revision   *string             `json:"revision,omitempty"`
	Status     *string             `json:"status,omitempty"`
}

V1alpha1SyncStatus struct for V1alpha1SyncStatus

func NewV1alpha1SyncStatus ¶

func NewV1alpha1SyncStatus() *V1alpha1SyncStatus

NewV1alpha1SyncStatus instantiates a new V1alpha1SyncStatus 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 NewV1alpha1SyncStatusWithDefaults ¶

func NewV1alpha1SyncStatusWithDefaults() *V1alpha1SyncStatus

NewV1alpha1SyncStatusWithDefaults instantiates a new V1alpha1SyncStatus 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 (*V1alpha1SyncStatus) GetComparedTo ¶

func (o *V1alpha1SyncStatus) GetComparedTo() V1alpha1ComparedTo

GetComparedTo returns the ComparedTo field value if set, zero value otherwise.

func (*V1alpha1SyncStatus) GetComparedToOk ¶

func (o *V1alpha1SyncStatus) GetComparedToOk() (*V1alpha1ComparedTo, bool)

GetComparedToOk returns a tuple with the ComparedTo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncStatus) GetRevision ¶

func (o *V1alpha1SyncStatus) GetRevision() string

GetRevision returns the Revision field value if set, zero value otherwise.

func (*V1alpha1SyncStatus) GetRevisionOk ¶

func (o *V1alpha1SyncStatus) GetRevisionOk() (*string, bool)

GetRevisionOk returns a tuple with the Revision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncStatus) GetStatus ¶

func (o *V1alpha1SyncStatus) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*V1alpha1SyncStatus) GetStatusOk ¶

func (o *V1alpha1SyncStatus) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncStatus) HasComparedTo ¶

func (o *V1alpha1SyncStatus) HasComparedTo() bool

HasComparedTo returns a boolean if a field has been set.

func (*V1alpha1SyncStatus) HasRevision ¶

func (o *V1alpha1SyncStatus) HasRevision() bool

HasRevision returns a boolean if a field has been set.

func (*V1alpha1SyncStatus) HasStatus ¶

func (o *V1alpha1SyncStatus) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (V1alpha1SyncStatus) MarshalJSON ¶

func (o V1alpha1SyncStatus) MarshalJSON() ([]byte, error)

func (*V1alpha1SyncStatus) SetComparedTo ¶

func (o *V1alpha1SyncStatus) SetComparedTo(v V1alpha1ComparedTo)

SetComparedTo gets a reference to the given V1alpha1ComparedTo and assigns it to the ComparedTo field.

func (*V1alpha1SyncStatus) SetRevision ¶

func (o *V1alpha1SyncStatus) SetRevision(v string)

SetRevision gets a reference to the given string and assigns it to the Revision field.

func (*V1alpha1SyncStatus) SetStatus ¶

func (o *V1alpha1SyncStatus) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (V1alpha1SyncStatus) ToMap ¶

func (o V1alpha1SyncStatus) ToMap() (map[string]interface{}, error)

type V1alpha1SyncStrategy ¶

type V1alpha1SyncStrategy struct {
	Apply *V1alpha1SyncStrategyApply `json:"apply,omitempty"`
	Hook  *V1alpha1SyncStrategyHook  `json:"hook,omitempty"`
}

V1alpha1SyncStrategy struct for V1alpha1SyncStrategy

func NewV1alpha1SyncStrategy ¶

func NewV1alpha1SyncStrategy() *V1alpha1SyncStrategy

NewV1alpha1SyncStrategy instantiates a new V1alpha1SyncStrategy 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 NewV1alpha1SyncStrategyWithDefaults ¶

func NewV1alpha1SyncStrategyWithDefaults() *V1alpha1SyncStrategy

NewV1alpha1SyncStrategyWithDefaults instantiates a new V1alpha1SyncStrategy 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 (*V1alpha1SyncStrategy) GetApply ¶

GetApply returns the Apply field value if set, zero value otherwise.

func (*V1alpha1SyncStrategy) GetApplyOk ¶

GetApplyOk returns a tuple with the Apply field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncStrategy) GetHook ¶

GetHook returns the Hook field value if set, zero value otherwise.

func (*V1alpha1SyncStrategy) GetHookOk ¶

GetHookOk returns a tuple with the Hook field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncStrategy) HasApply ¶

func (o *V1alpha1SyncStrategy) HasApply() bool

HasApply returns a boolean if a field has been set.

func (*V1alpha1SyncStrategy) HasHook ¶

func (o *V1alpha1SyncStrategy) HasHook() bool

HasHook returns a boolean if a field has been set.

func (V1alpha1SyncStrategy) MarshalJSON ¶

func (o V1alpha1SyncStrategy) MarshalJSON() ([]byte, error)

func (*V1alpha1SyncStrategy) SetApply ¶

SetApply gets a reference to the given V1alpha1SyncStrategyApply and assigns it to the Apply field.

func (*V1alpha1SyncStrategy) SetHook ¶

SetHook gets a reference to the given V1alpha1SyncStrategyHook and assigns it to the Hook field.

func (V1alpha1SyncStrategy) ToMap ¶

func (o V1alpha1SyncStrategy) ToMap() (map[string]interface{}, error)

type V1alpha1SyncStrategyApply ¶

type V1alpha1SyncStrategyApply struct {
	// Force indicates whether or not to supply the --force flag to `kubectl apply`. The --force flag deletes and re-create the resource, when PATCH encounters conflict and has retried for 5 times.
	Force *bool `json:"force,omitempty"`
}

V1alpha1SyncStrategyApply struct for V1alpha1SyncStrategyApply

func NewV1alpha1SyncStrategyApply ¶

func NewV1alpha1SyncStrategyApply() *V1alpha1SyncStrategyApply

NewV1alpha1SyncStrategyApply instantiates a new V1alpha1SyncStrategyApply 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 NewV1alpha1SyncStrategyApplyWithDefaults ¶

func NewV1alpha1SyncStrategyApplyWithDefaults() *V1alpha1SyncStrategyApply

NewV1alpha1SyncStrategyApplyWithDefaults instantiates a new V1alpha1SyncStrategyApply 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 (*V1alpha1SyncStrategyApply) GetForce ¶

func (o *V1alpha1SyncStrategyApply) GetForce() bool

GetForce returns the Force field value if set, zero value otherwise.

func (*V1alpha1SyncStrategyApply) GetForceOk ¶

func (o *V1alpha1SyncStrategyApply) GetForceOk() (*bool, bool)

GetForceOk returns a tuple with the Force field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncStrategyApply) HasForce ¶

func (o *V1alpha1SyncStrategyApply) HasForce() bool

HasForce returns a boolean if a field has been set.

func (V1alpha1SyncStrategyApply) MarshalJSON ¶

func (o V1alpha1SyncStrategyApply) MarshalJSON() ([]byte, error)

func (*V1alpha1SyncStrategyApply) SetForce ¶

func (o *V1alpha1SyncStrategyApply) SetForce(v bool)

SetForce gets a reference to the given bool and assigns it to the Force field.

func (V1alpha1SyncStrategyApply) ToMap ¶

func (o V1alpha1SyncStrategyApply) ToMap() (map[string]interface{}, error)

type V1alpha1SyncStrategyHook ¶

type V1alpha1SyncStrategyHook struct {
	SyncStrategyApply *V1alpha1SyncStrategyApply `json:"syncStrategyApply,omitempty"`
}

V1alpha1SyncStrategyHook SyncStrategyHook will perform a sync using hooks annotations. If no hook annotation is specified falls back to `kubectl apply`.

func NewV1alpha1SyncStrategyHook ¶

func NewV1alpha1SyncStrategyHook() *V1alpha1SyncStrategyHook

NewV1alpha1SyncStrategyHook instantiates a new V1alpha1SyncStrategyHook 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 NewV1alpha1SyncStrategyHookWithDefaults ¶

func NewV1alpha1SyncStrategyHookWithDefaults() *V1alpha1SyncStrategyHook

NewV1alpha1SyncStrategyHookWithDefaults instantiates a new V1alpha1SyncStrategyHook 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 (*V1alpha1SyncStrategyHook) GetSyncStrategyApply ¶

func (o *V1alpha1SyncStrategyHook) GetSyncStrategyApply() V1alpha1SyncStrategyApply

GetSyncStrategyApply returns the SyncStrategyApply field value if set, zero value otherwise.

func (*V1alpha1SyncStrategyHook) GetSyncStrategyApplyOk ¶

func (o *V1alpha1SyncStrategyHook) GetSyncStrategyApplyOk() (*V1alpha1SyncStrategyApply, bool)

GetSyncStrategyApplyOk returns a tuple with the SyncStrategyApply field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncStrategyHook) HasSyncStrategyApply ¶

func (o *V1alpha1SyncStrategyHook) HasSyncStrategyApply() bool

HasSyncStrategyApply returns a boolean if a field has been set.

func (V1alpha1SyncStrategyHook) MarshalJSON ¶

func (o V1alpha1SyncStrategyHook) MarshalJSON() ([]byte, error)

func (*V1alpha1SyncStrategyHook) SetSyncStrategyApply ¶

func (o *V1alpha1SyncStrategyHook) SetSyncStrategyApply(v V1alpha1SyncStrategyApply)

SetSyncStrategyApply gets a reference to the given V1alpha1SyncStrategyApply and assigns it to the SyncStrategyApply field.

func (V1alpha1SyncStrategyHook) ToMap ¶

func (o V1alpha1SyncStrategyHook) ToMap() (map[string]interface{}, error)

type V1alpha1SyncWindow ¶

type V1alpha1SyncWindow struct {
	Applications []string `json:"applications,omitempty"`
	Clusters     []string `json:"clusters,omitempty"`
	Duration     *string  `json:"duration,omitempty"`
	Kind         *string  `json:"kind,omitempty"`
	ManualSync   *bool    `json:"manualSync,omitempty"`
	Namespaces   []string `json:"namespaces,omitempty"`
	Schedule     *string  `json:"schedule,omitempty"`
	TimeZone     *string  `json:"timeZone,omitempty"`
}

V1alpha1SyncWindow struct for V1alpha1SyncWindow

func NewV1alpha1SyncWindow ¶

func NewV1alpha1SyncWindow() *V1alpha1SyncWindow

NewV1alpha1SyncWindow instantiates a new V1alpha1SyncWindow 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 NewV1alpha1SyncWindowWithDefaults ¶

func NewV1alpha1SyncWindowWithDefaults() *V1alpha1SyncWindow

NewV1alpha1SyncWindowWithDefaults instantiates a new V1alpha1SyncWindow 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 (*V1alpha1SyncWindow) GetApplications ¶

func (o *V1alpha1SyncWindow) GetApplications() []string

GetApplications returns the Applications field value if set, zero value otherwise.

func (*V1alpha1SyncWindow) GetApplicationsOk ¶

func (o *V1alpha1SyncWindow) GetApplicationsOk() ([]string, bool)

GetApplicationsOk returns a tuple with the Applications field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncWindow) GetClusters ¶

func (o *V1alpha1SyncWindow) GetClusters() []string

GetClusters returns the Clusters field value if set, zero value otherwise.

func (*V1alpha1SyncWindow) GetClustersOk ¶

func (o *V1alpha1SyncWindow) GetClustersOk() ([]string, bool)

GetClustersOk returns a tuple with the Clusters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncWindow) GetDuration ¶

func (o *V1alpha1SyncWindow) GetDuration() string

GetDuration returns the Duration field value if set, zero value otherwise.

func (*V1alpha1SyncWindow) GetDurationOk ¶

func (o *V1alpha1SyncWindow) GetDurationOk() (*string, bool)

GetDurationOk returns a tuple with the Duration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncWindow) GetKind ¶

func (o *V1alpha1SyncWindow) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*V1alpha1SyncWindow) GetKindOk ¶

func (o *V1alpha1SyncWindow) 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 (*V1alpha1SyncWindow) GetManualSync ¶

func (o *V1alpha1SyncWindow) GetManualSync() bool

GetManualSync returns the ManualSync field value if set, zero value otherwise.

func (*V1alpha1SyncWindow) GetManualSyncOk ¶

func (o *V1alpha1SyncWindow) GetManualSyncOk() (*bool, bool)

GetManualSyncOk returns a tuple with the ManualSync field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncWindow) GetNamespaces ¶

func (o *V1alpha1SyncWindow) GetNamespaces() []string

GetNamespaces returns the Namespaces field value if set, zero value otherwise.

func (*V1alpha1SyncWindow) GetNamespacesOk ¶

func (o *V1alpha1SyncWindow) 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 (*V1alpha1SyncWindow) GetSchedule ¶

func (o *V1alpha1SyncWindow) GetSchedule() string

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*V1alpha1SyncWindow) GetScheduleOk ¶

func (o *V1alpha1SyncWindow) GetScheduleOk() (*string, bool)

GetScheduleOk returns a tuple with the Schedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncWindow) GetTimeZone ¶

func (o *V1alpha1SyncWindow) GetTimeZone() string

GetTimeZone returns the TimeZone field value if set, zero value otherwise.

func (*V1alpha1SyncWindow) GetTimeZoneOk ¶

func (o *V1alpha1SyncWindow) GetTimeZoneOk() (*string, bool)

GetTimeZoneOk returns a tuple with the TimeZone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1SyncWindow) HasApplications ¶

func (o *V1alpha1SyncWindow) HasApplications() bool

HasApplications returns a boolean if a field has been set.

func (*V1alpha1SyncWindow) HasClusters ¶

func (o *V1alpha1SyncWindow) HasClusters() bool

HasClusters returns a boolean if a field has been set.

func (*V1alpha1SyncWindow) HasDuration ¶

func (o *V1alpha1SyncWindow) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*V1alpha1SyncWindow) HasKind ¶

func (o *V1alpha1SyncWindow) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*V1alpha1SyncWindow) HasManualSync ¶

func (o *V1alpha1SyncWindow) HasManualSync() bool

HasManualSync returns a boolean if a field has been set.

func (*V1alpha1SyncWindow) HasNamespaces ¶

func (o *V1alpha1SyncWindow) HasNamespaces() bool

HasNamespaces returns a boolean if a field has been set.

func (*V1alpha1SyncWindow) HasSchedule ¶

func (o *V1alpha1SyncWindow) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (*V1alpha1SyncWindow) HasTimeZone ¶

func (o *V1alpha1SyncWindow) HasTimeZone() bool

HasTimeZone returns a boolean if a field has been set.

func (V1alpha1SyncWindow) MarshalJSON ¶

func (o V1alpha1SyncWindow) MarshalJSON() ([]byte, error)

func (*V1alpha1SyncWindow) SetApplications ¶

func (o *V1alpha1SyncWindow) SetApplications(v []string)

SetApplications gets a reference to the given []string and assigns it to the Applications field.

func (*V1alpha1SyncWindow) SetClusters ¶

func (o *V1alpha1SyncWindow) SetClusters(v []string)

SetClusters gets a reference to the given []string and assigns it to the Clusters field.

func (*V1alpha1SyncWindow) SetDuration ¶

func (o *V1alpha1SyncWindow) SetDuration(v string)

SetDuration gets a reference to the given string and assigns it to the Duration field.

func (*V1alpha1SyncWindow) SetKind ¶

func (o *V1alpha1SyncWindow) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*V1alpha1SyncWindow) SetManualSync ¶

func (o *V1alpha1SyncWindow) SetManualSync(v bool)

SetManualSync gets a reference to the given bool and assigns it to the ManualSync field.

func (*V1alpha1SyncWindow) SetNamespaces ¶

func (o *V1alpha1SyncWindow) SetNamespaces(v []string)

SetNamespaces gets a reference to the given []string and assigns it to the Namespaces field.

func (*V1alpha1SyncWindow) SetSchedule ¶

func (o *V1alpha1SyncWindow) SetSchedule(v string)

SetSchedule gets a reference to the given string and assigns it to the Schedule field.

func (*V1alpha1SyncWindow) SetTimeZone ¶

func (o *V1alpha1SyncWindow) SetTimeZone(v string)

SetTimeZone gets a reference to the given string and assigns it to the TimeZone field.

func (V1alpha1SyncWindow) ToMap ¶

func (o V1alpha1SyncWindow) ToMap() (map[string]interface{}, error)

type V1alpha1TLSClientConfig ¶

type V1alpha1TLSClientConfig struct {
	CaData   *string `json:"caData,omitempty"`
	CertData *string `json:"certData,omitempty"`
	// Insecure specifies that the server should be accessed without verifying the TLS certificate. For testing only.
	Insecure *bool   `json:"insecure,omitempty"`
	KeyData  *string `json:"keyData,omitempty"`
	// ServerName is passed to the server for SNI and is used in the client to check server certificates against. If ServerName is empty, the hostname used to contact the server is used.
	ServerName *string `json:"serverName,omitempty"`
}

V1alpha1TLSClientConfig struct for V1alpha1TLSClientConfig

func NewV1alpha1TLSClientConfig ¶

func NewV1alpha1TLSClientConfig() *V1alpha1TLSClientConfig

NewV1alpha1TLSClientConfig instantiates a new V1alpha1TLSClientConfig 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 NewV1alpha1TLSClientConfigWithDefaults ¶

func NewV1alpha1TLSClientConfigWithDefaults() *V1alpha1TLSClientConfig

NewV1alpha1TLSClientConfigWithDefaults instantiates a new V1alpha1TLSClientConfig 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 (*V1alpha1TLSClientConfig) GetCaData ¶

func (o *V1alpha1TLSClientConfig) GetCaData() string

GetCaData returns the CaData field value if set, zero value otherwise.

func (*V1alpha1TLSClientConfig) GetCaDataOk ¶

func (o *V1alpha1TLSClientConfig) GetCaDataOk() (*string, bool)

GetCaDataOk returns a tuple with the CaData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1TLSClientConfig) GetCertData ¶

func (o *V1alpha1TLSClientConfig) GetCertData() string

GetCertData returns the CertData field value if set, zero value otherwise.

func (*V1alpha1TLSClientConfig) GetCertDataOk ¶

func (o *V1alpha1TLSClientConfig) GetCertDataOk() (*string, bool)

GetCertDataOk returns a tuple with the CertData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1TLSClientConfig) GetInsecure ¶

func (o *V1alpha1TLSClientConfig) GetInsecure() bool

GetInsecure returns the Insecure field value if set, zero value otherwise.

func (*V1alpha1TLSClientConfig) GetInsecureOk ¶

func (o *V1alpha1TLSClientConfig) GetInsecureOk() (*bool, bool)

GetInsecureOk returns a tuple with the Insecure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1TLSClientConfig) GetKeyData ¶

func (o *V1alpha1TLSClientConfig) GetKeyData() string

GetKeyData returns the KeyData field value if set, zero value otherwise.

func (*V1alpha1TLSClientConfig) GetKeyDataOk ¶

func (o *V1alpha1TLSClientConfig) GetKeyDataOk() (*string, bool)

GetKeyDataOk returns a tuple with the KeyData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1TLSClientConfig) GetServerName ¶

func (o *V1alpha1TLSClientConfig) GetServerName() string

GetServerName returns the ServerName field value if set, zero value otherwise.

func (*V1alpha1TLSClientConfig) GetServerNameOk ¶

func (o *V1alpha1TLSClientConfig) GetServerNameOk() (*string, bool)

GetServerNameOk returns a tuple with the ServerName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1alpha1TLSClientConfig) HasCaData ¶

func (o *V1alpha1TLSClientConfig) HasCaData() bool

HasCaData returns a boolean if a field has been set.

func (*V1alpha1TLSClientConfig) HasCertData ¶

func (o *V1alpha1TLSClientConfig) HasCertData() bool

HasCertData returns a boolean if a field has been set.

func (*V1alpha1TLSClientConfig) HasInsecure ¶

func (o *V1alpha1TLSClientConfig) HasInsecure() bool

HasInsecure returns a boolean if a field has been set.

func (*V1alpha1TLSClientConfig) HasKeyData ¶

func (o *V1alpha1TLSClientConfig) HasKeyData() bool

HasKeyData returns a boolean if a field has been set.

func (*V1alpha1TLSClientConfig) HasServerName ¶

func (o *V1alpha1TLSClientConfig) HasServerName() bool

HasServerName returns a boolean if a field has been set.

func (V1alpha1TLSClientConfig) MarshalJSON ¶

func (o V1alpha1TLSClientConfig) MarshalJSON() ([]byte, error)

func (*V1alpha1TLSClientConfig) SetCaData ¶

func (o *V1alpha1TLSClientConfig) SetCaData(v string)

SetCaData gets a reference to the given string and assigns it to the CaData field.

func (*V1alpha1TLSClientConfig) SetCertData ¶

func (o *V1alpha1TLSClientConfig) SetCertData(v string)

SetCertData gets a reference to the given string and assigns it to the CertData field.

func (*V1alpha1TLSClientConfig) SetInsecure ¶

func (o *V1alpha1TLSClientConfig) SetInsecure(v bool)

SetInsecure gets a reference to the given bool and assigns it to the Insecure field.

func (*V1alpha1TLSClientConfig) SetKeyData ¶

func (o *V1alpha1TLSClientConfig) SetKeyData(v string)

SetKeyData gets a reference to the given string and assigns it to the KeyData field.

func (*V1alpha1TLSClientConfig) SetServerName ¶

func (o *V1alpha1TLSClientConfig) SetServerName(v string)

SetServerName gets a reference to the given string and assigns it to the ServerName field.

func (V1alpha1TLSClientConfig) ToMap ¶

func (o V1alpha1TLSClientConfig) ToMap() (map[string]interface{}, error)

type VersionServiceApiService ¶

type VersionServiceApiService service

VersionServiceApiService VersionServiceApi service

func (*VersionServiceApiService) VersionServiceVersion ¶

VersionServiceVersion Version returns version information of the API server

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiVersionServiceVersionRequest

func (*VersionServiceApiService) VersionServiceVersionExecute ¶

Execute executes the request

@return VersionVersionMessage

type VersionVersionMessage ¶

type VersionVersionMessage struct {
	BuildDate        *string `json:"BuildDate,omitempty"`
	Compiler         *string `json:"Compiler,omitempty"`
	GitCommit        *string `json:"GitCommit,omitempty"`
	GitTag           *string `json:"GitTag,omitempty"`
	GitTreeState     *string `json:"GitTreeState,omitempty"`
	GoVersion        *string `json:"GoVersion,omitempty"`
	HelmVersion      *string `json:"HelmVersion,omitempty"`
	JsonnetVersion   *string `json:"JsonnetVersion,omitempty"`
	KubectlVersion   *string `json:"KubectlVersion,omitempty"`
	KustomizeVersion *string `json:"KustomizeVersion,omitempty"`
	Platform         *string `json:"Platform,omitempty"`
	Version          *string `json:"Version,omitempty"`
}

VersionVersionMessage struct for VersionVersionMessage

func NewVersionVersionMessage ¶

func NewVersionVersionMessage() *VersionVersionMessage

NewVersionVersionMessage instantiates a new VersionVersionMessage 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 NewVersionVersionMessageWithDefaults ¶

func NewVersionVersionMessageWithDefaults() *VersionVersionMessage

NewVersionVersionMessageWithDefaults instantiates a new VersionVersionMessage 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 (*VersionVersionMessage) GetBuildDate ¶

func (o *VersionVersionMessage) GetBuildDate() string

GetBuildDate returns the BuildDate field value if set, zero value otherwise.

func (*VersionVersionMessage) GetBuildDateOk ¶

func (o *VersionVersionMessage) GetBuildDateOk() (*string, bool)

GetBuildDateOk returns a tuple with the BuildDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VersionVersionMessage) GetCompiler ¶

func (o *VersionVersionMessage) GetCompiler() string

GetCompiler returns the Compiler field value if set, zero value otherwise.

func (*VersionVersionMessage) GetCompilerOk ¶

func (o *VersionVersionMessage) GetCompilerOk() (*string, bool)

GetCompilerOk returns a tuple with the Compiler field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VersionVersionMessage) GetGitCommit ¶

func (o *VersionVersionMessage) GetGitCommit() string

GetGitCommit returns the GitCommit field value if set, zero value otherwise.

func (*VersionVersionMessage) GetGitCommitOk ¶

func (o *VersionVersionMessage) GetGitCommitOk() (*string, bool)

GetGitCommitOk returns a tuple with the GitCommit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VersionVersionMessage) GetGitTag ¶

func (o *VersionVersionMessage) GetGitTag() string

GetGitTag returns the GitTag field value if set, zero value otherwise.

func (*VersionVersionMessage) GetGitTagOk ¶

func (o *VersionVersionMessage) GetGitTagOk() (*string, bool)

GetGitTagOk returns a tuple with the GitTag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VersionVersionMessage) GetGitTreeState ¶

func (o *VersionVersionMessage) GetGitTreeState() string

GetGitTreeState returns the GitTreeState field value if set, zero value otherwise.

func (*VersionVersionMessage) GetGitTreeStateOk ¶

func (o *VersionVersionMessage) GetGitTreeStateOk() (*string, bool)

GetGitTreeStateOk returns a tuple with the GitTreeState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VersionVersionMessage) GetGoVersion ¶

func (o *VersionVersionMessage) GetGoVersion() string

GetGoVersion returns the GoVersion field value if set, zero value otherwise.

func (*VersionVersionMessage) GetGoVersionOk ¶

func (o *VersionVersionMessage) GetGoVersionOk() (*string, bool)

GetGoVersionOk returns a tuple with the GoVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VersionVersionMessage) GetHelmVersion ¶

func (o *VersionVersionMessage) GetHelmVersion() string

GetHelmVersion returns the HelmVersion field value if set, zero value otherwise.

func (*VersionVersionMessage) GetHelmVersionOk ¶

func (o *VersionVersionMessage) GetHelmVersionOk() (*string, bool)

GetHelmVersionOk returns a tuple with the HelmVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VersionVersionMessage) GetJsonnetVersion ¶

func (o *VersionVersionMessage) GetJsonnetVersion() string

GetJsonnetVersion returns the JsonnetVersion field value if set, zero value otherwise.

func (*VersionVersionMessage) GetJsonnetVersionOk ¶

func (o *VersionVersionMessage) GetJsonnetVersionOk() (*string, bool)

GetJsonnetVersionOk returns a tuple with the JsonnetVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VersionVersionMessage) GetKubectlVersion ¶

func (o *VersionVersionMessage) GetKubectlVersion() string

GetKubectlVersion returns the KubectlVersion field value if set, zero value otherwise.

func (*VersionVersionMessage) GetKubectlVersionOk ¶

func (o *VersionVersionMessage) GetKubectlVersionOk() (*string, bool)

GetKubectlVersionOk returns a tuple with the KubectlVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VersionVersionMessage) GetKustomizeVersion ¶

func (o *VersionVersionMessage) GetKustomizeVersion() string

GetKustomizeVersion returns the KustomizeVersion field value if set, zero value otherwise.

func (*VersionVersionMessage) GetKustomizeVersionOk ¶

func (o *VersionVersionMessage) GetKustomizeVersionOk() (*string, bool)

GetKustomizeVersionOk returns a tuple with the KustomizeVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VersionVersionMessage) GetPlatform ¶

func (o *VersionVersionMessage) GetPlatform() string

GetPlatform returns the Platform field value if set, zero value otherwise.

func (*VersionVersionMessage) GetPlatformOk ¶

func (o *VersionVersionMessage) GetPlatformOk() (*string, bool)

GetPlatformOk returns a tuple with the Platform field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VersionVersionMessage) GetVersion ¶

func (o *VersionVersionMessage) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*VersionVersionMessage) GetVersionOk ¶

func (o *VersionVersionMessage) 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 (*VersionVersionMessage) HasBuildDate ¶

func (o *VersionVersionMessage) HasBuildDate() bool

HasBuildDate returns a boolean if a field has been set.

func (*VersionVersionMessage) HasCompiler ¶

func (o *VersionVersionMessage) HasCompiler() bool

HasCompiler returns a boolean if a field has been set.

func (*VersionVersionMessage) HasGitCommit ¶

func (o *VersionVersionMessage) HasGitCommit() bool

HasGitCommit returns a boolean if a field has been set.

func (*VersionVersionMessage) HasGitTag ¶

func (o *VersionVersionMessage) HasGitTag() bool

HasGitTag returns a boolean if a field has been set.

func (*VersionVersionMessage) HasGitTreeState ¶

func (o *VersionVersionMessage) HasGitTreeState() bool

HasGitTreeState returns a boolean if a field has been set.

func (*VersionVersionMessage) HasGoVersion ¶

func (o *VersionVersionMessage) HasGoVersion() bool

HasGoVersion returns a boolean if a field has been set.

func (*VersionVersionMessage) HasHelmVersion ¶

func (o *VersionVersionMessage) HasHelmVersion() bool

HasHelmVersion returns a boolean if a field has been set.

func (*VersionVersionMessage) HasJsonnetVersion ¶

func (o *VersionVersionMessage) HasJsonnetVersion() bool

HasJsonnetVersion returns a boolean if a field has been set.

func (*VersionVersionMessage) HasKubectlVersion ¶

func (o *VersionVersionMessage) HasKubectlVersion() bool

HasKubectlVersion returns a boolean if a field has been set.

func (*VersionVersionMessage) HasKustomizeVersion ¶

func (o *VersionVersionMessage) HasKustomizeVersion() bool

HasKustomizeVersion returns a boolean if a field has been set.

func (*VersionVersionMessage) HasPlatform ¶

func (o *VersionVersionMessage) HasPlatform() bool

HasPlatform returns a boolean if a field has been set.

func (*VersionVersionMessage) HasVersion ¶

func (o *VersionVersionMessage) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (VersionVersionMessage) MarshalJSON ¶

func (o VersionVersionMessage) MarshalJSON() ([]byte, error)

func (*VersionVersionMessage) SetBuildDate ¶

func (o *VersionVersionMessage) SetBuildDate(v string)

SetBuildDate gets a reference to the given string and assigns it to the BuildDate field.

func (*VersionVersionMessage) SetCompiler ¶

func (o *VersionVersionMessage) SetCompiler(v string)

SetCompiler gets a reference to the given string and assigns it to the Compiler field.

func (*VersionVersionMessage) SetGitCommit ¶

func (o *VersionVersionMessage) SetGitCommit(v string)

SetGitCommit gets a reference to the given string and assigns it to the GitCommit field.

func (*VersionVersionMessage) SetGitTag ¶

func (o *VersionVersionMessage) SetGitTag(v string)

SetGitTag gets a reference to the given string and assigns it to the GitTag field.

func (*VersionVersionMessage) SetGitTreeState ¶

func (o *VersionVersionMessage) SetGitTreeState(v string)

SetGitTreeState gets a reference to the given string and assigns it to the GitTreeState field.

func (*VersionVersionMessage) SetGoVersion ¶

func (o *VersionVersionMessage) SetGoVersion(v string)

SetGoVersion gets a reference to the given string and assigns it to the GoVersion field.

func (*VersionVersionMessage) SetHelmVersion ¶

func (o *VersionVersionMessage) SetHelmVersion(v string)

SetHelmVersion gets a reference to the given string and assigns it to the HelmVersion field.

func (*VersionVersionMessage) SetJsonnetVersion ¶

func (o *VersionVersionMessage) SetJsonnetVersion(v string)

SetJsonnetVersion gets a reference to the given string and assigns it to the JsonnetVersion field.

func (*VersionVersionMessage) SetKubectlVersion ¶

func (o *VersionVersionMessage) SetKubectlVersion(v string)

SetKubectlVersion gets a reference to the given string and assigns it to the KubectlVersion field.

func (*VersionVersionMessage) SetKustomizeVersion ¶

func (o *VersionVersionMessage) SetKustomizeVersion(v string)

SetKustomizeVersion gets a reference to the given string and assigns it to the KustomizeVersion field.

func (*VersionVersionMessage) SetPlatform ¶

func (o *VersionVersionMessage) SetPlatform(v string)

SetPlatform gets a reference to the given string and assigns it to the Platform field.

func (*VersionVersionMessage) SetVersion ¶

func (o *VersionVersionMessage) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (VersionVersionMessage) ToMap ¶

func (o VersionVersionMessage) ToMap() (map[string]interface{}, error)

Source Files ¶

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL