255 lines
6.5 KiB
Go
255 lines
6.5 KiB
Go
/*
|
|
* Subset of Influx API covered by Influx CLI
|
|
*
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* API version: 2.0.0
|
|
*/
|
|
|
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
|
|
|
package api
|
|
|
|
import (
|
|
"encoding/json"
|
|
)
|
|
|
|
// TaskCreateRequest struct for TaskCreateRequest
|
|
type TaskCreateRequest struct {
|
|
// The ID of the organization that owns this Task.
|
|
OrgID *string `json:"orgID,omitempty" yaml:"orgID,omitempty"`
|
|
// The name of the organization that owns this Task.
|
|
Org *string `json:"org,omitempty" yaml:"org,omitempty"`
|
|
Status *TaskStatusType `json:"status,omitempty" yaml:"status,omitempty"`
|
|
// The Flux script to run for this task.
|
|
Flux string `json:"flux" yaml:"flux"`
|
|
// An optional description of the task.
|
|
Description *string `json:"description,omitempty" yaml:"description,omitempty"`
|
|
}
|
|
|
|
// NewTaskCreateRequest instantiates a new TaskCreateRequest 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 NewTaskCreateRequest(flux string) *TaskCreateRequest {
|
|
this := TaskCreateRequest{}
|
|
this.Flux = flux
|
|
return &this
|
|
}
|
|
|
|
// NewTaskCreateRequestWithDefaults instantiates a new TaskCreateRequest 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 NewTaskCreateRequestWithDefaults() *TaskCreateRequest {
|
|
this := TaskCreateRequest{}
|
|
return &this
|
|
}
|
|
|
|
// GetOrgID returns the OrgID field value if set, zero value otherwise.
|
|
func (o *TaskCreateRequest) GetOrgID() string {
|
|
if o == nil || o.OrgID == nil {
|
|
var ret string
|
|
return ret
|
|
}
|
|
return *o.OrgID
|
|
}
|
|
|
|
// GetOrgIDOk returns a tuple with the OrgID field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
func (o *TaskCreateRequest) GetOrgIDOk() (*string, bool) {
|
|
if o == nil || o.OrgID == nil {
|
|
return nil, false
|
|
}
|
|
return o.OrgID, true
|
|
}
|
|
|
|
// HasOrgID returns a boolean if a field has been set.
|
|
func (o *TaskCreateRequest) HasOrgID() bool {
|
|
if o != nil && o.OrgID != nil {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetOrgID gets a reference to the given string and assigns it to the OrgID field.
|
|
func (o *TaskCreateRequest) SetOrgID(v string) {
|
|
o.OrgID = &v
|
|
}
|
|
|
|
// GetOrg returns the Org field value if set, zero value otherwise.
|
|
func (o *TaskCreateRequest) GetOrg() string {
|
|
if o == nil || o.Org == nil {
|
|
var ret string
|
|
return ret
|
|
}
|
|
return *o.Org
|
|
}
|
|
|
|
// GetOrgOk returns a tuple with the Org field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
func (o *TaskCreateRequest) GetOrgOk() (*string, bool) {
|
|
if o == nil || o.Org == nil {
|
|
return nil, false
|
|
}
|
|
return o.Org, true
|
|
}
|
|
|
|
// HasOrg returns a boolean if a field has been set.
|
|
func (o *TaskCreateRequest) HasOrg() bool {
|
|
if o != nil && o.Org != nil {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetOrg gets a reference to the given string and assigns it to the Org field.
|
|
func (o *TaskCreateRequest) SetOrg(v string) {
|
|
o.Org = &v
|
|
}
|
|
|
|
// GetStatus returns the Status field value if set, zero value otherwise.
|
|
func (o *TaskCreateRequest) GetStatus() TaskStatusType {
|
|
if o == nil || o.Status == nil {
|
|
var ret TaskStatusType
|
|
return ret
|
|
}
|
|
return *o.Status
|
|
}
|
|
|
|
// GetStatusOk returns a tuple with the Status field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
func (o *TaskCreateRequest) GetStatusOk() (*TaskStatusType, bool) {
|
|
if o == nil || o.Status == nil {
|
|
return nil, false
|
|
}
|
|
return o.Status, true
|
|
}
|
|
|
|
// HasStatus returns a boolean if a field has been set.
|
|
func (o *TaskCreateRequest) HasStatus() bool {
|
|
if o != nil && o.Status != nil {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetStatus gets a reference to the given TaskStatusType and assigns it to the Status field.
|
|
func (o *TaskCreateRequest) SetStatus(v TaskStatusType) {
|
|
o.Status = &v
|
|
}
|
|
|
|
// GetFlux returns the Flux field value
|
|
func (o *TaskCreateRequest) GetFlux() string {
|
|
if o == nil {
|
|
var ret string
|
|
return ret
|
|
}
|
|
|
|
return o.Flux
|
|
}
|
|
|
|
// GetFluxOk returns a tuple with the Flux field value
|
|
// and a boolean to check if the value has been set.
|
|
func (o *TaskCreateRequest) GetFluxOk() (*string, bool) {
|
|
if o == nil {
|
|
return nil, false
|
|
}
|
|
return &o.Flux, true
|
|
}
|
|
|
|
// SetFlux sets field value
|
|
func (o *TaskCreateRequest) SetFlux(v string) {
|
|
o.Flux = v
|
|
}
|
|
|
|
// GetDescription returns the Description field value if set, zero value otherwise.
|
|
func (o *TaskCreateRequest) GetDescription() string {
|
|
if o == nil || o.Description == nil {
|
|
var ret string
|
|
return ret
|
|
}
|
|
return *o.Description
|
|
}
|
|
|
|
// 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 (o *TaskCreateRequest) GetDescriptionOk() (*string, bool) {
|
|
if o == nil || o.Description == nil {
|
|
return nil, false
|
|
}
|
|
return o.Description, true
|
|
}
|
|
|
|
// HasDescription returns a boolean if a field has been set.
|
|
func (o *TaskCreateRequest) HasDescription() bool {
|
|
if o != nil && o.Description != nil {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetDescription gets a reference to the given string and assigns it to the Description field.
|
|
func (o *TaskCreateRequest) SetDescription(v string) {
|
|
o.Description = &v
|
|
}
|
|
|
|
func (o TaskCreateRequest) MarshalJSON() ([]byte, error) {
|
|
toSerialize := map[string]interface{}{}
|
|
if o.OrgID != nil {
|
|
toSerialize["orgID"] = o.OrgID
|
|
}
|
|
if o.Org != nil {
|
|
toSerialize["org"] = o.Org
|
|
}
|
|
if o.Status != nil {
|
|
toSerialize["status"] = o.Status
|
|
}
|
|
if true {
|
|
toSerialize["flux"] = o.Flux
|
|
}
|
|
if o.Description != nil {
|
|
toSerialize["description"] = o.Description
|
|
}
|
|
return json.Marshal(toSerialize)
|
|
}
|
|
|
|
type NullableTaskCreateRequest struct {
|
|
value *TaskCreateRequest
|
|
isSet bool
|
|
}
|
|
|
|
func (v NullableTaskCreateRequest) Get() *TaskCreateRequest {
|
|
return v.value
|
|
}
|
|
|
|
func (v *NullableTaskCreateRequest) Set(val *TaskCreateRequest) {
|
|
v.value = val
|
|
v.isSet = true
|
|
}
|
|
|
|
func (v NullableTaskCreateRequest) IsSet() bool {
|
|
return v.isSet
|
|
}
|
|
|
|
func (v *NullableTaskCreateRequest) Unset() {
|
|
v.value = nil
|
|
v.isSet = false
|
|
}
|
|
|
|
func NewNullableTaskCreateRequest(val *TaskCreateRequest) *NullableTaskCreateRequest {
|
|
return &NullableTaskCreateRequest{value: val, isSet: true}
|
|
}
|
|
|
|
func (v NullableTaskCreateRequest) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(v.value)
|
|
}
|
|
|
|
func (v *NullableTaskCreateRequest) UnmarshalJSON(src []byte) error {
|
|
v.isSet = true
|
|
return json.Unmarshal(src, &v.value)
|
|
}
|