Skip to main content

MultiHostIntegrationsConnectorAttributes

Properties

NameTypeDescriptionNotes
MaxAllowedSourcesInt32Maximum sources allowed count of a Multi-Host Integration[optional]
LastSourceUploadCountInt32Last upload sources count of a Multi-Host Integration[optional]
ConnectorFileUploadHistoryMultiHostIntegrationsConnectorAttributesConnectorFileUploadHistory[optional]
MultihostStatusEnum [ "ready", "processing", "fileUploadInProgress", "sourceCreationInProgress", "aggregationGroupingInProgress", "aggregationScheduleInProgress", "deleteInProgress", "deleteFailed" ]Multi-Host integration status.[optional]
ShowAccountSchemaBooleanShow account schema[optional] [default to $true]
ShowEntitlementSchemaBooleanShow entitlement schema[optional] [default to $true]
MultiHostAttributesMultiHostIntegrationsConnectorAttributesMultiHostAttributes[optional]

Examples

  • Prepare the resource
$MultiHostIntegrationsConnectorAttributes = Initialize-PSSailpoint.BetaMultiHostIntegrationsConnectorAttributes  -MaxAllowedSources 250 `
-LastSourceUploadCount 40 `
-ConnectorFileUploadHistory null `
-MultihostStatus ready `
-ShowAccountSchema true `
-ShowEntitlementSchema true `
-MultiHostAttributes null
  • Convert the resource to JSON
$MultiHostIntegrationsConnectorAttributes | ConvertTo-JSON

[Back to top]