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.beta.models.connector_rule_create_request_signature import ConnectorRuleCreateRequestSignature

connector_rule_create_request_signature = ConnectorRuleCreateRequestSignature(
input=[
sailpoint.beta.models.argument.Argument(
name = 'firstName',
description = 'the first name of the identity',
type = 'String', )
],
output=sailpoint.beta.models.argument.Argument(
name = 'firstName',
description = 'the first name of the identity',
type = 'String', )
)

[Back to top]