Skip to content

Latest commit

 

History

History
353 lines (190 loc) · 11.1 KB

IdentityProviderView.md

File metadata and controls

353 lines (190 loc) · 11.1 KB

IdentityProviderView

Properties

Name Type Description Notes
AcsUrl Pointer to string URL that points to where to send the SAML response. [optional]
AssociatedDomains []string List that contains the domains associated with the identity provider.
AssociatedOrgs []ConnectedOrgConfigView List that contains the connected organization configurations associated with the identity provider.
AudienceUri Pointer to string Unique string that identifies the intended audience of the SAML assertion. [optional]
DisplayName Pointer to string Human-readable label that identifies the identity provider. [optional]
IssuerUri Pointer to string Unique string that identifies the issuer of the SAML Assertion. [optional]
OktaIdpId string Unique 20-hexadecimal digit string that identifies the identity provider.
PemFileInfo Pointer to PemFileInfoView [optional]
RequestBinding Pointer to string SAML Authentication Request Protocol HTTP method binding (POST or REDIRECT) that Federated Authentication uses to send the authentication request. [optional]
ResponseSignatureAlgorithm Pointer to string Signature algorithm that Federated Authentication uses to encrypt the identity provider signature. [optional]
SsoDebugEnabled Pointer to bool Flag that indicates whether the identity provider has SSO debug enabled. [optional]
SsoUrl Pointer to string URL that points to the receiver of the SAML authentication request. [optional]
Status Pointer to string String enum that indicates whether the identity provider is active. [optional]

Methods

NewIdentityProviderView

func NewIdentityProviderView(associatedDomains []string, associatedOrgs []ConnectedOrgConfigView, oktaIdpId string, ) *IdentityProviderView

NewIdentityProviderView instantiates a new IdentityProviderView 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

NewIdentityProviderViewWithDefaults

func NewIdentityProviderViewWithDefaults() *IdentityProviderView

NewIdentityProviderViewWithDefaults instantiates a new IdentityProviderView 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

GetAcsUrl

func (o *IdentityProviderView) GetAcsUrl() string

GetAcsUrl returns the AcsUrl field if non-nil, zero value otherwise.

GetAcsUrlOk

func (o *IdentityProviderView) GetAcsUrlOk() (*string, bool)

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

SetAcsUrl

func (o *IdentityProviderView) SetAcsUrl(v string)

SetAcsUrl sets AcsUrl field to given value.

HasAcsUrl

func (o *IdentityProviderView) HasAcsUrl() bool

HasAcsUrl returns a boolean if a field has been set.

GetAssociatedDomains

func (o *IdentityProviderView) GetAssociatedDomains() []string

GetAssociatedDomains returns the AssociatedDomains field if non-nil, zero value otherwise.

GetAssociatedDomainsOk

func (o *IdentityProviderView) GetAssociatedDomainsOk() (*[]string, bool)

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

SetAssociatedDomains

func (o *IdentityProviderView) SetAssociatedDomains(v []string)

SetAssociatedDomains sets AssociatedDomains field to given value.

GetAssociatedOrgs

func (o *IdentityProviderView) GetAssociatedOrgs() []ConnectedOrgConfigView

GetAssociatedOrgs returns the AssociatedOrgs field if non-nil, zero value otherwise.

GetAssociatedOrgsOk

func (o *IdentityProviderView) GetAssociatedOrgsOk() (*[]ConnectedOrgConfigView, bool)

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

SetAssociatedOrgs

func (o *IdentityProviderView) SetAssociatedOrgs(v []ConnectedOrgConfigView)

SetAssociatedOrgs sets AssociatedOrgs field to given value.

GetAudienceUri

func (o *IdentityProviderView) GetAudienceUri() string

GetAudienceUri returns the AudienceUri field if non-nil, zero value otherwise.

GetAudienceUriOk

func (o *IdentityProviderView) GetAudienceUriOk() (*string, bool)

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

SetAudienceUri

func (o *IdentityProviderView) SetAudienceUri(v string)

SetAudienceUri sets AudienceUri field to given value.

HasAudienceUri

func (o *IdentityProviderView) HasAudienceUri() bool

HasAudienceUri returns a boolean if a field has been set.

GetDisplayName

func (o *IdentityProviderView) GetDisplayName() string

GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.

GetDisplayNameOk

func (o *IdentityProviderView) GetDisplayNameOk() (*string, bool)

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

SetDisplayName

func (o *IdentityProviderView) SetDisplayName(v string)

SetDisplayName sets DisplayName field to given value.

HasDisplayName

func (o *IdentityProviderView) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

GetIssuerUri

func (o *IdentityProviderView) GetIssuerUri() string

GetIssuerUri returns the IssuerUri field if non-nil, zero value otherwise.

GetIssuerUriOk

func (o *IdentityProviderView) GetIssuerUriOk() (*string, bool)

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

SetIssuerUri

func (o *IdentityProviderView) SetIssuerUri(v string)

SetIssuerUri sets IssuerUri field to given value.

HasIssuerUri

func (o *IdentityProviderView) HasIssuerUri() bool

HasIssuerUri returns a boolean if a field has been set.

GetOktaIdpId

func (o *IdentityProviderView) GetOktaIdpId() string

GetOktaIdpId returns the OktaIdpId field if non-nil, zero value otherwise.

GetOktaIdpIdOk

func (o *IdentityProviderView) GetOktaIdpIdOk() (*string, bool)

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

SetOktaIdpId

func (o *IdentityProviderView) SetOktaIdpId(v string)

SetOktaIdpId sets OktaIdpId field to given value.

GetPemFileInfo

func (o *IdentityProviderView) GetPemFileInfo() PemFileInfoView

GetPemFileInfo returns the PemFileInfo field if non-nil, zero value otherwise.

GetPemFileInfoOk

func (o *IdentityProviderView) GetPemFileInfoOk() (*PemFileInfoView, bool)

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

SetPemFileInfo

func (o *IdentityProviderView) SetPemFileInfo(v PemFileInfoView)

SetPemFileInfo sets PemFileInfo field to given value.

HasPemFileInfo

func (o *IdentityProviderView) HasPemFileInfo() bool

HasPemFileInfo returns a boolean if a field has been set.

GetRequestBinding

func (o *IdentityProviderView) GetRequestBinding() string

GetRequestBinding returns the RequestBinding field if non-nil, zero value otherwise.

GetRequestBindingOk

func (o *IdentityProviderView) GetRequestBindingOk() (*string, bool)

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

SetRequestBinding

func (o *IdentityProviderView) SetRequestBinding(v string)

SetRequestBinding sets RequestBinding field to given value.

HasRequestBinding

func (o *IdentityProviderView) HasRequestBinding() bool

HasRequestBinding returns a boolean if a field has been set.

GetResponseSignatureAlgorithm

func (o *IdentityProviderView) GetResponseSignatureAlgorithm() string

GetResponseSignatureAlgorithm returns the ResponseSignatureAlgorithm field if non-nil, zero value otherwise.

GetResponseSignatureAlgorithmOk

func (o *IdentityProviderView) GetResponseSignatureAlgorithmOk() (*string, bool)

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

SetResponseSignatureAlgorithm

func (o *IdentityProviderView) SetResponseSignatureAlgorithm(v string)

SetResponseSignatureAlgorithm sets ResponseSignatureAlgorithm field to given value.

HasResponseSignatureAlgorithm

func (o *IdentityProviderView) HasResponseSignatureAlgorithm() bool

HasResponseSignatureAlgorithm returns a boolean if a field has been set.

GetSsoDebugEnabled

func (o *IdentityProviderView) GetSsoDebugEnabled() bool

GetSsoDebugEnabled returns the SsoDebugEnabled field if non-nil, zero value otherwise.

GetSsoDebugEnabledOk

func (o *IdentityProviderView) GetSsoDebugEnabledOk() (*bool, bool)

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

SetSsoDebugEnabled

func (o *IdentityProviderView) SetSsoDebugEnabled(v bool)

SetSsoDebugEnabled sets SsoDebugEnabled field to given value.

HasSsoDebugEnabled

func (o *IdentityProviderView) HasSsoDebugEnabled() bool

HasSsoDebugEnabled returns a boolean if a field has been set.

GetSsoUrl

func (o *IdentityProviderView) GetSsoUrl() string

GetSsoUrl returns the SsoUrl field if non-nil, zero value otherwise.

GetSsoUrlOk

func (o *IdentityProviderView) GetSsoUrlOk() (*string, bool)

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

SetSsoUrl

func (o *IdentityProviderView) SetSsoUrl(v string)

SetSsoUrl sets SsoUrl field to given value.

HasSsoUrl

func (o *IdentityProviderView) HasSsoUrl() bool

HasSsoUrl returns a boolean if a field has been set.

GetStatus

func (o *IdentityProviderView) GetStatus() string

GetStatus returns the Status field if non-nil, zero value otherwise.

GetStatusOk

func (o *IdentityProviderView) GetStatusOk() (*string, bool)

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

SetStatus

func (o *IdentityProviderView) SetStatus(v string)

SetStatus sets Status field to given value.

HasStatus

func (o *IdentityProviderView) HasStatus() bool

HasStatus returns a boolean if a field has been set.

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