/* * 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" ) // ReplicationCreationRequest struct for ReplicationCreationRequest type ReplicationCreationRequest struct { Name string `json:"name" yaml:"name"` Description *string `json:"description,omitempty" yaml:"description,omitempty"` OrgID string `json:"orgID" yaml:"orgID"` RemoteID string `json:"remoteID" yaml:"remoteID"` LocalBucketID string `json:"localBucketID" yaml:"localBucketID"` RemoteBucketID string `json:"remoteBucketID" yaml:"remoteBucketID"` MaxQueueSizeBytes int64 `json:"maxQueueSizeBytes" yaml:"maxQueueSizeBytes"` DropNonRetryableData *bool `json:"dropNonRetryableData,omitempty" yaml:"dropNonRetryableData,omitempty"` MaxAgeSeconds int64 `json:"maxAgeSeconds" yaml:"maxAgeSeconds"` } // NewReplicationCreationRequest instantiates a new ReplicationCreationRequest 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 NewReplicationCreationRequest(name string, orgID string, remoteID string, localBucketID string, remoteBucketID string, maxQueueSizeBytes int64, maxAgeSeconds int64) *ReplicationCreationRequest { this := ReplicationCreationRequest{} this.Name = name this.OrgID = orgID this.RemoteID = remoteID this.LocalBucketID = localBucketID this.RemoteBucketID = remoteBucketID this.MaxQueueSizeBytes = maxQueueSizeBytes var dropNonRetryableData bool = false this.DropNonRetryableData = &dropNonRetryableData this.MaxAgeSeconds = maxAgeSeconds return &this } // NewReplicationCreationRequestWithDefaults instantiates a new ReplicationCreationRequest 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 NewReplicationCreationRequestWithDefaults() *ReplicationCreationRequest { this := ReplicationCreationRequest{} var maxQueueSizeBytes int64 = 67108860 this.MaxQueueSizeBytes = maxQueueSizeBytes var dropNonRetryableData bool = false this.DropNonRetryableData = &dropNonRetryableData var maxAgeSeconds int64 = 604800 this.MaxAgeSeconds = maxAgeSeconds return &this } // GetName returns the Name field value func (o *ReplicationCreationRequest) GetName() string { if o == nil { var ret string return ret } return o.Name } // GetNameOk returns a tuple with the Name field value // and a boolean to check if the value has been set. func (o *ReplicationCreationRequest) GetNameOk() (*string, bool) { if o == nil { return nil, false } return &o.Name, true } // SetName sets field value func (o *ReplicationCreationRequest) SetName(v string) { o.Name = v } // GetDescription returns the Description field value if set, zero value otherwise. func (o *ReplicationCreationRequest) 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 *ReplicationCreationRequest) 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 *ReplicationCreationRequest) 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 *ReplicationCreationRequest) SetDescription(v string) { o.Description = &v } // GetOrgID returns the OrgID field value func (o *ReplicationCreationRequest) GetOrgID() string { if o == nil { var ret string return ret } return o.OrgID } // GetOrgIDOk returns a tuple with the OrgID field value // and a boolean to check if the value has been set. func (o *ReplicationCreationRequest) GetOrgIDOk() (*string, bool) { if o == nil { return nil, false } return &o.OrgID, true } // SetOrgID sets field value func (o *ReplicationCreationRequest) SetOrgID(v string) { o.OrgID = v } // GetRemoteID returns the RemoteID field value func (o *ReplicationCreationRequest) GetRemoteID() string { if o == nil { var ret string return ret } return o.RemoteID } // GetRemoteIDOk returns a tuple with the RemoteID field value // and a boolean to check if the value has been set. func (o *ReplicationCreationRequest) GetRemoteIDOk() (*string, bool) { if o == nil { return nil, false } return &o.RemoteID, true } // SetRemoteID sets field value func (o *ReplicationCreationRequest) SetRemoteID(v string) { o.RemoteID = v } // GetLocalBucketID returns the LocalBucketID field value func (o *ReplicationCreationRequest) GetLocalBucketID() string { if o == nil { var ret string return ret } return o.LocalBucketID } // GetLocalBucketIDOk returns a tuple with the LocalBucketID field value // and a boolean to check if the value has been set. func (o *ReplicationCreationRequest) GetLocalBucketIDOk() (*string, bool) { if o == nil { return nil, false } return &o.LocalBucketID, true } // SetLocalBucketID sets field value func (o *ReplicationCreationRequest) SetLocalBucketID(v string) { o.LocalBucketID = v } // GetRemoteBucketID returns the RemoteBucketID field value func (o *ReplicationCreationRequest) GetRemoteBucketID() string { if o == nil { var ret string return ret } return o.RemoteBucketID } // GetRemoteBucketIDOk returns a tuple with the RemoteBucketID field value // and a boolean to check if the value has been set. func (o *ReplicationCreationRequest) GetRemoteBucketIDOk() (*string, bool) { if o == nil { return nil, false } return &o.RemoteBucketID, true } // SetRemoteBucketID sets field value func (o *ReplicationCreationRequest) SetRemoteBucketID(v string) { o.RemoteBucketID = v } // GetMaxQueueSizeBytes returns the MaxQueueSizeBytes field value func (o *ReplicationCreationRequest) GetMaxQueueSizeBytes() int64 { if o == nil { var ret int64 return ret } return o.MaxQueueSizeBytes } // GetMaxQueueSizeBytesOk returns a tuple with the MaxQueueSizeBytes field value // and a boolean to check if the value has been set. func (o *ReplicationCreationRequest) GetMaxQueueSizeBytesOk() (*int64, bool) { if o == nil { return nil, false } return &o.MaxQueueSizeBytes, true } // SetMaxQueueSizeBytes sets field value func (o *ReplicationCreationRequest) SetMaxQueueSizeBytes(v int64) { o.MaxQueueSizeBytes = v } // GetDropNonRetryableData returns the DropNonRetryableData field value if set, zero value otherwise. func (o *ReplicationCreationRequest) GetDropNonRetryableData() bool { if o == nil || o.DropNonRetryableData == nil { var ret bool return ret } return *o.DropNonRetryableData } // GetDropNonRetryableDataOk returns a tuple with the DropNonRetryableData field value if set, nil otherwise // and a boolean to check if the value has been set. func (o *ReplicationCreationRequest) GetDropNonRetryableDataOk() (*bool, bool) { if o == nil || o.DropNonRetryableData == nil { return nil, false } return o.DropNonRetryableData, true } // HasDropNonRetryableData returns a boolean if a field has been set. func (o *ReplicationCreationRequest) HasDropNonRetryableData() bool { if o != nil && o.DropNonRetryableData != nil { return true } return false } // SetDropNonRetryableData gets a reference to the given bool and assigns it to the DropNonRetryableData field. func (o *ReplicationCreationRequest) SetDropNonRetryableData(v bool) { o.DropNonRetryableData = &v } // GetMaxAgeSeconds returns the MaxAgeSeconds field value func (o *ReplicationCreationRequest) GetMaxAgeSeconds() int64 { if o == nil { var ret int64 return ret } return o.MaxAgeSeconds } // GetMaxAgeSecondsOk returns a tuple with the MaxAgeSeconds field value // and a boolean to check if the value has been set. func (o *ReplicationCreationRequest) GetMaxAgeSecondsOk() (*int64, bool) { if o == nil { return nil, false } return &o.MaxAgeSeconds, true } // SetMaxAgeSeconds sets field value func (o *ReplicationCreationRequest) SetMaxAgeSeconds(v int64) { o.MaxAgeSeconds = v } func (o ReplicationCreationRequest) MarshalJSON() ([]byte, error) { toSerialize := map[string]interface{}{} if true { toSerialize["name"] = o.Name } if o.Description != nil { toSerialize["description"] = o.Description } if true { toSerialize["orgID"] = o.OrgID } if true { toSerialize["remoteID"] = o.RemoteID } if true { toSerialize["localBucketID"] = o.LocalBucketID } if true { toSerialize["remoteBucketID"] = o.RemoteBucketID } if true { toSerialize["maxQueueSizeBytes"] = o.MaxQueueSizeBytes } if o.DropNonRetryableData != nil { toSerialize["dropNonRetryableData"] = o.DropNonRetryableData } if true { toSerialize["maxAgeSeconds"] = o.MaxAgeSeconds } return json.Marshal(toSerialize) } type NullableReplicationCreationRequest struct { value *ReplicationCreationRequest isSet bool } func (v NullableReplicationCreationRequest) Get() *ReplicationCreationRequest { return v.value } func (v *NullableReplicationCreationRequest) Set(val *ReplicationCreationRequest) { v.value = val v.isSet = true } func (v NullableReplicationCreationRequest) IsSet() bool { return v.isSet } func (v *NullableReplicationCreationRequest) Unset() { v.value = nil v.isSet = false } func NewNullableReplicationCreationRequest(val *ReplicationCreationRequest) *NullableReplicationCreationRequest { return &NullableReplicationCreationRequest{value: val, isSet: true} } func (v NullableReplicationCreationRequest) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } func (v *NullableReplicationCreationRequest) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) }