Skip to main content

CampaignAllOfRoleCompositionCampaignInfo

Optional configuration options for role composition campaigns.

Properties

NameTypeDescriptionNotes
reviewerCampaignAllOfSearchCampaignInfoReviewer[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_refCampaignAllOfRoleCompositionCampaignInfoRemediatorRef[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.v3.models.campaign_all_of_role_composition_campaign_info import CampaignAllOfRoleCompositionCampaignInfo

campaign_all_of_role_composition_campaign_info = CampaignAllOfRoleCompositionCampaignInfo(
reviewer=sailpoint.v3.models.campaign_all_of_search_campaign_info_reviewer.Campaign_allOf_searchCampaignInfo_reviewer(
type = 'IDENTITY',
id = '2c91808568c529c60168cca6f90c1313',
name = 'William Wilson', ),
role_ids=[2c90ad2a70ace7d50170acf22ca90010],
remediator_ref=sailpoint.v3.models.campaign_all_of_role_composition_campaign_info_remediator_ref.Campaign_allOf_roleCompositionCampaignInfo_remediatorRef(
type = 'IDENTITY',
id = '2c90ad2a70ace7d50170acf22ca90010',
name = 'Role Admin', ),
query='Search Query',
description='Role Composition Description'
)

[Back to top]