Skip to main content

FullcampaignAllOfRoleCompositionCampaignInfo

Optional configuration options for role composition campaigns.

Properties

NameTypeDescriptionNotes
reviewerFullcampaignAllOfSearchCampaignInfoReviewer[optional]
role_ids[]strOptional list of roles to include in this campaign. Only one of roleIds and query may be set; if neither are set, all roles are included.[optional]
remediator_refFullcampaignAllOfRoleCompositionCampaignInfoRemediatorRef[required]
querystrOptional search query to scope this campaign to a set of roles. Only one of roleIds and query may be set; if neither are set, all roles are included.[optional]
descriptionstrDescribes this role composition campaign. Intended for storing the query used, and possibly the number of roles selected/available.[optional]
}

Example

from sailpoint.beta.models.fullcampaign_all_of_role_composition_campaign_info import FullcampaignAllOfRoleCompositionCampaignInfo

fullcampaign_all_of_role_composition_campaign_info = FullcampaignAllOfRoleCompositionCampaignInfo(
reviewer=sailpoint.beta.models.fullcampaign_all_of_search_campaign_info_reviewer.fullcampaign_allOf_searchCampaignInfo_reviewer(
type = 'IDENTITY',
id = '2c91808568c529c60168cca6f90c1313',
name = 'William Wilson', ),
role_ids=[2c90ad2a70ace7d50170acf22ca90010],
remediator_ref=sailpoint.beta.models.fullcampaign_all_of_role_composition_campaign_info_remediator_ref.fullcampaign_allOf_roleCompositionCampaignInfo_remediatorRef(
type = 'IDENTITY',
id = '2c90ad2a70ace7d50170acf22ca90010',
name = 'Role Admin', ),
query='Search Query',
description='Role Composition Description'
)

[Back to top]