mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-18 03:19:51 +03:00
2f70351c90
* packages/client-go: init Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space> * format Signed-off-by: Jens Langhammer <jens@goauthentik.io> * remove mod/sum Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix translate Signed-off-by: Jens Langhammer <jens@goauthentik.io> * no go replace Signed-off-by: Jens Langhammer <jens@goauthentik.io> * update rust makefile with pwd Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space> * fix build Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix docs Signed-off-by: Jens Langhammer <jens@goauthentik.io> * don't need a version ig? Signed-off-by: Jens Langhammer <jens@goauthentik.io> * exclude go client from cspell Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix main docker build Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space> Signed-off-by: Jens Langhammer <jens@goauthentik.io> Co-authored-by: Jens Langhammer <jens@goauthentik.io>
524 lines
15 KiB
Go
Generated
524 lines
15 KiB
Go
Generated
/*
|
|
authentik
|
|
|
|
Making authentication simple.
|
|
|
|
API version: 2026.5.0-rc1
|
|
Contact: hello@goauthentik.io
|
|
*/
|
|
|
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
|
|
|
package api
|
|
|
|
import (
|
|
"encoding/json"
|
|
)
|
|
|
|
// checks if the PatchedDeviceUserBindingRequest type satisfies the MappedNullable interface at compile time
|
|
var _ MappedNullable = &PatchedDeviceUserBindingRequest{}
|
|
|
|
// PatchedDeviceUserBindingRequest PolicyBinding Serializer
|
|
type PatchedDeviceUserBindingRequest struct {
|
|
Policy NullableString `json:"policy,omitempty"`
|
|
Group NullableString `json:"group,omitempty"`
|
|
User NullableInt32 `json:"user,omitempty"`
|
|
Target *string `json:"target,omitempty"`
|
|
// Negates the outcome of the policy. Messages are unaffected.
|
|
Negate *bool `json:"negate,omitempty"`
|
|
Enabled *bool `json:"enabled,omitempty"`
|
|
Order *int32 `json:"order,omitempty"`
|
|
// Timeout after which Policy execution is terminated.
|
|
Timeout *int32 `json:"timeout,omitempty"`
|
|
// Result if the Policy execution fails.
|
|
FailureResult *bool `json:"failure_result,omitempty"`
|
|
IsPrimary *bool `json:"is_primary,omitempty"`
|
|
AdditionalProperties map[string]interface{}
|
|
}
|
|
|
|
type _PatchedDeviceUserBindingRequest PatchedDeviceUserBindingRequest
|
|
|
|
// NewPatchedDeviceUserBindingRequest instantiates a new PatchedDeviceUserBindingRequest 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 NewPatchedDeviceUserBindingRequest() *PatchedDeviceUserBindingRequest {
|
|
this := PatchedDeviceUserBindingRequest{}
|
|
return &this
|
|
}
|
|
|
|
// NewPatchedDeviceUserBindingRequestWithDefaults instantiates a new PatchedDeviceUserBindingRequest 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 NewPatchedDeviceUserBindingRequestWithDefaults() *PatchedDeviceUserBindingRequest {
|
|
this := PatchedDeviceUserBindingRequest{}
|
|
return &this
|
|
}
|
|
|
|
// GetPolicy returns the Policy field value if set, zero value otherwise (both if not set or set to explicit null).
|
|
func (o *PatchedDeviceUserBindingRequest) GetPolicy() string {
|
|
if o == nil || IsNil(o.Policy.Get()) {
|
|
var ret string
|
|
return ret
|
|
}
|
|
return *o.Policy.Get()
|
|
}
|
|
|
|
// GetPolicyOk returns a tuple with the Policy field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
// NOTE: If the value is an explicit nil, `nil, true` will be returned
|
|
func (o *PatchedDeviceUserBindingRequest) GetPolicyOk() (*string, bool) {
|
|
if o == nil {
|
|
return nil, false
|
|
}
|
|
return o.Policy.Get(), o.Policy.IsSet()
|
|
}
|
|
|
|
// HasPolicy returns a boolean if a field has been set.
|
|
func (o *PatchedDeviceUserBindingRequest) HasPolicy() bool {
|
|
if o != nil && o.Policy.IsSet() {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetPolicy gets a reference to the given NullableString and assigns it to the Policy field.
|
|
func (o *PatchedDeviceUserBindingRequest) SetPolicy(v string) {
|
|
o.Policy.Set(&v)
|
|
}
|
|
|
|
// SetPolicyNil sets the value for Policy to be an explicit nil
|
|
func (o *PatchedDeviceUserBindingRequest) SetPolicyNil() {
|
|
o.Policy.Set(nil)
|
|
}
|
|
|
|
// UnsetPolicy ensures that no value is present for Policy, not even an explicit nil
|
|
func (o *PatchedDeviceUserBindingRequest) UnsetPolicy() {
|
|
o.Policy.Unset()
|
|
}
|
|
|
|
// GetGroup returns the Group field value if set, zero value otherwise (both if not set or set to explicit null).
|
|
func (o *PatchedDeviceUserBindingRequest) GetGroup() string {
|
|
if o == nil || IsNil(o.Group.Get()) {
|
|
var ret string
|
|
return ret
|
|
}
|
|
return *o.Group.Get()
|
|
}
|
|
|
|
// GetGroupOk returns a tuple with the Group field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
// NOTE: If the value is an explicit nil, `nil, true` will be returned
|
|
func (o *PatchedDeviceUserBindingRequest) GetGroupOk() (*string, bool) {
|
|
if o == nil {
|
|
return nil, false
|
|
}
|
|
return o.Group.Get(), o.Group.IsSet()
|
|
}
|
|
|
|
// HasGroup returns a boolean if a field has been set.
|
|
func (o *PatchedDeviceUserBindingRequest) HasGroup() bool {
|
|
if o != nil && o.Group.IsSet() {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetGroup gets a reference to the given NullableString and assigns it to the Group field.
|
|
func (o *PatchedDeviceUserBindingRequest) SetGroup(v string) {
|
|
o.Group.Set(&v)
|
|
}
|
|
|
|
// SetGroupNil sets the value for Group to be an explicit nil
|
|
func (o *PatchedDeviceUserBindingRequest) SetGroupNil() {
|
|
o.Group.Set(nil)
|
|
}
|
|
|
|
// UnsetGroup ensures that no value is present for Group, not even an explicit nil
|
|
func (o *PatchedDeviceUserBindingRequest) UnsetGroup() {
|
|
o.Group.Unset()
|
|
}
|
|
|
|
// GetUser returns the User field value if set, zero value otherwise (both if not set or set to explicit null).
|
|
func (o *PatchedDeviceUserBindingRequest) GetUser() int32 {
|
|
if o == nil || IsNil(o.User.Get()) {
|
|
var ret int32
|
|
return ret
|
|
}
|
|
return *o.User.Get()
|
|
}
|
|
|
|
// GetUserOk returns a tuple with the User field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
// NOTE: If the value is an explicit nil, `nil, true` will be returned
|
|
func (o *PatchedDeviceUserBindingRequest) GetUserOk() (*int32, bool) {
|
|
if o == nil {
|
|
return nil, false
|
|
}
|
|
return o.User.Get(), o.User.IsSet()
|
|
}
|
|
|
|
// HasUser returns a boolean if a field has been set.
|
|
func (o *PatchedDeviceUserBindingRequest) HasUser() bool {
|
|
if o != nil && o.User.IsSet() {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetUser gets a reference to the given NullableInt32 and assigns it to the User field.
|
|
func (o *PatchedDeviceUserBindingRequest) SetUser(v int32) {
|
|
o.User.Set(&v)
|
|
}
|
|
|
|
// SetUserNil sets the value for User to be an explicit nil
|
|
func (o *PatchedDeviceUserBindingRequest) SetUserNil() {
|
|
o.User.Set(nil)
|
|
}
|
|
|
|
// UnsetUser ensures that no value is present for User, not even an explicit nil
|
|
func (o *PatchedDeviceUserBindingRequest) UnsetUser() {
|
|
o.User.Unset()
|
|
}
|
|
|
|
// GetTarget returns the Target field value if set, zero value otherwise.
|
|
func (o *PatchedDeviceUserBindingRequest) GetTarget() string {
|
|
if o == nil || IsNil(o.Target) {
|
|
var ret string
|
|
return ret
|
|
}
|
|
return *o.Target
|
|
}
|
|
|
|
// GetTargetOk returns a tuple with the Target field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
func (o *PatchedDeviceUserBindingRequest) GetTargetOk() (*string, bool) {
|
|
if o == nil || IsNil(o.Target) {
|
|
return nil, false
|
|
}
|
|
return o.Target, true
|
|
}
|
|
|
|
// HasTarget returns a boolean if a field has been set.
|
|
func (o *PatchedDeviceUserBindingRequest) HasTarget() bool {
|
|
if o != nil && !IsNil(o.Target) {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetTarget gets a reference to the given string and assigns it to the Target field.
|
|
func (o *PatchedDeviceUserBindingRequest) SetTarget(v string) {
|
|
o.Target = &v
|
|
}
|
|
|
|
// GetNegate returns the Negate field value if set, zero value otherwise.
|
|
func (o *PatchedDeviceUserBindingRequest) GetNegate() bool {
|
|
if o == nil || IsNil(o.Negate) {
|
|
var ret bool
|
|
return ret
|
|
}
|
|
return *o.Negate
|
|
}
|
|
|
|
// GetNegateOk returns a tuple with the Negate field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
func (o *PatchedDeviceUserBindingRequest) GetNegateOk() (*bool, bool) {
|
|
if o == nil || IsNil(o.Negate) {
|
|
return nil, false
|
|
}
|
|
return o.Negate, true
|
|
}
|
|
|
|
// HasNegate returns a boolean if a field has been set.
|
|
func (o *PatchedDeviceUserBindingRequest) HasNegate() bool {
|
|
if o != nil && !IsNil(o.Negate) {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetNegate gets a reference to the given bool and assigns it to the Negate field.
|
|
func (o *PatchedDeviceUserBindingRequest) SetNegate(v bool) {
|
|
o.Negate = &v
|
|
}
|
|
|
|
// GetEnabled returns the Enabled field value if set, zero value otherwise.
|
|
func (o *PatchedDeviceUserBindingRequest) GetEnabled() bool {
|
|
if o == nil || IsNil(o.Enabled) {
|
|
var ret bool
|
|
return ret
|
|
}
|
|
return *o.Enabled
|
|
}
|
|
|
|
// GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
func (o *PatchedDeviceUserBindingRequest) GetEnabledOk() (*bool, bool) {
|
|
if o == nil || IsNil(o.Enabled) {
|
|
return nil, false
|
|
}
|
|
return o.Enabled, true
|
|
}
|
|
|
|
// HasEnabled returns a boolean if a field has been set.
|
|
func (o *PatchedDeviceUserBindingRequest) HasEnabled() bool {
|
|
if o != nil && !IsNil(o.Enabled) {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetEnabled gets a reference to the given bool and assigns it to the Enabled field.
|
|
func (o *PatchedDeviceUserBindingRequest) SetEnabled(v bool) {
|
|
o.Enabled = &v
|
|
}
|
|
|
|
// GetOrder returns the Order field value if set, zero value otherwise.
|
|
func (o *PatchedDeviceUserBindingRequest) GetOrder() int32 {
|
|
if o == nil || IsNil(o.Order) {
|
|
var ret int32
|
|
return ret
|
|
}
|
|
return *o.Order
|
|
}
|
|
|
|
// GetOrderOk returns a tuple with the Order field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
func (o *PatchedDeviceUserBindingRequest) GetOrderOk() (*int32, bool) {
|
|
if o == nil || IsNil(o.Order) {
|
|
return nil, false
|
|
}
|
|
return o.Order, true
|
|
}
|
|
|
|
// HasOrder returns a boolean if a field has been set.
|
|
func (o *PatchedDeviceUserBindingRequest) HasOrder() bool {
|
|
if o != nil && !IsNil(o.Order) {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetOrder gets a reference to the given int32 and assigns it to the Order field.
|
|
func (o *PatchedDeviceUserBindingRequest) SetOrder(v int32) {
|
|
o.Order = &v
|
|
}
|
|
|
|
// GetTimeout returns the Timeout field value if set, zero value otherwise.
|
|
func (o *PatchedDeviceUserBindingRequest) GetTimeout() int32 {
|
|
if o == nil || IsNil(o.Timeout) {
|
|
var ret int32
|
|
return ret
|
|
}
|
|
return *o.Timeout
|
|
}
|
|
|
|
// GetTimeoutOk returns a tuple with the Timeout field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
func (o *PatchedDeviceUserBindingRequest) GetTimeoutOk() (*int32, bool) {
|
|
if o == nil || IsNil(o.Timeout) {
|
|
return nil, false
|
|
}
|
|
return o.Timeout, true
|
|
}
|
|
|
|
// HasTimeout returns a boolean if a field has been set.
|
|
func (o *PatchedDeviceUserBindingRequest) HasTimeout() bool {
|
|
if o != nil && !IsNil(o.Timeout) {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetTimeout gets a reference to the given int32 and assigns it to the Timeout field.
|
|
func (o *PatchedDeviceUserBindingRequest) SetTimeout(v int32) {
|
|
o.Timeout = &v
|
|
}
|
|
|
|
// GetFailureResult returns the FailureResult field value if set, zero value otherwise.
|
|
func (o *PatchedDeviceUserBindingRequest) GetFailureResult() bool {
|
|
if o == nil || IsNil(o.FailureResult) {
|
|
var ret bool
|
|
return ret
|
|
}
|
|
return *o.FailureResult
|
|
}
|
|
|
|
// GetFailureResultOk returns a tuple with the FailureResult field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
func (o *PatchedDeviceUserBindingRequest) GetFailureResultOk() (*bool, bool) {
|
|
if o == nil || IsNil(o.FailureResult) {
|
|
return nil, false
|
|
}
|
|
return o.FailureResult, true
|
|
}
|
|
|
|
// HasFailureResult returns a boolean if a field has been set.
|
|
func (o *PatchedDeviceUserBindingRequest) HasFailureResult() bool {
|
|
if o != nil && !IsNil(o.FailureResult) {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetFailureResult gets a reference to the given bool and assigns it to the FailureResult field.
|
|
func (o *PatchedDeviceUserBindingRequest) SetFailureResult(v bool) {
|
|
o.FailureResult = &v
|
|
}
|
|
|
|
// GetIsPrimary returns the IsPrimary field value if set, zero value otherwise.
|
|
func (o *PatchedDeviceUserBindingRequest) GetIsPrimary() bool {
|
|
if o == nil || IsNil(o.IsPrimary) {
|
|
var ret bool
|
|
return ret
|
|
}
|
|
return *o.IsPrimary
|
|
}
|
|
|
|
// GetIsPrimaryOk returns a tuple with the IsPrimary field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
func (o *PatchedDeviceUserBindingRequest) GetIsPrimaryOk() (*bool, bool) {
|
|
if o == nil || IsNil(o.IsPrimary) {
|
|
return nil, false
|
|
}
|
|
return o.IsPrimary, true
|
|
}
|
|
|
|
// HasIsPrimary returns a boolean if a field has been set.
|
|
func (o *PatchedDeviceUserBindingRequest) HasIsPrimary() bool {
|
|
if o != nil && !IsNil(o.IsPrimary) {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetIsPrimary gets a reference to the given bool and assigns it to the IsPrimary field.
|
|
func (o *PatchedDeviceUserBindingRequest) SetIsPrimary(v bool) {
|
|
o.IsPrimary = &v
|
|
}
|
|
|
|
func (o PatchedDeviceUserBindingRequest) MarshalJSON() ([]byte, error) {
|
|
toSerialize, err := o.ToMap()
|
|
if err != nil {
|
|
return []byte{}, err
|
|
}
|
|
return json.Marshal(toSerialize)
|
|
}
|
|
|
|
func (o PatchedDeviceUserBindingRequest) ToMap() (map[string]interface{}, error) {
|
|
toSerialize := map[string]interface{}{}
|
|
if o.Policy.IsSet() {
|
|
toSerialize["policy"] = o.Policy.Get()
|
|
}
|
|
if o.Group.IsSet() {
|
|
toSerialize["group"] = o.Group.Get()
|
|
}
|
|
if o.User.IsSet() {
|
|
toSerialize["user"] = o.User.Get()
|
|
}
|
|
if !IsNil(o.Target) {
|
|
toSerialize["target"] = o.Target
|
|
}
|
|
if !IsNil(o.Negate) {
|
|
toSerialize["negate"] = o.Negate
|
|
}
|
|
if !IsNil(o.Enabled) {
|
|
toSerialize["enabled"] = o.Enabled
|
|
}
|
|
if !IsNil(o.Order) {
|
|
toSerialize["order"] = o.Order
|
|
}
|
|
if !IsNil(o.Timeout) {
|
|
toSerialize["timeout"] = o.Timeout
|
|
}
|
|
if !IsNil(o.FailureResult) {
|
|
toSerialize["failure_result"] = o.FailureResult
|
|
}
|
|
if !IsNil(o.IsPrimary) {
|
|
toSerialize["is_primary"] = o.IsPrimary
|
|
}
|
|
|
|
for key, value := range o.AdditionalProperties {
|
|
toSerialize[key] = value
|
|
}
|
|
|
|
return toSerialize, nil
|
|
}
|
|
|
|
func (o *PatchedDeviceUserBindingRequest) UnmarshalJSON(data []byte) (err error) {
|
|
varPatchedDeviceUserBindingRequest := _PatchedDeviceUserBindingRequest{}
|
|
|
|
err = json.Unmarshal(data, &varPatchedDeviceUserBindingRequest)
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
*o = PatchedDeviceUserBindingRequest(varPatchedDeviceUserBindingRequest)
|
|
|
|
additionalProperties := make(map[string]interface{})
|
|
|
|
if err = json.Unmarshal(data, &additionalProperties); err == nil {
|
|
delete(additionalProperties, "policy")
|
|
delete(additionalProperties, "group")
|
|
delete(additionalProperties, "user")
|
|
delete(additionalProperties, "target")
|
|
delete(additionalProperties, "negate")
|
|
delete(additionalProperties, "enabled")
|
|
delete(additionalProperties, "order")
|
|
delete(additionalProperties, "timeout")
|
|
delete(additionalProperties, "failure_result")
|
|
delete(additionalProperties, "is_primary")
|
|
o.AdditionalProperties = additionalProperties
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
type NullablePatchedDeviceUserBindingRequest struct {
|
|
value *PatchedDeviceUserBindingRequest
|
|
isSet bool
|
|
}
|
|
|
|
func (v NullablePatchedDeviceUserBindingRequest) Get() *PatchedDeviceUserBindingRequest {
|
|
return v.value
|
|
}
|
|
|
|
func (v *NullablePatchedDeviceUserBindingRequest) Set(val *PatchedDeviceUserBindingRequest) {
|
|
v.value = val
|
|
v.isSet = true
|
|
}
|
|
|
|
func (v NullablePatchedDeviceUserBindingRequest) IsSet() bool {
|
|
return v.isSet
|
|
}
|
|
|
|
func (v *NullablePatchedDeviceUserBindingRequest) Unset() {
|
|
v.value = nil
|
|
v.isSet = false
|
|
}
|
|
|
|
func NewNullablePatchedDeviceUserBindingRequest(val *PatchedDeviceUserBindingRequest) *NullablePatchedDeviceUserBindingRequest {
|
|
return &NullablePatchedDeviceUserBindingRequest{value: val, isSet: true}
|
|
}
|
|
|
|
func (v NullablePatchedDeviceUserBindingRequest) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(v.value)
|
|
}
|
|
|
|
func (v *NullablePatchedDeviceUserBindingRequest) UnmarshalJSON(src []byte) error {
|
|
v.isSet = true
|
|
return json.Unmarshal(src, &v.value)
|
|
}
|