Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/ConnectorRuleResponse.md
2025-05-07 14:37:48 +00:00

2.5 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-connector-rule-response ConnectorRuleResponse ConnectorRuleResponse ConnectorRuleResponse powershellsdk
powershell
PowerShell
sdk
ConnectorRuleResponse
V2024ConnectorRuleResponse
/tools/sdk/powershell/v2024/models/connector-rule-response
SDK
Software Development Kit
ConnectorRuleResponse
V2024ConnectorRuleResponse

ConnectorRuleResponse

Properties

Name Type Description Notes
Name String the name of the rule [required]
Description String a description of the rule's purpose [optional]
Type Enum [ "BuildMap", "ConnectorAfterCreate", "ConnectorAfterDelete", "ConnectorAfterModify", "ConnectorBeforeCreate", "ConnectorBeforeDelete", "ConnectorBeforeModify", "JDBCBuildMap", "JDBCOperationProvisioning", "JDBCProvision", "PeopleSoftHRMSBuildMap", "PeopleSoftHRMSOperationProvisioning", "PeopleSoftHRMSProvision", "RACFPermissionCustomization", "ResourceObjectCustomization", "SAPBuildMap", "SapHrManagerRule", "SapHrOperationProvisioning", "SapHrProvision", "SuccessFactorsOperationProvisioning", "WebServiceAfterOperationRule", "WebServiceBeforeOperationRule", "ResourceObjectCustomization" ] the type of rule [required]
Signature ConnectorRuleCreateRequestSignature [optional]
SourceCode SourceCode [required]
Attributes [SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 a map of string to objects [optional]
Id String the ID of the rule [required]
Created String an ISO 8601 UTC timestamp when this rule was created [required]
Modified String an ISO 8601 UTC timestamp when this rule was last modified [optional]

Examples

  • Prepare the resource
$ConnectorRuleResponse = Initialize-V2024ConnectorRuleResponse  -Name WebServiceBeforeOperationRule `
 -Description This rule does that `
 -Type BuildMap `
 -Signature null `
 -SourceCode null `
 -Attributes {} `
 -Id 8113d48c0b914f17b4c6072d4dcb9dfe `
 -Created 021-07-22T15:59:23Z `
 -Modified 021-07-22T15:59:23Z
  • Convert the resource to JSON
$ConnectorRuleResponse | ConvertTo-JSON

[Back to top]