serviceenablement

package module
v1.2.1 Latest Latest
Warning

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

Go to latest
Published: Jun 4, 2025 License: Apache-2.0 Imports: 22 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var AllowedActionErrorActionEnumValues = []ActionErrorAction{
	"DISABLE",
	"ENABLE",
}

All allowed values of ActionError enum

View Source
var AllowedCheckServiceResourceTypeEnumValues = []CheckServiceResourceType{
	"project",
}

All allowed values of CheckService enum

View Source
var AllowedCloudServiceScopeEnumValues = []CloudServiceScope{
	"PRIVATE",
	"PUBLIC",
}

All allowed values of CloudService enum

View Source
var AllowedParametersGeneralProjectScopeEnumValues = []ParametersGeneralProjectScope{
	"SCHWARZ",
	"PUBLIC",
}

All allowed values of ParametersGeneral enum

View Source
var AllowedServiceStatusEnablementEnumValues = []ServiceStatusEnablement{
	"REQUEST",
	"AUTO",
}

All allowed values of ServiceStatus enum

View Source
var AllowedServiceStatusLifecycleEnumValues = []ServiceStatusLifecycle{
	"FLEX",
	"PROJECT",
}

All allowed values of ServiceStatus enum

View Source
var AllowedServiceStatusScopeEnumValues = []ServiceStatusScope{
	"PRIVATE",
	"PUBLIC",
}

All allowed values of ServiceStatus enum

View Source
var AllowedServiceStatusStateEnumValues = []ServiceStatusState{
	"ENABLED",
	"ENABLING",
	"DISABLED",
	"DISABLING",
}

All allowed values of ServiceStatus enum

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func NewConfiguration

func NewConfiguration() *config.Configuration

NewConfiguration returns a new Configuration object

func ParameterValueToString

func ParameterValueToString(obj interface{}, key string) string

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 {
	// contains filtered or unexported fields
}

APIClient manages communication with the STACKIT Service Enablement API API v2.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(opts ...config.ConfigurationOption) (*APIClient, error)

NewAPIClient creates a new API client. Optionally receives configuration options

func (*APIClient) DisableServiceRegional added in v0.6.0

func (a *APIClient) DisableServiceRegional(ctx context.Context, region string, projectId string, serviceId string) ApiDisableServiceRegionalRequest

DisableServiceRegional: Method for DisableServiceRegional

disables the service in a project.

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

func (*APIClient) DisableServiceRegionalExecute added in v0.6.0

func (a *APIClient) DisableServiceRegionalExecute(ctx context.Context, region string, projectId string, serviceId string) error

func (*APIClient) EnableServiceRegional added in v0.6.0

func (a *APIClient) EnableServiceRegional(ctx context.Context, region string, projectId string, serviceId string) ApiEnableServiceRegionalRequest

EnableServiceRegional: Method for EnableServiceRegional

enables the service in a project.

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

func (*APIClient) EnableServiceRegionalExecute added in v0.6.0

func (a *APIClient) EnableServiceRegionalExecute(ctx context.Context, region string, projectId string, serviceId string) error

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *config.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

func (*APIClient) GetServiceStatusRegional added in v0.6.0

func (a *APIClient) GetServiceStatusRegional(ctx context.Context, region string, projectId string, serviceId string) ApiGetServiceStatusRegionalRequest

GetServiceStatusRegional: Method for GetServiceStatusRegional

returns the current status of a service in a project.

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

func (*APIClient) GetServiceStatusRegionalExecute added in v0.6.0

func (a *APIClient) GetServiceStatusRegionalExecute(ctx context.Context, region string, projectId string, serviceId string) (*ServiceStatus, error)

func (*APIClient) ListServiceStatusRegional added in v0.6.0

func (a *APIClient) ListServiceStatusRegional(ctx context.Context, region string, projectId string) ApiListServiceStatusRegionalRequest

ListServiceStatusRegional: Method for ListServiceStatusRegional

returns a list of all available services for a project.

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

func (*APIClient) ListServiceStatusRegionalExecute added in v0.6.0

func (a *APIClient) ListServiceStatusRegionalExecute(ctx context.Context, region string, projectId string) (*ListServiceStatusRegional200Response, error)

type ActionError

type ActionError struct {
	// the last action which was triggered on this service
	Action ActionErrorGetActionAttributeType `json:"action,omitempty"`
	// the error code if provided by the service
	Code ActionErrorGetCodeAttributeType `json:"code,omitempty"`
	// the error reason provided by the service
	Reason ActionErrorGetReasonAttributeType `json:"reason,omitempty"`
}

ActionError the last error for this service.

func NewActionError added in v0.3.0

func NewActionError() *ActionError

NewActionError instantiates a new ActionError 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 NewActionErrorWithDefaults added in v0.3.0

func NewActionErrorWithDefaults() *ActionError

NewActionErrorWithDefaults instantiates a new ActionError 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 (*ActionError) GetAction added in v0.3.0

func (o *ActionError) GetAction() (res ActionErrorGetActionRetType)

GetAction returns the Action field value if set, zero value otherwise.

func (*ActionError) GetActionOk added in v0.3.0

func (o *ActionError) GetActionOk() (ret ActionErrorGetActionRetType, ok 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 (*ActionError) GetCode added in v0.3.0

func (o *ActionError) GetCode() (res ActionErrorGetCodeRetType)

GetCode returns the Code field value if set, zero value otherwise.

func (*ActionError) GetCodeOk added in v0.3.0

func (o *ActionError) GetCodeOk() (ret ActionErrorGetCodeRetType, ok 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 (*ActionError) GetReason added in v0.3.0

func (o *ActionError) GetReason() (res ActionErrorGetReasonRetType)

GetReason returns the Reason field value if set, zero value otherwise.

func (*ActionError) GetReasonOk added in v0.3.0

func (o *ActionError) GetReasonOk() (ret ActionErrorGetReasonRetType, ok 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 (*ActionError) HasAction added in v0.3.0

func (o *ActionError) HasAction() bool

HasAction returns a boolean if a field has been set.

func (*ActionError) HasCode added in v0.3.0

func (o *ActionError) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*ActionError) HasReason added in v0.3.0

func (o *ActionError) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*ActionError) SetAction added in v0.3.0

func (o *ActionError) SetAction(v ActionErrorGetActionRetType)

SetAction gets a reference to the given string and assigns it to the Action field.

func (*ActionError) SetCode added in v0.3.0

func (o *ActionError) SetCode(v ActionErrorGetCodeRetType)

SetCode gets a reference to the given string and assigns it to the Code field.

func (*ActionError) SetReason added in v0.3.0

func (o *ActionError) SetReason(v ActionErrorGetReasonRetType)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (ActionError) ToMap added in v0.3.0

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

type ActionErrorAction added in v1.1.0

type ActionErrorAction string

ActionErrorAction the last action which was triggered on this service value type for enums

const (
	ACTIONERRORACTION_DISABLE ActionErrorAction = "DISABLE"
	ACTIONERRORACTION_ENABLE  ActionErrorAction = "ENABLE"
)

List of Action

func NewActionErrorActionFromValue added in v1.1.0

func NewActionErrorActionFromValue(v ActionErrorAction) (*ActionErrorAction, error)

NewActionErrorActionFromValue returns a pointer to a valid ActionErrorAction for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ActionErrorAction) IsValid added in v1.1.0

func (v ActionErrorAction) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ActionErrorAction) Ptr added in v1.1.0

Ptr returns reference to ActionAction value

func (*ActionErrorAction) UnmarshalJSON added in v1.1.0

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

type ActionErrorGetActionArgType added in v1.0.1

type ActionErrorGetActionArgType = ActionErrorAction

type ActionErrorGetActionAttributeType added in v1.0.1

type ActionErrorGetActionAttributeType = *ActionErrorAction

type ActionErrorGetActionRetType added in v1.0.1

type ActionErrorGetActionRetType = ActionErrorAction

type ActionErrorGetCodeArgType added in v1.0.1

type ActionErrorGetCodeArgType = string

type ActionErrorGetCodeAttributeType added in v1.0.1

type ActionErrorGetCodeAttributeType = *string

isNotNullableString

type ActionErrorGetCodeRetType added in v1.0.1

type ActionErrorGetCodeRetType = string

type ActionErrorGetReasonArgType added in v1.0.1

type ActionErrorGetReasonArgType = string

type ActionErrorGetReasonAttributeType added in v1.0.1

type ActionErrorGetReasonAttributeType = *string

isNotNullableString

type ActionErrorGetReasonRetType added in v1.0.1

type ActionErrorGetReasonRetType = string

type ApiDisableServiceRegionalRequest added in v0.6.0

type ApiDisableServiceRegionalRequest interface {
	Execute() error
}

type ApiEnableServiceRegionalRequest added in v0.6.0

type ApiEnableServiceRegionalRequest interface {
	Execute() error
}

type ApiGetServiceStatusRegionalRequest added in v0.6.0

type ApiGetServiceStatusRegionalRequest interface {
	Execute() (*ServiceStatus, error)
}

type ApiListServiceStatusRegionalRequest added in v0.6.0

type ApiListServiceStatusRegionalRequest interface {
	Cursor(cursor string) ApiListServiceStatusRegionalRequest
	Execute() (*ListServiceStatusRegional200Response, error)
}

type CheckService added in v0.6.0

type CheckService struct {
	// the identifier of the resource e.g. projectID
	Resource     CheckServiceGetResourceAttributeType     `json:"resource,omitempty"`
	ResourceType CheckServiceGetResourceTypeAttributeType `json:"resourceType,omitempty"`
	// the id of the service
	ServiceId CheckServiceGetServiceIdAttributeType `json:"serviceId,omitempty"`
}

CheckService struct for CheckService

func NewCheckService added in v0.6.0

func NewCheckService() *CheckService

NewCheckService instantiates a new CheckService 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 NewCheckServiceWithDefaults added in v0.6.0

func NewCheckServiceWithDefaults() *CheckService

NewCheckServiceWithDefaults instantiates a new CheckService 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 (*CheckService) GetResource added in v0.6.0

func (o *CheckService) GetResource() (res CheckServiceGetResourceRetType)

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

func (*CheckService) GetResourceOk added in v0.6.0

func (o *CheckService) GetResourceOk() (ret CheckServiceGetResourceRetType, ok bool)

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

func (*CheckService) GetResourceType added in v0.6.0

func (o *CheckService) GetResourceType() (res CheckServiceGetResourceTypeRetType)

GetResourceType returns the ResourceType field value if set, zero value otherwise.

func (*CheckService) GetResourceTypeOk added in v0.6.0

func (o *CheckService) GetResourceTypeOk() (ret CheckServiceGetResourceTypeRetType, ok bool)

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

func (*CheckService) GetServiceId added in v0.6.0

func (o *CheckService) GetServiceId() (res CheckServiceGetServiceIdRetType)

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*CheckService) GetServiceIdOk added in v0.6.0

func (o *CheckService) GetServiceIdOk() (ret CheckServiceGetServiceIdRetType, ok bool)

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

func (*CheckService) HasResource added in v0.6.0

func (o *CheckService) HasResource() bool

HasResource returns a boolean if a field has been set.

func (*CheckService) HasResourceType added in v0.6.0

func (o *CheckService) HasResourceType() bool

HasResourceType returns a boolean if a field has been set.

func (*CheckService) HasServiceId added in v0.6.0

func (o *CheckService) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*CheckService) SetResource added in v0.6.0

func (o *CheckService) SetResource(v CheckServiceGetResourceRetType)

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

func (*CheckService) SetResourceType added in v0.6.0

func (o *CheckService) SetResourceType(v CheckServiceGetResourceTypeRetType)

SetResourceType gets a reference to the given string and assigns it to the ResourceType field.

func (*CheckService) SetServiceId added in v0.6.0

func (o *CheckService) SetServiceId(v CheckServiceGetServiceIdRetType)

SetServiceId gets a reference to the given string and assigns it to the ServiceId field.

func (CheckService) ToMap added in v0.6.0

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

type CheckServiceGetResourceArgType added in v1.0.1

type CheckServiceGetResourceArgType = string

type CheckServiceGetResourceAttributeType added in v1.0.1

type CheckServiceGetResourceAttributeType = *string

isNotNullableString

type CheckServiceGetResourceRetType added in v1.0.1

type CheckServiceGetResourceRetType = string

type CheckServiceGetResourceTypeArgType added in v1.0.1

type CheckServiceGetResourceTypeArgType = CheckServiceResourceType

type CheckServiceGetResourceTypeAttributeType added in v1.0.1

type CheckServiceGetResourceTypeAttributeType = *CheckServiceResourceType

type CheckServiceGetResourceTypeRetType added in v1.0.1

type CheckServiceGetResourceTypeRetType = CheckServiceResourceType

type CheckServiceGetServiceIdArgType added in v1.0.1

type CheckServiceGetServiceIdArgType = string

type CheckServiceGetServiceIdAttributeType added in v1.0.1

type CheckServiceGetServiceIdAttributeType = *string

isNotNullableString

type CheckServiceGetServiceIdRetType added in v1.0.1

type CheckServiceGetServiceIdRetType = string

type CheckServiceResourceType added in v1.1.0

type CheckServiceResourceType string

CheckServiceResourceType the model 'CheckService' value type for enums

const (
	CHECKSERVICERESOURCE_TYPE_PROJECT CheckServiceResourceType = "project"
)

List of ResourceType

func NewCheckServiceResourceTypeFromValue added in v1.1.0

func NewCheckServiceResourceTypeFromValue(v CheckServiceResourceType) (*CheckServiceResourceType, error)

NewCheckServiceResourceTypeFromValue returns a pointer to a valid CheckServiceResourceType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (CheckServiceResourceType) IsValid added in v1.1.0

func (v CheckServiceResourceType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (CheckServiceResourceType) Ptr added in v1.1.0

Ptr returns reference to ResourceTypeResourceType value

func (*CheckServiceResourceType) UnmarshalJSON added in v1.1.0

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

type CloudService

type CloudService struct {
	Dependencies CloudServiceGetDependenciesAttributeType `json:"dependencies,omitempty"`
	Labels       CloudServiceGetLabelsAttributeType       `json:"labels,omitempty"`
	Scope        CloudServiceGetScopeAttributeType        `json:"scope,omitempty"`
	// the id of the service
	ServiceId CloudServiceGetServiceIdAttributeType `json:"serviceId,omitempty"`
}

CloudService struct for CloudService

func NewCloudService added in v0.3.0

func NewCloudService() *CloudService

NewCloudService instantiates a new CloudService 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 NewCloudServiceWithDefaults added in v0.3.0

func NewCloudServiceWithDefaults() *CloudService

NewCloudServiceWithDefaults instantiates a new CloudService 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 (*CloudService) GetDependencies added in v0.3.0

func (o *CloudService) GetDependencies() (res CloudServiceGetDependenciesRetType)

GetDependencies returns the Dependencies field value if set, zero value otherwise.

func (*CloudService) GetDependenciesOk added in v0.3.0

func (o *CloudService) GetDependenciesOk() (ret CloudServiceGetDependenciesRetType, ok bool)

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

func (*CloudService) GetLabels added in v0.3.0

func (o *CloudService) GetLabels() (res CloudServiceGetLabelsRetType)

GetLabels returns the Labels field value if set, zero value otherwise.

func (*CloudService) GetLabelsOk added in v0.3.0

func (o *CloudService) GetLabelsOk() (ret CloudServiceGetLabelsRetType, ok 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 (*CloudService) GetScope added in v0.3.0

func (o *CloudService) GetScope() (res CloudServiceGetScopeRetType)

GetScope returns the Scope field value if set, zero value otherwise.

func (*CloudService) GetScopeOk added in v0.3.0

func (o *CloudService) GetScopeOk() (ret CloudServiceGetScopeRetType, ok bool)

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

func (*CloudService) GetServiceId added in v0.3.0

func (o *CloudService) GetServiceId() (res CloudServiceGetServiceIdRetType)

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*CloudService) GetServiceIdOk added in v0.3.0

func (o *CloudService) GetServiceIdOk() (ret CloudServiceGetServiceIdRetType, ok bool)

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

func (*CloudService) HasDependencies added in v0.3.0

func (o *CloudService) HasDependencies() bool

HasDependencies returns a boolean if a field has been set.

func (*CloudService) HasLabels added in v0.3.0

func (o *CloudService) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*CloudService) HasScope added in v0.3.0

func (o *CloudService) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*CloudService) HasServiceId added in v0.3.0

func (o *CloudService) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*CloudService) SetDependencies added in v0.3.0

func (o *CloudService) SetDependencies(v CloudServiceGetDependenciesRetType)

SetDependencies gets a reference to the given Dependencies and assigns it to the Dependencies field.

func (*CloudService) SetLabels added in v0.3.0

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*CloudService) SetScope added in v0.3.0

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*CloudService) SetServiceId added in v0.3.0

func (o *CloudService) SetServiceId(v CloudServiceGetServiceIdRetType)

SetServiceId gets a reference to the given string and assigns it to the ServiceId field.

func (CloudService) ToMap added in v0.3.0

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

type CloudServiceGetDependenciesArgType added in v1.0.1

type CloudServiceGetDependenciesArgType = Dependencies

type CloudServiceGetDependenciesAttributeType added in v1.0.1

type CloudServiceGetDependenciesAttributeType = *Dependencies

isModel

type CloudServiceGetDependenciesRetType added in v1.0.1

type CloudServiceGetDependenciesRetType = Dependencies

type CloudServiceGetLabelsArgType added in v1.0.1

type CloudServiceGetLabelsArgType = map[string]string

type CloudServiceGetLabelsAttributeType added in v1.0.1

type CloudServiceGetLabelsAttributeType = *map[string]string

isContainer

type CloudServiceGetLabelsRetType added in v1.0.1

type CloudServiceGetLabelsRetType = map[string]string

type CloudServiceGetScopeArgType added in v1.0.1

type CloudServiceGetScopeArgType = CloudServiceScope

type CloudServiceGetScopeAttributeType added in v1.0.1

type CloudServiceGetScopeAttributeType = *CloudServiceScope

type CloudServiceGetScopeRetType added in v1.0.1

type CloudServiceGetScopeRetType = CloudServiceScope

type CloudServiceGetServiceIdArgType added in v1.0.1

type CloudServiceGetServiceIdArgType = string

type CloudServiceGetServiceIdAttributeType added in v1.0.1

type CloudServiceGetServiceIdAttributeType = *string

isNotNullableString

type CloudServiceGetServiceIdRetType added in v1.0.1

type CloudServiceGetServiceIdRetType = string

type CloudServiceScope added in v1.1.0

type CloudServiceScope string

CloudServiceScope the model 'CloudService' value type for enums

const (
	CLOUDSERVICESCOPE_PRIVATE CloudServiceScope = "PRIVATE"
	CLOUDSERVICESCOPE_PUBLIC  CloudServiceScope = "PUBLIC"
)

List of Scope

func NewCloudServiceScopeFromValue added in v1.1.0

func NewCloudServiceScopeFromValue(v CloudServiceScope) (*CloudServiceScope, error)

NewCloudServiceScopeFromValue returns a pointer to a valid CloudServiceScope for the value passed as argument, or an error if the value passed is not allowed by the enum

func (CloudServiceScope) IsValid added in v1.1.0

func (v CloudServiceScope) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (CloudServiceScope) Ptr added in v1.1.0

Ptr returns reference to ScopeScope value

func (*CloudServiceScope) UnmarshalJSON added in v1.1.0

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

type DefaultApi added in v1.2.0

type DefaultApi interface {
	/*
		DisableServiceRegional Method for DisableServiceRegional
		disables the service in a project.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param region
		@param projectId
		@param serviceId
		@return ApiDisableServiceRegionalRequest
	*/
	DisableServiceRegional(ctx context.Context, region string, projectId string, serviceId string) ApiDisableServiceRegionalRequest
	/*
		DisableServiceRegionalExecute executes the request

	*/
	DisableServiceRegionalExecute(ctx context.Context, region string, projectId string, serviceId string) error
	/*
		EnableServiceRegional Method for EnableServiceRegional
		enables the service in a project.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param region
		@param projectId
		@param serviceId
		@return ApiEnableServiceRegionalRequest
	*/
	EnableServiceRegional(ctx context.Context, region string, projectId string, serviceId string) ApiEnableServiceRegionalRequest
	/*
		EnableServiceRegionalExecute executes the request

	*/
	EnableServiceRegionalExecute(ctx context.Context, region string, projectId string, serviceId string) error
	/*
		GetServiceStatusRegional Method for GetServiceStatusRegional
		returns the current status of a service in a project.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param region
		@param projectId
		@param serviceId
		@return ApiGetServiceStatusRegionalRequest
	*/
	GetServiceStatusRegional(ctx context.Context, region string, projectId string, serviceId string) ApiGetServiceStatusRegionalRequest
	/*
		GetServiceStatusRegionalExecute executes the request

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

	*/
	GetServiceStatusRegionalExecute(ctx context.Context, region string, projectId string, serviceId string) (*ServiceStatus, error)
	/*
		ListServiceStatusRegional Method for ListServiceStatusRegional
		returns a list of all available services for a project.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param region
		@param projectId
		@return ApiListServiceStatusRegionalRequest
	*/
	ListServiceStatusRegional(ctx context.Context, region string, projectId string) ApiListServiceStatusRegionalRequest
	/*
		ListServiceStatusRegionalExecute executes the request

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

	*/
	ListServiceStatusRegionalExecute(ctx context.Context, region string, projectId string) (*ListServiceStatusRegional200Response, error)
}

type DefaultApiService

type DefaultApiService service

DefaultApiService DefaultApi service

type Dependencies

type Dependencies struct {
	// a list of service IDs which this service depend on. If the service is enabled, those service are enabled as well automatically.
	Hard DependenciesGetHardAttributeType `json:"hard,omitempty"`
	// a list of service IDs which this service depend on. When they are disabled a notification is sent.
	Soft DependenciesGetSoftAttributeType `json:"soft,omitempty"`
}

Dependencies struct for Dependencies

func NewDependencies added in v0.3.0

func NewDependencies() *Dependencies

NewDependencies instantiates a new Dependencies 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 NewDependenciesWithDefaults added in v0.3.0

func NewDependenciesWithDefaults() *Dependencies

NewDependenciesWithDefaults instantiates a new Dependencies 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 (*Dependencies) GetHard added in v0.3.0

func (o *Dependencies) GetHard() (res DependenciesGetHardRetType)

GetHard returns the Hard field value if set, zero value otherwise.

func (*Dependencies) GetHardOk added in v0.3.0

func (o *Dependencies) GetHardOk() (ret DependenciesGetHardRetType, ok bool)

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

func (*Dependencies) GetSoft added in v0.3.0

func (o *Dependencies) GetSoft() (res DependenciesGetSoftRetType)

GetSoft returns the Soft field value if set, zero value otherwise.

func (*Dependencies) GetSoftOk added in v0.3.0

func (o *Dependencies) GetSoftOk() (ret DependenciesGetSoftRetType, ok bool)

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

func (*Dependencies) HasHard added in v0.3.0

func (o *Dependencies) HasHard() bool

HasHard returns a boolean if a field has been set.

func (*Dependencies) HasSoft added in v0.3.0

func (o *Dependencies) HasSoft() bool

HasSoft returns a boolean if a field has been set.

func (*Dependencies) SetHard added in v0.3.0

SetHard gets a reference to the given []string and assigns it to the Hard field.

func (*Dependencies) SetSoft added in v0.3.0

SetSoft gets a reference to the given []string and assigns it to the Soft field.

func (Dependencies) ToMap added in v0.3.0

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

type DependenciesGetHardArgType added in v1.0.1

type DependenciesGetHardArgType = []string

type DependenciesGetHardAttributeType added in v1.0.1

type DependenciesGetHardAttributeType = *[]string

isArray

type DependenciesGetHardRetType added in v1.0.1

type DependenciesGetHardRetType = []string

type DependenciesGetSoftArgType added in v1.0.1

type DependenciesGetSoftArgType = []string

type DependenciesGetSoftAttributeType added in v1.0.1

type DependenciesGetSoftAttributeType = *[]string

isArray

type DependenciesGetSoftRetType added in v1.0.1

type DependenciesGetSoftRetType = []string

type DisableServiceRegionalRequest added in v1.2.0

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

func (DisableServiceRegionalRequest) Execute added in v1.2.0

type EnableServiceRegionalRequest added in v1.2.0

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

func (EnableServiceRegionalRequest) Execute added in v1.2.0

func (r EnableServiceRegionalRequest) Execute() error

type ErrorResponse added in v0.6.0

type ErrorResponse struct {
	Error   ErrorResponseGetErrorAttributeType   `json:"error,omitempty"`
	Message ErrorResponseGetMessageAttributeType `json:"message,omitempty"`
	Path    ErrorResponseGetPathAttributeType    `json:"path,omitempty"`
	// Can be cast to int32 without loss of precision.
	Status    ErrorResponseGetStatusAttributeType    `json:"status,omitempty"`
	Timestamp ErrorResponseGetTimestampAttributeType `json:"timestamp,omitempty"`
}

ErrorResponse struct for ErrorResponse

func NewErrorResponse added in v0.6.0

func NewErrorResponse() *ErrorResponse

NewErrorResponse instantiates a new ErrorResponse 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 NewErrorResponseWithDefaults added in v0.6.0

func NewErrorResponseWithDefaults() *ErrorResponse

NewErrorResponseWithDefaults instantiates a new ErrorResponse 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 (*ErrorResponse) GetError added in v0.6.0

func (o *ErrorResponse) GetError() (res ErrorResponseGetErrorRetType)

GetError returns the Error field value if set, zero value otherwise.

func (*ErrorResponse) GetErrorOk added in v0.6.0

func (o *ErrorResponse) GetErrorOk() (ret ErrorResponseGetErrorRetType, ok 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 (*ErrorResponse) GetMessage added in v0.6.0

func (o *ErrorResponse) GetMessage() (res ErrorResponseGetMessageRetType)

GetMessage returns the Message field value if set, zero value otherwise.

func (*ErrorResponse) GetMessageOk added in v0.6.0

func (o *ErrorResponse) GetMessageOk() (ret ErrorResponseGetMessageRetType, ok 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 (*ErrorResponse) GetPath added in v0.6.0

func (o *ErrorResponse) GetPath() (res ErrorResponseGetPathRetType)

GetPath returns the Path field value if set, zero value otherwise.

func (*ErrorResponse) GetPathOk added in v0.6.0

func (o *ErrorResponse) GetPathOk() (ret ErrorResponseGetPathRetType, ok 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 (*ErrorResponse) GetStatus added in v0.6.0

func (o *ErrorResponse) GetStatus() (res ErrorResponseGetStatusRetType)

GetStatus returns the Status field value if set, zero value otherwise.

func (*ErrorResponse) GetStatusOk added in v0.6.0

func (o *ErrorResponse) GetStatusOk() (ret ErrorResponseGetStatusRetType, ok 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 (*ErrorResponse) GetTimestamp added in v0.6.0

func (o *ErrorResponse) GetTimestamp() (res ErrorResponseGetTimestampRetType)

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*ErrorResponse) GetTimestampOk added in v0.6.0

func (o *ErrorResponse) GetTimestampOk() (ret ErrorResponseGetTimestampRetType, ok 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 (*ErrorResponse) HasError added in v0.6.0

func (o *ErrorResponse) HasError() bool

HasError returns a boolean if a field has been set.

func (*ErrorResponse) HasMessage added in v0.6.0

func (o *ErrorResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ErrorResponse) HasPath added in v0.6.0

func (o *ErrorResponse) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*ErrorResponse) HasStatus added in v0.6.0

func (o *ErrorResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ErrorResponse) HasTimestamp added in v0.6.0

func (o *ErrorResponse) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*ErrorResponse) SetError added in v0.6.0

SetError gets a reference to the given string and assigns it to the Error field.

func (*ErrorResponse) SetMessage added in v0.6.0

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ErrorResponse) SetPath added in v0.6.0

SetPath gets a reference to the given string and assigns it to the Path field.

func (*ErrorResponse) SetStatus added in v0.6.0

SetStatus gets a reference to the given int64 and assigns it to the Status field.

func (*ErrorResponse) SetTimestamp added in v0.6.0

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (ErrorResponse) ToMap added in v0.6.0

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

type ErrorResponseGetErrorArgType added in v1.0.1

type ErrorResponseGetErrorArgType = string

type ErrorResponseGetErrorAttributeType added in v1.0.1

type ErrorResponseGetErrorAttributeType = *string

isNotNullableString

type ErrorResponseGetErrorRetType added in v1.0.1

type ErrorResponseGetErrorRetType = string

type ErrorResponseGetMessageArgType added in v1.0.1

type ErrorResponseGetMessageArgType = string

type ErrorResponseGetMessageAttributeType added in v1.0.1

type ErrorResponseGetMessageAttributeType = *string

isNotNullableString

type ErrorResponseGetMessageRetType added in v1.0.1

type ErrorResponseGetMessageRetType = string

type ErrorResponseGetPathArgType added in v1.0.1

type ErrorResponseGetPathArgType = string

type ErrorResponseGetPathAttributeType added in v1.0.1

type ErrorResponseGetPathAttributeType = *string

isNotNullableString

type ErrorResponseGetPathRetType added in v1.0.1

type ErrorResponseGetPathRetType = string

type ErrorResponseGetStatusArgType added in v1.0.1

type ErrorResponseGetStatusArgType = int64

type ErrorResponseGetStatusAttributeType added in v1.0.1

type ErrorResponseGetStatusAttributeType = *int64

isInteger

type ErrorResponseGetStatusRetType added in v1.0.1

type ErrorResponseGetStatusRetType = int64

type ErrorResponseGetTimestampArgType added in v1.0.1

type ErrorResponseGetTimestampArgType = time.Time

type ErrorResponseGetTimestampAttributeType added in v1.0.1

type ErrorResponseGetTimestampAttributeType = *time.Time

isDateTime

type ErrorResponseGetTimestampRetType added in v1.0.1

type ErrorResponseGetTimestampRetType = time.Time

type GetServiceStatusRegionalRequest added in v1.2.0

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

func (GetServiceStatusRegionalRequest) Execute added in v1.2.0

type ListServiceStatusRegional200Response added in v0.6.0

type ListServiceStatusRegional200Response struct {
	Items      ListServiceStatusRegional200ResponseGetItemsAttributeType      `json:"items,omitempty"`
	NextCursor ListServiceStatusRegional200ResponseGetNextCursorAttributeType `json:"nextCursor,omitempty"`
}

ListServiceStatusRegional200Response struct for ListServiceStatusRegional200Response

func NewListServiceStatusRegional200Response added in v0.6.0

func NewListServiceStatusRegional200Response() *ListServiceStatusRegional200Response

NewListServiceStatusRegional200Response instantiates a new ListServiceStatusRegional200Response 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 NewListServiceStatusRegional200ResponseWithDefaults added in v0.6.0

func NewListServiceStatusRegional200ResponseWithDefaults() *ListServiceStatusRegional200Response

NewListServiceStatusRegional200ResponseWithDefaults instantiates a new ListServiceStatusRegional200Response 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 (*ListServiceStatusRegional200Response) GetItems added in v0.6.0

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

func (*ListServiceStatusRegional200Response) GetItemsOk added in v0.6.0

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 (*ListServiceStatusRegional200Response) GetNextCursor added in v0.6.0

GetNextCursor returns the NextCursor field value if set, zero value otherwise.

func (*ListServiceStatusRegional200Response) GetNextCursorOk added in v0.6.0

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

func (*ListServiceStatusRegional200Response) HasItems added in v0.6.0

HasItems returns a boolean if a field has been set.

func (*ListServiceStatusRegional200Response) HasNextCursor added in v0.6.0

func (o *ListServiceStatusRegional200Response) HasNextCursor() bool

HasNextCursor returns a boolean if a field has been set.

func (*ListServiceStatusRegional200Response) SetItems added in v0.6.0

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

func (*ListServiceStatusRegional200Response) SetNextCursor added in v0.6.0

SetNextCursor gets a reference to the given string and assigns it to the NextCursor field.

func (ListServiceStatusRegional200Response) ToMap added in v0.6.0

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

type ListServiceStatusRegional200ResponseGetItemsArgType added in v1.0.1

type ListServiceStatusRegional200ResponseGetItemsArgType = []ServiceStatus

type ListServiceStatusRegional200ResponseGetItemsAttributeType added in v1.0.1

type ListServiceStatusRegional200ResponseGetItemsAttributeType = *[]ServiceStatus

isArray

type ListServiceStatusRegional200ResponseGetItemsRetType added in v1.0.1

type ListServiceStatusRegional200ResponseGetItemsRetType = []ServiceStatus

type ListServiceStatusRegional200ResponseGetNextCursorArgType added in v1.0.1

type ListServiceStatusRegional200ResponseGetNextCursorArgType = string

type ListServiceStatusRegional200ResponseGetNextCursorAttributeType added in v1.0.1

type ListServiceStatusRegional200ResponseGetNextCursorAttributeType = *string

isNotNullableString

type ListServiceStatusRegional200ResponseGetNextCursorRetType added in v1.0.1

type ListServiceStatusRegional200ResponseGetNextCursorRetType = string

type ListServiceStatusRegionalRequest added in v1.2.0

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

func (ListServiceStatusRegionalRequest) Cursor added in v1.2.0

func (ListServiceStatusRegionalRequest) Execute added in v1.2.0

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type NullableActionError added in v0.3.0

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

func NewNullableActionError added in v0.3.0

func NewNullableActionError(val *ActionError) *NullableActionError

func (NullableActionError) Get added in v0.3.0

func (NullableActionError) IsSet added in v0.3.0

func (v NullableActionError) IsSet() bool

func (NullableActionError) MarshalJSON added in v0.3.0

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

func (*NullableActionError) Set added in v0.3.0

func (v *NullableActionError) Set(val *ActionError)

func (*NullableActionError) UnmarshalJSON added in v0.3.0

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

func (*NullableActionError) Unset added in v0.3.0

func (v *NullableActionError) Unset()

type NullableActionErrorAction added in v1.1.0

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

func NewNullableActionErrorAction added in v1.1.0

func NewNullableActionErrorAction(val *ActionErrorAction) *NullableActionErrorAction

func (NullableActionErrorAction) Get added in v1.1.0

func (NullableActionErrorAction) IsSet added in v1.1.0

func (v NullableActionErrorAction) IsSet() bool

func (NullableActionErrorAction) MarshalJSON added in v1.1.0

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

func (*NullableActionErrorAction) Set added in v1.1.0

func (*NullableActionErrorAction) UnmarshalJSON added in v1.1.0

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

func (*NullableActionErrorAction) Unset added in v1.1.0

func (v *NullableActionErrorAction) 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 NullableCheckService added in v0.6.0

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

func NewNullableCheckService added in v0.6.0

func NewNullableCheckService(val *CheckService) *NullableCheckService

func (NullableCheckService) Get added in v0.6.0

func (NullableCheckService) IsSet added in v0.6.0

func (v NullableCheckService) IsSet() bool

func (NullableCheckService) MarshalJSON added in v0.6.0

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

func (*NullableCheckService) Set added in v0.6.0

func (v *NullableCheckService) Set(val *CheckService)

func (*NullableCheckService) UnmarshalJSON added in v0.6.0

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

func (*NullableCheckService) Unset added in v0.6.0

func (v *NullableCheckService) Unset()

type NullableCheckServiceResourceType added in v1.1.0

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

func NewNullableCheckServiceResourceType added in v1.1.0

func NewNullableCheckServiceResourceType(val *CheckServiceResourceType) *NullableCheckServiceResourceType

func (NullableCheckServiceResourceType) Get added in v1.1.0

func (NullableCheckServiceResourceType) IsSet added in v1.1.0

func (NullableCheckServiceResourceType) MarshalJSON added in v1.1.0

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

func (*NullableCheckServiceResourceType) Set added in v1.1.0

func (*NullableCheckServiceResourceType) UnmarshalJSON added in v1.1.0

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

func (*NullableCheckServiceResourceType) Unset added in v1.1.0

type NullableCloudService added in v0.3.0

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

func NewNullableCloudService added in v0.3.0

func NewNullableCloudService(val *CloudService) *NullableCloudService

func (NullableCloudService) Get added in v0.3.0

func (NullableCloudService) IsSet added in v0.3.0

func (v NullableCloudService) IsSet() bool

func (NullableCloudService) MarshalJSON added in v0.3.0

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

func (*NullableCloudService) Set added in v0.3.0

func (v *NullableCloudService) Set(val *CloudService)

func (*NullableCloudService) UnmarshalJSON added in v0.3.0

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

func (*NullableCloudService) Unset added in v0.3.0

func (v *NullableCloudService) Unset()

type NullableCloudServiceScope added in v1.1.0

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

func NewNullableCloudServiceScope added in v1.1.0

func NewNullableCloudServiceScope(val *CloudServiceScope) *NullableCloudServiceScope

func (NullableCloudServiceScope) Get added in v1.1.0

func (NullableCloudServiceScope) IsSet added in v1.1.0

func (v NullableCloudServiceScope) IsSet() bool

func (NullableCloudServiceScope) MarshalJSON added in v1.1.0

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

func (*NullableCloudServiceScope) Set added in v1.1.0

func (*NullableCloudServiceScope) UnmarshalJSON added in v1.1.0

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

func (*NullableCloudServiceScope) Unset added in v1.1.0

func (v *NullableCloudServiceScope) Unset()

type NullableDependencies added in v0.3.0

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

func NewNullableDependencies added in v0.3.0

func NewNullableDependencies(val *Dependencies) *NullableDependencies

func (NullableDependencies) Get added in v0.3.0

func (NullableDependencies) IsSet added in v0.3.0

func (v NullableDependencies) IsSet() bool

func (NullableDependencies) MarshalJSON added in v0.3.0

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

func (*NullableDependencies) Set added in v0.3.0

func (v *NullableDependencies) Set(val *Dependencies)

func (*NullableDependencies) UnmarshalJSON added in v0.3.0

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

func (*NullableDependencies) Unset added in v0.3.0

func (v *NullableDependencies) Unset()

type NullableErrorResponse added in v0.6.0

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

func NewNullableErrorResponse added in v0.6.0

func NewNullableErrorResponse(val *ErrorResponse) *NullableErrorResponse

func (NullableErrorResponse) Get added in v0.6.0

func (NullableErrorResponse) IsSet added in v0.6.0

func (v NullableErrorResponse) IsSet() bool

func (NullableErrorResponse) MarshalJSON added in v0.6.0

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

func (*NullableErrorResponse) Set added in v0.6.0

func (v *NullableErrorResponse) Set(val *ErrorResponse)

func (*NullableErrorResponse) UnmarshalJSON added in v0.6.0

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

func (*NullableErrorResponse) Unset added in v0.6.0

func (v *NullableErrorResponse) 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 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 NullableListServiceStatusRegional200Response added in v0.6.0

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

func NewNullableListServiceStatusRegional200Response added in v0.6.0

func NewNullableListServiceStatusRegional200Response(val *ListServiceStatusRegional200Response) *NullableListServiceStatusRegional200Response

func (NullableListServiceStatusRegional200Response) Get added in v0.6.0

func (NullableListServiceStatusRegional200Response) IsSet added in v0.6.0

func (NullableListServiceStatusRegional200Response) MarshalJSON added in v0.6.0

func (*NullableListServiceStatusRegional200Response) Set added in v0.6.0

func (*NullableListServiceStatusRegional200Response) UnmarshalJSON added in v0.6.0

func (*NullableListServiceStatusRegional200Response) Unset added in v0.6.0

type NullableParameters added in v0.3.0

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

func NewNullableParameters added in v0.3.0

func NewNullableParameters(val *Parameters) *NullableParameters

func (NullableParameters) Get added in v0.3.0

func (v NullableParameters) Get() *Parameters

func (NullableParameters) IsSet added in v0.3.0

func (v NullableParameters) IsSet() bool

func (NullableParameters) MarshalJSON added in v0.3.0

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

func (*NullableParameters) Set added in v0.3.0

func (v *NullableParameters) Set(val *Parameters)

func (*NullableParameters) UnmarshalJSON added in v0.3.0

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

func (*NullableParameters) Unset added in v0.3.0

func (v *NullableParameters) Unset()

type NullableParametersGeneral added in v0.3.0

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

func NewNullableParametersGeneral added in v0.3.0

func NewNullableParametersGeneral(val *ParametersGeneral) *NullableParametersGeneral

func (NullableParametersGeneral) Get added in v0.3.0

func (NullableParametersGeneral) IsSet added in v0.3.0

func (v NullableParametersGeneral) IsSet() bool

func (NullableParametersGeneral) MarshalJSON added in v0.3.0

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

func (*NullableParametersGeneral) Set added in v0.3.0

func (*NullableParametersGeneral) UnmarshalJSON added in v0.3.0

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

func (*NullableParametersGeneral) Unset added in v0.3.0

func (v *NullableParametersGeneral) Unset()

type NullableParametersGeneralProjectScope added in v1.1.0

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

func NewNullableParametersGeneralProjectScope added in v1.1.0

func NewNullableParametersGeneralProjectScope(val *ParametersGeneralProjectScope) *NullableParametersGeneralProjectScope

func (NullableParametersGeneralProjectScope) Get added in v1.1.0

func (NullableParametersGeneralProjectScope) IsSet added in v1.1.0

func (NullableParametersGeneralProjectScope) MarshalJSON added in v1.1.0

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

func (*NullableParametersGeneralProjectScope) Set added in v1.1.0

func (*NullableParametersGeneralProjectScope) UnmarshalJSON added in v1.1.0

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

func (*NullableParametersGeneralProjectScope) Unset added in v1.1.0

type NullableServiceStatus added in v0.3.0

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

func NewNullableServiceStatus added in v0.3.0

func NewNullableServiceStatus(val *ServiceStatus) *NullableServiceStatus

func (NullableServiceStatus) Get added in v0.3.0

func (NullableServiceStatus) IsSet added in v0.3.0

func (v NullableServiceStatus) IsSet() bool

func (NullableServiceStatus) MarshalJSON added in v0.3.0

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

func (*NullableServiceStatus) Set added in v0.3.0

func (v *NullableServiceStatus) Set(val *ServiceStatus)

func (*NullableServiceStatus) UnmarshalJSON added in v0.3.0

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

func (*NullableServiceStatus) Unset added in v0.3.0

func (v *NullableServiceStatus) Unset()

type NullableServiceStatusEnablement added in v1.1.0

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

func NewNullableServiceStatusEnablement added in v1.1.0

func NewNullableServiceStatusEnablement(val *ServiceStatusEnablement) *NullableServiceStatusEnablement

func (NullableServiceStatusEnablement) Get added in v1.1.0

func (NullableServiceStatusEnablement) IsSet added in v1.1.0

func (NullableServiceStatusEnablement) MarshalJSON added in v1.1.0

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

func (*NullableServiceStatusEnablement) Set added in v1.1.0

func (*NullableServiceStatusEnablement) UnmarshalJSON added in v1.1.0

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

func (*NullableServiceStatusEnablement) Unset added in v1.1.0

type NullableServiceStatusLifecycle added in v1.1.0

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

func NewNullableServiceStatusLifecycle added in v1.1.0

func NewNullableServiceStatusLifecycle(val *ServiceStatusLifecycle) *NullableServiceStatusLifecycle

func (NullableServiceStatusLifecycle) Get added in v1.1.0

func (NullableServiceStatusLifecycle) IsSet added in v1.1.0

func (NullableServiceStatusLifecycle) MarshalJSON added in v1.1.0

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

func (*NullableServiceStatusLifecycle) Set added in v1.1.0

func (*NullableServiceStatusLifecycle) UnmarshalJSON added in v1.1.0

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

func (*NullableServiceStatusLifecycle) Unset added in v1.1.0

func (v *NullableServiceStatusLifecycle) Unset()

type NullableServiceStatusScope added in v1.1.0

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

func NewNullableServiceStatusScope added in v1.1.0

func NewNullableServiceStatusScope(val *ServiceStatusScope) *NullableServiceStatusScope

func (NullableServiceStatusScope) Get added in v1.1.0

func (NullableServiceStatusScope) IsSet added in v1.1.0

func (v NullableServiceStatusScope) IsSet() bool

func (NullableServiceStatusScope) MarshalJSON added in v1.1.0

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

func (*NullableServiceStatusScope) Set added in v1.1.0

func (*NullableServiceStatusScope) UnmarshalJSON added in v1.1.0

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

func (*NullableServiceStatusScope) Unset added in v1.1.0

func (v *NullableServiceStatusScope) Unset()

type NullableServiceStatusState added in v1.1.0

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

func NewNullableServiceStatusState added in v1.1.0

func NewNullableServiceStatusState(val *ServiceStatusState) *NullableServiceStatusState

func (NullableServiceStatusState) Get added in v1.1.0

func (NullableServiceStatusState) IsSet added in v1.1.0

func (v NullableServiceStatusState) IsSet() bool

func (NullableServiceStatusState) MarshalJSON added in v1.1.0

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

func (*NullableServiceStatusState) Set added in v1.1.0

func (*NullableServiceStatusState) UnmarshalJSON added in v1.1.0

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

func (*NullableServiceStatusState) Unset added in v1.1.0

func (v *NullableServiceStatusState) 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 NullableValue added in v1.0.1

type NullableValue[T any] struct {
	// contains filtered or unexported fields
}

func (NullableValue[T]) Get added in v1.0.1

func (v NullableValue[T]) Get() *T

func (NullableValue[T]) IsSet added in v1.0.1

func (v NullableValue[T]) IsSet() bool

func (*NullableValue[T]) Set added in v1.0.1

func (v *NullableValue[T]) Set(val *T)

func (*NullableValue[T]) Unset added in v1.0.1

func (v *NullableValue[T]) Unset()

type Parameters

type Parameters struct {
	General ParametersGetGeneralAttributeType `json:"general,omitempty"`
}

Parameters service parameters

func NewParameters added in v0.3.0

func NewParameters() *Parameters

NewParameters instantiates a new Parameters 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 NewParametersWithDefaults added in v0.3.0

func NewParametersWithDefaults() *Parameters

NewParametersWithDefaults instantiates a new Parameters 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 (*Parameters) GetGeneral added in v0.3.0

func (o *Parameters) GetGeneral() (res ParametersGetGeneralRetType)

GetGeneral returns the General field value if set, zero value otherwise.

func (*Parameters) GetGeneralOk added in v0.3.0

func (o *Parameters) GetGeneralOk() (ret ParametersGetGeneralRetType, ok bool)

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

func (*Parameters) HasGeneral added in v0.3.0

func (o *Parameters) HasGeneral() bool

HasGeneral returns a boolean if a field has been set.

func (*Parameters) SetGeneral added in v0.3.0

func (o *Parameters) SetGeneral(v ParametersGetGeneralRetType)

SetGeneral gets a reference to the given ParametersGeneral and assigns it to the General field.

func (Parameters) ToMap added in v0.3.0

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

type ParametersGeneral

type ParametersGeneral struct {
	OrganizationId ParametersGeneralGetOrganizationIdAttributeType `json:"organizationId,omitempty"`
	ProjectName    ParametersGeneralGetProjectNameAttributeType    `json:"projectName,omitempty"`
	ProjectScope   ParametersGeneralGetProjectScopeAttributeType   `json:"projectScope,omitempty"`
}

ParametersGeneral struct for ParametersGeneral

func NewParametersGeneral added in v0.3.0

func NewParametersGeneral() *ParametersGeneral

NewParametersGeneral instantiates a new ParametersGeneral 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 NewParametersGeneralWithDefaults added in v0.3.0

func NewParametersGeneralWithDefaults() *ParametersGeneral

NewParametersGeneralWithDefaults instantiates a new ParametersGeneral 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 (*ParametersGeneral) GetOrganizationId added in v0.3.0

func (o *ParametersGeneral) GetOrganizationId() (res ParametersGeneralGetOrganizationIdRetType)

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*ParametersGeneral) GetOrganizationIdOk added in v0.3.0

func (o *ParametersGeneral) GetOrganizationIdOk() (ret ParametersGeneralGetOrganizationIdRetType, ok bool)

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

func (*ParametersGeneral) GetProjectName added in v0.3.0

GetProjectName returns the ProjectName field value if set, zero value otherwise.

func (*ParametersGeneral) GetProjectNameOk added in v0.3.0

func (o *ParametersGeneral) GetProjectNameOk() (ret ParametersGeneralGetProjectNameRetType, ok bool)

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

func (*ParametersGeneral) GetProjectScope added in v0.3.0

GetProjectScope returns the ProjectScope field value if set, zero value otherwise.

func (*ParametersGeneral) GetProjectScopeOk added in v0.3.0

func (o *ParametersGeneral) GetProjectScopeOk() (ret ParametersGeneralGetProjectScopeRetType, ok bool)

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

func (*ParametersGeneral) HasOrganizationId added in v0.3.0

func (o *ParametersGeneral) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*ParametersGeneral) HasProjectName added in v0.3.0

func (o *ParametersGeneral) HasProjectName() bool

HasProjectName returns a boolean if a field has been set.

func (*ParametersGeneral) HasProjectScope added in v0.3.0

func (o *ParametersGeneral) HasProjectScope() bool

HasProjectScope returns a boolean if a field has been set.

func (*ParametersGeneral) SetOrganizationId added in v0.3.0

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*ParametersGeneral) SetProjectName added in v0.3.0

SetProjectName gets a reference to the given string and assigns it to the ProjectName field.

func (*ParametersGeneral) SetProjectScope added in v0.3.0

SetProjectScope gets a reference to the given string and assigns it to the ProjectScope field.

func (ParametersGeneral) ToMap added in v0.3.0

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

type ParametersGeneralGetOrganizationIdArgType added in v1.0.1

type ParametersGeneralGetOrganizationIdArgType = string

type ParametersGeneralGetOrganizationIdAttributeType added in v1.0.1

type ParametersGeneralGetOrganizationIdAttributeType = *string

isNotNullableString

type ParametersGeneralGetOrganizationIdRetType added in v1.0.1

type ParametersGeneralGetOrganizationIdRetType = string

type ParametersGeneralGetProjectNameArgType added in v1.0.1

type ParametersGeneralGetProjectNameArgType = string

type ParametersGeneralGetProjectNameAttributeType added in v1.0.1

type ParametersGeneralGetProjectNameAttributeType = *string

isNotNullableString

type ParametersGeneralGetProjectNameRetType added in v1.0.1

type ParametersGeneralGetProjectNameRetType = string

type ParametersGeneralGetProjectScopeArgType added in v1.0.1

type ParametersGeneralGetProjectScopeArgType = ParametersGeneralProjectScope

type ParametersGeneralGetProjectScopeAttributeType added in v1.0.1

type ParametersGeneralGetProjectScopeAttributeType = *ParametersGeneralProjectScope

type ParametersGeneralGetProjectScopeRetType added in v1.0.1

type ParametersGeneralGetProjectScopeRetType = ParametersGeneralProjectScope

type ParametersGeneralProjectScope added in v1.1.0

type ParametersGeneralProjectScope string

ParametersGeneralProjectScope the model 'ParametersGeneral' value type for enums

const (
	PARAMETERSGENERALPROJECT_SCOPE_SCHWARZ ParametersGeneralProjectScope = "SCHWARZ"
	PARAMETERSGENERALPROJECT_SCOPE_PUBLIC  ParametersGeneralProjectScope = "PUBLIC"
)

List of ProjectScope

func NewParametersGeneralProjectScopeFromValue added in v1.1.0

func NewParametersGeneralProjectScopeFromValue(v ParametersGeneralProjectScope) (*ParametersGeneralProjectScope, error)

NewParametersGeneralProjectScopeFromValue returns a pointer to a valid ParametersGeneralProjectScope for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ParametersGeneralProjectScope) IsValid added in v1.1.0

func (v ParametersGeneralProjectScope) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ParametersGeneralProjectScope) Ptr added in v1.1.0

Ptr returns reference to ProjectScopeProjectScope value

func (*ParametersGeneralProjectScope) UnmarshalJSON added in v1.1.0

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

type ParametersGetGeneralArgType added in v1.0.1

type ParametersGetGeneralArgType = ParametersGeneral

type ParametersGetGeneralAttributeType added in v1.0.1

type ParametersGetGeneralAttributeType = *ParametersGeneral

isModel

type ParametersGetGeneralRetType added in v1.0.1

type ParametersGetGeneralRetType = ParametersGeneral

type ServiceStatus

type ServiceStatus struct {
	Dependencies ServiceStatusGetDependenciesAttributeType `json:"dependencies,omitempty"`
	Enablement   ServiceStatusGetEnablementAttributeType   `json:"enablement,omitempty"`
	Error        ServiceStatusGetErrorAttributeType        `json:"error,omitempty"`
	Labels       ServiceStatusGetLabelsAttributeType       `json:"labels,omitempty"`
	Lifecycle    ServiceStatusGetLifecycleAttributeType    `json:"lifecycle,omitempty"`
	Parameters   ServiceStatusGetParametersAttributeType   `json:"parameters,omitempty"`
	Scope        ServiceStatusGetScopeAttributeType        `json:"scope,omitempty"`
	// the id of the service
	ServiceId ServiceStatusGetServiceIdAttributeType `json:"serviceId,omitempty"`
	// the state of a service within a project
	State ServiceStatusGetStateAttributeType `json:"state,omitempty"`
}

ServiceStatus struct for ServiceStatus

func NewServiceStatus added in v0.3.0

func NewServiceStatus() *ServiceStatus

NewServiceStatus instantiates a new ServiceStatus 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 NewServiceStatusWithDefaults added in v0.3.0

func NewServiceStatusWithDefaults() *ServiceStatus

NewServiceStatusWithDefaults instantiates a new ServiceStatus 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 (*ServiceStatus) GetDependencies added in v0.3.0

func (o *ServiceStatus) GetDependencies() (res ServiceStatusGetDependenciesRetType)

GetDependencies returns the Dependencies field value if set, zero value otherwise.

func (*ServiceStatus) GetDependenciesOk added in v0.3.0

func (o *ServiceStatus) GetDependenciesOk() (ret ServiceStatusGetDependenciesRetType, ok bool)

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

func (*ServiceStatus) GetEnablement added in v0.3.0

func (o *ServiceStatus) GetEnablement() (res ServiceStatusGetEnablementRetType)

GetEnablement returns the Enablement field value if set, zero value otherwise.

func (*ServiceStatus) GetEnablementOk added in v0.3.0

func (o *ServiceStatus) GetEnablementOk() (ret ServiceStatusGetEnablementRetType, ok bool)

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

func (*ServiceStatus) GetError added in v0.3.0

func (o *ServiceStatus) GetError() (res ServiceStatusGetErrorRetType)

GetError returns the Error field value if set, zero value otherwise.

func (*ServiceStatus) GetErrorOk added in v0.3.0

func (o *ServiceStatus) GetErrorOk() (ret ServiceStatusGetErrorRetType, ok 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 (*ServiceStatus) GetLabels added in v0.3.0

func (o *ServiceStatus) GetLabels() (res ServiceStatusGetLabelsRetType)

GetLabels returns the Labels field value if set, zero value otherwise.

func (*ServiceStatus) GetLabelsOk added in v0.3.0

func (o *ServiceStatus) GetLabelsOk() (ret ServiceStatusGetLabelsRetType, ok 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 (*ServiceStatus) GetLifecycle added in v0.3.0

func (o *ServiceStatus) GetLifecycle() (res ServiceStatusGetLifecycleRetType)

GetLifecycle returns the Lifecycle field value if set, zero value otherwise.

func (*ServiceStatus) GetLifecycleOk added in v0.3.0

func (o *ServiceStatus) GetLifecycleOk() (ret ServiceStatusGetLifecycleRetType, ok bool)

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

func (*ServiceStatus) GetParameters added in v0.3.0

func (o *ServiceStatus) GetParameters() (res ServiceStatusGetParametersRetType)

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*ServiceStatus) GetParametersOk added in v0.3.0

func (o *ServiceStatus) GetParametersOk() (ret ServiceStatusGetParametersRetType, ok 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 (*ServiceStatus) GetScope added in v0.3.0

func (o *ServiceStatus) GetScope() (res ServiceStatusGetScopeRetType)

GetScope returns the Scope field value if set, zero value otherwise.

func (*ServiceStatus) GetScopeOk added in v0.3.0

func (o *ServiceStatus) GetScopeOk() (ret ServiceStatusGetScopeRetType, ok bool)

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

func (*ServiceStatus) GetServiceId added in v0.3.0

func (o *ServiceStatus) GetServiceId() (res ServiceStatusGetServiceIdRetType)

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*ServiceStatus) GetServiceIdOk added in v0.3.0

func (o *ServiceStatus) GetServiceIdOk() (ret ServiceStatusGetServiceIdRetType, ok bool)

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

func (*ServiceStatus) GetState added in v0.3.0

func (o *ServiceStatus) GetState() (res ServiceStatusGetStateRetType)

GetState returns the State field value if set, zero value otherwise.

func (*ServiceStatus) GetStateOk added in v0.3.0

func (o *ServiceStatus) GetStateOk() (ret ServiceStatusGetStateRetType, ok bool)

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

func (*ServiceStatus) HasDependencies added in v0.3.0

func (o *ServiceStatus) HasDependencies() bool

HasDependencies returns a boolean if a field has been set.

func (*ServiceStatus) HasEnablement added in v0.3.0

func (o *ServiceStatus) HasEnablement() bool

HasEnablement returns a boolean if a field has been set.

func (*ServiceStatus) HasError added in v0.3.0

func (o *ServiceStatus) HasError() bool

HasError returns a boolean if a field has been set.

func (*ServiceStatus) HasLabels added in v0.3.0

func (o *ServiceStatus) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*ServiceStatus) HasLifecycle added in v0.3.0

func (o *ServiceStatus) HasLifecycle() bool

HasLifecycle returns a boolean if a field has been set.

func (*ServiceStatus) HasParameters added in v0.3.0

func (o *ServiceStatus) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (*ServiceStatus) HasScope added in v0.3.0

func (o *ServiceStatus) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*ServiceStatus) HasServiceId added in v0.3.0

func (o *ServiceStatus) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*ServiceStatus) HasState added in v0.3.0

func (o *ServiceStatus) HasState() bool

HasState returns a boolean if a field has been set.

func (*ServiceStatus) SetDependencies added in v0.3.0

func (o *ServiceStatus) SetDependencies(v ServiceStatusGetDependenciesRetType)

SetDependencies gets a reference to the given Dependencies and assigns it to the Dependencies field.

func (*ServiceStatus) SetEnablement added in v0.3.0

SetEnablement gets a reference to the given string and assigns it to the Enablement field.

func (*ServiceStatus) SetError added in v0.3.0

SetError gets a reference to the given ActionError and assigns it to the Error field.

func (*ServiceStatus) SetLabels added in v0.3.0

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*ServiceStatus) SetLifecycle added in v0.3.0

SetLifecycle gets a reference to the given string and assigns it to the Lifecycle field.

func (*ServiceStatus) SetParameters added in v0.3.0

SetParameters gets a reference to the given Parameters and assigns it to the Parameters field.

func (*ServiceStatus) SetScope added in v0.3.0

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*ServiceStatus) SetServiceId added in v0.3.0

SetServiceId gets a reference to the given string and assigns it to the ServiceId field.

func (*ServiceStatus) SetState added in v0.3.0

SetState gets a reference to the given string and assigns it to the State field.

func (ServiceStatus) ToMap added in v0.3.0

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

type ServiceStatusEnablement added in v1.1.0

type ServiceStatusEnablement string

ServiceStatusEnablement the model 'ServiceStatus' value type for enums

const (
	SERVICESTATUSENABLEMENT_REQUEST ServiceStatusEnablement = "REQUEST"
	SERVICESTATUSENABLEMENT_AUTO    ServiceStatusEnablement = "AUTO"
)

List of Enablement

func NewServiceStatusEnablementFromValue added in v1.1.0

func NewServiceStatusEnablementFromValue(v ServiceStatusEnablement) (*ServiceStatusEnablement, error)

NewServiceStatusEnablementFromValue returns a pointer to a valid ServiceStatusEnablement for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ServiceStatusEnablement) IsValid added in v1.1.0

func (v ServiceStatusEnablement) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ServiceStatusEnablement) Ptr added in v1.1.0

Ptr returns reference to EnablementEnablement value

func (*ServiceStatusEnablement) UnmarshalJSON added in v1.1.0

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

type ServiceStatusGetDependenciesArgType added in v1.0.1

type ServiceStatusGetDependenciesArgType = Dependencies

type ServiceStatusGetDependenciesAttributeType added in v1.0.1

type ServiceStatusGetDependenciesAttributeType = *Dependencies

isModel

type ServiceStatusGetDependenciesRetType added in v1.0.1

type ServiceStatusGetDependenciesRetType = Dependencies

type ServiceStatusGetEnablementArgType added in v1.0.1

type ServiceStatusGetEnablementArgType = ServiceStatusEnablement

type ServiceStatusGetEnablementAttributeType added in v1.0.1

type ServiceStatusGetEnablementAttributeType = *ServiceStatusEnablement

type ServiceStatusGetEnablementRetType added in v1.0.1

type ServiceStatusGetEnablementRetType = ServiceStatusEnablement

type ServiceStatusGetErrorArgType added in v1.0.1

type ServiceStatusGetErrorArgType = ActionError

type ServiceStatusGetErrorAttributeType added in v1.0.1

type ServiceStatusGetErrorAttributeType = *ActionError

isModel

type ServiceStatusGetErrorRetType added in v1.0.1

type ServiceStatusGetErrorRetType = ActionError

type ServiceStatusGetLabelsArgType added in v1.0.1

type ServiceStatusGetLabelsArgType = map[string]string

type ServiceStatusGetLabelsAttributeType added in v1.0.1

type ServiceStatusGetLabelsAttributeType = *map[string]string

isContainer

type ServiceStatusGetLabelsRetType added in v1.0.1

type ServiceStatusGetLabelsRetType = map[string]string

type ServiceStatusGetLifecycleArgType added in v1.0.1

type ServiceStatusGetLifecycleArgType = ServiceStatusLifecycle

type ServiceStatusGetLifecycleAttributeType added in v1.0.1

type ServiceStatusGetLifecycleAttributeType = *ServiceStatusLifecycle

type ServiceStatusGetLifecycleRetType added in v1.0.1

type ServiceStatusGetLifecycleRetType = ServiceStatusLifecycle

type ServiceStatusGetParametersArgType added in v1.0.1

type ServiceStatusGetParametersArgType = Parameters

type ServiceStatusGetParametersAttributeType added in v1.0.1

type ServiceStatusGetParametersAttributeType = *Parameters

fallback

type ServiceStatusGetParametersRetType added in v1.0.1

type ServiceStatusGetParametersRetType = Parameters

type ServiceStatusGetScopeArgType added in v1.0.1

type ServiceStatusGetScopeArgType = ServiceStatusScope

type ServiceStatusGetScopeAttributeType added in v1.0.1

type ServiceStatusGetScopeAttributeType = *ServiceStatusScope

type ServiceStatusGetScopeRetType added in v1.0.1

type ServiceStatusGetScopeRetType = ServiceStatusScope

type ServiceStatusGetServiceIdArgType added in v1.0.1

type ServiceStatusGetServiceIdArgType = string

type ServiceStatusGetServiceIdAttributeType added in v1.0.1

type ServiceStatusGetServiceIdAttributeType = *string

isNotNullableString

type ServiceStatusGetServiceIdRetType added in v1.0.1

type ServiceStatusGetServiceIdRetType = string

type ServiceStatusGetStateArgType added in v1.0.1

type ServiceStatusGetStateArgType = ServiceStatusState

type ServiceStatusGetStateAttributeType added in v1.0.1

type ServiceStatusGetStateAttributeType = *ServiceStatusState

type ServiceStatusGetStateRetType added in v1.0.1

type ServiceStatusGetStateRetType = ServiceStatusState

type ServiceStatusLifecycle added in v1.1.0

type ServiceStatusLifecycle string

ServiceStatusLifecycle the model 'ServiceStatus' value type for enums

const (
	SERVICESTATUSLIFECYCLE_FLEX    ServiceStatusLifecycle = "FLEX"
	SERVICESTATUSLIFECYCLE_PROJECT ServiceStatusLifecycle = "PROJECT"
)

List of Lifecycle

func NewServiceStatusLifecycleFromValue added in v1.1.0

func NewServiceStatusLifecycleFromValue(v ServiceStatusLifecycle) (*ServiceStatusLifecycle, error)

NewServiceStatusLifecycleFromValue returns a pointer to a valid ServiceStatusLifecycle for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ServiceStatusLifecycle) IsValid added in v1.1.0

func (v ServiceStatusLifecycle) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ServiceStatusLifecycle) Ptr added in v1.1.0

Ptr returns reference to LifecycleLifecycle value

func (*ServiceStatusLifecycle) UnmarshalJSON added in v1.1.0

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

type ServiceStatusScope added in v1.1.0

type ServiceStatusScope string

ServiceStatusScope the model 'ServiceStatus' value type for enums

const (
	SERVICESTATUSSCOPE_PRIVATE ServiceStatusScope = "PRIVATE"
	SERVICESTATUSSCOPE_PUBLIC  ServiceStatusScope = "PUBLIC"
)

List of Scope

func NewServiceStatusScopeFromValue added in v1.1.0

func NewServiceStatusScopeFromValue(v ServiceStatusScope) (*ServiceStatusScope, error)

NewServiceStatusScopeFromValue returns a pointer to a valid ServiceStatusScope for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ServiceStatusScope) IsValid added in v1.1.0

func (v ServiceStatusScope) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ServiceStatusScope) Ptr added in v1.1.0

Ptr returns reference to ScopeScope value

func (*ServiceStatusScope) UnmarshalJSON added in v1.1.0

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

type ServiceStatusState added in v1.1.0

type ServiceStatusState string

ServiceStatusState the state of a service within a project value type for enums

const (
	SERVICESTATUSSTATE_ENABLED   ServiceStatusState = "ENABLED"
	SERVICESTATUSSTATE_ENABLING  ServiceStatusState = "ENABLING"
	SERVICESTATUSSTATE_DISABLED  ServiceStatusState = "DISABLED"
	SERVICESTATUSSTATE_DISABLING ServiceStatusState = "DISABLING"
)

List of State

func NewServiceStatusStateFromValue added in v1.1.0

func NewServiceStatusStateFromValue(v ServiceStatusState) (*ServiceStatusState, error)

NewServiceStatusStateFromValue returns a pointer to a valid ServiceStatusState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ServiceStatusState) IsValid added in v1.1.0

func (v ServiceStatusState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ServiceStatusState) Ptr added in v1.1.0

Ptr returns reference to StateState value

func (*ServiceStatusState) UnmarshalJSON added in v1.1.0

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

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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