Skip to content

Latest commit

 

History

History
566 lines (305 loc) · 17.1 KB

UpdateAuthMethodOIDC.md

File metadata and controls

566 lines (305 loc) · 17.1 KB

UpdateAuthMethodOIDC

Properties

Name Type Description Notes
AccessExpires Pointer to int64 Access expiration date in Unix timestamp (select 0 for access without expiry date) [optional] [default to 0]
AllowedRedirectUri Pointer to []string Allowed redirect URIs after the authentication [optional]
Audience Pointer to string Audience claim to be used as part of the authentication flow. In case set, it must match the one configured on the Identity Provider's Application [optional]
BoundIps Pointer to []string A CIDR whitelist with the IPs that the access is restricted to [optional]
ClientId Pointer to string Client ID [optional]
ClientSecret Pointer to string Client Secret [optional]
Description Pointer to string Auth Method description [optional]
ForceSubClaims Pointer to bool if true: enforce role-association must include sub claims [optional]
GwBoundIps Pointer to []string A CIDR whitelist with the GW IPs that the access is restricted to [optional]
Issuer Pointer to string Issuer URL [optional]
Json Pointer to bool Set output format to JSON [optional] [default to false]
JwtTtl Pointer to int64 Jwt TTL [optional] [default to 0]
Name string Auth Method name
NewName Pointer to string Auth Method new name [optional]
ProductType Pointer to []string Choose the relevant product type for the auth method [sm, sra, pm, dp, ca] [optional]
RequiredScopes Pointer to []string RequiredScopes is a list of required scopes that the oidc method will request from the oidc provider and the user must approve [optional]
RequiredScopesPrefix Pointer to string RequiredScopesPrefix is a a prefix to add to all required-scopes when requesting them from the oidc server (for example, azures' Application ID URI) [optional]
SubclaimsDelimiters Pointer to []string A list of additional sub claims delimiters (relevant only for SAML, OIDC, OAuth2/JWT) [optional]
Token Pointer to string Authentication token (see `/auth` and `/configure`) [optional]
UidToken Pointer to string The universal identity token, Required only for universal_identity authentication [optional]
UniqueIdentifier string A unique identifier (ID) value should be configured for OIDC, OAuth2, LDAP and SAML authentication method types and is usually a value such as the email, username, or upn for example. Whenever a user logs in with a token, these authentication types issue a "sub claim" that contains details uniquely identifying that user. This sub claim includes a key containing the ID value that you configured, and is used to distinguish between different users from within the same organization.

Methods

NewUpdateAuthMethodOIDC

func NewUpdateAuthMethodOIDC(name string, uniqueIdentifier string, ) *UpdateAuthMethodOIDC

NewUpdateAuthMethodOIDC instantiates a new UpdateAuthMethodOIDC 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

NewUpdateAuthMethodOIDCWithDefaults

func NewUpdateAuthMethodOIDCWithDefaults() *UpdateAuthMethodOIDC

NewUpdateAuthMethodOIDCWithDefaults instantiates a new UpdateAuthMethodOIDC 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

GetAccessExpires

func (o *UpdateAuthMethodOIDC) GetAccessExpires() int64

GetAccessExpires returns the AccessExpires field if non-nil, zero value otherwise.

GetAccessExpiresOk

func (o *UpdateAuthMethodOIDC) GetAccessExpiresOk() (*int64, bool)

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

SetAccessExpires

func (o *UpdateAuthMethodOIDC) SetAccessExpires(v int64)

SetAccessExpires sets AccessExpires field to given value.

HasAccessExpires

func (o *UpdateAuthMethodOIDC) HasAccessExpires() bool

HasAccessExpires returns a boolean if a field has been set.

GetAllowedRedirectUri

func (o *UpdateAuthMethodOIDC) GetAllowedRedirectUri() []string

GetAllowedRedirectUri returns the AllowedRedirectUri field if non-nil, zero value otherwise.

GetAllowedRedirectUriOk

func (o *UpdateAuthMethodOIDC) GetAllowedRedirectUriOk() (*[]string, bool)

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

SetAllowedRedirectUri

func (o *UpdateAuthMethodOIDC) SetAllowedRedirectUri(v []string)

SetAllowedRedirectUri sets AllowedRedirectUri field to given value.

HasAllowedRedirectUri

func (o *UpdateAuthMethodOIDC) HasAllowedRedirectUri() bool

HasAllowedRedirectUri returns a boolean if a field has been set.

GetAudience

func (o *UpdateAuthMethodOIDC) GetAudience() string

GetAudience returns the Audience field if non-nil, zero value otherwise.

GetAudienceOk

func (o *UpdateAuthMethodOIDC) GetAudienceOk() (*string, bool)

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

SetAudience

func (o *UpdateAuthMethodOIDC) SetAudience(v string)

SetAudience sets Audience field to given value.

HasAudience

func (o *UpdateAuthMethodOIDC) HasAudience() bool

HasAudience returns a boolean if a field has been set.

GetBoundIps

func (o *UpdateAuthMethodOIDC) GetBoundIps() []string

GetBoundIps returns the BoundIps field if non-nil, zero value otherwise.

GetBoundIpsOk

func (o *UpdateAuthMethodOIDC) GetBoundIpsOk() (*[]string, bool)

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

SetBoundIps

func (o *UpdateAuthMethodOIDC) SetBoundIps(v []string)

SetBoundIps sets BoundIps field to given value.

HasBoundIps

func (o *UpdateAuthMethodOIDC) HasBoundIps() bool

HasBoundIps returns a boolean if a field has been set.

GetClientId

func (o *UpdateAuthMethodOIDC) GetClientId() string

GetClientId returns the ClientId field if non-nil, zero value otherwise.

GetClientIdOk

func (o *UpdateAuthMethodOIDC) GetClientIdOk() (*string, bool)

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

SetClientId

func (o *UpdateAuthMethodOIDC) SetClientId(v string)

SetClientId sets ClientId field to given value.

HasClientId

func (o *UpdateAuthMethodOIDC) HasClientId() bool

HasClientId returns a boolean if a field has been set.

GetClientSecret

func (o *UpdateAuthMethodOIDC) GetClientSecret() string

GetClientSecret returns the ClientSecret field if non-nil, zero value otherwise.

GetClientSecretOk

func (o *UpdateAuthMethodOIDC) GetClientSecretOk() (*string, bool)

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

SetClientSecret

func (o *UpdateAuthMethodOIDC) SetClientSecret(v string)

SetClientSecret sets ClientSecret field to given value.

HasClientSecret

func (o *UpdateAuthMethodOIDC) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

GetDescription

func (o *UpdateAuthMethodOIDC) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *UpdateAuthMethodOIDC) 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.

SetDescription

func (o *UpdateAuthMethodOIDC) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *UpdateAuthMethodOIDC) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetForceSubClaims

func (o *UpdateAuthMethodOIDC) GetForceSubClaims() bool

GetForceSubClaims returns the ForceSubClaims field if non-nil, zero value otherwise.

GetForceSubClaimsOk

func (o *UpdateAuthMethodOIDC) GetForceSubClaimsOk() (*bool, bool)

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

SetForceSubClaims

func (o *UpdateAuthMethodOIDC) SetForceSubClaims(v bool)

SetForceSubClaims sets ForceSubClaims field to given value.

HasForceSubClaims

func (o *UpdateAuthMethodOIDC) HasForceSubClaims() bool

HasForceSubClaims returns a boolean if a field has been set.

GetGwBoundIps

func (o *UpdateAuthMethodOIDC) GetGwBoundIps() []string

GetGwBoundIps returns the GwBoundIps field if non-nil, zero value otherwise.

GetGwBoundIpsOk

func (o *UpdateAuthMethodOIDC) GetGwBoundIpsOk() (*[]string, bool)

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

SetGwBoundIps

func (o *UpdateAuthMethodOIDC) SetGwBoundIps(v []string)

SetGwBoundIps sets GwBoundIps field to given value.

HasGwBoundIps

func (o *UpdateAuthMethodOIDC) HasGwBoundIps() bool

HasGwBoundIps returns a boolean if a field has been set.

GetIssuer

func (o *UpdateAuthMethodOIDC) GetIssuer() string

GetIssuer returns the Issuer field if non-nil, zero value otherwise.

GetIssuerOk

func (o *UpdateAuthMethodOIDC) GetIssuerOk() (*string, bool)

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

SetIssuer

func (o *UpdateAuthMethodOIDC) SetIssuer(v string)

SetIssuer sets Issuer field to given value.

HasIssuer

func (o *UpdateAuthMethodOIDC) HasIssuer() bool

HasIssuer returns a boolean if a field has been set.

GetJson

func (o *UpdateAuthMethodOIDC) GetJson() bool

GetJson returns the Json field if non-nil, zero value otherwise.

GetJsonOk

func (o *UpdateAuthMethodOIDC) GetJsonOk() (*bool, bool)

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

SetJson

func (o *UpdateAuthMethodOIDC) SetJson(v bool)

SetJson sets Json field to given value.

HasJson

func (o *UpdateAuthMethodOIDC) HasJson() bool

HasJson returns a boolean if a field has been set.

GetJwtTtl

func (o *UpdateAuthMethodOIDC) GetJwtTtl() int64

GetJwtTtl returns the JwtTtl field if non-nil, zero value otherwise.

GetJwtTtlOk

func (o *UpdateAuthMethodOIDC) GetJwtTtlOk() (*int64, bool)

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

SetJwtTtl

func (o *UpdateAuthMethodOIDC) SetJwtTtl(v int64)

SetJwtTtl sets JwtTtl field to given value.

HasJwtTtl

func (o *UpdateAuthMethodOIDC) HasJwtTtl() bool

HasJwtTtl returns a boolean if a field has been set.

GetName

func (o *UpdateAuthMethodOIDC) GetName() string

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

GetNameOk

func (o *UpdateAuthMethodOIDC) 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 *UpdateAuthMethodOIDC) SetName(v string)

SetName sets Name field to given value.

GetNewName

func (o *UpdateAuthMethodOIDC) GetNewName() string

GetNewName returns the NewName field if non-nil, zero value otherwise.

GetNewNameOk

func (o *UpdateAuthMethodOIDC) GetNewNameOk() (*string, bool)

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

SetNewName

func (o *UpdateAuthMethodOIDC) SetNewName(v string)

SetNewName sets NewName field to given value.

HasNewName

func (o *UpdateAuthMethodOIDC) HasNewName() bool

HasNewName returns a boolean if a field has been set.

GetProductType

func (o *UpdateAuthMethodOIDC) GetProductType() []string

GetProductType returns the ProductType field if non-nil, zero value otherwise.

GetProductTypeOk

func (o *UpdateAuthMethodOIDC) GetProductTypeOk() (*[]string, bool)

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

SetProductType

func (o *UpdateAuthMethodOIDC) SetProductType(v []string)

SetProductType sets ProductType field to given value.

HasProductType

func (o *UpdateAuthMethodOIDC) HasProductType() bool

HasProductType returns a boolean if a field has been set.

GetRequiredScopes

func (o *UpdateAuthMethodOIDC) GetRequiredScopes() []string

GetRequiredScopes returns the RequiredScopes field if non-nil, zero value otherwise.

GetRequiredScopesOk

func (o *UpdateAuthMethodOIDC) GetRequiredScopesOk() (*[]string, bool)

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

SetRequiredScopes

func (o *UpdateAuthMethodOIDC) SetRequiredScopes(v []string)

SetRequiredScopes sets RequiredScopes field to given value.

HasRequiredScopes

func (o *UpdateAuthMethodOIDC) HasRequiredScopes() bool

HasRequiredScopes returns a boolean if a field has been set.

GetRequiredScopesPrefix

func (o *UpdateAuthMethodOIDC) GetRequiredScopesPrefix() string

GetRequiredScopesPrefix returns the RequiredScopesPrefix field if non-nil, zero value otherwise.

GetRequiredScopesPrefixOk

func (o *UpdateAuthMethodOIDC) GetRequiredScopesPrefixOk() (*string, bool)

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

SetRequiredScopesPrefix

func (o *UpdateAuthMethodOIDC) SetRequiredScopesPrefix(v string)

SetRequiredScopesPrefix sets RequiredScopesPrefix field to given value.

HasRequiredScopesPrefix

func (o *UpdateAuthMethodOIDC) HasRequiredScopesPrefix() bool

HasRequiredScopesPrefix returns a boolean if a field has been set.

GetSubclaimsDelimiters

func (o *UpdateAuthMethodOIDC) GetSubclaimsDelimiters() []string

GetSubclaimsDelimiters returns the SubclaimsDelimiters field if non-nil, zero value otherwise.

GetSubclaimsDelimitersOk

func (o *UpdateAuthMethodOIDC) GetSubclaimsDelimitersOk() (*[]string, bool)

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

SetSubclaimsDelimiters

func (o *UpdateAuthMethodOIDC) SetSubclaimsDelimiters(v []string)

SetSubclaimsDelimiters sets SubclaimsDelimiters field to given value.

HasSubclaimsDelimiters

func (o *UpdateAuthMethodOIDC) HasSubclaimsDelimiters() bool

HasSubclaimsDelimiters returns a boolean if a field has been set.

GetToken

func (o *UpdateAuthMethodOIDC) GetToken() string

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

GetTokenOk

func (o *UpdateAuthMethodOIDC) 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 *UpdateAuthMethodOIDC) SetToken(v string)

SetToken sets Token field to given value.

HasToken

func (o *UpdateAuthMethodOIDC) HasToken() bool

HasToken returns a boolean if a field has been set.

GetUidToken

func (o *UpdateAuthMethodOIDC) GetUidToken() string

GetUidToken returns the UidToken field if non-nil, zero value otherwise.

GetUidTokenOk

func (o *UpdateAuthMethodOIDC) GetUidTokenOk() (*string, bool)

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

SetUidToken

func (o *UpdateAuthMethodOIDC) SetUidToken(v string)

SetUidToken sets UidToken field to given value.

HasUidToken

func (o *UpdateAuthMethodOIDC) HasUidToken() bool

HasUidToken returns a boolean if a field has been set.

GetUniqueIdentifier

func (o *UpdateAuthMethodOIDC) GetUniqueIdentifier() string

GetUniqueIdentifier returns the UniqueIdentifier field if non-nil, zero value otherwise.

GetUniqueIdentifierOk

func (o *UpdateAuthMethodOIDC) GetUniqueIdentifierOk() (*string, bool)

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

SetUniqueIdentifier

func (o *UpdateAuthMethodOIDC) SetUniqueIdentifier(v string)

SetUniqueIdentifier sets UniqueIdentifier field to given value.

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