feat: v1 dbrp commands (#136)
* feat: v1 dbrp commands * fix: fixed the cloud create command * chore: cleanup * fix: updated based on required attrs in swagger * feat: update to latest openapi rev * chore: made dbrps plural consistently * chore: formatting * fix: standardized Default field name and added comments * chore: changed file name for command to singular
This commit is contained in:
1016
api/api_dbrps.gen.go
Normal file
1016
api/api_dbrps.gen.go
Normal file
File diff suppressed because it is too large
Load Diff
@ -53,6 +53,8 @@ type APIClient struct {
|
||||
|
||||
BucketsApi BucketsApi
|
||||
|
||||
DBRPsApi DBRPsApi
|
||||
|
||||
DashboardsApi DashboardsApi
|
||||
|
||||
DeleteApi DeleteApi
|
||||
@ -99,6 +101,7 @@ func NewAPIClient(cfg *Configuration) *APIClient {
|
||||
c.BackupApi = (*BackupApiService)(&c.common)
|
||||
c.BucketSchemasApi = (*BucketSchemasApiService)(&c.common)
|
||||
c.BucketsApi = (*BucketsApiService)(&c.common)
|
||||
c.DBRPsApi = (*DBRPsApiService)(&c.common)
|
||||
c.DashboardsApi = (*DashboardsApiService)(&c.common)
|
||||
c.DeleteApi = (*DeleteApiService)(&c.common)
|
||||
c.HealthApi = (*HealthApiService)(&c.common)
|
||||
|
@ -77,6 +77,10 @@ paths:
|
||||
$ref: "./overrides/paths/dashboards.yml"
|
||||
/templates/export:
|
||||
$ref: "./overrides/paths/templates_export.yml"
|
||||
/dbrps:
|
||||
$ref: "./openapi/src/common/paths/dbrps.yml"
|
||||
"/dbrps/{dbrpID}":
|
||||
$ref: "./openapi/src/common/paths/dbrps_dbrpID.yml"
|
||||
components:
|
||||
parameters:
|
||||
TraceSpan:
|
||||
@ -271,3 +275,13 @@ components:
|
||||
$ref: "./openapi/src/common/schemas/SecretKeys.yml"
|
||||
Secrets:
|
||||
$ref: "./openapi/src/common/schemas/Secrets.yml"
|
||||
DBRP:
|
||||
$ref: "./openapi/src/common/schemas/DBRP.yml"
|
||||
DBRPs:
|
||||
$ref: "./openapi/src/common/schemas/DBRPs.yml"
|
||||
DBRPCreate:
|
||||
$ref: "./openapi/src/common/schemas/DBRPCreate.yml"
|
||||
DBRPUpdate:
|
||||
$ref: "./openapi/src/common/schemas/DBRPUpdate.yml"
|
||||
DBRPGet:
|
||||
$ref: "./openapi/src/common/schemas/DBRPGet.yml"
|
||||
|
Submodule api/contract/openapi updated: 1060f69e9f...d9aa0f1136
293
api/model_dbrp.gen.go
Normal file
293
api/model_dbrp.gen.go
Normal file
@ -0,0 +1,293 @@
|
||||
/*
|
||||
* 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"
|
||||
)
|
||||
|
||||
// DBRP struct for DBRP
|
||||
type DBRP struct {
|
||||
// the mapping identifier
|
||||
Id string `json:"id"`
|
||||
// the organization ID that owns this mapping.
|
||||
OrgID string `json:"orgID"`
|
||||
// the bucket ID used as target for the translation.
|
||||
BucketID string `json:"bucketID"`
|
||||
// InfluxDB v1 database
|
||||
Database string `json:"database"`
|
||||
// InfluxDB v1 retention policy
|
||||
RetentionPolicy string `json:"retention_policy"`
|
||||
// Specify if this mapping represents the default retention policy for the database specificed.
|
||||
Default bool `json:"default"`
|
||||
Links *Links `json:"links,omitempty"`
|
||||
}
|
||||
|
||||
// NewDBRP instantiates a new DBRP 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 NewDBRP(id string, orgID string, bucketID string, database string, retentionPolicy string, default_ bool) *DBRP {
|
||||
this := DBRP{}
|
||||
this.Id = id
|
||||
this.OrgID = orgID
|
||||
this.BucketID = bucketID
|
||||
this.Database = database
|
||||
this.RetentionPolicy = retentionPolicy
|
||||
this.Default = default_
|
||||
return &this
|
||||
}
|
||||
|
||||
// NewDBRPWithDefaults instantiates a new DBRP 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 NewDBRPWithDefaults() *DBRP {
|
||||
this := DBRP{}
|
||||
return &this
|
||||
}
|
||||
|
||||
// GetId returns the Id field value
|
||||
func (o *DBRP) GetId() string {
|
||||
if o == nil {
|
||||
var ret string
|
||||
return ret
|
||||
}
|
||||
|
||||
return o.Id
|
||||
}
|
||||
|
||||
// GetIdOk returns a tuple with the Id field value
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *DBRP) GetIdOk() (*string, bool) {
|
||||
if o == nil {
|
||||
return nil, false
|
||||
}
|
||||
return &o.Id, true
|
||||
}
|
||||
|
||||
// SetId sets field value
|
||||
func (o *DBRP) SetId(v string) {
|
||||
o.Id = v
|
||||
}
|
||||
|
||||
// GetOrgID returns the OrgID field value
|
||||
func (o *DBRP) 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 *DBRP) GetOrgIDOk() (*string, bool) {
|
||||
if o == nil {
|
||||
return nil, false
|
||||
}
|
||||
return &o.OrgID, true
|
||||
}
|
||||
|
||||
// SetOrgID sets field value
|
||||
func (o *DBRP) SetOrgID(v string) {
|
||||
o.OrgID = v
|
||||
}
|
||||
|
||||
// GetBucketID returns the BucketID field value
|
||||
func (o *DBRP) GetBucketID() string {
|
||||
if o == nil {
|
||||
var ret string
|
||||
return ret
|
||||
}
|
||||
|
||||
return o.BucketID
|
||||
}
|
||||
|
||||
// GetBucketIDOk returns a tuple with the BucketID field value
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *DBRP) GetBucketIDOk() (*string, bool) {
|
||||
if o == nil {
|
||||
return nil, false
|
||||
}
|
||||
return &o.BucketID, true
|
||||
}
|
||||
|
||||
// SetBucketID sets field value
|
||||
func (o *DBRP) SetBucketID(v string) {
|
||||
o.BucketID = v
|
||||
}
|
||||
|
||||
// GetDatabase returns the Database field value
|
||||
func (o *DBRP) GetDatabase() string {
|
||||
if o == nil {
|
||||
var ret string
|
||||
return ret
|
||||
}
|
||||
|
||||
return o.Database
|
||||
}
|
||||
|
||||
// GetDatabaseOk returns a tuple with the Database field value
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *DBRP) GetDatabaseOk() (*string, bool) {
|
||||
if o == nil {
|
||||
return nil, false
|
||||
}
|
||||
return &o.Database, true
|
||||
}
|
||||
|
||||
// SetDatabase sets field value
|
||||
func (o *DBRP) SetDatabase(v string) {
|
||||
o.Database = v
|
||||
}
|
||||
|
||||
// GetRetentionPolicy returns the RetentionPolicy field value
|
||||
func (o *DBRP) GetRetentionPolicy() string {
|
||||
if o == nil {
|
||||
var ret string
|
||||
return ret
|
||||
}
|
||||
|
||||
return o.RetentionPolicy
|
||||
}
|
||||
|
||||
// GetRetentionPolicyOk returns a tuple with the RetentionPolicy field value
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *DBRP) GetRetentionPolicyOk() (*string, bool) {
|
||||
if o == nil {
|
||||
return nil, false
|
||||
}
|
||||
return &o.RetentionPolicy, true
|
||||
}
|
||||
|
||||
// SetRetentionPolicy sets field value
|
||||
func (o *DBRP) SetRetentionPolicy(v string) {
|
||||
o.RetentionPolicy = v
|
||||
}
|
||||
|
||||
// GetDefault returns the Default field value
|
||||
func (o *DBRP) GetDefault() bool {
|
||||
if o == nil {
|
||||
var ret bool
|
||||
return ret
|
||||
}
|
||||
|
||||
return o.Default
|
||||
}
|
||||
|
||||
// GetDefaultOk returns a tuple with the Default field value
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *DBRP) GetDefaultOk() (*bool, bool) {
|
||||
if o == nil {
|
||||
return nil, false
|
||||
}
|
||||
return &o.Default, true
|
||||
}
|
||||
|
||||
// SetDefault sets field value
|
||||
func (o *DBRP) SetDefault(v bool) {
|
||||
o.Default = v
|
||||
}
|
||||
|
||||
// GetLinks returns the Links field value if set, zero value otherwise.
|
||||
func (o *DBRP) GetLinks() Links {
|
||||
if o == nil || o.Links == nil {
|
||||
var ret Links
|
||||
return ret
|
||||
}
|
||||
return *o.Links
|
||||
}
|
||||
|
||||
// GetLinksOk returns a tuple with the Links field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *DBRP) GetLinksOk() (*Links, bool) {
|
||||
if o == nil || o.Links == nil {
|
||||
return nil, false
|
||||
}
|
||||
return o.Links, true
|
||||
}
|
||||
|
||||
// HasLinks returns a boolean if a field has been set.
|
||||
func (o *DBRP) HasLinks() bool {
|
||||
if o != nil && o.Links != nil {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetLinks gets a reference to the given Links and assigns it to the Links field.
|
||||
func (o *DBRP) SetLinks(v Links) {
|
||||
o.Links = &v
|
||||
}
|
||||
|
||||
func (o DBRP) MarshalJSON() ([]byte, error) {
|
||||
toSerialize := map[string]interface{}{}
|
||||
if true {
|
||||
toSerialize["id"] = o.Id
|
||||
}
|
||||
if true {
|
||||
toSerialize["orgID"] = o.OrgID
|
||||
}
|
||||
if true {
|
||||
toSerialize["bucketID"] = o.BucketID
|
||||
}
|
||||
if true {
|
||||
toSerialize["database"] = o.Database
|
||||
}
|
||||
if true {
|
||||
toSerialize["retention_policy"] = o.RetentionPolicy
|
||||
}
|
||||
if true {
|
||||
toSerialize["default"] = o.Default
|
||||
}
|
||||
if o.Links != nil {
|
||||
toSerialize["links"] = o.Links
|
||||
}
|
||||
return json.Marshal(toSerialize)
|
||||
}
|
||||
|
||||
type NullableDBRP struct {
|
||||
value *DBRP
|
||||
isSet bool
|
||||
}
|
||||
|
||||
func (v NullableDBRP) Get() *DBRP {
|
||||
return v.value
|
||||
}
|
||||
|
||||
func (v *NullableDBRP) Set(val *DBRP) {
|
||||
v.value = val
|
||||
v.isSet = true
|
||||
}
|
||||
|
||||
func (v NullableDBRP) IsSet() bool {
|
||||
return v.isSet
|
||||
}
|
||||
|
||||
func (v *NullableDBRP) Unset() {
|
||||
v.value = nil
|
||||
v.isSet = false
|
||||
}
|
||||
|
||||
func NewNullableDBRP(val *DBRP) *NullableDBRP {
|
||||
return &NullableDBRP{value: val, isSet: true}
|
||||
}
|
||||
|
||||
func (v NullableDBRP) MarshalJSON() ([]byte, error) {
|
||||
return json.Marshal(v.value)
|
||||
}
|
||||
|
||||
func (v *NullableDBRP) UnmarshalJSON(src []byte) error {
|
||||
v.isSet = true
|
||||
return json.Unmarshal(src, &v.value)
|
||||
}
|
278
api/model_dbrp_create.gen.go
Normal file
278
api/model_dbrp_create.gen.go
Normal file
@ -0,0 +1,278 @@
|
||||
/*
|
||||
* 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"
|
||||
)
|
||||
|
||||
// DBRPCreate struct for DBRPCreate
|
||||
type DBRPCreate struct {
|
||||
// the organization ID that owns this mapping.
|
||||
OrgID *string `json:"orgID,omitempty"`
|
||||
// the organization that owns this mapping.
|
||||
Org *string `json:"org,omitempty"`
|
||||
// the bucket ID used as target for the translation.
|
||||
BucketID string `json:"bucketID"`
|
||||
// InfluxDB v1 database
|
||||
Database string `json:"database"`
|
||||
// InfluxDB v1 retention policy
|
||||
RetentionPolicy string `json:"retention_policy"`
|
||||
// Specify if this mapping represents the default retention policy for the database specificed.
|
||||
Default *bool `json:"default,omitempty"`
|
||||
}
|
||||
|
||||
// NewDBRPCreate instantiates a new DBRPCreate 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 NewDBRPCreate(bucketID string, database string, retentionPolicy string) *DBRPCreate {
|
||||
this := DBRPCreate{}
|
||||
this.BucketID = bucketID
|
||||
this.Database = database
|
||||
this.RetentionPolicy = retentionPolicy
|
||||
return &this
|
||||
}
|
||||
|
||||
// NewDBRPCreateWithDefaults instantiates a new DBRPCreate 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 NewDBRPCreateWithDefaults() *DBRPCreate {
|
||||
this := DBRPCreate{}
|
||||
return &this
|
||||
}
|
||||
|
||||
// GetOrgID returns the OrgID field value if set, zero value otherwise.
|
||||
func (o *DBRPCreate) 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 *DBRPCreate) 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 *DBRPCreate) 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 *DBRPCreate) SetOrgID(v string) {
|
||||
o.OrgID = &v
|
||||
}
|
||||
|
||||
// GetOrg returns the Org field value if set, zero value otherwise.
|
||||
func (o *DBRPCreate) 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 *DBRPCreate) 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 *DBRPCreate) 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 *DBRPCreate) SetOrg(v string) {
|
||||
o.Org = &v
|
||||
}
|
||||
|
||||
// GetBucketID returns the BucketID field value
|
||||
func (o *DBRPCreate) GetBucketID() string {
|
||||
if o == nil {
|
||||
var ret string
|
||||
return ret
|
||||
}
|
||||
|
||||
return o.BucketID
|
||||
}
|
||||
|
||||
// GetBucketIDOk returns a tuple with the BucketID field value
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *DBRPCreate) GetBucketIDOk() (*string, bool) {
|
||||
if o == nil {
|
||||
return nil, false
|
||||
}
|
||||
return &o.BucketID, true
|
||||
}
|
||||
|
||||
// SetBucketID sets field value
|
||||
func (o *DBRPCreate) SetBucketID(v string) {
|
||||
o.BucketID = v
|
||||
}
|
||||
|
||||
// GetDatabase returns the Database field value
|
||||
func (o *DBRPCreate) GetDatabase() string {
|
||||
if o == nil {
|
||||
var ret string
|
||||
return ret
|
||||
}
|
||||
|
||||
return o.Database
|
||||
}
|
||||
|
||||
// GetDatabaseOk returns a tuple with the Database field value
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *DBRPCreate) GetDatabaseOk() (*string, bool) {
|
||||
if o == nil {
|
||||
return nil, false
|
||||
}
|
||||
return &o.Database, true
|
||||
}
|
||||
|
||||
// SetDatabase sets field value
|
||||
func (o *DBRPCreate) SetDatabase(v string) {
|
||||
o.Database = v
|
||||
}
|
||||
|
||||
// GetRetentionPolicy returns the RetentionPolicy field value
|
||||
func (o *DBRPCreate) GetRetentionPolicy() string {
|
||||
if o == nil {
|
||||
var ret string
|
||||
return ret
|
||||
}
|
||||
|
||||
return o.RetentionPolicy
|
||||
}
|
||||
|
||||
// GetRetentionPolicyOk returns a tuple with the RetentionPolicy field value
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *DBRPCreate) GetRetentionPolicyOk() (*string, bool) {
|
||||
if o == nil {
|
||||
return nil, false
|
||||
}
|
||||
return &o.RetentionPolicy, true
|
||||
}
|
||||
|
||||
// SetRetentionPolicy sets field value
|
||||
func (o *DBRPCreate) SetRetentionPolicy(v string) {
|
||||
o.RetentionPolicy = v
|
||||
}
|
||||
|
||||
// GetDefault returns the Default field value if set, zero value otherwise.
|
||||
func (o *DBRPCreate) GetDefault() bool {
|
||||
if o == nil || o.Default == nil {
|
||||
var ret bool
|
||||
return ret
|
||||
}
|
||||
return *o.Default
|
||||
}
|
||||
|
||||
// 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 (o *DBRPCreate) GetDefaultOk() (*bool, bool) {
|
||||
if o == nil || o.Default == nil {
|
||||
return nil, false
|
||||
}
|
||||
return o.Default, true
|
||||
}
|
||||
|
||||
// HasDefault returns a boolean if a field has been set.
|
||||
func (o *DBRPCreate) HasDefault() bool {
|
||||
if o != nil && o.Default != nil {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetDefault gets a reference to the given bool and assigns it to the Default field.
|
||||
func (o *DBRPCreate) SetDefault(v bool) {
|
||||
o.Default = &v
|
||||
}
|
||||
|
||||
func (o DBRPCreate) MarshalJSON() ([]byte, error) {
|
||||
toSerialize := map[string]interface{}{}
|
||||
if o.OrgID != nil {
|
||||
toSerialize["orgID"] = o.OrgID
|
||||
}
|
||||
if o.Org != nil {
|
||||
toSerialize["org"] = o.Org
|
||||
}
|
||||
if true {
|
||||
toSerialize["bucketID"] = o.BucketID
|
||||
}
|
||||
if true {
|
||||
toSerialize["database"] = o.Database
|
||||
}
|
||||
if true {
|
||||
toSerialize["retention_policy"] = o.RetentionPolicy
|
||||
}
|
||||
if o.Default != nil {
|
||||
toSerialize["default"] = o.Default
|
||||
}
|
||||
return json.Marshal(toSerialize)
|
||||
}
|
||||
|
||||
type NullableDBRPCreate struct {
|
||||
value *DBRPCreate
|
||||
isSet bool
|
||||
}
|
||||
|
||||
func (v NullableDBRPCreate) Get() *DBRPCreate {
|
||||
return v.value
|
||||
}
|
||||
|
||||
func (v *NullableDBRPCreate) Set(val *DBRPCreate) {
|
||||
v.value = val
|
||||
v.isSet = true
|
||||
}
|
||||
|
||||
func (v NullableDBRPCreate) IsSet() bool {
|
||||
return v.isSet
|
||||
}
|
||||
|
||||
func (v *NullableDBRPCreate) Unset() {
|
||||
v.value = nil
|
||||
v.isSet = false
|
||||
}
|
||||
|
||||
func NewNullableDBRPCreate(val *DBRPCreate) *NullableDBRPCreate {
|
||||
return &NullableDBRPCreate{value: val, isSet: true}
|
||||
}
|
||||
|
||||
func (v NullableDBRPCreate) MarshalJSON() ([]byte, error) {
|
||||
return json.Marshal(v.value)
|
||||
}
|
||||
|
||||
func (v *NullableDBRPCreate) UnmarshalJSON(src []byte) error {
|
||||
v.isSet = true
|
||||
return json.Unmarshal(src, &v.value)
|
||||
}
|
113
api/model_dbrp_get.gen.go
Normal file
113
api/model_dbrp_get.gen.go
Normal file
@ -0,0 +1,113 @@
|
||||
/*
|
||||
* 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"
|
||||
)
|
||||
|
||||
// DBRPGet struct for DBRPGet
|
||||
type DBRPGet struct {
|
||||
Content *DBRP `json:"content,omitempty"`
|
||||
}
|
||||
|
||||
// NewDBRPGet instantiates a new DBRPGet 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 NewDBRPGet() *DBRPGet {
|
||||
this := DBRPGet{}
|
||||
return &this
|
||||
}
|
||||
|
||||
// NewDBRPGetWithDefaults instantiates a new DBRPGet 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 NewDBRPGetWithDefaults() *DBRPGet {
|
||||
this := DBRPGet{}
|
||||
return &this
|
||||
}
|
||||
|
||||
// GetContent returns the Content field value if set, zero value otherwise.
|
||||
func (o *DBRPGet) GetContent() DBRP {
|
||||
if o == nil || o.Content == nil {
|
||||
var ret DBRP
|
||||
return ret
|
||||
}
|
||||
return *o.Content
|
||||
}
|
||||
|
||||
// GetContentOk returns a tuple with the Content field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *DBRPGet) GetContentOk() (*DBRP, bool) {
|
||||
if o == nil || o.Content == nil {
|
||||
return nil, false
|
||||
}
|
||||
return o.Content, true
|
||||
}
|
||||
|
||||
// HasContent returns a boolean if a field has been set.
|
||||
func (o *DBRPGet) HasContent() bool {
|
||||
if o != nil && o.Content != nil {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetContent gets a reference to the given DBRP and assigns it to the Content field.
|
||||
func (o *DBRPGet) SetContent(v DBRP) {
|
||||
o.Content = &v
|
||||
}
|
||||
|
||||
func (o DBRPGet) MarshalJSON() ([]byte, error) {
|
||||
toSerialize := map[string]interface{}{}
|
||||
if o.Content != nil {
|
||||
toSerialize["content"] = o.Content
|
||||
}
|
||||
return json.Marshal(toSerialize)
|
||||
}
|
||||
|
||||
type NullableDBRPGet struct {
|
||||
value *DBRPGet
|
||||
isSet bool
|
||||
}
|
||||
|
||||
func (v NullableDBRPGet) Get() *DBRPGet {
|
||||
return v.value
|
||||
}
|
||||
|
||||
func (v *NullableDBRPGet) Set(val *DBRPGet) {
|
||||
v.value = val
|
||||
v.isSet = true
|
||||
}
|
||||
|
||||
func (v NullableDBRPGet) IsSet() bool {
|
||||
return v.isSet
|
||||
}
|
||||
|
||||
func (v *NullableDBRPGet) Unset() {
|
||||
v.value = nil
|
||||
v.isSet = false
|
||||
}
|
||||
|
||||
func NewNullableDBRPGet(val *DBRPGet) *NullableDBRPGet {
|
||||
return &NullableDBRPGet{value: val, isSet: true}
|
||||
}
|
||||
|
||||
func (v NullableDBRPGet) MarshalJSON() ([]byte, error) {
|
||||
return json.Marshal(v.value)
|
||||
}
|
||||
|
||||
func (v *NullableDBRPGet) UnmarshalJSON(src []byte) error {
|
||||
v.isSet = true
|
||||
return json.Unmarshal(src, &v.value)
|
||||
}
|
150
api/model_dbrp_update.gen.go
Normal file
150
api/model_dbrp_update.gen.go
Normal file
@ -0,0 +1,150 @@
|
||||
/*
|
||||
* 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"
|
||||
)
|
||||
|
||||
// DBRPUpdate struct for DBRPUpdate
|
||||
type DBRPUpdate struct {
|
||||
// InfluxDB v1 retention policy
|
||||
RetentionPolicy *string `json:"retention_policy,omitempty"`
|
||||
Default *bool `json:"default,omitempty"`
|
||||
}
|
||||
|
||||
// NewDBRPUpdate instantiates a new DBRPUpdate 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 NewDBRPUpdate() *DBRPUpdate {
|
||||
this := DBRPUpdate{}
|
||||
return &this
|
||||
}
|
||||
|
||||
// NewDBRPUpdateWithDefaults instantiates a new DBRPUpdate 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 NewDBRPUpdateWithDefaults() *DBRPUpdate {
|
||||
this := DBRPUpdate{}
|
||||
return &this
|
||||
}
|
||||
|
||||
// GetRetentionPolicy returns the RetentionPolicy field value if set, zero value otherwise.
|
||||
func (o *DBRPUpdate) GetRetentionPolicy() string {
|
||||
if o == nil || o.RetentionPolicy == nil {
|
||||
var ret string
|
||||
return ret
|
||||
}
|
||||
return *o.RetentionPolicy
|
||||
}
|
||||
|
||||
// GetRetentionPolicyOk returns a tuple with the RetentionPolicy field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *DBRPUpdate) GetRetentionPolicyOk() (*string, bool) {
|
||||
if o == nil || o.RetentionPolicy == nil {
|
||||
return nil, false
|
||||
}
|
||||
return o.RetentionPolicy, true
|
||||
}
|
||||
|
||||
// HasRetentionPolicy returns a boolean if a field has been set.
|
||||
func (o *DBRPUpdate) HasRetentionPolicy() bool {
|
||||
if o != nil && o.RetentionPolicy != nil {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetRetentionPolicy gets a reference to the given string and assigns it to the RetentionPolicy field.
|
||||
func (o *DBRPUpdate) SetRetentionPolicy(v string) {
|
||||
o.RetentionPolicy = &v
|
||||
}
|
||||
|
||||
// GetDefault returns the Default field value if set, zero value otherwise.
|
||||
func (o *DBRPUpdate) GetDefault() bool {
|
||||
if o == nil || o.Default == nil {
|
||||
var ret bool
|
||||
return ret
|
||||
}
|
||||
return *o.Default
|
||||
}
|
||||
|
||||
// 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 (o *DBRPUpdate) GetDefaultOk() (*bool, bool) {
|
||||
if o == nil || o.Default == nil {
|
||||
return nil, false
|
||||
}
|
||||
return o.Default, true
|
||||
}
|
||||
|
||||
// HasDefault returns a boolean if a field has been set.
|
||||
func (o *DBRPUpdate) HasDefault() bool {
|
||||
if o != nil && o.Default != nil {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetDefault gets a reference to the given bool and assigns it to the Default field.
|
||||
func (o *DBRPUpdate) SetDefault(v bool) {
|
||||
o.Default = &v
|
||||
}
|
||||
|
||||
func (o DBRPUpdate) MarshalJSON() ([]byte, error) {
|
||||
toSerialize := map[string]interface{}{}
|
||||
if o.RetentionPolicy != nil {
|
||||
toSerialize["retention_policy"] = o.RetentionPolicy
|
||||
}
|
||||
if o.Default != nil {
|
||||
toSerialize["default"] = o.Default
|
||||
}
|
||||
return json.Marshal(toSerialize)
|
||||
}
|
||||
|
||||
type NullableDBRPUpdate struct {
|
||||
value *DBRPUpdate
|
||||
isSet bool
|
||||
}
|
||||
|
||||
func (v NullableDBRPUpdate) Get() *DBRPUpdate {
|
||||
return v.value
|
||||
}
|
||||
|
||||
func (v *NullableDBRPUpdate) Set(val *DBRPUpdate) {
|
||||
v.value = val
|
||||
v.isSet = true
|
||||
}
|
||||
|
||||
func (v NullableDBRPUpdate) IsSet() bool {
|
||||
return v.isSet
|
||||
}
|
||||
|
||||
func (v *NullableDBRPUpdate) Unset() {
|
||||
v.value = nil
|
||||
v.isSet = false
|
||||
}
|
||||
|
||||
func NewNullableDBRPUpdate(val *DBRPUpdate) *NullableDBRPUpdate {
|
||||
return &NullableDBRPUpdate{value: val, isSet: true}
|
||||
}
|
||||
|
||||
func (v NullableDBRPUpdate) MarshalJSON() ([]byte, error) {
|
||||
return json.Marshal(v.value)
|
||||
}
|
||||
|
||||
func (v *NullableDBRPUpdate) UnmarshalJSON(src []byte) error {
|
||||
v.isSet = true
|
||||
return json.Unmarshal(src, &v.value)
|
||||
}
|
113
api/model_dbrps.gen.go
Normal file
113
api/model_dbrps.gen.go
Normal file
@ -0,0 +1,113 @@
|
||||
/*
|
||||
* 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"
|
||||
)
|
||||
|
||||
// DBRPs struct for DBRPs
|
||||
type DBRPs struct {
|
||||
Content *[]DBRP `json:"content,omitempty"`
|
||||
}
|
||||
|
||||
// NewDBRPs instantiates a new DBRPs 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 NewDBRPs() *DBRPs {
|
||||
this := DBRPs{}
|
||||
return &this
|
||||
}
|
||||
|
||||
// NewDBRPsWithDefaults instantiates a new DBRPs 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 NewDBRPsWithDefaults() *DBRPs {
|
||||
this := DBRPs{}
|
||||
return &this
|
||||
}
|
||||
|
||||
// GetContent returns the Content field value if set, zero value otherwise.
|
||||
func (o *DBRPs) GetContent() []DBRP {
|
||||
if o == nil || o.Content == nil {
|
||||
var ret []DBRP
|
||||
return ret
|
||||
}
|
||||
return *o.Content
|
||||
}
|
||||
|
||||
// GetContentOk returns a tuple with the Content field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *DBRPs) GetContentOk() (*[]DBRP, bool) {
|
||||
if o == nil || o.Content == nil {
|
||||
return nil, false
|
||||
}
|
||||
return o.Content, true
|
||||
}
|
||||
|
||||
// HasContent returns a boolean if a field has been set.
|
||||
func (o *DBRPs) HasContent() bool {
|
||||
if o != nil && o.Content != nil {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetContent gets a reference to the given []DBRP and assigns it to the Content field.
|
||||
func (o *DBRPs) SetContent(v []DBRP) {
|
||||
o.Content = &v
|
||||
}
|
||||
|
||||
func (o DBRPs) MarshalJSON() ([]byte, error) {
|
||||
toSerialize := map[string]interface{}{}
|
||||
if o.Content != nil {
|
||||
toSerialize["content"] = o.Content
|
||||
}
|
||||
return json.Marshal(toSerialize)
|
||||
}
|
||||
|
||||
type NullableDBRPs struct {
|
||||
value *DBRPs
|
||||
isSet bool
|
||||
}
|
||||
|
||||
func (v NullableDBRPs) Get() *DBRPs {
|
||||
return v.value
|
||||
}
|
||||
|
||||
func (v *NullableDBRPs) Set(val *DBRPs) {
|
||||
v.value = val
|
||||
v.isSet = true
|
||||
}
|
||||
|
||||
func (v NullableDBRPs) IsSet() bool {
|
||||
return v.isSet
|
||||
}
|
||||
|
||||
func (v *NullableDBRPs) Unset() {
|
||||
v.value = nil
|
||||
v.isSet = false
|
||||
}
|
||||
|
||||
func NewNullableDBRPs(val *DBRPs) *NullableDBRPs {
|
||||
return &NullableDBRPs{value: val, isSet: true}
|
||||
}
|
||||
|
||||
func (v NullableDBRPs) MarshalJSON() ([]byte, error) {
|
||||
return json.Marshal(v.value)
|
||||
}
|
||||
|
||||
func (v *NullableDBRPs) UnmarshalJSON(src []byte) error {
|
||||
v.isSet = true
|
||||
return json.Unmarshal(src, &v.value)
|
||||
}
|
Reference in New Issue
Block a user