jkawamoto/roadie

View on GitHub
cloud/azure/batch/client/job_schedules/job_schedule_patch_parameters.go

Summary

Maintainability
F
5 days
Test Coverage
package job_schedules

// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command

import (
    "net/http"
    "time"

    "golang.org/x/net/context"

    "github.com/go-openapi/errors"
    "github.com/go-openapi/runtime"
    cr "github.com/go-openapi/runtime/client"
    "github.com/go-openapi/swag"

    strfmt "github.com/go-openapi/strfmt"

    "github.com/jkawamoto/roadie/cloud/azure/batch/models"
)

// NewJobSchedulePatchParams creates a new JobSchedulePatchParams object
// with the default values initialized.
func NewJobSchedulePatchParams() *JobSchedulePatchParams {
    var (
        returnClientRequestIDDefault = bool(false)
        timeoutDefault               = int32(30)
    )
    return &JobSchedulePatchParams{
        ReturnClientRequestID: &returnClientRequestIDDefault,
        Timeout:               &timeoutDefault,

        requestTimeout: cr.DefaultTimeout,
    }
}

// NewJobSchedulePatchParamsWithTimeout creates a new JobSchedulePatchParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewJobSchedulePatchParamsWithTimeout(timeout time.Duration) *JobSchedulePatchParams {
    var (
        returnClientRequestIDDefault = bool(false)
        timeoutDefault               = int32(30)
    )
    return &JobSchedulePatchParams{
        ReturnClientRequestID: &returnClientRequestIDDefault,
        Timeout:               &timeoutDefault,

        requestTimeout: timeout,
    }
}

// NewJobSchedulePatchParamsWithContext creates a new JobSchedulePatchParams object
// with the default values initialized, and the ability to set a context for a request
func NewJobSchedulePatchParamsWithContext(ctx context.Context) *JobSchedulePatchParams {
    var (
        returnClientRequestIdDefault = bool(false)
        timeoutDefault               = int32(30)
    )
    return &JobSchedulePatchParams{
        ReturnClientRequestID: &returnClientRequestIdDefault,
        Timeout:               &timeoutDefault,

        Context: ctx,
    }
}

/*JobSchedulePatchParams contains all the parameters to send to the API endpoint
for the job schedule patch operation typically these are written to a http.Request
*/
type JobSchedulePatchParams struct {

    /*IfMatch
      An ETag is specified. Specify this header to perform the operation only if the resource's ETag is an exact match as specified.

    */
    IfMatch *string
    /*IfModifiedSince
      Specify this header to perform the operation only if the resource has been modified since the specified date/time.

    */
    IfModifiedSince *string
    /*IfNoneMatch
      An ETag is specified. Specify this header to perform the operation only if the resource's ETag does not match the specified ETag.

    */
    IfNoneMatch *string
    /*IfUnmodifiedSince
      Specify this header to perform the operation only if the resource has not been modified since the specified date/time.

    */
    IfUnmodifiedSince *string
    /*APIVersion
      Client API Version.

    */
    APIVersion string
    /*ClientRequestID
      The caller-generated request identity, in the form of a GUID with no decoration such as curly braces, e.g. 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0.

    */
    ClientRequestID *string
    /*JobScheduleID
      The ID of the job schedule to update.

    */
    JobScheduleID string
    /*JobSchedulePatchParameter
      The parameters for the request.

    */
    JobSchedulePatchParameter *models.JobSchedulePatchParameter
    /*OcpDate
      The time the request was issued. If not specified, this header will be automatically populated with the current system clock time.

    */
    OcpDate *string
    /*ReturnClientRequestID
      Whether the server should return the client-request-id in the response.

    */
    ReturnClientRequestID *bool
    /*Timeout
      The maximum time that the server can spend processing the request, in seconds. The default is 30 seconds.

    */
    Timeout *int32

    requestTimeout time.Duration
    Context        context.Context
    HTTPClient     *http.Client
}

// WithRequestTimeout adds the timeout to the job schedule patch params
func (o *JobSchedulePatchParams) WithRequestTimeout(timeout time.Duration) *JobSchedulePatchParams {
    o.SetRequestTimeout(timeout)
    return o
}

// SetRequestTimeout adds the timeout to the job schedule patch params
func (o *JobSchedulePatchParams) SetRequestTimeout(timeout time.Duration) {
    o.requestTimeout = timeout
}

// WithContext adds the context to the job schedule patch params
func (o *JobSchedulePatchParams) WithContext(ctx context.Context) *JobSchedulePatchParams {
    o.SetContext(ctx)
    return o
}

// SetContext adds the context to the job schedule patch params
func (o *JobSchedulePatchParams) SetContext(ctx context.Context) {
    o.Context = ctx
}

// WithIfMatch adds the ifMatch to the job schedule patch params
func (o *JobSchedulePatchParams) WithIfMatch(ifMatch *string) *JobSchedulePatchParams {
    o.SetIfMatch(ifMatch)
    return o
}

// SetIfMatch adds the ifMatch to the job schedule patch params
func (o *JobSchedulePatchParams) SetIfMatch(ifMatch *string) {
    o.IfMatch = ifMatch
}

// WithIfModifiedSince adds the ifModifiedSince to the job schedule patch params
func (o *JobSchedulePatchParams) WithIfModifiedSince(ifModifiedSince *string) *JobSchedulePatchParams {
    o.SetIfModifiedSince(ifModifiedSince)
    return o
}

// SetIfModifiedSince adds the ifModifiedSince to the job schedule patch params
func (o *JobSchedulePatchParams) SetIfModifiedSince(ifModifiedSince *string) {
    o.IfModifiedSince = ifModifiedSince
}

// WithIfNoneMatch adds the ifNoneMatch to the job schedule patch params
func (o *JobSchedulePatchParams) WithIfNoneMatch(ifNoneMatch *string) *JobSchedulePatchParams {
    o.SetIfNoneMatch(ifNoneMatch)
    return o
}

// SetIfNoneMatch adds the ifNoneMatch to the job schedule patch params
func (o *JobSchedulePatchParams) SetIfNoneMatch(ifNoneMatch *string) {
    o.IfNoneMatch = ifNoneMatch
}

// WithIfUnmodifiedSince adds the ifUnmodifiedSince to the job schedule patch params
func (o *JobSchedulePatchParams) WithIfUnmodifiedSince(ifUnmodifiedSince *string) *JobSchedulePatchParams {
    o.SetIfUnmodifiedSince(ifUnmodifiedSince)
    return o
}

// SetIfUnmodifiedSince adds the ifUnmodifiedSince to the job schedule patch params
func (o *JobSchedulePatchParams) SetIfUnmodifiedSince(ifUnmodifiedSince *string) {
    o.IfUnmodifiedSince = ifUnmodifiedSince
}

// WithAPIVersion adds the aPIVersion to the job schedule patch params
func (o *JobSchedulePatchParams) WithAPIVersion(aPIVersion string) *JobSchedulePatchParams {
    o.SetAPIVersion(aPIVersion)
    return o
}

// SetAPIVersion adds the apiVersion to the job schedule patch params
func (o *JobSchedulePatchParams) SetAPIVersion(aPIVersion string) {
    o.APIVersion = aPIVersion
}

// WithClientRequestID adds the clientRequestID to the job schedule patch params
func (o *JobSchedulePatchParams) WithClientRequestID(clientRequestID *string) *JobSchedulePatchParams {
    o.SetClientRequestID(clientRequestID)
    return o
}

// SetClientRequestID adds the clientRequestId to the job schedule patch params
func (o *JobSchedulePatchParams) SetClientRequestID(clientRequestID *string) {
    o.ClientRequestID = clientRequestID
}

// WithJobScheduleID adds the jobScheduleID to the job schedule patch params
func (o *JobSchedulePatchParams) WithJobScheduleID(jobScheduleID string) *JobSchedulePatchParams {
    o.SetJobScheduleID(jobScheduleID)
    return o
}

// SetJobScheduleID adds the jobScheduleId to the job schedule patch params
func (o *JobSchedulePatchParams) SetJobScheduleID(jobScheduleID string) {
    o.JobScheduleID = jobScheduleID
}

// WithJobSchedulePatchParameter adds the jobSchedulePatchParameter to the job schedule patch params
func (o *JobSchedulePatchParams) WithJobSchedulePatchParameter(jobSchedulePatchParameter *models.JobSchedulePatchParameter) *JobSchedulePatchParams {
    o.SetJobSchedulePatchParameter(jobSchedulePatchParameter)
    return o
}

// SetJobSchedulePatchParameter adds the jobSchedulePatchParameter to the job schedule patch params
func (o *JobSchedulePatchParams) SetJobSchedulePatchParameter(jobSchedulePatchParameter *models.JobSchedulePatchParameter) {
    o.JobSchedulePatchParameter = jobSchedulePatchParameter
}

// WithOcpDate adds the ocpDate to the job schedule patch params
func (o *JobSchedulePatchParams) WithOcpDate(ocpDate *string) *JobSchedulePatchParams {
    o.SetOcpDate(ocpDate)
    return o
}

// SetOcpDate adds the ocpDate to the job schedule patch params
func (o *JobSchedulePatchParams) SetOcpDate(ocpDate *string) {
    o.OcpDate = ocpDate
}

// WithReturnClientRequestID adds the returnClientRequestID to the job schedule patch params
func (o *JobSchedulePatchParams) WithReturnClientRequestID(returnClientRequestID *bool) *JobSchedulePatchParams {
    o.SetReturnClientRequestID(returnClientRequestID)
    return o
}

// SetReturnClientRequestID adds the returnClientRequestId to the job schedule patch params
func (o *JobSchedulePatchParams) SetReturnClientRequestID(returnClientRequestID *bool) {
    o.ReturnClientRequestID = returnClientRequestID
}

// WithTimeout adds the timeout to the job schedule patch params
func (o *JobSchedulePatchParams) WithTimeout(timeout *int32) *JobSchedulePatchParams {
    o.SetTimeout(timeout)
    return o
}

// SetTimeout adds the timeout to the job schedule patch params
func (o *JobSchedulePatchParams) SetTimeout(timeout *int32) {
    o.Timeout = timeout
}

// WriteToRequest writes these params to a swagger request
func (o *JobSchedulePatchParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {

    r.SetTimeout(o.requestTimeout)
    var res []error

    if o.IfMatch != nil {

        // header param If-Match
        if err := r.SetHeaderParam("If-Match", *o.IfMatch); err != nil {
            return err
        }

    }

    if o.IfModifiedSince != nil {

        // header param If-Modified-Since
        if err := r.SetHeaderParam("If-Modified-Since", *o.IfModifiedSince); err != nil {
            return err
        }

    }

    if o.IfNoneMatch != nil {

        // header param If-None-Match
        if err := r.SetHeaderParam("If-None-Match", *o.IfNoneMatch); err != nil {
            return err
        }

    }

    if o.IfUnmodifiedSince != nil {

        // header param If-Unmodified-Since
        if err := r.SetHeaderParam("If-Unmodified-Since", *o.IfUnmodifiedSince); err != nil {
            return err
        }

    }

    // query param api-version
    qrAPIVersion := o.APIVersion
    qAPIVersion := qrAPIVersion
    if qAPIVersion != "" {
        if err := r.SetQueryParam("api-version", qAPIVersion); err != nil {
            return err
        }
    }

    if o.ClientRequestID != nil {

        // header param client-request-id
        if err := r.SetHeaderParam("client-request-id", *o.ClientRequestID); err != nil {
            return err
        }

    }

    // path param jobScheduleId
    if err := r.SetPathParam("jobScheduleId", o.JobScheduleID); err != nil {
        return err
    }

    if o.JobSchedulePatchParameter == nil {
        o.JobSchedulePatchParameter = new(models.JobSchedulePatchParameter)
    }

    if err := r.SetBodyParam(o.JobSchedulePatchParameter); err != nil {
        return err
    }

    if o.OcpDate != nil {

        // header param ocp-date
        if err := r.SetHeaderParam("ocp-date", *o.OcpDate); err != nil {
            return err
        }

    }

    if o.ReturnClientRequestID != nil {

        // header param return-client-request-id
        if err := r.SetHeaderParam("return-client-request-id", swag.FormatBool(*o.ReturnClientRequestID)); err != nil {
            return err
        }

    }

    if o.Timeout != nil {

        // query param timeout
        var qrTimeout int32
        if o.Timeout != nil {
            qrTimeout = *o.Timeout
        }
        qTimeout := swag.FormatInt32(qrTimeout)
        if qTimeout != "" {
            if err := r.SetQueryParam("timeout", qTimeout); err != nil {
                return err
            }
        }

    }

    if len(res) > 0 {
        return errors.CompositeValidationError(res...)
    }
    return nil
}