Skip to content

Latest commit

 

History

History
207 lines (112 loc) · 6.14 KB

SCIMProviderRequest.md

File metadata and controls

207 lines (112 loc) · 6.14 KB

SCIMProviderRequest

Properties

Name Type Description Notes
Name string
PropertyMappings Pointer to []string [optional]
PropertyMappingsGroup Pointer to []string Property mappings used for group creation/updating. [optional]
Url string Base URL to SCIM requests, usually ends in /v2
Token string Authentication token
ExcludeUsersServiceAccount Pointer to bool [optional]
FilterGroup Pointer to NullableString [optional]

Methods

NewSCIMProviderRequest

func NewSCIMProviderRequest(name string, url string, token string, ) *SCIMProviderRequest

NewSCIMProviderRequest instantiates a new SCIMProviderRequest 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

NewSCIMProviderRequestWithDefaults

func NewSCIMProviderRequestWithDefaults() *SCIMProviderRequest

NewSCIMProviderRequestWithDefaults instantiates a new SCIMProviderRequest 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

GetName

func (o *SCIMProviderRequest) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *SCIMProviderRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetName

func (o *SCIMProviderRequest) SetName(v string)

SetName sets Name field to given value.

GetPropertyMappings

func (o *SCIMProviderRequest) GetPropertyMappings() []string

GetPropertyMappings returns the PropertyMappings field if non-nil, zero value otherwise.

GetPropertyMappingsOk

func (o *SCIMProviderRequest) GetPropertyMappingsOk() (*[]string, bool)

GetPropertyMappingsOk returns a tuple with the PropertyMappings field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetPropertyMappings

func (o *SCIMProviderRequest) SetPropertyMappings(v []string)

SetPropertyMappings sets PropertyMappings field to given value.

HasPropertyMappings

func (o *SCIMProviderRequest) HasPropertyMappings() bool

HasPropertyMappings returns a boolean if a field has been set.

GetPropertyMappingsGroup

func (o *SCIMProviderRequest) GetPropertyMappingsGroup() []string

GetPropertyMappingsGroup returns the PropertyMappingsGroup field if non-nil, zero value otherwise.

GetPropertyMappingsGroupOk

func (o *SCIMProviderRequest) GetPropertyMappingsGroupOk() (*[]string, bool)

GetPropertyMappingsGroupOk returns a tuple with the PropertyMappingsGroup field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetPropertyMappingsGroup

func (o *SCIMProviderRequest) SetPropertyMappingsGroup(v []string)

SetPropertyMappingsGroup sets PropertyMappingsGroup field to given value.

HasPropertyMappingsGroup

func (o *SCIMProviderRequest) HasPropertyMappingsGroup() bool

HasPropertyMappingsGroup returns a boolean if a field has been set.

GetUrl

func (o *SCIMProviderRequest) GetUrl() string

GetUrl returns the Url field if non-nil, zero value otherwise.

GetUrlOk

func (o *SCIMProviderRequest) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetUrl

func (o *SCIMProviderRequest) SetUrl(v string)

SetUrl sets Url field to given value.

GetToken

func (o *SCIMProviderRequest) GetToken() string

GetToken returns the Token field if non-nil, zero value otherwise.

GetTokenOk

func (o *SCIMProviderRequest) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetToken

func (o *SCIMProviderRequest) SetToken(v string)

SetToken sets Token field to given value.

GetExcludeUsersServiceAccount

func (o *SCIMProviderRequest) GetExcludeUsersServiceAccount() bool

GetExcludeUsersServiceAccount returns the ExcludeUsersServiceAccount field if non-nil, zero value otherwise.

GetExcludeUsersServiceAccountOk

func (o *SCIMProviderRequest) GetExcludeUsersServiceAccountOk() (*bool, bool)

GetExcludeUsersServiceAccountOk returns a tuple with the ExcludeUsersServiceAccount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetExcludeUsersServiceAccount

func (o *SCIMProviderRequest) SetExcludeUsersServiceAccount(v bool)

SetExcludeUsersServiceAccount sets ExcludeUsersServiceAccount field to given value.

HasExcludeUsersServiceAccount

func (o *SCIMProviderRequest) HasExcludeUsersServiceAccount() bool

HasExcludeUsersServiceAccount returns a boolean if a field has been set.

GetFilterGroup

func (o *SCIMProviderRequest) GetFilterGroup() string

GetFilterGroup returns the FilterGroup field if non-nil, zero value otherwise.

GetFilterGroupOk

func (o *SCIMProviderRequest) GetFilterGroupOk() (*string, bool)

GetFilterGroupOk returns a tuple with the FilterGroup field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetFilterGroup

func (o *SCIMProviderRequest) SetFilterGroup(v string)

SetFilterGroup sets FilterGroup field to given value.

HasFilterGroup

func (o *SCIMProviderRequest) HasFilterGroup() bool

HasFilterGroup returns a boolean if a field has been set.

SetFilterGroupNil

func (o *SCIMProviderRequest) SetFilterGroupNil(b bool)

SetFilterGroupNil sets the value for FilterGroup to be an explicit nil

UnsetFilterGroup

func (o *SCIMProviderRequest) UnsetFilterGroup()

UnsetFilterGroup ensures that no value is present for FilterGroup, not even an explicit nil

[Back to Model list] [Back to API list] [Back to README]