Name | Type | Description | Notes |
---|---|---|---|
Id | Pointer to int64 | The resource identifier. | [optional] |
Type | Pointer to string | The resource type. | [optional] |
Name | string | The name for the user, LDAP, TACACS+, or SSO group. | |
UserDefinedFields | Pointer to map[string]string | User-defined fields set for the resource. | [optional] |
GroupType | string | ||
Description | Pointer to string | The description of the SSO group. | [optional] |
AdministratorPrivilege | bool | Indicates whether the users within the group have administrative user privileges. | |
Authenticator | Pointer to InlinedAuthenticator | [optional] |
func NewUserGroupPutRequestBody(name string, groupType string, administratorPrivilege bool, ) *UserGroupPutRequestBody
NewUserGroupPutRequestBody instantiates a new UserGroupPutRequestBody 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 NewUserGroupPutRequestBodyWithDefaults() *UserGroupPutRequestBody
NewUserGroupPutRequestBodyWithDefaults instantiates a new UserGroupPutRequestBody 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 (o *UserGroupPutRequestBody) GetId() int64
GetId returns the Id field if non-nil, zero value otherwise.
func (o *UserGroupPutRequestBody) GetIdOk() (*int64, bool)
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UserGroupPutRequestBody) SetId(v int64)
SetId sets Id field to given value.
func (o *UserGroupPutRequestBody) HasId() bool
HasId returns a boolean if a field has been set.
func (o *UserGroupPutRequestBody) GetType() string
GetType returns the Type field if non-nil, zero value otherwise.
func (o *UserGroupPutRequestBody) GetTypeOk() (*string, bool)
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UserGroupPutRequestBody) SetType(v string)
SetType sets Type field to given value.
func (o *UserGroupPutRequestBody) HasType() bool
HasType returns a boolean if a field has been set.
func (o *UserGroupPutRequestBody) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *UserGroupPutRequestBody) 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.
func (o *UserGroupPutRequestBody) SetName(v string)
SetName sets Name field to given value.
func (o *UserGroupPutRequestBody) GetUserDefinedFields() map[string]string
GetUserDefinedFields returns the UserDefinedFields field if non-nil, zero value otherwise.
func (o *UserGroupPutRequestBody) GetUserDefinedFieldsOk() (*map[string]string, bool)
GetUserDefinedFieldsOk returns a tuple with the UserDefinedFields field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UserGroupPutRequestBody) SetUserDefinedFields(v map[string]string)
SetUserDefinedFields sets UserDefinedFields field to given value.
func (o *UserGroupPutRequestBody) HasUserDefinedFields() bool
HasUserDefinedFields returns a boolean if a field has been set.
func (o *UserGroupPutRequestBody) GetGroupType() string
GetGroupType returns the GroupType field if non-nil, zero value otherwise.
func (o *UserGroupPutRequestBody) GetGroupTypeOk() (*string, bool)
GetGroupTypeOk returns a tuple with the GroupType field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UserGroupPutRequestBody) SetGroupType(v string)
SetGroupType sets GroupType field to given value.
func (o *UserGroupPutRequestBody) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *UserGroupPutRequestBody) GetDescriptionOk() (*string, bool)
GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UserGroupPutRequestBody) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *UserGroupPutRequestBody) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *UserGroupPutRequestBody) GetAdministratorPrivilege() bool
GetAdministratorPrivilege returns the AdministratorPrivilege field if non-nil, zero value otherwise.
func (o *UserGroupPutRequestBody) GetAdministratorPrivilegeOk() (*bool, bool)
GetAdministratorPrivilegeOk returns a tuple with the AdministratorPrivilege field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UserGroupPutRequestBody) SetAdministratorPrivilege(v bool)
SetAdministratorPrivilege sets AdministratorPrivilege field to given value.
func (o *UserGroupPutRequestBody) GetAuthenticator() InlinedAuthenticator
GetAuthenticator returns the Authenticator field if non-nil, zero value otherwise.
func (o *UserGroupPutRequestBody) GetAuthenticatorOk() (*InlinedAuthenticator, bool)
GetAuthenticatorOk returns a tuple with the Authenticator field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UserGroupPutRequestBody) SetAuthenticator(v InlinedAuthenticator)
SetAuthenticator sets Authenticator field to given value.
func (o *UserGroupPutRequestBody) HasAuthenticator() bool
HasAuthenticator returns a boolean if a field has been set.