/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { OutgoingSyncDeleteAction } from './OutgoingSyncDeleteAction'; /** * MicrosoftEntraProvider Serializer * @export * @interface MicrosoftEntraProvider */ export interface MicrosoftEntraProvider { /** * * @type {number} * @memberof MicrosoftEntraProvider */ readonly pk: number; /** * * @type {string} * @memberof MicrosoftEntraProvider */ name: string; /** * * @type {Array} * @memberof MicrosoftEntraProvider */ propertyMappings?: Array; /** * Property mappings used for group creation/updating. * @type {Array} * @memberof MicrosoftEntraProvider */ propertyMappingsGroup?: Array; /** * Get object component so that we know how to edit the object * @type {string} * @memberof MicrosoftEntraProvider */ readonly component: string; /** * Internal application name, used in URLs. * @type {string} * @memberof MicrosoftEntraProvider */ readonly assignedBackchannelApplicationSlug: string; /** * Application's display Name. * @type {string} * @memberof MicrosoftEntraProvider */ readonly assignedBackchannelApplicationName: string; /** * Return object's verbose_name * @type {string} * @memberof MicrosoftEntraProvider */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof MicrosoftEntraProvider */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof MicrosoftEntraProvider */ readonly metaModelName: string; /** * * @type {string} * @memberof MicrosoftEntraProvider */ clientId: string; /** * * @type {string} * @memberof MicrosoftEntraProvider */ clientSecret: string; /** * * @type {string} * @memberof MicrosoftEntraProvider */ tenantId: string; /** * * @type {boolean} * @memberof MicrosoftEntraProvider */ excludeUsersServiceAccount?: boolean; /** * * @type {string} * @memberof MicrosoftEntraProvider */ filterGroup?: string | null; /** * * @type {OutgoingSyncDeleteAction} * @memberof MicrosoftEntraProvider */ userDeleteAction?: OutgoingSyncDeleteAction; /** * * @type {OutgoingSyncDeleteAction} * @memberof MicrosoftEntraProvider */ groupDeleteAction?: OutgoingSyncDeleteAction; /** * When enabled, provider will not modify or create objects in the remote system. * @type {boolean} * @memberof MicrosoftEntraProvider */ dryRun?: boolean; } /** * Check if a given object implements the MicrosoftEntraProvider interface. */ export declare function instanceOfMicrosoftEntraProvider(value: object): value is MicrosoftEntraProvider; export declare function MicrosoftEntraProviderFromJSON(json: any): MicrosoftEntraProvider; export declare function MicrosoftEntraProviderFromJSONTyped(json: any, ignoreDiscriminator: boolean): MicrosoftEntraProvider; export declare function MicrosoftEntraProviderToJSON(json: any): MicrosoftEntraProvider; export declare function MicrosoftEntraProviderToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MicrosoftEntraProvider.d.ts.map