mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
1.6 KiB
1.6 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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2025-connector-rule-create-request-signature | ConnectorRuleCreateRequestSignature | ConnectorRuleCreateRequestSignature | ConnectorRuleCreateRequestSignature | pythonsdk |
|
/tools/sdk/python/v2025/models/connector-rule-create-request-signature |
|
ConnectorRuleCreateRequestSignature
The rule's function signature. Describes the rule's input arguments and output (if any)
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| input | []Argument | [required] | |
| output | Argument | [optional] | |
| } |
Example
from sailpoint.v2025.models.connector_rule_create_request_signature import ConnectorRuleCreateRequestSignature
connector_rule_create_request_signature = ConnectorRuleCreateRequestSignature(
input=[
sailpoint.v2025.models.argument.Argument(
name = 'firstName',
description = 'the first name of the identity',
type = 'String', )
],
output=sailpoint.v2025.models.argument.Argument(
name = 'firstName',
description = 'the first name of the identity',
type = 'String', )
)