Name | Type | Description | Notes |
---|---|---|---|
Id | Pointer to string | Source ID. | [optional] [readonly] |
Name | string | Source's human-readable name. | |
Description | Pointer to string | Source's human-readable description. | [optional] |
Owner | MultiHostIntegrationsOwner | ||
Cluster | Pointer to NullableMultiHostIntegrationsCluster | [optional] | |
AccountCorrelationConfig | Pointer to NullableMultiHostSourcesAccountCorrelationConfig | [optional] | |
AccountCorrelationRule | Pointer to NullableMultiHostSourcesAccountCorrelationRule | [optional] | |
ManagerCorrelationMapping | Pointer to NullableManagerCorrelationMapping | [optional] | |
ManagerCorrelationRule | Pointer to NullableMultiHostSourcesManagerCorrelationRule | [optional] | |
BeforeProvisioningRule | Pointer to NullableMultiHostSourcesBeforeProvisioningRule | [optional] | |
Schemas | Pointer to []MultiHostSourcesSchemasInner | List of references to schema objects. | [optional] |
PasswordPolicies | Pointer to []MultiHostSourcesPasswordPoliciesInner | List of references to the associated PasswordPolicy objects. | [optional] |
Features | Pointer to []string | Optional features that can be supported by a source. Modifying the features array may cause source configuration errors that are unsupportable. It is recommended to not modify this array for SailPoint supported connectors. * AUTHENTICATE: The source supports pass-through authentication. * COMPOSITE: The source supports composite source creation. * DIRECT_PERMISSIONS: The source supports returning DirectPermissions. * DISCOVER_SCHEMA: The source supports discovering schemas for users and groups. * ENABLE The source supports reading if an account is enabled or disabled. * MANAGER_LOOKUP: The source supports looking up managers as they are encountered in a feed. This is the opposite of NO_RANDOM_ACCESS. * NO_RANDOM_ACCESS: The source does not support random access and the getObject() methods should not be called and expected to perform. * PROXY: The source can serve as a proxy for another source. When an source has a proxy, all connector calls made with that source are redirected through the connector for the proxy source. * SEARCH * TEMPLATE * UNLOCK: The source supports reading if an account is locked or unlocked. * UNSTRUCTURED_TARGETS: The source supports returning unstructured Targets. * SHAREPOINT_TARGET: The source supports returning unstructured Target data for SharePoint. It will be typically used by AD, LDAP sources. * PROVISIONING: The source can both read and write accounts. Having this feature implies that the provision() method is implemented. It also means that direct and target permissions can also be provisioned if they can be returned by aggregation. * GROUP_PROVISIONING: The source can both read and write groups. Having this feature implies that the provision() method is implemented. * SYNC_PROVISIONING: The source can provision accounts synchronously. * PASSWORD: The source can provision password changes. Since sources can never read passwords, this is should only be used in conjunction with the PROVISIONING feature. * CURRENT_PASSWORD: Some source types support verification of the current password * ACCOUNT_ONLY_REQUEST: The source supports requesting accounts without entitlements. * ADDITIONAL_ACCOUNT_REQUEST: The source supports requesting additional accounts. * NO_AGGREGATION: A source that does not support aggregation. * GROUPS_HAVE_MEMBERS: The source models group memberships with a member attribute on the group object rather than a groups attribute on the account object. This effects the implementation of delta account aggregation. * NO_PERMISSIONS_PROVISIONING: Indicates that the connector cannot provision direct or target permissions for accounts. When DIRECT_PERMISSIONS and PROVISIONING features are present, it is assumed that the connector can also provision direct permissions. This feature disables that assumption and causes permission request to be converted to work items for accounts. * NO_GROUP_PERMISSIONS_PROVISIONING: Indicates that the connector cannot provision direct or target permissions for groups. When DIRECT_PERMISSIONS and PROVISIONING features are present, it is assumed that the connector can also provision direct permissions. This feature disables that assumption and causes permission request to be converted to work items for groups. * NO_UNSTRUCTURED_TARGETS_PROVISIONING: This string will be replaced by NO_GROUP_PERMISSIONS_PROVISIONING and NO_PERMISSIONS_PROVISIONING. * NO_DIRECT_PERMISSIONS_PROVISIONING: This string will be replaced by NO_GROUP_PERMISSIONS_PROVISIONING and NO_PERMISSIONS_PROVISIONING. * USES_UUID: Connectivity 2.0 flag used to indicate that the connector supports a compound naming structure. * PREFER_UUID: Used in ISC Provisioning AND Aggregation to decide if it should prefer account.uuid to account.nativeIdentity when data is read in through aggregation OR pushed out through provisioning. * ARM_SECURITY_EXTRACT: Indicates the application supports Security extracts for ARM * ARM_UTILIZATION_EXTRACT: Indicates the application supports Utilization extracts for ARM * ARM_CHANGELOG_EXTRACT: Indicates the application supports Change-log extracts for ARM | [optional] |
Type | Pointer to string | Specifies the type of system being managed e.g. Active Directory, Workday, etc.. If you are creating a delimited file source, you must set the `provisionasCsv` query parameter to `true`. | [optional] |
Connector | string | Connector script name. | |
ConnectorClass | Pointer to string | Fully qualified name of the Java class that implements the connector interface. | [optional] |
ConnectorAttributes | Pointer to map[string]interface{} | Connector specific configuration. This configuration will differ from type to type. | [optional] |
DeleteThreshold | Pointer to int32 | Number from 0 to 100 that specifies when to skip the delete phase. | [optional] |
Authoritative | Pointer to bool | When this is true, it indicates that the source is referenced by an identity profile. | [optional] [default to false] |
ManagementWorkgroup | Pointer to NullableMultiHostIntegrationsManagementWorkgroup | [optional] | |
Healthy | Pointer to bool | When this is true, it indicates that the source is healthy. | [optional] [default to false] |
Status | Pointer to string | Status identifier that gives specific information about why a source is or isn't healthy. | [optional] |
Since | Pointer to string | Timestamp that shows when a source health check was last performed. | [optional] |
ConnectorId | Pointer to string | Connector ID | [optional] |
ConnectorName | Pointer to string | Name of the connector that was chosen during source creation. | [optional] |
ConnectionType | Pointer to string | Type of connection (direct or file). | [optional] |
ConnectorImplementationId | Pointer to string | Connector implementation ID. | [optional] |
Created | Pointer to time.Time | Date-time when the source was created | [optional] |
Modified | Pointer to time.Time | Date-time when the source was last modified. | [optional] |
CredentialProviderEnabled | Pointer to bool | If this is true, it enables a credential provider for the source. If credentialProvider is turned on, then the source can use credential provider(s) to fetch credentials. | [optional] [default to false] |
Category | Pointer to NullableString | Source category (e.g. null, CredentialProvider). | [optional] |
func NewSource(name string, owner MultiHostIntegrationsOwner, connector string, ) *Source
NewSource instantiates a new Source 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 NewSourceWithDefaults() *Source
NewSourceWithDefaults instantiates a new Source 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 *Source) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
func (o *Source) GetIdOk() (*string, 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 *Source) SetId(v string)
SetId sets Id field to given value.
func (o *Source) HasId() bool
HasId returns a boolean if a field has been set.
func (o *Source) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *Source) 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 *Source) SetName(v string)
SetName sets Name field to given value.
func (o *Source) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *Source) 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 *Source) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *Source) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *Source) GetOwner() MultiHostIntegrationsOwner
GetOwner returns the Owner field if non-nil, zero value otherwise.
func (o *Source) GetOwnerOk() (*MultiHostIntegrationsOwner, bool)
GetOwnerOk returns a tuple with the Owner field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetOwner(v MultiHostIntegrationsOwner)
SetOwner sets Owner field to given value.
func (o *Source) GetCluster() MultiHostIntegrationsCluster
GetCluster returns the Cluster field if non-nil, zero value otherwise.
func (o *Source) GetClusterOk() (*MultiHostIntegrationsCluster, bool)
GetClusterOk returns a tuple with the Cluster field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetCluster(v MultiHostIntegrationsCluster)
SetCluster sets Cluster field to given value.
func (o *Source) HasCluster() bool
HasCluster returns a boolean if a field has been set.
func (o *Source) SetClusterNil(b bool)
SetClusterNil sets the value for Cluster to be an explicit nil
func (o *Source) UnsetCluster()
UnsetCluster ensures that no value is present for Cluster, not even an explicit nil
func (o *Source) GetAccountCorrelationConfig() MultiHostSourcesAccountCorrelationConfig
GetAccountCorrelationConfig returns the AccountCorrelationConfig field if non-nil, zero value otherwise.
func (o *Source) GetAccountCorrelationConfigOk() (*MultiHostSourcesAccountCorrelationConfig, bool)
GetAccountCorrelationConfigOk returns a tuple with the AccountCorrelationConfig field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetAccountCorrelationConfig(v MultiHostSourcesAccountCorrelationConfig)
SetAccountCorrelationConfig sets AccountCorrelationConfig field to given value.
func (o *Source) HasAccountCorrelationConfig() bool
HasAccountCorrelationConfig returns a boolean if a field has been set.
func (o *Source) SetAccountCorrelationConfigNil(b bool)
SetAccountCorrelationConfigNil sets the value for AccountCorrelationConfig to be an explicit nil
func (o *Source) UnsetAccountCorrelationConfig()
UnsetAccountCorrelationConfig ensures that no value is present for AccountCorrelationConfig, not even an explicit nil
func (o *Source) GetAccountCorrelationRule() MultiHostSourcesAccountCorrelationRule
GetAccountCorrelationRule returns the AccountCorrelationRule field if non-nil, zero value otherwise.
func (o *Source) GetAccountCorrelationRuleOk() (*MultiHostSourcesAccountCorrelationRule, bool)
GetAccountCorrelationRuleOk returns a tuple with the AccountCorrelationRule field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetAccountCorrelationRule(v MultiHostSourcesAccountCorrelationRule)
SetAccountCorrelationRule sets AccountCorrelationRule field to given value.
func (o *Source) HasAccountCorrelationRule() bool
HasAccountCorrelationRule returns a boolean if a field has been set.
func (o *Source) SetAccountCorrelationRuleNil(b bool)
SetAccountCorrelationRuleNil sets the value for AccountCorrelationRule to be an explicit nil
func (o *Source) UnsetAccountCorrelationRule()
UnsetAccountCorrelationRule ensures that no value is present for AccountCorrelationRule, not even an explicit nil
func (o *Source) GetManagerCorrelationMapping() ManagerCorrelationMapping
GetManagerCorrelationMapping returns the ManagerCorrelationMapping field if non-nil, zero value otherwise.
func (o *Source) GetManagerCorrelationMappingOk() (*ManagerCorrelationMapping, bool)
GetManagerCorrelationMappingOk returns a tuple with the ManagerCorrelationMapping field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetManagerCorrelationMapping(v ManagerCorrelationMapping)
SetManagerCorrelationMapping sets ManagerCorrelationMapping field to given value.
func (o *Source) HasManagerCorrelationMapping() bool
HasManagerCorrelationMapping returns a boolean if a field has been set.
func (o *Source) SetManagerCorrelationMappingNil(b bool)
SetManagerCorrelationMappingNil sets the value for ManagerCorrelationMapping to be an explicit nil
func (o *Source) UnsetManagerCorrelationMapping()
UnsetManagerCorrelationMapping ensures that no value is present for ManagerCorrelationMapping, not even an explicit nil
func (o *Source) GetManagerCorrelationRule() MultiHostSourcesManagerCorrelationRule
GetManagerCorrelationRule returns the ManagerCorrelationRule field if non-nil, zero value otherwise.
func (o *Source) GetManagerCorrelationRuleOk() (*MultiHostSourcesManagerCorrelationRule, bool)
GetManagerCorrelationRuleOk returns a tuple with the ManagerCorrelationRule field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetManagerCorrelationRule(v MultiHostSourcesManagerCorrelationRule)
SetManagerCorrelationRule sets ManagerCorrelationRule field to given value.
func (o *Source) HasManagerCorrelationRule() bool
HasManagerCorrelationRule returns a boolean if a field has been set.
func (o *Source) SetManagerCorrelationRuleNil(b bool)
SetManagerCorrelationRuleNil sets the value for ManagerCorrelationRule to be an explicit nil
func (o *Source) UnsetManagerCorrelationRule()
UnsetManagerCorrelationRule ensures that no value is present for ManagerCorrelationRule, not even an explicit nil
func (o *Source) GetBeforeProvisioningRule() MultiHostSourcesBeforeProvisioningRule
GetBeforeProvisioningRule returns the BeforeProvisioningRule field if non-nil, zero value otherwise.
func (o *Source) GetBeforeProvisioningRuleOk() (*MultiHostSourcesBeforeProvisioningRule, bool)
GetBeforeProvisioningRuleOk returns a tuple with the BeforeProvisioningRule field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetBeforeProvisioningRule(v MultiHostSourcesBeforeProvisioningRule)
SetBeforeProvisioningRule sets BeforeProvisioningRule field to given value.
func (o *Source) HasBeforeProvisioningRule() bool
HasBeforeProvisioningRule returns a boolean if a field has been set.
func (o *Source) SetBeforeProvisioningRuleNil(b bool)
SetBeforeProvisioningRuleNil sets the value for BeforeProvisioningRule to be an explicit nil
func (o *Source) UnsetBeforeProvisioningRule()
UnsetBeforeProvisioningRule ensures that no value is present for BeforeProvisioningRule, not even an explicit nil
func (o *Source) GetSchemas() []MultiHostSourcesSchemasInner
GetSchemas returns the Schemas field if non-nil, zero value otherwise.
func (o *Source) GetSchemasOk() (*[]MultiHostSourcesSchemasInner, bool)
GetSchemasOk returns a tuple with the Schemas field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetSchemas(v []MultiHostSourcesSchemasInner)
SetSchemas sets Schemas field to given value.
func (o *Source) HasSchemas() bool
HasSchemas returns a boolean if a field has been set.
func (o *Source) GetPasswordPolicies() []MultiHostSourcesPasswordPoliciesInner
GetPasswordPolicies returns the PasswordPolicies field if non-nil, zero value otherwise.
func (o *Source) GetPasswordPoliciesOk() (*[]MultiHostSourcesPasswordPoliciesInner, bool)
GetPasswordPoliciesOk returns a tuple with the PasswordPolicies field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetPasswordPolicies(v []MultiHostSourcesPasswordPoliciesInner)
SetPasswordPolicies sets PasswordPolicies field to given value.
func (o *Source) HasPasswordPolicies() bool
HasPasswordPolicies returns a boolean if a field has been set.
func (o *Source) SetPasswordPoliciesNil(b bool)
SetPasswordPoliciesNil sets the value for PasswordPolicies to be an explicit nil
func (o *Source) UnsetPasswordPolicies()
UnsetPasswordPolicies ensures that no value is present for PasswordPolicies, not even an explicit nil
func (o *Source) GetFeatures() []string
GetFeatures returns the Features field if non-nil, zero value otherwise.
func (o *Source) GetFeaturesOk() (*[]string, bool)
GetFeaturesOk returns a tuple with the Features field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetFeatures(v []string)
SetFeatures sets Features field to given value.
func (o *Source) HasFeatures() bool
HasFeatures returns a boolean if a field has been set.
func (o *Source) GetType() string
GetType returns the Type field if non-nil, zero value otherwise.
func (o *Source) 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 *Source) SetType(v string)
SetType sets Type field to given value.
func (o *Source) HasType() bool
HasType returns a boolean if a field has been set.
func (o *Source) GetConnector() string
GetConnector returns the Connector field if non-nil, zero value otherwise.
func (o *Source) GetConnectorOk() (*string, bool)
GetConnectorOk returns a tuple with the Connector field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetConnector(v string)
SetConnector sets Connector field to given value.
func (o *Source) GetConnectorClass() string
GetConnectorClass returns the ConnectorClass field if non-nil, zero value otherwise.
func (o *Source) GetConnectorClassOk() (*string, bool)
GetConnectorClassOk returns a tuple with the ConnectorClass field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetConnectorClass(v string)
SetConnectorClass sets ConnectorClass field to given value.
func (o *Source) HasConnectorClass() bool
HasConnectorClass returns a boolean if a field has been set.
func (o *Source) GetConnectorAttributes() map[string]interface{}
GetConnectorAttributes returns the ConnectorAttributes field if non-nil, zero value otherwise.
func (o *Source) GetConnectorAttributesOk() (*map[string]interface{}, bool)
GetConnectorAttributesOk returns a tuple with the ConnectorAttributes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetConnectorAttributes(v map[string]interface{})
SetConnectorAttributes sets ConnectorAttributes field to given value.
func (o *Source) HasConnectorAttributes() bool
HasConnectorAttributes returns a boolean if a field has been set.
func (o *Source) GetDeleteThreshold() int32
GetDeleteThreshold returns the DeleteThreshold field if non-nil, zero value otherwise.
func (o *Source) GetDeleteThresholdOk() (*int32, bool)
GetDeleteThresholdOk returns a tuple with the DeleteThreshold field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetDeleteThreshold(v int32)
SetDeleteThreshold sets DeleteThreshold field to given value.
func (o *Source) HasDeleteThreshold() bool
HasDeleteThreshold returns a boolean if a field has been set.
func (o *Source) GetAuthoritative() bool
GetAuthoritative returns the Authoritative field if non-nil, zero value otherwise.
func (o *Source) GetAuthoritativeOk() (*bool, bool)
GetAuthoritativeOk returns a tuple with the Authoritative field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetAuthoritative(v bool)
SetAuthoritative sets Authoritative field to given value.
func (o *Source) HasAuthoritative() bool
HasAuthoritative returns a boolean if a field has been set.
func (o *Source) GetManagementWorkgroup() MultiHostIntegrationsManagementWorkgroup
GetManagementWorkgroup returns the ManagementWorkgroup field if non-nil, zero value otherwise.
func (o *Source) GetManagementWorkgroupOk() (*MultiHostIntegrationsManagementWorkgroup, bool)
GetManagementWorkgroupOk returns a tuple with the ManagementWorkgroup field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetManagementWorkgroup(v MultiHostIntegrationsManagementWorkgroup)
SetManagementWorkgroup sets ManagementWorkgroup field to given value.
func (o *Source) HasManagementWorkgroup() bool
HasManagementWorkgroup returns a boolean if a field has been set.
func (o *Source) SetManagementWorkgroupNil(b bool)
SetManagementWorkgroupNil sets the value for ManagementWorkgroup to be an explicit nil
func (o *Source) UnsetManagementWorkgroup()
UnsetManagementWorkgroup ensures that no value is present for ManagementWorkgroup, not even an explicit nil
func (o *Source) GetHealthy() bool
GetHealthy returns the Healthy field if non-nil, zero value otherwise.
func (o *Source) GetHealthyOk() (*bool, bool)
GetHealthyOk returns a tuple with the Healthy field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetHealthy(v bool)
SetHealthy sets Healthy field to given value.
func (o *Source) HasHealthy() bool
HasHealthy returns a boolean if a field has been set.
func (o *Source) GetStatus() string
GetStatus returns the Status field if non-nil, zero value otherwise.
func (o *Source) 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.
func (o *Source) SetStatus(v string)
SetStatus sets Status field to given value.
func (o *Source) HasStatus() bool
HasStatus returns a boolean if a field has been set.
func (o *Source) GetSince() string
GetSince returns the Since field if non-nil, zero value otherwise.
func (o *Source) GetSinceOk() (*string, bool)
GetSinceOk returns a tuple with the Since field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetSince(v string)
SetSince sets Since field to given value.
func (o *Source) HasSince() bool
HasSince returns a boolean if a field has been set.
func (o *Source) GetConnectorId() string
GetConnectorId returns the ConnectorId field if non-nil, zero value otherwise.
func (o *Source) GetConnectorIdOk() (*string, bool)
GetConnectorIdOk returns a tuple with the ConnectorId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetConnectorId(v string)
SetConnectorId sets ConnectorId field to given value.
func (o *Source) HasConnectorId() bool
HasConnectorId returns a boolean if a field has been set.
func (o *Source) GetConnectorName() string
GetConnectorName returns the ConnectorName field if non-nil, zero value otherwise.
func (o *Source) GetConnectorNameOk() (*string, bool)
GetConnectorNameOk returns a tuple with the ConnectorName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetConnectorName(v string)
SetConnectorName sets ConnectorName field to given value.
func (o *Source) HasConnectorName() bool
HasConnectorName returns a boolean if a field has been set.
func (o *Source) GetConnectionType() string
GetConnectionType returns the ConnectionType field if non-nil, zero value otherwise.
func (o *Source) GetConnectionTypeOk() (*string, bool)
GetConnectionTypeOk returns a tuple with the ConnectionType field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetConnectionType(v string)
SetConnectionType sets ConnectionType field to given value.
func (o *Source) HasConnectionType() bool
HasConnectionType returns a boolean if a field has been set.
func (o *Source) GetConnectorImplementationId() string
GetConnectorImplementationId returns the ConnectorImplementationId field if non-nil, zero value otherwise.
func (o *Source) GetConnectorImplementationIdOk() (*string, bool)
GetConnectorImplementationIdOk returns a tuple with the ConnectorImplementationId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetConnectorImplementationId(v string)
SetConnectorImplementationId sets ConnectorImplementationId field to given value.
func (o *Source) HasConnectorImplementationId() bool
HasConnectorImplementationId returns a boolean if a field has been set.
func (o *Source) GetCreated() time.Time
GetCreated returns the Created field if non-nil, zero value otherwise.
func (o *Source) GetCreatedOk() (*time.Time, bool)
GetCreatedOk returns a tuple with the Created field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetCreated(v time.Time)
SetCreated sets Created field to given value.
func (o *Source) HasCreated() bool
HasCreated returns a boolean if a field has been set.
func (o *Source) GetModified() time.Time
GetModified returns the Modified field if non-nil, zero value otherwise.
func (o *Source) GetModifiedOk() (*time.Time, bool)
GetModifiedOk returns a tuple with the Modified field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetModified(v time.Time)
SetModified sets Modified field to given value.
func (o *Source) HasModified() bool
HasModified returns a boolean if a field has been set.
func (o *Source) GetCredentialProviderEnabled() bool
GetCredentialProviderEnabled returns the CredentialProviderEnabled field if non-nil, zero value otherwise.
func (o *Source) GetCredentialProviderEnabledOk() (*bool, bool)
GetCredentialProviderEnabledOk returns a tuple with the CredentialProviderEnabled field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetCredentialProviderEnabled(v bool)
SetCredentialProviderEnabled sets CredentialProviderEnabled field to given value.
func (o *Source) HasCredentialProviderEnabled() bool
HasCredentialProviderEnabled returns a boolean if a field has been set.
func (o *Source) GetCategory() string
GetCategory returns the Category field if non-nil, zero value otherwise.
func (o *Source) GetCategoryOk() (*string, bool)
GetCategoryOk returns a tuple with the Category field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Source) SetCategory(v string)
SetCategory sets Category field to given value.
func (o *Source) HasCategory() bool
HasCategory returns a boolean if a field has been set.
func (o *Source) SetCategoryNil(b bool)
SetCategoryNil sets the value for Category to be an explicit nil
func (o *Source) UnsetCategory()
UnsetCategory ensures that no value is present for Category, not even an explicit nil