mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
---
|
||||
id: beta-multi-host-integrations-create-sources
|
||||
title: MultiHostIntegrationsCreateSources
|
||||
pagination_label: MultiHostIntegrationsCreateSources
|
||||
sidebar_label: MultiHostIntegrationsCreateSources
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'MultiHostIntegrationsCreateSources', 'BetaMultiHostIntegrationsCreateSources']
|
||||
slug: /tools/sdk/python/beta/models/multi-host-integrations-create-sources
|
||||
tags: ['SDK', 'Software Development Kit', 'MultiHostIntegrationsCreateSources', 'BetaMultiHostIntegrationsCreateSources']
|
||||
---
|
||||
|
||||
# MultiHostIntegrationsCreateSources
|
||||
|
||||
This represents sources to be created of same type.
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**name** | **str** | Source's human-readable name. | [required]
|
||||
**description** | **str** | Source's human-readable description. | [optional]
|
||||
**connector_attributes** | **map[string]object** | Connector specific configuration. This configuration will differ from type to type. | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.beta.models.multi_host_integrations_create_sources import MultiHostIntegrationsCreateSources
|
||||
|
||||
multi_host_integrations_create_sources = MultiHostIntegrationsCreateSources(
|
||||
name='My Source',
|
||||
description='This is the corporate directory.',
|
||||
connector_attributes={authType=SQLAuthentication, url=jdbc:sqlserver://178.18.41.118:1433, user=username, driverClass=com.microsoft.sqlserver.jdbc.SQLServerDriver, maxSourcesPerAggGroup=10, maxAllowedSources=300}
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user