Skip to main content

ConnectorrulecreaterequestSignature

The rule's function signature. Describes the rule's input arguments and output (if any)

Properties

NameTypeDescriptionNotes
input[]Argument[required]
outputArgument[optional]
}

Example

from sailpoint.connector_rule_management.models.connectorrulecreaterequest_signature import ConnectorrulecreaterequestSignature

connectorrulecreaterequest_signature = ConnectorrulecreaterequestSignature(
input=[
sailpoint.connector_rule_management.models.argument.Argument(
name = 'firstName',
description = 'the first name of the identity',
type = 'String', )
],
output=sailpoint.connector_rule_management.models.argument.Argument(
name = 'firstName',
description = 'the first name of the identity',
type = 'String', )
)

[Back to top]