Skip to main content

MultiHostIntegrationTemplateType

This represents a Multi-Host Integration template type.

Properties

NameTypeDescriptionNotes
namestrThis is the name of the type.[optional]
typestrThis is the type value for the type.[required]
script_namestrThis is the scriptName attribute value for the type.[required]
}

Example

from sailpoint.beta.models.multi_host_integration_template_type import MultiHostIntegrationTemplateType

multi_host_integration_template_type = MultiHostIntegrationTemplateType(
name='aName',
type='aType',
script_name='aScriptName'
)

[Back to top]