Versions in this module Expand all Collapse all v1 v1.3.0 Mar 9, 2026 Changes in this version + var JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`) + var XmlCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`) + func CacheExpires(r *http.Response) time.Time + func IsNil(i interface{}) bool + func NewConfiguration() *config.Configuration + func PtrBool(v bool) *bool + func PtrFloat32(v float32) *float32 + func PtrFloat64(v float64) *float64 + func PtrInt(v int) *int + func PtrInt32(v int32) *int32 + func PtrInt64(v int64) *int64 + func PtrString(v string) *string + func PtrTime(v time.Time) *time.Time + type APIClient struct + DefaultAPI DefaultAPI + func NewAPIClient(opts ...config.ConfigurationOption) (*APIClient, error) + func (c *APIClient) GetConfig() *config.Configuration + type APIResponse struct + Message string + Method string + Operation string + Payload []byte + RequestURL string + func NewAPIResponse(r *http.Response) *APIResponse + func NewAPIResponseWithError(errorMessage string) *APIResponse + type ApiCreateUpdateRequest struct + ApiService DefaultAPI + func (r ApiCreateUpdateRequest) CreateUpdatePayload(createUpdatePayload CreateUpdatePayload) ApiCreateUpdateRequest + func (r ApiCreateUpdateRequest) Execute() (*Update, error) + type ApiCreateUpdateScheduleRequest struct + ApiService DefaultAPI + func (r ApiCreateUpdateScheduleRequest) CreateUpdateSchedulePayload(createUpdateSchedulePayload CreateUpdateSchedulePayload) ApiCreateUpdateScheduleRequest + func (r ApiCreateUpdateScheduleRequest) Execute() (*UpdateSchedule, error) + type ApiDeleteUpdateScheduleRequest struct + ApiService DefaultAPI + func (r ApiDeleteUpdateScheduleRequest) Execute() error + type ApiDisableServiceResourceRequest struct + ApiService DefaultAPI + func (r ApiDisableServiceResourceRequest) Execute() error + type ApiEnableServiceResourceRequest struct + ApiService DefaultAPI + func (r ApiEnableServiceResourceRequest) EnableServiceResourcePayload(enableServiceResourcePayload EnableServiceResourcePayload) ApiEnableServiceResourceRequest + func (r ApiEnableServiceResourceRequest) Execute() error + type ApiGetServiceResourceRequest struct + ApiService DefaultAPI + func (r ApiGetServiceResourceRequest) Execute() (*GetUpdateServiceResponse, error) + type ApiGetUpdateRequest struct + ApiService DefaultAPI + func (r ApiGetUpdateRequest) Execute() (*Update, error) + type ApiGetUpdateScheduleRequest struct + ApiService DefaultAPI + func (r ApiGetUpdateScheduleRequest) Execute() (*UpdateSchedule, error) + type ApiListUpdatePoliciesRequest struct + ApiService DefaultAPI + func (r ApiListUpdatePoliciesRequest) Execute() (*GetUpdatePoliciesResponse, error) + type ApiListUpdateSchedulesRequest struct + ApiService DefaultAPI + func (r ApiListUpdateSchedulesRequest) Execute() (*GetUpdateSchedulesResponse, error) + type ApiListUpdatesRequest struct + ApiService DefaultAPI + func (r ApiListUpdatesRequest) Execute() (*GetUpdatesListResponse, error) + type ApiUpdateUpdateScheduleRequest struct + ApiService DefaultAPI + func (r ApiUpdateUpdateScheduleRequest) Execute() (*UpdateSchedule, error) + func (r ApiUpdateUpdateScheduleRequest) UpdateUpdateSchedulePayload(updateUpdateSchedulePayload UpdateUpdateSchedulePayload) ApiUpdateUpdateScheduleRequest + type CreateUpdatePayload struct + BackupBeforeUpdate *bool + MaintenanceWindow int32 + func NewCreateUpdatePayload(maintenanceWindow int32) *CreateUpdatePayload + func NewCreateUpdatePayloadWithDefaults() *CreateUpdatePayload + func (o *CreateUpdatePayload) GetBackupBeforeUpdate() bool + func (o *CreateUpdatePayload) GetBackupBeforeUpdateOk() (*bool, bool) + func (o *CreateUpdatePayload) GetMaintenanceWindow() int32 + func (o *CreateUpdatePayload) GetMaintenanceWindowOk() (*int32, bool) + func (o *CreateUpdatePayload) HasBackupBeforeUpdate() bool + func (o *CreateUpdatePayload) SetBackupBeforeUpdate(v bool) + func (o *CreateUpdatePayload) SetMaintenanceWindow(v int32) + func (o *CreateUpdatePayload) UnmarshalJSON(data []byte) (err error) + func (o CreateUpdatePayload) MarshalJSON() ([]byte, error) + func (o CreateUpdatePayload) ToMap() (map[string]interface{}, error) + type CreateUpdateSchedulePayload struct + Enabled bool + MaintenanceWindow int32 + Name string + Rrule string + func NewCreateUpdateSchedulePayload(enabled bool, maintenanceWindow int32, name string, rrule string) *CreateUpdateSchedulePayload + func NewCreateUpdateSchedulePayloadWithDefaults() *CreateUpdateSchedulePayload + func (o *CreateUpdateSchedulePayload) GetEnabled() bool + func (o *CreateUpdateSchedulePayload) GetEnabledOk() (*bool, bool) + func (o *CreateUpdateSchedulePayload) GetMaintenanceWindow() int32 + func (o *CreateUpdateSchedulePayload) GetMaintenanceWindowOk() (*int32, bool) + func (o *CreateUpdateSchedulePayload) GetName() string + func (o *CreateUpdateSchedulePayload) GetNameOk() (*string, bool) + func (o *CreateUpdateSchedulePayload) GetRrule() string + func (o *CreateUpdateSchedulePayload) GetRruleOk() (*string, bool) + func (o *CreateUpdateSchedulePayload) SetEnabled(v bool) + func (o *CreateUpdateSchedulePayload) SetMaintenanceWindow(v int32) + func (o *CreateUpdateSchedulePayload) SetName(v string) + func (o *CreateUpdateSchedulePayload) SetRrule(v string) + func (o *CreateUpdateSchedulePayload) UnmarshalJSON(data []byte) (err error) + func (o CreateUpdateSchedulePayload) MarshalJSON() ([]byte, error) + func (o CreateUpdateSchedulePayload) ToMap() (map[string]interface{}, error) + type DefaultAPI interface + CreateUpdate func(ctx context.Context, projectId string, serverId string, region string) ApiCreateUpdateRequest + CreateUpdateExecute func(r ApiCreateUpdateRequest) (*Update, error) + CreateUpdateSchedule func(ctx context.Context, projectId string, serverId string, region string) ApiCreateUpdateScheduleRequest + CreateUpdateScheduleExecute func(r ApiCreateUpdateScheduleRequest) (*UpdateSchedule, error) + DeleteUpdateSchedule func(ctx context.Context, projectId string, serverId string, scheduleId string, ...) ApiDeleteUpdateScheduleRequest + DeleteUpdateScheduleExecute func(r ApiDeleteUpdateScheduleRequest) error + DisableServiceResource func(ctx context.Context, projectId string, serverId string, region string) ApiDisableServiceResourceRequest + DisableServiceResourceExecute func(r ApiDisableServiceResourceRequest) error + EnableServiceResource func(ctx context.Context, projectId string, serverId string, region string) ApiEnableServiceResourceRequest + EnableServiceResourceExecute func(r ApiEnableServiceResourceRequest) error + GetServiceResource func(ctx context.Context, projectId string, serverId string, region string) ApiGetServiceResourceRequest + GetServiceResourceExecute func(r ApiGetServiceResourceRequest) (*GetUpdateServiceResponse, error) + GetUpdate func(ctx context.Context, projectId string, serverId string, updateId string, ...) ApiGetUpdateRequest + GetUpdateExecute func(r ApiGetUpdateRequest) (*Update, error) + GetUpdateSchedule func(ctx context.Context, projectId string, serverId string, scheduleId string, ...) ApiGetUpdateScheduleRequest + GetUpdateScheduleExecute func(r ApiGetUpdateScheduleRequest) (*UpdateSchedule, error) + ListUpdatePolicies func(ctx context.Context, projectId string) ApiListUpdatePoliciesRequest + ListUpdatePoliciesExecute func(r ApiListUpdatePoliciesRequest) (*GetUpdatePoliciesResponse, error) + ListUpdateSchedules func(ctx context.Context, projectId string, serverId string, region string) ApiListUpdateSchedulesRequest + ListUpdateSchedulesExecute func(r ApiListUpdateSchedulesRequest) (*GetUpdateSchedulesResponse, error) + ListUpdates func(ctx context.Context, projectId string, serverId string, region string) ApiListUpdatesRequest + ListUpdatesExecute func(r ApiListUpdatesRequest) (*GetUpdatesListResponse, error) + UpdateUpdateSchedule func(ctx context.Context, projectId string, serverId string, scheduleId string, ...) ApiUpdateUpdateScheduleRequest + UpdateUpdateScheduleExecute func(r ApiUpdateUpdateScheduleRequest) (*UpdateSchedule, error) + type DefaultAPIService service + func (a *DefaultAPIService) CreateUpdate(ctx context.Context, projectId string, serverId string, region string) ApiCreateUpdateRequest + func (a *DefaultAPIService) CreateUpdateExecute(r ApiCreateUpdateRequest) (*Update, error) + func (a *DefaultAPIService) CreateUpdateSchedule(ctx context.Context, projectId string, serverId string, region string) ApiCreateUpdateScheduleRequest + func (a *DefaultAPIService) CreateUpdateScheduleExecute(r ApiCreateUpdateScheduleRequest) (*UpdateSchedule, error) + func (a *DefaultAPIService) DeleteUpdateSchedule(ctx context.Context, projectId string, serverId string, scheduleId string, ...) ApiDeleteUpdateScheduleRequest + func (a *DefaultAPIService) DeleteUpdateScheduleExecute(r ApiDeleteUpdateScheduleRequest) error + func (a *DefaultAPIService) DisableServiceResource(ctx context.Context, projectId string, serverId string, region string) ApiDisableServiceResourceRequest + func (a *DefaultAPIService) DisableServiceResourceExecute(r ApiDisableServiceResourceRequest) error + func (a *DefaultAPIService) EnableServiceResource(ctx context.Context, projectId string, serverId string, region string) ApiEnableServiceResourceRequest + func (a *DefaultAPIService) EnableServiceResourceExecute(r ApiEnableServiceResourceRequest) error + func (a *DefaultAPIService) GetServiceResource(ctx context.Context, projectId string, serverId string, region string) ApiGetServiceResourceRequest + func (a *DefaultAPIService) GetServiceResourceExecute(r ApiGetServiceResourceRequest) (*GetUpdateServiceResponse, error) + func (a *DefaultAPIService) GetUpdate(ctx context.Context, projectId string, serverId string, updateId string, ...) ApiGetUpdateRequest + func (a *DefaultAPIService) GetUpdateExecute(r ApiGetUpdateRequest) (*Update, error) + func (a *DefaultAPIService) GetUpdateSchedule(ctx context.Context, projectId string, serverId string, scheduleId string, ...) ApiGetUpdateScheduleRequest + func (a *DefaultAPIService) GetUpdateScheduleExecute(r ApiGetUpdateScheduleRequest) (*UpdateSchedule, error) + func (a *DefaultAPIService) ListUpdatePolicies(ctx context.Context, projectId string) ApiListUpdatePoliciesRequest + func (a *DefaultAPIService) ListUpdatePoliciesExecute(r ApiListUpdatePoliciesRequest) (*GetUpdatePoliciesResponse, error) + func (a *DefaultAPIService) ListUpdateSchedules(ctx context.Context, projectId string, serverId string, region string) ApiListUpdateSchedulesRequest + func (a *DefaultAPIService) ListUpdateSchedulesExecute(r ApiListUpdateSchedulesRequest) (*GetUpdateSchedulesResponse, error) + func (a *DefaultAPIService) ListUpdates(ctx context.Context, projectId string, serverId string, region string) ApiListUpdatesRequest + func (a *DefaultAPIService) ListUpdatesExecute(r ApiListUpdatesRequest) (*GetUpdatesListResponse, error) + func (a *DefaultAPIService) UpdateUpdateSchedule(ctx context.Context, projectId string, serverId string, scheduleId string, ...) ApiUpdateUpdateScheduleRequest + func (a *DefaultAPIService) UpdateUpdateScheduleExecute(r ApiUpdateUpdateScheduleRequest) (*UpdateSchedule, error) + type DefaultAPIServiceMock struct + CreateUpdateExecuteMock *func(r ApiCreateUpdateRequest) (*Update, error) + CreateUpdateScheduleExecuteMock *func(r ApiCreateUpdateScheduleRequest) (*UpdateSchedule, error) + DeleteUpdateScheduleExecuteMock *func(r ApiDeleteUpdateScheduleRequest) error + DisableServiceResourceExecuteMock *func(r ApiDisableServiceResourceRequest) error + EnableServiceResourceExecuteMock *func(r ApiEnableServiceResourceRequest) error + GetServiceResourceExecuteMock *func(r ApiGetServiceResourceRequest) (*GetUpdateServiceResponse, error) + GetUpdateExecuteMock *func(r ApiGetUpdateRequest) (*Update, error) + GetUpdateScheduleExecuteMock *func(r ApiGetUpdateScheduleRequest) (*UpdateSchedule, error) + ListUpdatePoliciesExecuteMock *func(r ApiListUpdatePoliciesRequest) (*GetUpdatePoliciesResponse, error) + ListUpdateSchedulesExecuteMock *func(r ApiListUpdateSchedulesRequest) (*GetUpdateSchedulesResponse, error) + ListUpdatesExecuteMock *func(r ApiListUpdatesRequest) (*GetUpdatesListResponse, error) + UpdateUpdateScheduleExecuteMock *func(r ApiUpdateUpdateScheduleRequest) (*UpdateSchedule, error) + func (a DefaultAPIServiceMock) CreateUpdate(ctx context.Context, projectId string, serverId string, region string) ApiCreateUpdateRequest + func (a DefaultAPIServiceMock) CreateUpdateExecute(r ApiCreateUpdateRequest) (*Update, error) + func (a DefaultAPIServiceMock) CreateUpdateSchedule(ctx context.Context, projectId string, serverId string, region string) ApiCreateUpdateScheduleRequest + func (a DefaultAPIServiceMock) CreateUpdateScheduleExecute(r ApiCreateUpdateScheduleRequest) (*UpdateSchedule, error) + func (a DefaultAPIServiceMock) DeleteUpdateSchedule(ctx context.Context, projectId string, serverId string, scheduleId string, ...) ApiDeleteUpdateScheduleRequest + func (a DefaultAPIServiceMock) DeleteUpdateScheduleExecute(r ApiDeleteUpdateScheduleRequest) error + func (a DefaultAPIServiceMock) DisableServiceResource(ctx context.Context, projectId string, serverId string, region string) ApiDisableServiceResourceRequest + func (a DefaultAPIServiceMock) DisableServiceResourceExecute(r ApiDisableServiceResourceRequest) error + func (a DefaultAPIServiceMock) EnableServiceResource(ctx context.Context, projectId string, serverId string, region string) ApiEnableServiceResourceRequest + func (a DefaultAPIServiceMock) EnableServiceResourceExecute(r ApiEnableServiceResourceRequest) error + func (a DefaultAPIServiceMock) GetServiceResource(ctx context.Context, projectId string, serverId string, region string) ApiGetServiceResourceRequest + func (a DefaultAPIServiceMock) GetServiceResourceExecute(r ApiGetServiceResourceRequest) (*GetUpdateServiceResponse, error) + func (a DefaultAPIServiceMock) GetUpdate(ctx context.Context, projectId string, serverId string, updateId string, ...) ApiGetUpdateRequest + func (a DefaultAPIServiceMock) GetUpdateExecute(r ApiGetUpdateRequest) (*Update, error) + func (a DefaultAPIServiceMock) GetUpdateSchedule(ctx context.Context, projectId string, serverId string, scheduleId string, ...) ApiGetUpdateScheduleRequest + func (a DefaultAPIServiceMock) GetUpdateScheduleExecute(r ApiGetUpdateScheduleRequest) (*UpdateSchedule, error) + func (a DefaultAPIServiceMock) ListUpdatePolicies(ctx context.Context, projectId string) ApiListUpdatePoliciesRequest + func (a DefaultAPIServiceMock) ListUpdatePoliciesExecute(r ApiListUpdatePoliciesRequest) (*GetUpdatePoliciesResponse, error) + func (a DefaultAPIServiceMock) ListUpdateSchedules(ctx context.Context, projectId string, serverId string, region string) ApiListUpdateSchedulesRequest + func (a DefaultAPIServiceMock) ListUpdateSchedulesExecute(r ApiListUpdateSchedulesRequest) (*GetUpdateSchedulesResponse, error) + func (a DefaultAPIServiceMock) ListUpdates(ctx context.Context, projectId string, serverId string, region string) ApiListUpdatesRequest + func (a DefaultAPIServiceMock) ListUpdatesExecute(r ApiListUpdatesRequest) (*GetUpdatesListResponse, error) + func (a DefaultAPIServiceMock) UpdateUpdateSchedule(ctx context.Context, projectId string, serverId string, scheduleId string, ...) ApiUpdateUpdateScheduleRequest + func (a DefaultAPIServiceMock) UpdateUpdateScheduleExecute(r ApiUpdateUpdateScheduleRequest) (*UpdateSchedule, error) + type EnableServiceResourcePayload struct + UpdatePolicyId *string + func NewEnableServiceResourcePayload() *EnableServiceResourcePayload + func NewEnableServiceResourcePayloadWithDefaults() *EnableServiceResourcePayload + func (o *EnableServiceResourcePayload) GetUpdatePolicyId() string + func (o *EnableServiceResourcePayload) GetUpdatePolicyIdOk() (*string, bool) + func (o *EnableServiceResourcePayload) HasUpdatePolicyId() bool + func (o *EnableServiceResourcePayload) SetUpdatePolicyId(v string) + func (o EnableServiceResourcePayload) MarshalJSON() ([]byte, error) + func (o EnableServiceResourcePayload) ToMap() (map[string]interface{}, error) + type ErrorResponse struct + Message string + Status string + func NewErrorResponse(message string, status string) *ErrorResponse + func NewErrorResponseWithDefaults() *ErrorResponse + func (o *ErrorResponse) GetMessage() string + func (o *ErrorResponse) GetMessageOk() (*string, bool) + func (o *ErrorResponse) GetStatus() string + func (o *ErrorResponse) GetStatusOk() (*string, bool) + func (o *ErrorResponse) SetMessage(v string) + func (o *ErrorResponse) SetStatus(v string) + func (o *ErrorResponse) UnmarshalJSON(data []byte) (err error) + func (o ErrorResponse) MarshalJSON() ([]byte, error) + func (o ErrorResponse) ToMap() (map[string]interface{}, error) + type GetUpdatePoliciesResponse struct + Items []UpdatePolicy + func NewGetUpdatePoliciesResponse() *GetUpdatePoliciesResponse + func NewGetUpdatePoliciesResponseWithDefaults() *GetUpdatePoliciesResponse + func (o *GetUpdatePoliciesResponse) GetItems() []UpdatePolicy + func (o *GetUpdatePoliciesResponse) GetItemsOk() ([]UpdatePolicy, bool) + func (o *GetUpdatePoliciesResponse) HasItems() bool + func (o *GetUpdatePoliciesResponse) SetItems(v []UpdatePolicy) + func (o GetUpdatePoliciesResponse) MarshalJSON() ([]byte, error) + func (o GetUpdatePoliciesResponse) ToMap() (map[string]interface{}, error) + type GetUpdateSchedulesResponse struct + Items []UpdateSchedule + func NewGetUpdateSchedulesResponse() *GetUpdateSchedulesResponse + func NewGetUpdateSchedulesResponseWithDefaults() *GetUpdateSchedulesResponse + func (o *GetUpdateSchedulesResponse) GetItems() []UpdateSchedule + func (o *GetUpdateSchedulesResponse) GetItemsOk() ([]UpdateSchedule, bool) + func (o *GetUpdateSchedulesResponse) HasItems() bool + func (o *GetUpdateSchedulesResponse) SetItems(v []UpdateSchedule) + func (o GetUpdateSchedulesResponse) MarshalJSON() ([]byte, error) + func (o GetUpdateSchedulesResponse) ToMap() (map[string]interface{}, error) + type GetUpdateServiceResponse struct + Enabled *bool + func NewGetUpdateServiceResponse() *GetUpdateServiceResponse + func NewGetUpdateServiceResponseWithDefaults() *GetUpdateServiceResponse + func (o *GetUpdateServiceResponse) GetEnabled() bool + func (o *GetUpdateServiceResponse) GetEnabledOk() (*bool, bool) + func (o *GetUpdateServiceResponse) HasEnabled() bool + func (o *GetUpdateServiceResponse) SetEnabled(v bool) + func (o GetUpdateServiceResponse) MarshalJSON() ([]byte, error) + func (o GetUpdateServiceResponse) ToMap() (map[string]interface{}, error) + type GetUpdatesListResponse struct + Items []Update + func NewGetUpdatesListResponse() *GetUpdatesListResponse + func NewGetUpdatesListResponseWithDefaults() *GetUpdatesListResponse + func (o *GetUpdatesListResponse) GetItems() []Update + func (o *GetUpdatesListResponse) GetItemsOk() ([]Update, bool) + func (o *GetUpdatesListResponse) HasItems() bool + func (o *GetUpdatesListResponse) SetItems(v []Update) + func (o GetUpdatesListResponse) MarshalJSON() ([]byte, error) + func (o GetUpdatesListResponse) ToMap() (map[string]interface{}, error) + type MappedNullable interface + ToMap func() (map[string]interface{}, error) + type NullableBool struct + func NewNullableBool(val *bool) *NullableBool + func (v *NullableBool) Set(val *bool) + func (v *NullableBool) UnmarshalJSON(src []byte) error + func (v *NullableBool) Unset() + func (v NullableBool) Get() *bool + func (v NullableBool) IsSet() bool + func (v NullableBool) MarshalJSON() ([]byte, error) + type NullableCreateUpdatePayload struct + func NewNullableCreateUpdatePayload(val *CreateUpdatePayload) *NullableCreateUpdatePayload + func (v *NullableCreateUpdatePayload) Set(val *CreateUpdatePayload) + func (v *NullableCreateUpdatePayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateUpdatePayload) Unset() + func (v NullableCreateUpdatePayload) Get() *CreateUpdatePayload + func (v NullableCreateUpdatePayload) IsSet() bool + func (v NullableCreateUpdatePayload) MarshalJSON() ([]byte, error) + type NullableCreateUpdateSchedulePayload struct + func NewNullableCreateUpdateSchedulePayload(val *CreateUpdateSchedulePayload) *NullableCreateUpdateSchedulePayload + func (v *NullableCreateUpdateSchedulePayload) Set(val *CreateUpdateSchedulePayload) + func (v *NullableCreateUpdateSchedulePayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateUpdateSchedulePayload) Unset() + func (v NullableCreateUpdateSchedulePayload) Get() *CreateUpdateSchedulePayload + func (v NullableCreateUpdateSchedulePayload) IsSet() bool + func (v NullableCreateUpdateSchedulePayload) MarshalJSON() ([]byte, error) + type NullableEnableServiceResourcePayload struct + func NewNullableEnableServiceResourcePayload(val *EnableServiceResourcePayload) *NullableEnableServiceResourcePayload + func (v *NullableEnableServiceResourcePayload) Set(val *EnableServiceResourcePayload) + func (v *NullableEnableServiceResourcePayload) UnmarshalJSON(src []byte) error + func (v *NullableEnableServiceResourcePayload) Unset() + func (v NullableEnableServiceResourcePayload) Get() *EnableServiceResourcePayload + func (v NullableEnableServiceResourcePayload) IsSet() bool + func (v NullableEnableServiceResourcePayload) MarshalJSON() ([]byte, error) + type NullableErrorResponse struct + func NewNullableErrorResponse(val *ErrorResponse) *NullableErrorResponse + func (v *NullableErrorResponse) Set(val *ErrorResponse) + func (v *NullableErrorResponse) UnmarshalJSON(src []byte) error + func (v *NullableErrorResponse) Unset() + func (v NullableErrorResponse) Get() *ErrorResponse + func (v NullableErrorResponse) IsSet() bool + func (v NullableErrorResponse) MarshalJSON() ([]byte, error) + type NullableFloat32 struct + func NewNullableFloat32(val *float32) *NullableFloat32 + func (v *NullableFloat32) Set(val *float32) + func (v *NullableFloat32) UnmarshalJSON(src []byte) error + func (v *NullableFloat32) Unset() + func (v NullableFloat32) Get() *float32 + func (v NullableFloat32) IsSet() bool + func (v NullableFloat32) MarshalJSON() ([]byte, error) + type NullableFloat64 struct + func NewNullableFloat64(val *float64) *NullableFloat64 + func (v *NullableFloat64) Set(val *float64) + func (v *NullableFloat64) UnmarshalJSON(src []byte) error + func (v *NullableFloat64) Unset() + func (v NullableFloat64) Get() *float64 + func (v NullableFloat64) IsSet() bool + func (v NullableFloat64) MarshalJSON() ([]byte, error) + type NullableGetUpdatePoliciesResponse struct + func NewNullableGetUpdatePoliciesResponse(val *GetUpdatePoliciesResponse) *NullableGetUpdatePoliciesResponse + func (v *NullableGetUpdatePoliciesResponse) Set(val *GetUpdatePoliciesResponse) + func (v *NullableGetUpdatePoliciesResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetUpdatePoliciesResponse) Unset() + func (v NullableGetUpdatePoliciesResponse) Get() *GetUpdatePoliciesResponse + func (v NullableGetUpdatePoliciesResponse) IsSet() bool + func (v NullableGetUpdatePoliciesResponse) MarshalJSON() ([]byte, error) + type NullableGetUpdateSchedulesResponse struct + func NewNullableGetUpdateSchedulesResponse(val *GetUpdateSchedulesResponse) *NullableGetUpdateSchedulesResponse + func (v *NullableGetUpdateSchedulesResponse) Set(val *GetUpdateSchedulesResponse) + func (v *NullableGetUpdateSchedulesResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetUpdateSchedulesResponse) Unset() + func (v NullableGetUpdateSchedulesResponse) Get() *GetUpdateSchedulesResponse + func (v NullableGetUpdateSchedulesResponse) IsSet() bool + func (v NullableGetUpdateSchedulesResponse) MarshalJSON() ([]byte, error) + type NullableGetUpdateServiceResponse struct + func NewNullableGetUpdateServiceResponse(val *GetUpdateServiceResponse) *NullableGetUpdateServiceResponse + func (v *NullableGetUpdateServiceResponse) Set(val *GetUpdateServiceResponse) + func (v *NullableGetUpdateServiceResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetUpdateServiceResponse) Unset() + func (v NullableGetUpdateServiceResponse) Get() *GetUpdateServiceResponse + func (v NullableGetUpdateServiceResponse) IsSet() bool + func (v NullableGetUpdateServiceResponse) MarshalJSON() ([]byte, error) + type NullableGetUpdatesListResponse struct + func NewNullableGetUpdatesListResponse(val *GetUpdatesListResponse) *NullableGetUpdatesListResponse + func (v *NullableGetUpdatesListResponse) Set(val *GetUpdatesListResponse) + func (v *NullableGetUpdatesListResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetUpdatesListResponse) Unset() + func (v NullableGetUpdatesListResponse) Get() *GetUpdatesListResponse + func (v NullableGetUpdatesListResponse) IsSet() bool + func (v NullableGetUpdatesListResponse) MarshalJSON() ([]byte, error) + type NullableInt struct + func NewNullableInt(val *int) *NullableInt + func (v *NullableInt) Set(val *int) + func (v *NullableInt) UnmarshalJSON(src []byte) error + func (v *NullableInt) Unset() + func (v NullableInt) Get() *int + func (v NullableInt) IsSet() bool + func (v NullableInt) MarshalJSON() ([]byte, error) + type NullableInt32 struct + func NewNullableInt32(val *int32) *NullableInt32 + func (v *NullableInt32) Set(val *int32) + func (v *NullableInt32) UnmarshalJSON(src []byte) error + func (v *NullableInt32) Unset() + func (v NullableInt32) Get() *int32 + func (v NullableInt32) IsSet() bool + func (v NullableInt32) MarshalJSON() ([]byte, error) + type NullableInt64 struct + func NewNullableInt64(val *int64) *NullableInt64 + func (v *NullableInt64) Set(val *int64) + func (v *NullableInt64) UnmarshalJSON(src []byte) error + func (v *NullableInt64) Unset() + func (v NullableInt64) Get() *int64 + func (v NullableInt64) IsSet() bool + func (v NullableInt64) MarshalJSON() ([]byte, error) + type NullableString struct + func NewNullableString(val *string) *NullableString + func (v *NullableString) Set(val *string) + func (v *NullableString) UnmarshalJSON(src []byte) error + func (v *NullableString) Unset() + func (v NullableString) Get() *string + func (v NullableString) IsSet() bool + func (v NullableString) MarshalJSON() ([]byte, error) + type NullableTime struct + func NewNullableTime(val *time.Time) *NullableTime + func (v *NullableTime) Set(val *time.Time) + func (v *NullableTime) UnmarshalJSON(src []byte) error + func (v *NullableTime) Unset() + func (v NullableTime) Get() *time.Time + func (v NullableTime) IsSet() bool + func (v NullableTime) MarshalJSON() ([]byte, error) + type NullableUpdate struct + func NewNullableUpdate(val *Update) *NullableUpdate + func (v *NullableUpdate) Set(val *Update) + func (v *NullableUpdate) UnmarshalJSON(src []byte) error + func (v *NullableUpdate) Unset() + func (v NullableUpdate) Get() *Update + func (v NullableUpdate) IsSet() bool + func (v NullableUpdate) MarshalJSON() ([]byte, error) + type NullableUpdatePolicy struct + func NewNullableUpdatePolicy(val *UpdatePolicy) *NullableUpdatePolicy + func (v *NullableUpdatePolicy) Set(val *UpdatePolicy) + func (v *NullableUpdatePolicy) UnmarshalJSON(src []byte) error + func (v *NullableUpdatePolicy) Unset() + func (v NullableUpdatePolicy) Get() *UpdatePolicy + func (v NullableUpdatePolicy) IsSet() bool + func (v NullableUpdatePolicy) MarshalJSON() ([]byte, error) + type NullableUpdateSchedule struct + func NewNullableUpdateSchedule(val *UpdateSchedule) *NullableUpdateSchedule + func (v *NullableUpdateSchedule) Set(val *UpdateSchedule) + func (v *NullableUpdateSchedule) UnmarshalJSON(src []byte) error + func (v *NullableUpdateSchedule) Unset() + func (v NullableUpdateSchedule) Get() *UpdateSchedule + func (v NullableUpdateSchedule) IsSet() bool + func (v NullableUpdateSchedule) MarshalJSON() ([]byte, error) + type NullableUpdateScheduleCreateRequest struct + func NewNullableUpdateScheduleCreateRequest(val *UpdateScheduleCreateRequest) *NullableUpdateScheduleCreateRequest + func (v *NullableUpdateScheduleCreateRequest) Set(val *UpdateScheduleCreateRequest) + func (v *NullableUpdateScheduleCreateRequest) UnmarshalJSON(src []byte) error + func (v *NullableUpdateScheduleCreateRequest) Unset() + func (v NullableUpdateScheduleCreateRequest) Get() *UpdateScheduleCreateRequest + func (v NullableUpdateScheduleCreateRequest) IsSet() bool + func (v NullableUpdateScheduleCreateRequest) MarshalJSON() ([]byte, error) + type NullableUpdateUpdateSchedulePayload struct + func NewNullableUpdateUpdateSchedulePayload(val *UpdateUpdateSchedulePayload) *NullableUpdateUpdateSchedulePayload + func (v *NullableUpdateUpdateSchedulePayload) Set(val *UpdateUpdateSchedulePayload) + func (v *NullableUpdateUpdateSchedulePayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateUpdateSchedulePayload) Unset() + func (v NullableUpdateUpdateSchedulePayload) Get() *UpdateUpdateSchedulePayload + func (v NullableUpdateUpdateSchedulePayload) IsSet() bool + func (v NullableUpdateUpdateSchedulePayload) MarshalJSON() ([]byte, error) + type Update struct + EndDate *string + FailReason *string + FailedUpdates *int32 + Id int32 + InstalledUpdates *int32 + StartDate string + Status string + func NewUpdate(id int32, startDate string, status string) *Update + func NewUpdateWithDefaults() *Update + func (o *Update) GetEndDate() string + func (o *Update) GetEndDateOk() (*string, bool) + func (o *Update) GetFailReason() string + func (o *Update) GetFailReasonOk() (*string, bool) + func (o *Update) GetFailedUpdates() int32 + func (o *Update) GetFailedUpdatesOk() (*int32, bool) + func (o *Update) GetId() int32 + func (o *Update) GetIdOk() (*int32, bool) + func (o *Update) GetInstalledUpdates() int32 + func (o *Update) GetInstalledUpdatesOk() (*int32, bool) + func (o *Update) GetStartDate() string + func (o *Update) GetStartDateOk() (*string, bool) + func (o *Update) GetStatus() string + func (o *Update) GetStatusOk() (*string, bool) + func (o *Update) HasEndDate() bool + func (o *Update) HasFailReason() bool + func (o *Update) HasFailedUpdates() bool + func (o *Update) HasInstalledUpdates() bool + func (o *Update) SetEndDate(v string) + func (o *Update) SetFailReason(v string) + func (o *Update) SetFailedUpdates(v int32) + func (o *Update) SetId(v int32) + func (o *Update) SetInstalledUpdates(v int32) + func (o *Update) SetStartDate(v string) + func (o *Update) SetStatus(v string) + func (o *Update) UnmarshalJSON(data []byte) (err error) + func (o Update) MarshalJSON() ([]byte, error) + func (o Update) ToMap() (map[string]interface{}, error) + type UpdatePolicy struct + Default *bool + Description *string + Enabled *bool + Id *string + MaintenanceWindow *int32 + Name *string + Rrule *string + func NewUpdatePolicy() *UpdatePolicy + func NewUpdatePolicyWithDefaults() *UpdatePolicy + func (o *UpdatePolicy) GetDefault() bool + func (o *UpdatePolicy) GetDefaultOk() (*bool, bool) + func (o *UpdatePolicy) GetDescription() string + func (o *UpdatePolicy) GetDescriptionOk() (*string, bool) + func (o *UpdatePolicy) GetEnabled() bool + func (o *UpdatePolicy) GetEnabledOk() (*bool, bool) + func (o *UpdatePolicy) GetId() string + func (o *UpdatePolicy) GetIdOk() (*string, bool) + func (o *UpdatePolicy) GetMaintenanceWindow() int32 + func (o *UpdatePolicy) GetMaintenanceWindowOk() (*int32, bool) + func (o *UpdatePolicy) GetName() string + func (o *UpdatePolicy) GetNameOk() (*string, bool) + func (o *UpdatePolicy) GetRrule() string + func (o *UpdatePolicy) GetRruleOk() (*string, bool) + func (o *UpdatePolicy) HasDefault() bool + func (o *UpdatePolicy) HasDescription() bool + func (o *UpdatePolicy) HasEnabled() bool + func (o *UpdatePolicy) HasId() bool + func (o *UpdatePolicy) HasMaintenanceWindow() bool + func (o *UpdatePolicy) HasName() bool + func (o *UpdatePolicy) HasRrule() bool + func (o *UpdatePolicy) SetDefault(v bool) + func (o *UpdatePolicy) SetDescription(v string) + func (o *UpdatePolicy) SetEnabled(v bool) + func (o *UpdatePolicy) SetId(v string) + func (o *UpdatePolicy) SetMaintenanceWindow(v int32) + func (o *UpdatePolicy) SetName(v string) + func (o *UpdatePolicy) SetRrule(v string) + func (o UpdatePolicy) MarshalJSON() ([]byte, error) + func (o UpdatePolicy) ToMap() (map[string]interface{}, error) + type UpdateSchedule struct + Enabled bool + Id int32 + MaintenanceWindow int32 + Name string + Rrule string + func NewUpdateSchedule(enabled bool, maintenanceWindow int32, name string, rrule string, id int32) *UpdateSchedule + func NewUpdateScheduleWithDefaults() *UpdateSchedule + func (o *UpdateSchedule) GetEnabled() bool + func (o *UpdateSchedule) GetEnabledOk() (*bool, bool) + func (o *UpdateSchedule) GetId() int32 + func (o *UpdateSchedule) GetIdOk() (*int32, bool) + func (o *UpdateSchedule) GetMaintenanceWindow() int32 + func (o *UpdateSchedule) GetMaintenanceWindowOk() (*int32, bool) + func (o *UpdateSchedule) GetName() string + func (o *UpdateSchedule) GetNameOk() (*string, bool) + func (o *UpdateSchedule) GetRrule() string + func (o *UpdateSchedule) GetRruleOk() (*string, bool) + func (o *UpdateSchedule) SetEnabled(v bool) + func (o *UpdateSchedule) SetId(v int32) + func (o *UpdateSchedule) SetMaintenanceWindow(v int32) + func (o *UpdateSchedule) SetName(v string) + func (o *UpdateSchedule) SetRrule(v string) + func (o *UpdateSchedule) UnmarshalJSON(data []byte) (err error) + func (o UpdateSchedule) MarshalJSON() ([]byte, error) + func (o UpdateSchedule) ToMap() (map[string]interface{}, error) + type UpdateScheduleCreateRequest struct + Enabled bool + MaintenanceWindow int32 + Name string + Rrule string + func NewUpdateScheduleCreateRequest(enabled bool, maintenanceWindow int32, name string, rrule string) *UpdateScheduleCreateRequest + func NewUpdateScheduleCreateRequestWithDefaults() *UpdateScheduleCreateRequest + func (o *UpdateScheduleCreateRequest) GetEnabled() bool + func (o *UpdateScheduleCreateRequest) GetEnabledOk() (*bool, bool) + func (o *UpdateScheduleCreateRequest) GetMaintenanceWindow() int32 + func (o *UpdateScheduleCreateRequest) GetMaintenanceWindowOk() (*int32, bool) + func (o *UpdateScheduleCreateRequest) GetName() string + func (o *UpdateScheduleCreateRequest) GetNameOk() (*string, bool) + func (o *UpdateScheduleCreateRequest) GetRrule() string + func (o *UpdateScheduleCreateRequest) GetRruleOk() (*string, bool) + func (o *UpdateScheduleCreateRequest) SetEnabled(v bool) + func (o *UpdateScheduleCreateRequest) SetMaintenanceWindow(v int32) + func (o *UpdateScheduleCreateRequest) SetName(v string) + func (o *UpdateScheduleCreateRequest) SetRrule(v string) + func (o *UpdateScheduleCreateRequest) UnmarshalJSON(data []byte) (err error) + func (o UpdateScheduleCreateRequest) MarshalJSON() ([]byte, error) + func (o UpdateScheduleCreateRequest) ToMap() (map[string]interface{}, error) + type UpdateUpdateSchedulePayload struct + Enabled bool + MaintenanceWindow int32 + Name string + Rrule string + func NewUpdateUpdateSchedulePayload(enabled bool, maintenanceWindow int32, name string, rrule string) *UpdateUpdateSchedulePayload + func NewUpdateUpdateSchedulePayloadWithDefaults() *UpdateUpdateSchedulePayload + func (o *UpdateUpdateSchedulePayload) GetEnabled() bool + func (o *UpdateUpdateSchedulePayload) GetEnabledOk() (*bool, bool) + func (o *UpdateUpdateSchedulePayload) GetMaintenanceWindow() int32 + func (o *UpdateUpdateSchedulePayload) GetMaintenanceWindowOk() (*int32, bool) + func (o *UpdateUpdateSchedulePayload) GetName() string + func (o *UpdateUpdateSchedulePayload) GetNameOk() (*string, bool) + func (o *UpdateUpdateSchedulePayload) GetRrule() string + func (o *UpdateUpdateSchedulePayload) GetRruleOk() (*string, bool) + func (o *UpdateUpdateSchedulePayload) SetEnabled(v bool) + func (o *UpdateUpdateSchedulePayload) SetMaintenanceWindow(v int32) + func (o *UpdateUpdateSchedulePayload) SetName(v string) + func (o *UpdateUpdateSchedulePayload) SetRrule(v string) + func (o *UpdateUpdateSchedulePayload) UnmarshalJSON(data []byte) (err error) + func (o UpdateUpdateSchedulePayload) MarshalJSON() ([]byte, error) + func (o UpdateUpdateSchedulePayload) ToMap() (map[string]interface{}, error)