mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 12:50:05 +01:00
feat: sdk migration in progress
This commit is contained in:
485
sdk/go/model_models_api_key.go
Normal file
485
sdk/go/model_models_api_key.go
Normal file
@@ -0,0 +1,485 @@
|
||||
/*
|
||||
AutoGlue API
|
||||
|
||||
API for managing K3s clusters across cloud providers
|
||||
|
||||
API version: 1.0
|
||||
*/
|
||||
|
||||
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
||||
|
||||
package autoglue
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"time"
|
||||
)
|
||||
|
||||
// checks if the ModelsAPIKey type satisfies the MappedNullable interface at compile time
|
||||
var _ MappedNullable = &ModelsAPIKey{}
|
||||
|
||||
// ModelsAPIKey struct for ModelsAPIKey
|
||||
type ModelsAPIKey struct {
|
||||
CreatedAt *time.Time `json:"created_at,omitempty"`
|
||||
ExpiresAt *time.Time `json:"expires_at,omitempty"`
|
||||
Id *string `json:"id,omitempty"`
|
||||
LastUsedAt *time.Time `json:"last_used_at,omitempty"`
|
||||
Name *string `json:"name,omitempty"`
|
||||
OrgId *string `json:"org_id,omitempty"`
|
||||
Prefix *string `json:"prefix,omitempty"`
|
||||
Revoked *bool `json:"revoked,omitempty"`
|
||||
Scope *string `json:"scope,omitempty"`
|
||||
UpdatedAt *time.Time `json:"updated_at,omitempty"`
|
||||
UserId *string `json:"user_id,omitempty"`
|
||||
}
|
||||
|
||||
// NewModelsAPIKey instantiates a new ModelsAPIKey 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 NewModelsAPIKey() *ModelsAPIKey {
|
||||
this := ModelsAPIKey{}
|
||||
return &this
|
||||
}
|
||||
|
||||
// NewModelsAPIKeyWithDefaults instantiates a new ModelsAPIKey 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 NewModelsAPIKeyWithDefaults() *ModelsAPIKey {
|
||||
this := ModelsAPIKey{}
|
||||
return &this
|
||||
}
|
||||
|
||||
// GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.
|
||||
func (o *ModelsAPIKey) GetCreatedAt() time.Time {
|
||||
if o == nil || IsNil(o.CreatedAt) {
|
||||
var ret time.Time
|
||||
return ret
|
||||
}
|
||||
return *o.CreatedAt
|
||||
}
|
||||
|
||||
// GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *ModelsAPIKey) GetCreatedAtOk() (*time.Time, bool) {
|
||||
if o == nil || IsNil(o.CreatedAt) {
|
||||
return nil, false
|
||||
}
|
||||
return o.CreatedAt, true
|
||||
}
|
||||
|
||||
// HasCreatedAt returns a boolean if a field has been set.
|
||||
func (o *ModelsAPIKey) HasCreatedAt() bool {
|
||||
if o != nil && !IsNil(o.CreatedAt) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.
|
||||
func (o *ModelsAPIKey) SetCreatedAt(v time.Time) {
|
||||
o.CreatedAt = &v
|
||||
}
|
||||
|
||||
// GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.
|
||||
func (o *ModelsAPIKey) GetExpiresAt() time.Time {
|
||||
if o == nil || IsNil(o.ExpiresAt) {
|
||||
var ret time.Time
|
||||
return ret
|
||||
}
|
||||
return *o.ExpiresAt
|
||||
}
|
||||
|
||||
// GetExpiresAtOk returns a tuple with the ExpiresAt field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *ModelsAPIKey) GetExpiresAtOk() (*time.Time, bool) {
|
||||
if o == nil || IsNil(o.ExpiresAt) {
|
||||
return nil, false
|
||||
}
|
||||
return o.ExpiresAt, true
|
||||
}
|
||||
|
||||
// HasExpiresAt returns a boolean if a field has been set.
|
||||
func (o *ModelsAPIKey) HasExpiresAt() bool {
|
||||
if o != nil && !IsNil(o.ExpiresAt) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetExpiresAt gets a reference to the given time.Time and assigns it to the ExpiresAt field.
|
||||
func (o *ModelsAPIKey) SetExpiresAt(v time.Time) {
|
||||
o.ExpiresAt = &v
|
||||
}
|
||||
|
||||
// GetId returns the Id field value if set, zero value otherwise.
|
||||
func (o *ModelsAPIKey) GetId() string {
|
||||
if o == nil || IsNil(o.Id) {
|
||||
var ret string
|
||||
return ret
|
||||
}
|
||||
return *o.Id
|
||||
}
|
||||
|
||||
// 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 (o *ModelsAPIKey) GetIdOk() (*string, bool) {
|
||||
if o == nil || IsNil(o.Id) {
|
||||
return nil, false
|
||||
}
|
||||
return o.Id, true
|
||||
}
|
||||
|
||||
// HasId returns a boolean if a field has been set.
|
||||
func (o *ModelsAPIKey) HasId() bool {
|
||||
if o != nil && !IsNil(o.Id) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetId gets a reference to the given string and assigns it to the Id field.
|
||||
func (o *ModelsAPIKey) SetId(v string) {
|
||||
o.Id = &v
|
||||
}
|
||||
|
||||
// GetLastUsedAt returns the LastUsedAt field value if set, zero value otherwise.
|
||||
func (o *ModelsAPIKey) GetLastUsedAt() time.Time {
|
||||
if o == nil || IsNil(o.LastUsedAt) {
|
||||
var ret time.Time
|
||||
return ret
|
||||
}
|
||||
return *o.LastUsedAt
|
||||
}
|
||||
|
||||
// GetLastUsedAtOk returns a tuple with the LastUsedAt field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *ModelsAPIKey) GetLastUsedAtOk() (*time.Time, bool) {
|
||||
if o == nil || IsNil(o.LastUsedAt) {
|
||||
return nil, false
|
||||
}
|
||||
return o.LastUsedAt, true
|
||||
}
|
||||
|
||||
// HasLastUsedAt returns a boolean if a field has been set.
|
||||
func (o *ModelsAPIKey) HasLastUsedAt() bool {
|
||||
if o != nil && !IsNil(o.LastUsedAt) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetLastUsedAt gets a reference to the given time.Time and assigns it to the LastUsedAt field.
|
||||
func (o *ModelsAPIKey) SetLastUsedAt(v time.Time) {
|
||||
o.LastUsedAt = &v
|
||||
}
|
||||
|
||||
// GetName returns the Name field value if set, zero value otherwise.
|
||||
func (o *ModelsAPIKey) GetName() string {
|
||||
if o == nil || IsNil(o.Name) {
|
||||
var ret string
|
||||
return ret
|
||||
}
|
||||
return *o.Name
|
||||
}
|
||||
|
||||
// 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 (o *ModelsAPIKey) GetNameOk() (*string, bool) {
|
||||
if o == nil || IsNil(o.Name) {
|
||||
return nil, false
|
||||
}
|
||||
return o.Name, true
|
||||
}
|
||||
|
||||
// HasName returns a boolean if a field has been set.
|
||||
func (o *ModelsAPIKey) HasName() bool {
|
||||
if o != nil && !IsNil(o.Name) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetName gets a reference to the given string and assigns it to the Name field.
|
||||
func (o *ModelsAPIKey) SetName(v string) {
|
||||
o.Name = &v
|
||||
}
|
||||
|
||||
// GetOrgId returns the OrgId field value if set, zero value otherwise.
|
||||
func (o *ModelsAPIKey) GetOrgId() string {
|
||||
if o == nil || IsNil(o.OrgId) {
|
||||
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 *ModelsAPIKey) GetOrgIdOk() (*string, bool) {
|
||||
if o == nil || IsNil(o.OrgId) {
|
||||
return nil, false
|
||||
}
|
||||
return o.OrgId, true
|
||||
}
|
||||
|
||||
// HasOrgId returns a boolean if a field has been set.
|
||||
func (o *ModelsAPIKey) HasOrgId() bool {
|
||||
if o != nil && !IsNil(o.OrgId) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetOrgId gets a reference to the given string and assigns it to the OrgId field.
|
||||
func (o *ModelsAPIKey) SetOrgId(v string) {
|
||||
o.OrgId = &v
|
||||
}
|
||||
|
||||
// GetPrefix returns the Prefix field value if set, zero value otherwise.
|
||||
func (o *ModelsAPIKey) GetPrefix() string {
|
||||
if o == nil || IsNil(o.Prefix) {
|
||||
var ret string
|
||||
return ret
|
||||
}
|
||||
return *o.Prefix
|
||||
}
|
||||
|
||||
// GetPrefixOk returns a tuple with the Prefix field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *ModelsAPIKey) GetPrefixOk() (*string, bool) {
|
||||
if o == nil || IsNil(o.Prefix) {
|
||||
return nil, false
|
||||
}
|
||||
return o.Prefix, true
|
||||
}
|
||||
|
||||
// HasPrefix returns a boolean if a field has been set.
|
||||
func (o *ModelsAPIKey) HasPrefix() bool {
|
||||
if o != nil && !IsNil(o.Prefix) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetPrefix gets a reference to the given string and assigns it to the Prefix field.
|
||||
func (o *ModelsAPIKey) SetPrefix(v string) {
|
||||
o.Prefix = &v
|
||||
}
|
||||
|
||||
// GetRevoked returns the Revoked field value if set, zero value otherwise.
|
||||
func (o *ModelsAPIKey) GetRevoked() bool {
|
||||
if o == nil || IsNil(o.Revoked) {
|
||||
var ret bool
|
||||
return ret
|
||||
}
|
||||
return *o.Revoked
|
||||
}
|
||||
|
||||
// GetRevokedOk returns a tuple with the Revoked field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *ModelsAPIKey) GetRevokedOk() (*bool, bool) {
|
||||
if o == nil || IsNil(o.Revoked) {
|
||||
return nil, false
|
||||
}
|
||||
return o.Revoked, true
|
||||
}
|
||||
|
||||
// HasRevoked returns a boolean if a field has been set.
|
||||
func (o *ModelsAPIKey) HasRevoked() bool {
|
||||
if o != nil && !IsNil(o.Revoked) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetRevoked gets a reference to the given bool and assigns it to the Revoked field.
|
||||
func (o *ModelsAPIKey) SetRevoked(v bool) {
|
||||
o.Revoked = &v
|
||||
}
|
||||
|
||||
// GetScope returns the Scope field value if set, zero value otherwise.
|
||||
func (o *ModelsAPIKey) GetScope() string {
|
||||
if o == nil || IsNil(o.Scope) {
|
||||
var ret string
|
||||
return ret
|
||||
}
|
||||
return *o.Scope
|
||||
}
|
||||
|
||||
// GetScopeOk returns a tuple with the Scope field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *ModelsAPIKey) GetScopeOk() (*string, bool) {
|
||||
if o == nil || IsNil(o.Scope) {
|
||||
return nil, false
|
||||
}
|
||||
return o.Scope, true
|
||||
}
|
||||
|
||||
// HasScope returns a boolean if a field has been set.
|
||||
func (o *ModelsAPIKey) HasScope() bool {
|
||||
if o != nil && !IsNil(o.Scope) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetScope gets a reference to the given string and assigns it to the Scope field.
|
||||
func (o *ModelsAPIKey) SetScope(v string) {
|
||||
o.Scope = &v
|
||||
}
|
||||
|
||||
// GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.
|
||||
func (o *ModelsAPIKey) GetUpdatedAt() time.Time {
|
||||
if o == nil || IsNil(o.UpdatedAt) {
|
||||
var ret time.Time
|
||||
return ret
|
||||
}
|
||||
return *o.UpdatedAt
|
||||
}
|
||||
|
||||
// GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *ModelsAPIKey) GetUpdatedAtOk() (*time.Time, bool) {
|
||||
if o == nil || IsNil(o.UpdatedAt) {
|
||||
return nil, false
|
||||
}
|
||||
return o.UpdatedAt, true
|
||||
}
|
||||
|
||||
// HasUpdatedAt returns a boolean if a field has been set.
|
||||
func (o *ModelsAPIKey) HasUpdatedAt() bool {
|
||||
if o != nil && !IsNil(o.UpdatedAt) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.
|
||||
func (o *ModelsAPIKey) SetUpdatedAt(v time.Time) {
|
||||
o.UpdatedAt = &v
|
||||
}
|
||||
|
||||
// GetUserId returns the UserId field value if set, zero value otherwise.
|
||||
func (o *ModelsAPIKey) GetUserId() string {
|
||||
if o == nil || IsNil(o.UserId) {
|
||||
var ret string
|
||||
return ret
|
||||
}
|
||||
return *o.UserId
|
||||
}
|
||||
|
||||
// GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *ModelsAPIKey) GetUserIdOk() (*string, bool) {
|
||||
if o == nil || IsNil(o.UserId) {
|
||||
return nil, false
|
||||
}
|
||||
return o.UserId, true
|
||||
}
|
||||
|
||||
// HasUserId returns a boolean if a field has been set.
|
||||
func (o *ModelsAPIKey) HasUserId() bool {
|
||||
if o != nil && !IsNil(o.UserId) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetUserId gets a reference to the given string and assigns it to the UserId field.
|
||||
func (o *ModelsAPIKey) SetUserId(v string) {
|
||||
o.UserId = &v
|
||||
}
|
||||
|
||||
func (o ModelsAPIKey) MarshalJSON() ([]byte, error) {
|
||||
toSerialize, err := o.ToMap()
|
||||
if err != nil {
|
||||
return []byte{}, err
|
||||
}
|
||||
return json.Marshal(toSerialize)
|
||||
}
|
||||
|
||||
func (o ModelsAPIKey) ToMap() (map[string]interface{}, error) {
|
||||
toSerialize := map[string]interface{}{}
|
||||
if !IsNil(o.CreatedAt) {
|
||||
toSerialize["created_at"] = o.CreatedAt
|
||||
}
|
||||
if !IsNil(o.ExpiresAt) {
|
||||
toSerialize["expires_at"] = o.ExpiresAt
|
||||
}
|
||||
if !IsNil(o.Id) {
|
||||
toSerialize["id"] = o.Id
|
||||
}
|
||||
if !IsNil(o.LastUsedAt) {
|
||||
toSerialize["last_used_at"] = o.LastUsedAt
|
||||
}
|
||||
if !IsNil(o.Name) {
|
||||
toSerialize["name"] = o.Name
|
||||
}
|
||||
if !IsNil(o.OrgId) {
|
||||
toSerialize["org_id"] = o.OrgId
|
||||
}
|
||||
if !IsNil(o.Prefix) {
|
||||
toSerialize["prefix"] = o.Prefix
|
||||
}
|
||||
if !IsNil(o.Revoked) {
|
||||
toSerialize["revoked"] = o.Revoked
|
||||
}
|
||||
if !IsNil(o.Scope) {
|
||||
toSerialize["scope"] = o.Scope
|
||||
}
|
||||
if !IsNil(o.UpdatedAt) {
|
||||
toSerialize["updated_at"] = o.UpdatedAt
|
||||
}
|
||||
if !IsNil(o.UserId) {
|
||||
toSerialize["user_id"] = o.UserId
|
||||
}
|
||||
return toSerialize, nil
|
||||
}
|
||||
|
||||
type NullableModelsAPIKey struct {
|
||||
value *ModelsAPIKey
|
||||
isSet bool
|
||||
}
|
||||
|
||||
func (v NullableModelsAPIKey) Get() *ModelsAPIKey {
|
||||
return v.value
|
||||
}
|
||||
|
||||
func (v *NullableModelsAPIKey) Set(val *ModelsAPIKey) {
|
||||
v.value = val
|
||||
v.isSet = true
|
||||
}
|
||||
|
||||
func (v NullableModelsAPIKey) IsSet() bool {
|
||||
return v.isSet
|
||||
}
|
||||
|
||||
func (v *NullableModelsAPIKey) Unset() {
|
||||
v.value = nil
|
||||
v.isSet = false
|
||||
}
|
||||
|
||||
func NewNullableModelsAPIKey(val *ModelsAPIKey) *NullableModelsAPIKey {
|
||||
return &NullableModelsAPIKey{value: val, isSet: true}
|
||||
}
|
||||
|
||||
func (v NullableModelsAPIKey) MarshalJSON() ([]byte, error) {
|
||||
return json.Marshal(v.value)
|
||||
}
|
||||
|
||||
func (v *NullableModelsAPIKey) UnmarshalJSON(src []byte) error {
|
||||
v.isSet = true
|
||||
return json.Unmarshal(src, &v.value)
|
||||
}
|
||||
Reference in New Issue
Block a user