serverupdate

package module
v0.4.0 Latest Latest
Warning

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

Go to latest
Published: Feb 5, 2025 License: Apache-2.0 Imports: 22 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

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 Server Update Management API API v1.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) CreateUpdate

func (a *APIClient) CreateUpdate(ctx context.Context, projectId string, serverId string) ApiCreateUpdateRequest

CreateUpdate: create update

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param serverId server id
@return ApiCreateUpdateRequest

func (*APIClient) CreateUpdateExecute

func (a *APIClient) CreateUpdateExecute(ctx context.Context, projectId string, serverId string) (*Update, error)

func (*APIClient) CreateUpdateSchedule

func (a *APIClient) CreateUpdateSchedule(ctx context.Context, projectId string, serverId string) ApiCreateUpdateScheduleRequest

CreateUpdateSchedule: create update schedule

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param serverId server id
@return ApiCreateUpdateScheduleRequest

func (*APIClient) CreateUpdateScheduleExecute

func (a *APIClient) CreateUpdateScheduleExecute(ctx context.Context, projectId string, serverId string) (*UpdateSchedule, error)

func (*APIClient) DeleteUpdateSchedule

func (a *APIClient) DeleteUpdateSchedule(ctx context.Context, projectId string, serverId string, scheduleId string) ApiDeleteUpdateScheduleRequest

DeleteUpdateSchedule: delete update schedule

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param serverId server id
@param scheduleId update schedule id
@return ApiDeleteUpdateScheduleRequest

func (*APIClient) DeleteUpdateScheduleExecute

func (a *APIClient) DeleteUpdateScheduleExecute(ctx context.Context, projectId string, serverId string, scheduleId string) error

func (*APIClient) DisableService

func (a *APIClient) DisableService(ctx context.Context, projectId string, serverId string) ApiDisableServiceRequest

DisableService: disable update service

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param serverId server id
@return ApiDisableServiceRequest

func (*APIClient) DisableServiceExecute deprecated

func (a *APIClient) DisableServiceExecute(ctx context.Context, projectId string, serverId string) error

Deprecated:

func (*APIClient) DisableServiceResource

func (a *APIClient) DisableServiceResource(ctx context.Context, projectId string, serverId string) ApiDisableServiceResourceRequest

DisableServiceResource: disable update service

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param serverId server id
@return ApiDisableServiceResourceRequest

func (*APIClient) DisableServiceResourceExecute

func (a *APIClient) DisableServiceResourceExecute(ctx context.Context, projectId string, serverId string) error

func (*APIClient) EnableService

func (a *APIClient) EnableService(ctx context.Context, projectId string, serverId string) ApiEnableServiceRequest

EnableService: enable update service

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param serverId server id
@return ApiEnableServiceRequest

func (*APIClient) EnableServiceExecute deprecated

func (a *APIClient) EnableServiceExecute(ctx context.Context, projectId string, serverId string) error

Deprecated:

func (*APIClient) EnableServiceResource

func (a *APIClient) EnableServiceResource(ctx context.Context, projectId string, serverId string) ApiEnableServiceResourceRequest

EnableServiceResource: enable update service

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param serverId server id
@return ApiEnableServiceResourceRequest

func (*APIClient) EnableServiceResourceExecute

func (a *APIClient) EnableServiceResourceExecute(ctx context.Context, projectId string, serverId 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) GetServiceResource added in v0.3.0

func (a *APIClient) GetServiceResource(ctx context.Context, projectId string, serverId string) ApiGetServiceResourceRequest

GetServiceResource: get update service details

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param serverId server id
@return ApiGetServiceResourceRequest

func (*APIClient) GetServiceResourceExecute added in v0.3.0

func (a *APIClient) GetServiceResourceExecute(ctx context.Context, projectId string, serverId string) (*GetUpdateServiceResponse, error)

func (*APIClient) GetUpdate

func (a *APIClient) GetUpdate(ctx context.Context, projectId string, serverId string, updateId string) ApiGetUpdateRequest

GetUpdate: get update

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param serverId server id
@param updateId id of the update
@return ApiGetUpdateRequest

func (*APIClient) GetUpdateExecute

func (a *APIClient) GetUpdateExecute(ctx context.Context, projectId string, serverId string, updateId string) (*Update, error)

func (*APIClient) GetUpdateSchedule

func (a *APIClient) GetUpdateSchedule(ctx context.Context, projectId string, serverId string, scheduleId string) ApiGetUpdateScheduleRequest

GetUpdateSchedule: get single update schedule details

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param serverId server id
@param scheduleId update schedule id
@return ApiGetUpdateScheduleRequest

func (*APIClient) GetUpdateScheduleExecute

func (a *APIClient) GetUpdateScheduleExecute(ctx context.Context, projectId string, serverId string, scheduleId string) (*UpdateSchedule, error)

func (*APIClient) ListUpdatePolicies added in v0.2.1

func (a *APIClient) ListUpdatePolicies(ctx context.Context, projectId string) ApiListUpdatePoliciesRequest

ListUpdatePolicies: get list of update policies

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

func (*APIClient) ListUpdatePoliciesExecute added in v0.2.1

func (a *APIClient) ListUpdatePoliciesExecute(ctx context.Context, projectId string) (*GetUpdatePoliciesResponse, error)

func (*APIClient) ListUpdateSchedules

func (a *APIClient) ListUpdateSchedules(ctx context.Context, projectId string, serverId string) ApiListUpdateSchedulesRequest

ListUpdateSchedules: get list of update schedules

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param serverId server id
@return ApiListUpdateSchedulesRequest

func (*APIClient) ListUpdateSchedulesExecute

func (a *APIClient) ListUpdateSchedulesExecute(ctx context.Context, projectId string, serverId string) (*GetUpdateSchedulesResponse, error)

func (*APIClient) ListUpdates

func (a *APIClient) ListUpdates(ctx context.Context, projectId string, serverId string) ApiListUpdatesRequest

ListUpdates: get list of updates

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param serverId server id
@return ApiListUpdatesRequest

func (*APIClient) ListUpdatesExecute

func (a *APIClient) ListUpdatesExecute(ctx context.Context, projectId string, serverId string) (*GetUpdatesListResponse, error)

func (*APIClient) UpdateUpdateSchedule

func (a *APIClient) UpdateUpdateSchedule(ctx context.Context, projectId string, serverId string, scheduleId string) ApiUpdateUpdateScheduleRequest

UpdateUpdateSchedule: update update schedule

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param serverId server id
@param scheduleId update schedule id
@return ApiUpdateUpdateScheduleRequest

func (*APIClient) UpdateUpdateScheduleExecute

func (a *APIClient) UpdateUpdateScheduleExecute(ctx context.Context, projectId string, serverId string, scheduleId string) (*UpdateSchedule, error)

type ApiCreateUpdateRequest

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

func (ApiCreateUpdateRequest) CreateUpdatePayload

func (r ApiCreateUpdateRequest) CreateUpdatePayload(createUpdatePayload CreateUpdatePayload) ApiCreateUpdateRequest

func (ApiCreateUpdateRequest) Execute

func (r ApiCreateUpdateRequest) Execute() (*Update, error)

type ApiCreateUpdateScheduleRequest

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

func (ApiCreateUpdateScheduleRequest) CreateUpdateSchedulePayload

func (r ApiCreateUpdateScheduleRequest) CreateUpdateSchedulePayload(createUpdateSchedulePayload CreateUpdateSchedulePayload) ApiCreateUpdateScheduleRequest

func (ApiCreateUpdateScheduleRequest) Execute

type ApiDeleteUpdateScheduleRequest

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

func (ApiDeleteUpdateScheduleRequest) Execute

type ApiDisableServiceRequest

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

func (ApiDisableServiceRequest) Execute

func (r ApiDisableServiceRequest) Execute() error

type ApiDisableServiceResourceRequest

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

func (ApiDisableServiceResourceRequest) Execute

type ApiEnableServiceRequest

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

func (ApiEnableServiceRequest) EnableServicePayload

func (r ApiEnableServiceRequest) EnableServicePayload(enableServicePayload EnableServicePayload) ApiEnableServiceRequest

func (ApiEnableServiceRequest) Execute

func (r ApiEnableServiceRequest) Execute() error

type ApiEnableServiceResourceRequest

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

func (ApiEnableServiceResourceRequest) EnableServiceResourcePayload

func (r ApiEnableServiceResourceRequest) EnableServiceResourcePayload(enableServiceResourcePayload EnableServiceResourcePayload) ApiEnableServiceResourceRequest

func (ApiEnableServiceResourceRequest) Execute

type ApiGetServiceResourceRequest added in v0.3.0

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

func (ApiGetServiceResourceRequest) Execute added in v0.3.0

type ApiGetUpdateRequest

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

func (ApiGetUpdateRequest) Execute

func (r ApiGetUpdateRequest) Execute() (*Update, error)

type ApiGetUpdateScheduleRequest

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

func (ApiGetUpdateScheduleRequest) Execute

type ApiListUpdatePoliciesRequest added in v0.2.1

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

func (ApiListUpdatePoliciesRequest) Execute added in v0.2.1

type ApiListUpdateSchedulesRequest

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

func (ApiListUpdateSchedulesRequest) Execute

type ApiListUpdatesRequest

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

func (ApiListUpdatesRequest) Execute

type ApiUpdateUpdateScheduleRequest

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

func (ApiUpdateUpdateScheduleRequest) Execute

func (ApiUpdateUpdateScheduleRequest) UpdateUpdateSchedulePayload

func (r ApiUpdateUpdateScheduleRequest) UpdateUpdateSchedulePayload(updateUpdateSchedulePayload UpdateUpdateSchedulePayload) ApiUpdateUpdateScheduleRequest

type CreateUpdatePayload

type CreateUpdatePayload struct {
	BackupBeforeUpdate *bool `json:"backupBeforeUpdate,omitempty"`
	// Can be cast to int32 without loss of precision.
	// REQUIRED
	MaintenanceWindow *int64 `json:"maintenanceWindow"`
}

CreateUpdatePayload struct for CreateUpdatePayload

func NewCreateUpdatePayload

func NewCreateUpdatePayload(maintenanceWindow *int64) *CreateUpdatePayload

NewCreateUpdatePayload instantiates a new CreateUpdatePayload 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 NewCreateUpdatePayloadWithDefaults

func NewCreateUpdatePayloadWithDefaults() *CreateUpdatePayload

NewCreateUpdatePayloadWithDefaults instantiates a new CreateUpdatePayload 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 (*CreateUpdatePayload) GetBackupBeforeUpdate

func (o *CreateUpdatePayload) GetBackupBeforeUpdate() *bool

GetBackupBeforeUpdate returns the BackupBeforeUpdate field value if set, zero value otherwise.

func (*CreateUpdatePayload) GetBackupBeforeUpdateOk

func (o *CreateUpdatePayload) GetBackupBeforeUpdateOk() (*bool, bool)

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

func (*CreateUpdatePayload) GetMaintenanceWindow

func (o *CreateUpdatePayload) GetMaintenanceWindow() *int64

GetMaintenanceWindow returns the MaintenanceWindow field value

func (*CreateUpdatePayload) GetMaintenanceWindowOk

func (o *CreateUpdatePayload) GetMaintenanceWindowOk() (*int64, bool)

GetMaintenanceWindowOk returns a tuple with the MaintenanceWindow field value and a boolean to check if the value has been set.

func (*CreateUpdatePayload) HasBackupBeforeUpdate

func (o *CreateUpdatePayload) HasBackupBeforeUpdate() bool

HasBackupBeforeUpdate returns a boolean if a field has been set.

func (*CreateUpdatePayload) SetBackupBeforeUpdate

func (o *CreateUpdatePayload) SetBackupBeforeUpdate(v *bool)

SetBackupBeforeUpdate gets a reference to the given bool and assigns it to the BackupBeforeUpdate field.

func (*CreateUpdatePayload) SetMaintenanceWindow

func (o *CreateUpdatePayload) SetMaintenanceWindow(v *int64)

SetMaintenanceWindow sets field value

func (CreateUpdatePayload) ToMap

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

type CreateUpdateSchedulePayload

type CreateUpdateSchedulePayload struct {
	// REQUIRED
	Enabled *bool `json:"enabled"`
	// Can be cast to int32 without loss of precision.
	// REQUIRED
	MaintenanceWindow *int64 `json:"maintenanceWindow"`
	// REQUIRED
	Name *string `json:"name"`
	// REQUIRED
	Rrule *string `json:"rrule"`
}

CreateUpdateSchedulePayload struct for CreateUpdateSchedulePayload

func NewCreateUpdateSchedulePayload

func NewCreateUpdateSchedulePayload(enabled *bool, maintenanceWindow *int64, name *string, rrule *string) *CreateUpdateSchedulePayload

NewCreateUpdateSchedulePayload instantiates a new CreateUpdateSchedulePayload 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 NewCreateUpdateSchedulePayloadWithDefaults

func NewCreateUpdateSchedulePayloadWithDefaults() *CreateUpdateSchedulePayload

NewCreateUpdateSchedulePayloadWithDefaults instantiates a new CreateUpdateSchedulePayload 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 (*CreateUpdateSchedulePayload) GetEnabled

func (o *CreateUpdateSchedulePayload) GetEnabled() *bool

GetEnabled returns the Enabled field value

func (*CreateUpdateSchedulePayload) GetEnabledOk

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

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

func (*CreateUpdateSchedulePayload) GetMaintenanceWindow

func (o *CreateUpdateSchedulePayload) GetMaintenanceWindow() *int64

GetMaintenanceWindow returns the MaintenanceWindow field value

func (*CreateUpdateSchedulePayload) GetMaintenanceWindowOk

func (o *CreateUpdateSchedulePayload) GetMaintenanceWindowOk() (*int64, bool)

GetMaintenanceWindowOk returns a tuple with the MaintenanceWindow field value and a boolean to check if the value has been set.

func (*CreateUpdateSchedulePayload) GetName

func (o *CreateUpdateSchedulePayload) GetName() *string

GetName returns the Name field value

func (*CreateUpdateSchedulePayload) GetNameOk

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

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

func (*CreateUpdateSchedulePayload) GetRrule

func (o *CreateUpdateSchedulePayload) GetRrule() *string

GetRrule returns the Rrule field value

func (*CreateUpdateSchedulePayload) GetRruleOk

func (o *CreateUpdateSchedulePayload) GetRruleOk() (*string, bool)

GetRruleOk returns a tuple with the Rrule field value and a boolean to check if the value has been set.

func (*CreateUpdateSchedulePayload) SetEnabled

func (o *CreateUpdateSchedulePayload) SetEnabled(v *bool)

SetEnabled sets field value

func (*CreateUpdateSchedulePayload) SetMaintenanceWindow

func (o *CreateUpdateSchedulePayload) SetMaintenanceWindow(v *int64)

SetMaintenanceWindow sets field value

func (*CreateUpdateSchedulePayload) SetName

func (o *CreateUpdateSchedulePayload) SetName(v *string)

SetName sets field value

func (*CreateUpdateSchedulePayload) SetRrule

func (o *CreateUpdateSchedulePayload) SetRrule(v *string)

SetRrule sets field value

func (CreateUpdateSchedulePayload) ToMap

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

type DefaultApiService

type DefaultApiService service

DefaultApiService DefaultApi service

type EnableServicePayload

type EnableServicePayload struct {
	UpdatePolicyId *string `json:"updatePolicyId,omitempty"`
}

EnableServicePayload struct for EnableServicePayload

func NewEnableServicePayload

func NewEnableServicePayload() *EnableServicePayload

NewEnableServicePayload instantiates a new EnableServicePayload 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 NewEnableServicePayloadWithDefaults

func NewEnableServicePayloadWithDefaults() *EnableServicePayload

NewEnableServicePayloadWithDefaults instantiates a new EnableServicePayload 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 (*EnableServicePayload) GetUpdatePolicyId

func (o *EnableServicePayload) GetUpdatePolicyId() *string

GetUpdatePolicyId returns the UpdatePolicyId field value if set, zero value otherwise.

func (*EnableServicePayload) GetUpdatePolicyIdOk

func (o *EnableServicePayload) GetUpdatePolicyIdOk() (*string, bool)

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

func (*EnableServicePayload) HasUpdatePolicyId

func (o *EnableServicePayload) HasUpdatePolicyId() bool

HasUpdatePolicyId returns a boolean if a field has been set.

func (*EnableServicePayload) SetUpdatePolicyId

func (o *EnableServicePayload) SetUpdatePolicyId(v *string)

SetUpdatePolicyId gets a reference to the given string and assigns it to the UpdatePolicyId field.

func (EnableServicePayload) ToMap

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

type EnableServiceResourcePayload

type EnableServiceResourcePayload struct {
	UpdatePolicyId *string `json:"updatePolicyId,omitempty"`
}

EnableServiceResourcePayload struct for EnableServiceResourcePayload

func NewEnableServiceResourcePayload

func NewEnableServiceResourcePayload() *EnableServiceResourcePayload

NewEnableServiceResourcePayload instantiates a new EnableServiceResourcePayload 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 NewEnableServiceResourcePayloadWithDefaults

func NewEnableServiceResourcePayloadWithDefaults() *EnableServiceResourcePayload

NewEnableServiceResourcePayloadWithDefaults instantiates a new EnableServiceResourcePayload 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 (*EnableServiceResourcePayload) GetUpdatePolicyId

func (o *EnableServiceResourcePayload) GetUpdatePolicyId() *string

GetUpdatePolicyId returns the UpdatePolicyId field value if set, zero value otherwise.

func (*EnableServiceResourcePayload) GetUpdatePolicyIdOk

func (o *EnableServiceResourcePayload) GetUpdatePolicyIdOk() (*string, bool)

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

func (*EnableServiceResourcePayload) HasUpdatePolicyId

func (o *EnableServiceResourcePayload) HasUpdatePolicyId() bool

HasUpdatePolicyId returns a boolean if a field has been set.

func (*EnableServiceResourcePayload) SetUpdatePolicyId

func (o *EnableServiceResourcePayload) SetUpdatePolicyId(v *string)

SetUpdatePolicyId gets a reference to the given string and assigns it to the UpdatePolicyId field.

func (EnableServiceResourcePayload) ToMap

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

type GetUpdatePoliciesResponse added in v0.2.1

type GetUpdatePoliciesResponse struct {
	Items *[]UpdatePolicy `json:"items,omitempty"`
}

GetUpdatePoliciesResponse struct for GetUpdatePoliciesResponse

func NewGetUpdatePoliciesResponse added in v0.2.1

func NewGetUpdatePoliciesResponse() *GetUpdatePoliciesResponse

NewGetUpdatePoliciesResponse instantiates a new GetUpdatePoliciesResponse 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 NewGetUpdatePoliciesResponseWithDefaults added in v0.2.1

func NewGetUpdatePoliciesResponseWithDefaults() *GetUpdatePoliciesResponse

NewGetUpdatePoliciesResponseWithDefaults instantiates a new GetUpdatePoliciesResponse 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 (*GetUpdatePoliciesResponse) GetItems added in v0.2.1

func (o *GetUpdatePoliciesResponse) GetItems() *[]UpdatePolicy

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

func (*GetUpdatePoliciesResponse) GetItemsOk added in v0.2.1

func (o *GetUpdatePoliciesResponse) GetItemsOk() (*[]UpdatePolicy, bool)

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

func (*GetUpdatePoliciesResponse) HasItems added in v0.2.1

func (o *GetUpdatePoliciesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*GetUpdatePoliciesResponse) SetItems added in v0.2.1

func (o *GetUpdatePoliciesResponse) SetItems(v *[]UpdatePolicy)

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

func (GetUpdatePoliciesResponse) ToMap added in v0.2.1

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

type GetUpdateSchedulesResponse

type GetUpdateSchedulesResponse struct {
	Items *[]UpdateSchedule `json:"items,omitempty"`
}

GetUpdateSchedulesResponse struct for GetUpdateSchedulesResponse

func NewGetUpdateSchedulesResponse

func NewGetUpdateSchedulesResponse() *GetUpdateSchedulesResponse

NewGetUpdateSchedulesResponse instantiates a new GetUpdateSchedulesResponse 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 NewGetUpdateSchedulesResponseWithDefaults

func NewGetUpdateSchedulesResponseWithDefaults() *GetUpdateSchedulesResponse

NewGetUpdateSchedulesResponseWithDefaults instantiates a new GetUpdateSchedulesResponse 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 (*GetUpdateSchedulesResponse) GetItems

func (o *GetUpdateSchedulesResponse) GetItems() *[]UpdateSchedule

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

func (*GetUpdateSchedulesResponse) GetItemsOk

func (o *GetUpdateSchedulesResponse) GetItemsOk() (*[]UpdateSchedule, bool)

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

func (*GetUpdateSchedulesResponse) HasItems

func (o *GetUpdateSchedulesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*GetUpdateSchedulesResponse) SetItems

func (o *GetUpdateSchedulesResponse) SetItems(v *[]UpdateSchedule)

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

func (GetUpdateSchedulesResponse) ToMap

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

type GetUpdateServiceResponse added in v0.3.0

type GetUpdateServiceResponse struct {
	Enabled *bool `json:"enabled,omitempty"`
}

GetUpdateServiceResponse struct for GetUpdateServiceResponse

func NewGetUpdateServiceResponse added in v0.3.0

func NewGetUpdateServiceResponse() *GetUpdateServiceResponse

NewGetUpdateServiceResponse instantiates a new GetUpdateServiceResponse 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 NewGetUpdateServiceResponseWithDefaults added in v0.3.0

func NewGetUpdateServiceResponseWithDefaults() *GetUpdateServiceResponse

NewGetUpdateServiceResponseWithDefaults instantiates a new GetUpdateServiceResponse 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 (*GetUpdateServiceResponse) GetEnabled added in v0.3.0

func (o *GetUpdateServiceResponse) GetEnabled() *bool

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

func (*GetUpdateServiceResponse) GetEnabledOk added in v0.3.0

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

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

func (*GetUpdateServiceResponse) HasEnabled added in v0.3.0

func (o *GetUpdateServiceResponse) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*GetUpdateServiceResponse) SetEnabled added in v0.3.0

func (o *GetUpdateServiceResponse) SetEnabled(v *bool)

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

func (GetUpdateServiceResponse) ToMap added in v0.3.0

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

type GetUpdatesListResponse

type GetUpdatesListResponse struct {
	Items *[]Update `json:"items,omitempty"`
}

GetUpdatesListResponse struct for GetUpdatesListResponse

func NewGetUpdatesListResponse

func NewGetUpdatesListResponse() *GetUpdatesListResponse

NewGetUpdatesListResponse instantiates a new GetUpdatesListResponse 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 NewGetUpdatesListResponseWithDefaults

func NewGetUpdatesListResponseWithDefaults() *GetUpdatesListResponse

NewGetUpdatesListResponseWithDefaults instantiates a new GetUpdatesListResponse 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 (*GetUpdatesListResponse) GetItems

func (o *GetUpdatesListResponse) GetItems() *[]Update

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

func (*GetUpdatesListResponse) GetItemsOk

func (o *GetUpdatesListResponse) GetItemsOk() (*[]Update, bool)

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

func (*GetUpdatesListResponse) HasItems

func (o *GetUpdatesListResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*GetUpdatesListResponse) SetItems

func (o *GetUpdatesListResponse) SetItems(v *[]Update)

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

func (GetUpdatesListResponse) ToMap

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

type MappedNullable

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

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 NullableCreateUpdatePayload

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

func NewNullableCreateUpdatePayload

func NewNullableCreateUpdatePayload(val *CreateUpdatePayload) *NullableCreateUpdatePayload

func (NullableCreateUpdatePayload) Get

func (NullableCreateUpdatePayload) IsSet

func (NullableCreateUpdatePayload) MarshalJSON

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

func (*NullableCreateUpdatePayload) Set

func (*NullableCreateUpdatePayload) UnmarshalJSON

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

func (*NullableCreateUpdatePayload) Unset

func (v *NullableCreateUpdatePayload) Unset()

type NullableCreateUpdateSchedulePayload

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

func (NullableCreateUpdateSchedulePayload) Get

func (NullableCreateUpdateSchedulePayload) IsSet

func (NullableCreateUpdateSchedulePayload) MarshalJSON

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

func (*NullableCreateUpdateSchedulePayload) Set

func (*NullableCreateUpdateSchedulePayload) UnmarshalJSON

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

func (*NullableCreateUpdateSchedulePayload) Unset

type NullableEnableServicePayload

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

func NewNullableEnableServicePayload

func NewNullableEnableServicePayload(val *EnableServicePayload) *NullableEnableServicePayload

func (NullableEnableServicePayload) Get

func (NullableEnableServicePayload) IsSet

func (NullableEnableServicePayload) MarshalJSON

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

func (*NullableEnableServicePayload) Set

func (*NullableEnableServicePayload) UnmarshalJSON

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

func (*NullableEnableServicePayload) Unset

func (v *NullableEnableServicePayload) Unset()

type NullableEnableServiceResourcePayload

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

func (NullableEnableServiceResourcePayload) Get

func (NullableEnableServiceResourcePayload) IsSet

func (NullableEnableServiceResourcePayload) MarshalJSON

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

func (*NullableEnableServiceResourcePayload) Set

func (*NullableEnableServiceResourcePayload) UnmarshalJSON

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

func (*NullableEnableServiceResourcePayload) 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 NullableGetUpdatePoliciesResponse added in v0.2.1

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

func NewNullableGetUpdatePoliciesResponse added in v0.2.1

func NewNullableGetUpdatePoliciesResponse(val *GetUpdatePoliciesResponse) *NullableGetUpdatePoliciesResponse

func (NullableGetUpdatePoliciesResponse) Get added in v0.2.1

func (NullableGetUpdatePoliciesResponse) IsSet added in v0.2.1

func (NullableGetUpdatePoliciesResponse) MarshalJSON added in v0.2.1

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

func (*NullableGetUpdatePoliciesResponse) Set added in v0.2.1

func (*NullableGetUpdatePoliciesResponse) UnmarshalJSON added in v0.2.1

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

func (*NullableGetUpdatePoliciesResponse) Unset added in v0.2.1

type NullableGetUpdateSchedulesResponse

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

func (NullableGetUpdateSchedulesResponse) Get

func (NullableGetUpdateSchedulesResponse) IsSet

func (NullableGetUpdateSchedulesResponse) MarshalJSON

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

func (*NullableGetUpdateSchedulesResponse) Set

func (*NullableGetUpdateSchedulesResponse) UnmarshalJSON

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

func (*NullableGetUpdateSchedulesResponse) Unset

type NullableGetUpdateServiceResponse added in v0.3.0

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

func NewNullableGetUpdateServiceResponse added in v0.3.0

func NewNullableGetUpdateServiceResponse(val *GetUpdateServiceResponse) *NullableGetUpdateServiceResponse

func (NullableGetUpdateServiceResponse) Get added in v0.3.0

func (NullableGetUpdateServiceResponse) IsSet added in v0.3.0

func (NullableGetUpdateServiceResponse) MarshalJSON added in v0.3.0

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

func (*NullableGetUpdateServiceResponse) Set added in v0.3.0

func (*NullableGetUpdateServiceResponse) UnmarshalJSON added in v0.3.0

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

func (*NullableGetUpdateServiceResponse) Unset added in v0.3.0

type NullableGetUpdatesListResponse

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

func (NullableGetUpdatesListResponse) Get

func (NullableGetUpdatesListResponse) IsSet

func (NullableGetUpdatesListResponse) MarshalJSON

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

func (*NullableGetUpdatesListResponse) Set

func (*NullableGetUpdatesListResponse) UnmarshalJSON

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

func (*NullableGetUpdatesListResponse) Unset

func (v *NullableGetUpdatesListResponse) 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 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 NullableUpdate

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

func NewNullableUpdate

func NewNullableUpdate(val *Update) *NullableUpdate

func (NullableUpdate) Get

func (v NullableUpdate) Get() *Update

func (NullableUpdate) IsSet

func (v NullableUpdate) IsSet() bool

func (NullableUpdate) MarshalJSON

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

func (*NullableUpdate) Set

func (v *NullableUpdate) Set(val *Update)

func (*NullableUpdate) UnmarshalJSON

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

func (*NullableUpdate) Unset

func (v *NullableUpdate) Unset()

type NullableUpdatePolicy added in v0.2.1

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

func NewNullableUpdatePolicy added in v0.2.1

func NewNullableUpdatePolicy(val *UpdatePolicy) *NullableUpdatePolicy

func (NullableUpdatePolicy) Get added in v0.2.1

func (NullableUpdatePolicy) IsSet added in v0.2.1

func (v NullableUpdatePolicy) IsSet() bool

func (NullableUpdatePolicy) MarshalJSON added in v0.2.1

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

func (*NullableUpdatePolicy) Set added in v0.2.1

func (v *NullableUpdatePolicy) Set(val *UpdatePolicy)

func (*NullableUpdatePolicy) UnmarshalJSON added in v0.2.1

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

func (*NullableUpdatePolicy) Unset added in v0.2.1

func (v *NullableUpdatePolicy) Unset()

type NullableUpdateSchedule

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

func NewNullableUpdateSchedule

func NewNullableUpdateSchedule(val *UpdateSchedule) *NullableUpdateSchedule

func (NullableUpdateSchedule) Get

func (NullableUpdateSchedule) IsSet

func (v NullableUpdateSchedule) IsSet() bool

func (NullableUpdateSchedule) MarshalJSON

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

func (*NullableUpdateSchedule) Set

func (*NullableUpdateSchedule) UnmarshalJSON

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

func (*NullableUpdateSchedule) Unset

func (v *NullableUpdateSchedule) Unset()

type NullableUpdateScheduleAllOf added in v0.4.0

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

func NewNullableUpdateScheduleAllOf added in v0.4.0

func NewNullableUpdateScheduleAllOf(val *UpdateScheduleAllOf) *NullableUpdateScheduleAllOf

func (NullableUpdateScheduleAllOf) Get added in v0.4.0

func (NullableUpdateScheduleAllOf) IsSet added in v0.4.0

func (NullableUpdateScheduleAllOf) MarshalJSON added in v0.4.0

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

func (*NullableUpdateScheduleAllOf) Set added in v0.4.0

func (*NullableUpdateScheduleAllOf) UnmarshalJSON added in v0.4.0

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

func (*NullableUpdateScheduleAllOf) Unset added in v0.4.0

func (v *NullableUpdateScheduleAllOf) Unset()

type NullableUpdateScheduleCreateRequest added in v0.4.0

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

func NewNullableUpdateScheduleCreateRequest added in v0.4.0

func NewNullableUpdateScheduleCreateRequest(val *UpdateScheduleCreateRequest) *NullableUpdateScheduleCreateRequest

func (NullableUpdateScheduleCreateRequest) Get added in v0.4.0

func (NullableUpdateScheduleCreateRequest) IsSet added in v0.4.0

func (NullableUpdateScheduleCreateRequest) MarshalJSON added in v0.4.0

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

func (*NullableUpdateScheduleCreateRequest) Set added in v0.4.0

func (*NullableUpdateScheduleCreateRequest) UnmarshalJSON added in v0.4.0

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

func (*NullableUpdateScheduleCreateRequest) Unset added in v0.4.0

type NullableUpdateUpdateSchedulePayload

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

func (NullableUpdateUpdateSchedulePayload) Get

func (NullableUpdateUpdateSchedulePayload) IsSet

func (NullableUpdateUpdateSchedulePayload) MarshalJSON

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

func (*NullableUpdateUpdateSchedulePayload) Set

func (*NullableUpdateUpdateSchedulePayload) UnmarshalJSON

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

func (*NullableUpdateUpdateSchedulePayload) Unset

type Update

type Update struct {
	EndDate    *string `json:"endDate,omitempty"`
	FailReason *string `json:"failReason,omitempty"`
	// Can be cast to int32 without loss of precision.
	FailedUpdates *int64 `json:"failedUpdates,omitempty"`
	// Can be cast to int32 without loss of precision.
	// REQUIRED
	Id *int64 `json:"id"`
	// Can be cast to int32 without loss of precision.
	InstalledUpdates *int64 `json:"installedUpdates,omitempty"`
	// REQUIRED
	StartDate *string `json:"startDate"`
	// REQUIRED
	Status *string `json:"status"`
}

Update struct for Update

func NewUpdate

func NewUpdate(id *int64, startDate *string, status *string) *Update

NewUpdate instantiates a new Update 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 NewUpdateWithDefaults

func NewUpdateWithDefaults() *Update

NewUpdateWithDefaults instantiates a new Update 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 (*Update) GetEndDate

func (o *Update) GetEndDate() *string

GetEndDate returns the EndDate field value if set, zero value otherwise.

func (*Update) GetEndDateOk

func (o *Update) GetEndDateOk() (*string, bool)

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

func (*Update) GetFailReason

func (o *Update) GetFailReason() *string

GetFailReason returns the FailReason field value if set, zero value otherwise.

func (*Update) GetFailReasonOk

func (o *Update) GetFailReasonOk() (*string, bool)

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

func (*Update) GetFailedUpdates

func (o *Update) GetFailedUpdates() *int64

GetFailedUpdates returns the FailedUpdates field value if set, zero value otherwise.

func (*Update) GetFailedUpdatesOk

func (o *Update) GetFailedUpdatesOk() (*int64, bool)

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

func (*Update) GetId

func (o *Update) GetId() *int64

GetId returns the Id field value

func (*Update) GetIdOk

func (o *Update) GetIdOk() (*int64, bool)

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

func (*Update) GetInstalledUpdates

func (o *Update) GetInstalledUpdates() *int64

GetInstalledUpdates returns the InstalledUpdates field value if set, zero value otherwise.

func (*Update) GetInstalledUpdatesOk

func (o *Update) GetInstalledUpdatesOk() (*int64, bool)

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

func (*Update) GetStartDate

func (o *Update) GetStartDate() *string

GetStartDate returns the StartDate field value

func (*Update) GetStartDateOk

func (o *Update) GetStartDateOk() (*string, bool)

GetStartDateOk returns a tuple with the StartDate field value and a boolean to check if the value has been set.

func (*Update) GetStatus

func (o *Update) GetStatus() *string

GetStatus returns the Status field value

func (*Update) GetStatusOk

func (o *Update) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*Update) HasEndDate added in v0.2.2

func (o *Update) HasEndDate() bool

HasEndDate returns a boolean if a field has been set.

func (*Update) HasFailReason

func (o *Update) HasFailReason() bool

HasFailReason returns a boolean if a field has been set.

func (*Update) HasFailedUpdates

func (o *Update) HasFailedUpdates() bool

HasFailedUpdates returns a boolean if a field has been set.

func (*Update) HasInstalledUpdates

func (o *Update) HasInstalledUpdates() bool

HasInstalledUpdates returns a boolean if a field has been set.

func (*Update) SetEndDate

func (o *Update) SetEndDate(v *string)

SetEndDate gets a reference to the given string and assigns it to the EndDate field.

func (*Update) SetFailReason

func (o *Update) SetFailReason(v *string)

SetFailReason gets a reference to the given string and assigns it to the FailReason field.

func (*Update) SetFailedUpdates

func (o *Update) SetFailedUpdates(v *int64)

SetFailedUpdates gets a reference to the given int64 and assigns it to the FailedUpdates field.

func (*Update) SetId

func (o *Update) SetId(v *int64)

SetId sets field value

func (*Update) SetInstalledUpdates

func (o *Update) SetInstalledUpdates(v *int64)

SetInstalledUpdates gets a reference to the given int64 and assigns it to the InstalledUpdates field.

func (*Update) SetStartDate

func (o *Update) SetStartDate(v *string)

SetStartDate sets field value

func (*Update) SetStatus

func (o *Update) SetStatus(v *string)

SetStatus sets field value

func (Update) ToMap

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

type UpdatePolicy added in v0.2.1

type UpdatePolicy struct {
	Default           *bool   `json:"default,omitempty"`
	Description       *string `json:"description,omitempty"`
	Enabled           *bool   `json:"enabled,omitempty"`
	Id                *string `json:"id,omitempty"`
	MaintenanceWindow *int64  `json:"maintenanceWindow,omitempty"`
	Name              *string `json:"name,omitempty"`
	Rrule             *string `json:"rrule,omitempty"`
}

UpdatePolicy struct for UpdatePolicy

func NewUpdatePolicy added in v0.2.1

func NewUpdatePolicy() *UpdatePolicy

NewUpdatePolicy instantiates a new UpdatePolicy 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 NewUpdatePolicyWithDefaults added in v0.2.1

func NewUpdatePolicyWithDefaults() *UpdatePolicy

NewUpdatePolicyWithDefaults instantiates a new UpdatePolicy 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 (*UpdatePolicy) GetDefault added in v0.2.1

func (o *UpdatePolicy) GetDefault() *bool

GetDefault returns the Default field value if set, zero value otherwise.

func (*UpdatePolicy) GetDefaultOk added in v0.2.1

func (o *UpdatePolicy) GetDefaultOk() (*bool, bool)

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

func (*UpdatePolicy) GetDescription added in v0.2.1

func (o *UpdatePolicy) GetDescription() *string

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

func (*UpdatePolicy) GetDescriptionOk added in v0.2.1

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

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

func (*UpdatePolicy) GetEnabled added in v0.2.1

func (o *UpdatePolicy) GetEnabled() *bool

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

func (*UpdatePolicy) GetEnabledOk added in v0.2.1

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

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

func (*UpdatePolicy) GetId added in v0.2.1

func (o *UpdatePolicy) GetId() *string

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

func (*UpdatePolicy) GetIdOk added in v0.2.1

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

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

func (*UpdatePolicy) GetMaintenanceWindow added in v0.2.1

func (o *UpdatePolicy) GetMaintenanceWindow() *int64

GetMaintenanceWindow returns the MaintenanceWindow field value if set, zero value otherwise.

func (*UpdatePolicy) GetMaintenanceWindowOk added in v0.2.1

func (o *UpdatePolicy) GetMaintenanceWindowOk() (*int64, bool)

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

func (*UpdatePolicy) GetName added in v0.2.1

func (o *UpdatePolicy) GetName() *string

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

func (*UpdatePolicy) GetNameOk added in v0.2.1

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

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

func (*UpdatePolicy) GetRrule added in v0.2.1

func (o *UpdatePolicy) GetRrule() *string

GetRrule returns the Rrule field value if set, zero value otherwise.

func (*UpdatePolicy) GetRruleOk added in v0.2.1

func (o *UpdatePolicy) GetRruleOk() (*string, bool)

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

func (*UpdatePolicy) HasDefault added in v0.2.1

func (o *UpdatePolicy) HasDefault() bool

HasDefault returns a boolean if a field has been set.

func (*UpdatePolicy) HasDescription added in v0.2.1

func (o *UpdatePolicy) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*UpdatePolicy) HasEnabled added in v0.2.1

func (o *UpdatePolicy) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*UpdatePolicy) HasId added in v0.2.1

func (o *UpdatePolicy) HasId() bool

HasId returns a boolean if a field has been set.

func (*UpdatePolicy) HasMaintenanceWindow added in v0.2.1

func (o *UpdatePolicy) HasMaintenanceWindow() bool

HasMaintenanceWindow returns a boolean if a field has been set.

func (*UpdatePolicy) HasName added in v0.2.1

func (o *UpdatePolicy) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdatePolicy) HasRrule added in v0.2.1

func (o *UpdatePolicy) HasRrule() bool

HasRrule returns a boolean if a field has been set.

func (*UpdatePolicy) SetDefault added in v0.2.1

func (o *UpdatePolicy) SetDefault(v *bool)

SetDefault gets a reference to the given bool and assigns it to the Default field.

func (*UpdatePolicy) SetDescription added in v0.2.1

func (o *UpdatePolicy) SetDescription(v *string)

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

func (*UpdatePolicy) SetEnabled added in v0.2.1

func (o *UpdatePolicy) SetEnabled(v *bool)

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

func (*UpdatePolicy) SetId added in v0.2.1

func (o *UpdatePolicy) SetId(v *string)

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

func (*UpdatePolicy) SetMaintenanceWindow added in v0.2.1

func (o *UpdatePolicy) SetMaintenanceWindow(v *int64)

SetMaintenanceWindow gets a reference to the given int64 and assigns it to the MaintenanceWindow field.

func (*UpdatePolicy) SetName added in v0.2.1

func (o *UpdatePolicy) SetName(v *string)

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

func (*UpdatePolicy) SetRrule added in v0.2.1

func (o *UpdatePolicy) SetRrule(v *string)

SetRrule gets a reference to the given string and assigns it to the Rrule field.

func (UpdatePolicy) ToMap added in v0.2.1

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

type UpdateSchedule

type UpdateSchedule struct {
	// REQUIRED
	Enabled *bool `json:"enabled"`
	// Can be cast to int32 without loss of precision.
	// REQUIRED
	MaintenanceWindow *int64 `json:"maintenanceWindow"`
	// REQUIRED
	Name *string `json:"name"`
	// REQUIRED
	Rrule *string `json:"rrule"`
	// Can be cast to int32 without loss of precision.
	// REQUIRED
	Id *int64 `json:"id"`
}

UpdateSchedule struct for UpdateSchedule

func NewUpdateSchedule

func NewUpdateSchedule(enabled *bool, maintenanceWindow *int64, name *string, rrule *string, id *int64) *UpdateSchedule

NewUpdateSchedule instantiates a new UpdateSchedule 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 NewUpdateScheduleWithDefaults

func NewUpdateScheduleWithDefaults() *UpdateSchedule

NewUpdateScheduleWithDefaults instantiates a new UpdateSchedule 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 (*UpdateSchedule) GetEnabled

func (o *UpdateSchedule) GetEnabled() *bool

GetEnabled returns the Enabled field value

func (*UpdateSchedule) GetEnabledOk

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

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

func (*UpdateSchedule) GetId

func (o *UpdateSchedule) GetId() *int64

GetId returns the Id field value

func (*UpdateSchedule) GetIdOk

func (o *UpdateSchedule) GetIdOk() (*int64, bool)

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

func (*UpdateSchedule) GetMaintenanceWindow

func (o *UpdateSchedule) GetMaintenanceWindow() *int64

GetMaintenanceWindow returns the MaintenanceWindow field value

func (*UpdateSchedule) GetMaintenanceWindowOk

func (o *UpdateSchedule) GetMaintenanceWindowOk() (*int64, bool)

GetMaintenanceWindowOk returns a tuple with the MaintenanceWindow field value and a boolean to check if the value has been set.

func (*UpdateSchedule) GetName

func (o *UpdateSchedule) GetName() *string

GetName returns the Name field value

func (*UpdateSchedule) GetNameOk

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

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

func (*UpdateSchedule) GetRrule

func (o *UpdateSchedule) GetRrule() *string

GetRrule returns the Rrule field value

func (*UpdateSchedule) GetRruleOk

func (o *UpdateSchedule) GetRruleOk() (*string, bool)

GetRruleOk returns a tuple with the Rrule field value and a boolean to check if the value has been set.

func (*UpdateSchedule) SetEnabled

func (o *UpdateSchedule) SetEnabled(v *bool)

SetEnabled sets field value

func (*UpdateSchedule) SetId

func (o *UpdateSchedule) SetId(v *int64)

SetId sets field value

func (*UpdateSchedule) SetMaintenanceWindow

func (o *UpdateSchedule) SetMaintenanceWindow(v *int64)

SetMaintenanceWindow sets field value

func (*UpdateSchedule) SetName

func (o *UpdateSchedule) SetName(v *string)

SetName sets field value

func (*UpdateSchedule) SetRrule

func (o *UpdateSchedule) SetRrule(v *string)

SetRrule sets field value

func (UpdateSchedule) ToMap

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

type UpdateScheduleAllOf added in v0.4.0

type UpdateScheduleAllOf struct {
	// Can be cast to int32 without loss of precision.
	// REQUIRED
	Id *int64 `json:"id"`
}

UpdateScheduleAllOf struct for UpdateScheduleAllOf

func NewUpdateScheduleAllOf added in v0.4.0

func NewUpdateScheduleAllOf(id *int64) *UpdateScheduleAllOf

NewUpdateScheduleAllOf instantiates a new UpdateScheduleAllOf 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 NewUpdateScheduleAllOfWithDefaults added in v0.4.0

func NewUpdateScheduleAllOfWithDefaults() *UpdateScheduleAllOf

NewUpdateScheduleAllOfWithDefaults instantiates a new UpdateScheduleAllOf 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 (*UpdateScheduleAllOf) GetId added in v0.4.0

func (o *UpdateScheduleAllOf) GetId() *int64

GetId returns the Id field value

func (*UpdateScheduleAllOf) GetIdOk added in v0.4.0

func (o *UpdateScheduleAllOf) GetIdOk() (*int64, bool)

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

func (*UpdateScheduleAllOf) SetId added in v0.4.0

func (o *UpdateScheduleAllOf) SetId(v *int64)

SetId sets field value

func (UpdateScheduleAllOf) ToMap added in v0.4.0

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

type UpdateScheduleCreateRequest added in v0.4.0

type UpdateScheduleCreateRequest struct {
	// REQUIRED
	Enabled *bool `json:"enabled"`
	// Can be cast to int32 without loss of precision.
	// REQUIRED
	MaintenanceWindow *int64 `json:"maintenanceWindow"`
	// REQUIRED
	Name *string `json:"name"`
	// REQUIRED
	Rrule *string `json:"rrule"`
}

UpdateScheduleCreateRequest struct for UpdateScheduleCreateRequest

func NewUpdateScheduleCreateRequest added in v0.4.0

func NewUpdateScheduleCreateRequest(enabled *bool, maintenanceWindow *int64, name *string, rrule *string) *UpdateScheduleCreateRequest

NewUpdateScheduleCreateRequest instantiates a new UpdateScheduleCreateRequest 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 NewUpdateScheduleCreateRequestWithDefaults added in v0.4.0

func NewUpdateScheduleCreateRequestWithDefaults() *UpdateScheduleCreateRequest

NewUpdateScheduleCreateRequestWithDefaults instantiates a new UpdateScheduleCreateRequest 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 (*UpdateScheduleCreateRequest) GetEnabled added in v0.4.0

func (o *UpdateScheduleCreateRequest) GetEnabled() *bool

GetEnabled returns the Enabled field value

func (*UpdateScheduleCreateRequest) GetEnabledOk added in v0.4.0

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

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

func (*UpdateScheduleCreateRequest) GetMaintenanceWindow added in v0.4.0

func (o *UpdateScheduleCreateRequest) GetMaintenanceWindow() *int64

GetMaintenanceWindow returns the MaintenanceWindow field value

func (*UpdateScheduleCreateRequest) GetMaintenanceWindowOk added in v0.4.0

func (o *UpdateScheduleCreateRequest) GetMaintenanceWindowOk() (*int64, bool)

GetMaintenanceWindowOk returns a tuple with the MaintenanceWindow field value and a boolean to check if the value has been set.

func (*UpdateScheduleCreateRequest) GetName added in v0.4.0

func (o *UpdateScheduleCreateRequest) GetName() *string

GetName returns the Name field value

func (*UpdateScheduleCreateRequest) GetNameOk added in v0.4.0

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

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

func (*UpdateScheduleCreateRequest) GetRrule added in v0.4.0

func (o *UpdateScheduleCreateRequest) GetRrule() *string

GetRrule returns the Rrule field value

func (*UpdateScheduleCreateRequest) GetRruleOk added in v0.4.0

func (o *UpdateScheduleCreateRequest) GetRruleOk() (*string, bool)

GetRruleOk returns a tuple with the Rrule field value and a boolean to check if the value has been set.

func (*UpdateScheduleCreateRequest) SetEnabled added in v0.4.0

func (o *UpdateScheduleCreateRequest) SetEnabled(v *bool)

SetEnabled sets field value

func (*UpdateScheduleCreateRequest) SetMaintenanceWindow added in v0.4.0

func (o *UpdateScheduleCreateRequest) SetMaintenanceWindow(v *int64)

SetMaintenanceWindow sets field value

func (*UpdateScheduleCreateRequest) SetName added in v0.4.0

func (o *UpdateScheduleCreateRequest) SetName(v *string)

SetName sets field value

func (*UpdateScheduleCreateRequest) SetRrule added in v0.4.0

func (o *UpdateScheduleCreateRequest) SetRrule(v *string)

SetRrule sets field value

func (UpdateScheduleCreateRequest) ToMap added in v0.4.0

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

type UpdateUpdateSchedulePayload

type UpdateUpdateSchedulePayload struct {
	// REQUIRED
	Enabled *bool `json:"enabled"`
	// Can be cast to int32 without loss of precision.
	// REQUIRED
	MaintenanceWindow *int64 `json:"maintenanceWindow"`
	// REQUIRED
	Name *string `json:"name"`
	// REQUIRED
	Rrule *string `json:"rrule"`
}

UpdateUpdateSchedulePayload struct for UpdateUpdateSchedulePayload

func NewUpdateUpdateSchedulePayload

func NewUpdateUpdateSchedulePayload(enabled *bool, maintenanceWindow *int64, name *string, rrule *string) *UpdateUpdateSchedulePayload

NewUpdateUpdateSchedulePayload instantiates a new UpdateUpdateSchedulePayload 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 NewUpdateUpdateSchedulePayloadWithDefaults

func NewUpdateUpdateSchedulePayloadWithDefaults() *UpdateUpdateSchedulePayload

NewUpdateUpdateSchedulePayloadWithDefaults instantiates a new UpdateUpdateSchedulePayload 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 (*UpdateUpdateSchedulePayload) GetEnabled

func (o *UpdateUpdateSchedulePayload) GetEnabled() *bool

GetEnabled returns the Enabled field value

func (*UpdateUpdateSchedulePayload) GetEnabledOk

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

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

func (*UpdateUpdateSchedulePayload) GetMaintenanceWindow

func (o *UpdateUpdateSchedulePayload) GetMaintenanceWindow() *int64

GetMaintenanceWindow returns the MaintenanceWindow field value

func (*UpdateUpdateSchedulePayload) GetMaintenanceWindowOk

func (o *UpdateUpdateSchedulePayload) GetMaintenanceWindowOk() (*int64, bool)

GetMaintenanceWindowOk returns a tuple with the MaintenanceWindow field value and a boolean to check if the value has been set.

func (*UpdateUpdateSchedulePayload) GetName

func (o *UpdateUpdateSchedulePayload) GetName() *string

GetName returns the Name field value

func (*UpdateUpdateSchedulePayload) GetNameOk

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

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

func (*UpdateUpdateSchedulePayload) GetRrule

func (o *UpdateUpdateSchedulePayload) GetRrule() *string

GetRrule returns the Rrule field value

func (*UpdateUpdateSchedulePayload) GetRruleOk

func (o *UpdateUpdateSchedulePayload) GetRruleOk() (*string, bool)

GetRruleOk returns a tuple with the Rrule field value and a boolean to check if the value has been set.

func (*UpdateUpdateSchedulePayload) SetEnabled

func (o *UpdateUpdateSchedulePayload) SetEnabled(v *bool)

SetEnabled sets field value

func (*UpdateUpdateSchedulePayload) SetMaintenanceWindow

func (o *UpdateUpdateSchedulePayload) SetMaintenanceWindow(v *int64)

SetMaintenanceWindow sets field value

func (*UpdateUpdateSchedulePayload) SetName

func (o *UpdateUpdateSchedulePayload) SetName(v *string)

SetName sets field value

func (*UpdateUpdateSchedulePayload) SetRrule

func (o *UpdateUpdateSchedulePayload) SetRrule(v *string)

SetRrule sets field value

func (UpdateUpdateSchedulePayload) ToMap

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

Jump to

Keyboard shortcuts

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