@azure-rest/purview-scanning 1.0.0-alpha.20251125.1 → 1.0.0-alpha.20251201.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/models.d.ts.map +1 -1
- package/dist/browser/models.js.map +1 -1
- package/dist/browser/outputModels.d.ts.map +1 -1
- package/dist/browser/outputModels.js.map +1 -1
- package/dist/commonjs/models.d.ts.map +1 -1
- package/dist/commonjs/models.js.map +1 -1
- package/dist/commonjs/outputModels.d.ts.map +1 -1
- package/dist/commonjs/outputModels.js.map +1 -1
- package/dist/esm/models.d.ts.map +1 -1
- package/dist/esm/models.js.map +1 -1
- package/dist/esm/outputModels.d.ts.map +1 -1
- package/dist/esm/outputModels.js.map +1 -1
- package/dist/react-native/models.d.ts.map +1 -1
- package/dist/react-native/models.js.map +1 -1
- package/dist/react-native/outputModels.d.ts.map +1 -1
- package/dist/react-native/outputModels.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/models.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"models.js","sourceRoot":"","sources":["../../src/models.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\n/** The Azure Key Vault connection. */\nexport interface AzureKeyVault extends ProxyResource {\n /** Azure Key Vault connection properties. */\n properties?: AzureKeyVaultProperties;\n}\n\n/** Azure Key Vault connection properties. */\nexport interface AzureKeyVaultProperties {\n /** The base URL of the Azure Key Vault. */\n baseUrl?: string;\n /** The description of the Azure Key Vault connection. */\n description?: string;\n}\n\n/** The proxy resource. */\nexport interface ProxyResource {}\n\n/** The error model. */\nexport interface ErrorModel {\n /** A unique error code that identifies the specific error. */\n code: string;\n /** A human-readable error message that provides more details about the error. */\n message: string;\n /** The specific component that the error is associated with. */\n target?: string;\n /** An array of nested ErrorModel objects that provides additional error details. */\n details?: Array<ErrorModel>;\n}\n\n/** The classification rule. */\nexport interface ClassificationRuleParent extends ProxyResource {\n kind: \"ClassificationRule\" | \"System\" | \"Custom\";\n}\n\n/** The credential. */\nexport interface CredentialParent extends ProxyResource {\n kind:\n | \"Credential\"\n | \"AccountKey\"\n | \"BasicAuth\"\n | \"AmazonARN\"\n | \"ServicePrincipal\"\n | \"SqlAuth\"\n | \"ConsumerKeyAuth\"\n | \"DelegatedAuth\"\n | \"ManagedIdentity\";\n}\n\n/** The data source. */\nexport interface DataSourceParent extends ProxyResource {\n /** The creation type. */\n creationType?: \"Manual\" | \"AutoNative\" | \"AutoManaged\";\n kind:\n | \"DataSource\"\n | \"AzureSubscription\"\n | \"AzureResourceGroup\"\n | \"AzureSynapseWorkspace\"\n | \"AzureSynapse\"\n | \"AdlsGen1\"\n | \"AdlsGen2\"\n | \"AmazonAccount\"\n | \"AmazonS3\"\n | \"AmazonSql\"\n | \"AzureCosmosDb\"\n | \"AzureDataExplorer\"\n | \"AzureFileService\"\n | \"AzureSqlDatabase\"\n | \"AmazonPostgreSql\"\n | \"AzurePostgreSql\"\n | \"SqlServerDatabase\"\n | \"AzureSqlDatabaseManagedInstance\"\n | \"AzureSqlDataWarehouse\"\n | \"AzureMySql\"\n | \"AzureStorage\"\n | \"Teradata\"\n | \"Oracle\"\n | \"SapS4Hana\"\n | \"SapEcc\"\n | \"PowerBI\";\n}\n\n/** The scan. */\nexport interface ScanParent extends ProxyResource {\n /** The scan identifier. */\n scanId?: string;\n /** The data source identifier. */\n dataSourceIdentifier?: DataSourceIdentifier;\n /** The data source name. */\n dataSourceName?: string;\n /** The creation type. */\n creationType?: \"Manual\" | \"AutoNative\" | \"AutoManaged\";\n kind:\n | \"Scan\"\n | \"AzureSubscriptionCredential\"\n | \"AzureSubscriptionMsi\"\n | \"AzureResourceGroupCredential\"\n | \"AzureResourceGroupMsi\"\n | \"AzureSynapseWorkspaceCredential\"\n | \"AzureSynapseWorkspaceMsi\"\n | \"AzureSynapseCredential\"\n | \"AzureSynapseMsi\"\n | \"AdlsGen1Credential\"\n | \"AdlsGen1Msi\"\n | \"AdlsGen2Credential\"\n | \"AdlsGen2Msi\"\n | \"AmazonAccountCredential\"\n | \"AmazonS3Credential\"\n | \"AmazonS3RoleARN\"\n | \"AmazonSqlCredential\"\n | \"AzureCosmosDbCredential\"\n | \"AzureDataExplorerCredential\"\n | \"AzureDataExplorerMsi\"\n | \"AzureFileServiceCredential\"\n | \"AzureSqlDatabaseCredential\"\n | \"AzureSqlDatabaseMsi\"\n | \"AmazonPostgreSqlCredential\"\n | \"AzurePostgreSqlCredential\"\n | \"SqlServerDatabaseCredential\"\n | \"AzureSqlDatabaseManagedInstanceCredential\"\n | \"AzureSqlDatabaseManagedInstanceMsi\"\n | \"AzureSqlDataWarehouseCredential\"\n | \"AzureSqlDataWarehouseMsi\"\n | \"AzureMySqlCredential\"\n | \"AzureStorageCredential\"\n | \"AzureStorageMsi\"\n | \"TeradataTeradataCredential\"\n | \"TeradataUserPass\"\n | \"TeradataTeradataUserPass\"\n | \"OracleOracleCredential\"\n | \"OracleOracleUserPass\"\n | \"SapS4HanaSapS4HanaCredential\"\n | \"SapS4HanaSapS4HanaUserPass\"\n | \"SapEccSapEccCredential\"\n | \"SapEccSapEccUserPass\"\n | \"PowerBIDelegated\"\n | \"PowerBIMsi\";\n}\n\n/** The scan result with ingestion. */\nexport interface ScanResultWithIngestion {\n /** The ingestion job identifier. */\n ingestionJobId?: string;\n /** The scan result status. */\n status?: \"Accepted\" | \"InProgress\" | \"TransientFailure\" | \"Succeeded\" | \"Failed\" | \"Canceled\";\n}\n\n/** The discovery execution details. */\nexport interface DiscoveryExecutionDetails {\n /** The discovery start time. */\n discoveryStartTime?: Date | string;\n /** The discovery end time. */\n discoveryEndTime?: Date | string;\n /** The discovery status. */\n status?:\n | \"Queued\"\n | \"Running\"\n | \"Succeeded\"\n | \"Failed\"\n | \"Cancelled\"\n | \"Delayed\"\n | \"Throttled\"\n | \"CompletedWithExceptions\"\n | \"CompleteWithWarning\";\n /** The discovery statistics. */\n statistics?: Record<string, any>;\n /** Indicates whether the error log is available. */\n isErrorLogAvailable?: boolean;\n}\n\n/** The ingestion execution details. */\nexport interface IngestionExecutionDetails {\n /** The ingestion start time. */\n ingestionStartTime?: Date | string;\n /** The ingestion end time. */\n ingestionEndTime?: Date | string;\n /** The ingestion status. */\n status?:\n | \"None\"\n | \"Succeeded\"\n | \"Queued\"\n | \"InProgress\"\n | \"SourceUnknown\"\n | \"PartialSucceeded\"\n | \"Failed\"\n | \"Canceled\"\n | \"Canceling\";\n /** The ingestion statistics. */\n statistics?: Record<string, any>;\n /** The estimated time remaining in seconds. */\n estimatedTimeRemainingInSeconds?: number;\n /** Indicates whether the error log is available. */\n isErrorLogAvailable?: boolean;\n /** The last updated time. */\n lastUpdatedAt?: Date | string;\n}\n\n/** The scan diagnostics. */\nexport interface ScanDiagnostics {\n /** Notifications. */\n notifications?: Array<Notification>;\n}\n\n/** The notification model. */\nexport interface Notification {\n /** Notification message. */\n message?: string;\n /** Notification code. */\n code?: number;\n}\n\n/** The data source identifier. */\nexport interface DataSourceIdentifier {\n /** The item path. */\n itemPath?: ItemPath;\n /** The qualified name. */\n qualifiedName?: QualifiedName;\n /** The data source name. */\n dataSourceName?: string;\n /** The guid. */\n guid?: string;\n /** The resource identifier. */\n resourceId?: string;\n}\n\n/** The item path. */\nexport interface ItemPath {\n /** The path. */\n path?: string;\n /** The extended properties. */\n extendedProperties?: ExtendedProperties;\n}\n\n/** The extended properties. */\nexport interface ExtendedProperties {\n /** The subscription identifier. */\n subscriptionId?: string;\n /** The resource group. */\n resourceGroup?: string;\n}\n\n/** The qualified name. */\nexport interface QualifiedName {\n /** The type name. */\n typeName?: string;\n /** The name. */\n name?: string;\n /** The extended properties. */\n extendedProperties?: ExtendedProperties;\n}\n\n/** The filter. */\nexport interface Filter extends ProxyResource {\n /** The filter properties. */\n properties?: FilterProperties;\n}\n\n/** The filter properties. */\nexport interface FilterProperties {\n /** The exclude uri prefixes. */\n excludeUriPrefixes: Array<string>;\n /** The include uri prefixes. */\n includeUriPrefixes: Array<string>;\n /** The exclude regexes. */\n excludeRegexes?: Array<string>;\n /** The include regexes. */\n includeRegexes?: Array<string>;\n}\n\n/** Purview nested object which serves as a compute resource for activities. */\nexport interface IntegrationRuntimeParent extends ProxyResource {\n kind: \"IntegrationRuntime\" | \"Managed\" | \"SelfHosted\";\n}\n\n/** Integration runtime status. */\nexport interface IntegrationRuntimeStatusParent extends ProxyResource {\n kind: \"IntegrationRuntimeStatus\" | \"SelfHosted\" | \"Managed\";\n}\n\n/** Parameters to regenerate the authentication key. */\nexport interface IntegrationRuntimeRegenerateKeyParameters {\n /** The name of the authentication key to regenerate. */\n keyName?: \"authKey1\" | \"authKey2\";\n}\n\n/** The request of enabling interactive query for integration runtime. */\nexport interface EnableInteractiveQueryForIntegrationRuntimeRequest {\n /** The interactive querying auto termination time in minutes. */\n autoTerminationMinutes?: number;\n}\n\n/** The managed virtual network. */\nexport interface ManagedVirtualNetwork extends ProxyResource {\n /** The properties of managed virtual network. */\n properties?: ManagedVirtualNetworkProperties;\n}\n\n/** The properties of managed virtual network. */\nexport interface ManagedVirtualNetworkProperties {}\n\n/** The managed private endpoint. */\nexport interface ManagedPrivateEndpoint extends ProxyResource {\n /** The properties of managed private endpoint. */\n properties?: ManagedPrivateEndpointProperties;\n}\n\n/** The properties of managed private endpoint. */\nexport interface ManagedPrivateEndpointProperties {\n /** The properties of connection state. */\n connectionState?: ConnectionStateProperties;\n /** The fqdns of managed private endpoint. */\n fqdns?: Array<string>;\n /** The group identifier of managed private endpoint. */\n groupId?: string;\n /** The private link resource identifier of managed private endpoint. */\n privateLinkResourceId?: string;\n /** The provisioning state of managed private endpoint. */\n provisioningState?: string;\n}\n\n/** The properties of connection state. */\nexport interface ConnectionStateProperties {}\n\n/** The scan ruleset. */\nexport interface ScanRulesetParent extends VersionedScanRuleset {\n kind:\n | \"ScanRuleset\"\n | \"AzureSubscription\"\n | \"AzureResourceGroup\"\n | \"AzureSynapseWorkspace\"\n | \"AzureSynapse\"\n | \"AdlsGen1\"\n | \"AdlsGen2\"\n | \"AmazonAccount\"\n | \"AmazonS3\"\n | \"AmazonSql\"\n | \"AzureCosmosDb\"\n | \"AzureDataExplorer\"\n | \"AzureFileService\"\n | \"AzureSqlDatabase\"\n | \"AmazonPostgreSql\"\n | \"AzurePostgreSql\"\n | \"SqlServerDatabase\"\n | \"AzureSqlDatabaseManagedInstance\"\n | \"AzureSqlDataWarehouse\"\n | \"AzureMySql\"\n | \"AzureStorage\"\n | \"Teradata\"\n | \"Oracle\"\n | \"SapS4Hana\"\n | \"SapEcc\"\n | \"PowerBI\";\n}\n\n/** The versioned scan ruleset. */\nexport interface VersionedScanRuleset extends ProxyResource {\n /** Versioned scan ruleset properties. */\n scanRulesetType?: \"Custom\" | \"System\";\n}\n\n/** The system scan ruleset. */\nexport interface SystemScanRulesetParent extends VersionedScanRuleset {\n kind:\n | \"SystemScanRuleset\"\n | \"AzureSubscription\"\n | \"AzureResourceGroup\"\n | \"AzureSynapseWorkspace\"\n | \"AzureSynapse\"\n | \"AdlsGen1\"\n | \"AdlsGen2\"\n | \"AmazonAccount\"\n | \"AmazonS3\"\n | \"AmazonSql\"\n | \"AzureCosmosDb\"\n | \"AzureDataExplorer\"\n | \"AzureFileService\"\n | \"AzureSqlDatabase\"\n | \"AmazonPostgreSql\"\n | \"AzurePostgreSql\"\n | \"SqlServerDatabase\"\n | \"AzureSqlDatabaseManagedInstance\"\n | \"AzureSqlDataWarehouse\"\n | \"AzureMySql\"\n | \"AzureStorage\"\n | \"Teradata\"\n | \"Oracle\"\n | \"SapS4Hana\"\n | \"SapEcc\"\n | \"PowerBI\";\n}\n\n/** The trigger object. */\nexport interface Trigger extends ProxyResource {\n /** The properties of trigger. */\n properties?: TriggerProperties;\n /** The validation error info of trigger. */\n validationErrorInfo?: string;\n}\n\n/** Properties detail of trigger. */\nexport interface TriggerProperties {\n /** The recurrence of trigger. */\n recurrence?: TriggerRecurrence;\n /** The recurrence interval of trigger. */\n recurrenceInterval?: string;\n /** The state of trigger. */\n state?: \"Enabled\" | \"Disabled\";\n /** The scan level of trigger. */\n scanLevel?: \"Full\" | \"Incremental\";\n /** The incremental scan start time of trigger. */\n incrementalScanStartTime?: Date | string;\n}\n\n/** The recurrence of trigger. */\nexport interface TriggerRecurrence {\n /** The frequency of trigger recurrence. */\n frequency?: \"Week\" | \"Month\" | \"Day\" | \"Hour\";\n /** The interval of trigger recurrence. */\n interval?: number;\n /** The start time of trigger recurrence. */\n startTime?: Date | string;\n /** The end time of trigger recurrence. */\n endTime?: Date | string;\n /** The schedule of trigger recurrence. */\n schedule?: RecurrenceSchedule;\n /** The time zone of trigger recurrence. */\n timeZone?: string;\n}\n\n/** Schedule of recurrence. */\nexport interface RecurrenceSchedule {\n /** The minutes of recurrence schedule. */\n minutes?: Array<number>;\n /** The hours of recurrence schedule. */\n hours?: Array<number>;\n /** The week days of recurrence schedule. */\n weekDays?: Array<\n \"Sunday\" | \"Monday\" | \"Tuesday\" | \"Wednesday\" | \"Thursday\" | \"Friday\" | \"Saturday\"\n >;\n /** Month days of recurrence schedule. */\n monthDays?: Array<number>;\n /** The monthly occurrences of recurrence schedule. */\n monthlyOccurrences?: Array<RecurrenceScheduleOccurrence>;\n}\n\n/** The occurrence of recurrence schedule. */\nexport interface RecurrenceScheduleOccurrence {\n /** The day of recurrence schedule occurrence. */\n day?: \"Sunday\" | \"Monday\" | \"Tuesday\" | \"Wednesday\" | \"Thursday\" | \"Friday\" | \"Saturday\";\n occurrence?: number;\n}\n\n/** The compute resource properties for managed integration runtime. */\nexport interface ManagedIntegrationRuntimeComputeProperties {\n /** The location for managed integration runtime. */\n location?: string;\n}\n\n/** Managed integration runtime type properties. */\nexport interface ManagedIntegrationRuntimeTypeProperties {\n /** The compute resource properties for managed integration runtime. */\n computeProperties?: ManagedIntegrationRuntimeComputeProperties;\n}\n\n/** The managed virtual network reference. */\nexport interface ManagedVirtualNetworkReference {\n /** Reference ManagedVirtualNetwork name. */\n referenceName?: string;\n /** Managed virtual network reference type. */\n type?: string;\n}\n\n/** The managed integration runtime properties. */\nexport interface ManagedIntegrationRuntimeProperties {\n /** Managed integration runtime type properties. */\n typeProperties?: ManagedIntegrationRuntimeTypeProperties;\n /** The managed virtual network reference. */\n managedVirtualNetworkReference?: ManagedVirtualNetworkReference;\n /** The managed integration runtime description. */\n description?: string;\n}\n\n/** The managed integration runtime. */\nexport interface ManagedIntegrationRuntime extends IntegrationRuntimeParent {\n /** The managed integration runtime properties. */\n properties?: ManagedIntegrationRuntimeProperties;\n kind: \"Managed\";\n}\n\n/** The self-hosted integration runtime properties. */\nexport interface SelfHostedIntegrationRuntimeProperties {\n /** The self-hosted integration runtime description. */\n description?: string;\n}\n\n/** Self-hosted integration runtime. */\nexport interface SelfHostedIntegrationRuntime extends IntegrationRuntimeParent {\n /** The self-hosted integration runtime properties. */\n properties?: SelfHostedIntegrationRuntimeProperties;\n kind: \"SelfHosted\";\n}\n\n/** Properties of Self-hosted integration runtime node. */\nexport interface SelfHostedIntegrationRuntimeNode {}\n\n/** Self-hosted integration runtime status type properties. */\nexport interface SelfHostedIntegrationRuntimeStatusTypeProperties {\n /** List of nodes for this integration runtime. */\n nodes?: Array<SelfHostedIntegrationRuntimeNode>;\n}\n\n/** Self-hosted integration runtime status properties. */\nexport interface SelfHostedIntegrationRuntimeStatusProperties {\n /** Self-hosted integration runtime status type properties. */\n typeProperties?: SelfHostedIntegrationRuntimeStatusTypeProperties;\n}\n\n/** Self-hosted integration runtime status. */\nexport interface SelfHostedIntegrationRuntimeStatus extends IntegrationRuntimeStatusParent {\n /** Self-hosted integration runtime status properties. */\n properties?: SelfHostedIntegrationRuntimeStatusProperties;\n kind: \"SelfHosted\";\n}\n\n/** Interactive query properties of managed integration runtime. */\nexport interface InteractiveQuery {\n /** Auto termination minutes of interactive query. */\n autoTerminationMinutes?: number;\n /** Status of interactive query. */\n status?: string;\n}\n\n/** Managed integration runtime status type properties. */\nexport interface ManagedIntegrationRuntimeStatusTypeProperties {\n /** The time at which the integration runtime was created, in ISO8601 format. */\n createTime?: Date | string;\n /** Interactive query properties of managed integration runtime. */\n interactiveQuery?: InteractiveQuery;\n}\n\n/** Managed integration runtime status properties. */\nexport interface ManagedIntegrationRuntimeStatusProperties {\n /** Managed integration runtime status type properties. */\n typeProperties?: ManagedIntegrationRuntimeStatusTypeProperties;\n}\n\n/** Managed integration runtime status. */\nexport interface ManagedIntegrationRuntimeStatus extends IntegrationRuntimeStatusParent {\n /** Managed integration runtime status properties. */\n properties?: ManagedIntegrationRuntimeStatusProperties;\n kind: \"Managed\";\n}\n\n/** The reference to collection. */\nexport interface CollectionReference {\n /** The reference name of collection reference. */\n referenceName?: string;\n /** The type of collection reference. */\n type?: string;\n}\n\n/** The properties of system classification rule. */\nexport interface SystemClassificationRuleProperties {\n description?: string;\n /** The classification name of system classification rule. */\n classificationName?: string;\n /** The rule status of system classification rule. */\n ruleStatus?: \"Enabled\" | \"Disabled\";\n}\n\n/** The rule of system classification. */\nexport interface SystemClassificationRule extends ClassificationRuleParent {\n /** The properties of system classification rule. */\n properties?: SystemClassificationRuleProperties;\n kind: \"System\";\n}\n\n/** Pattern of classification rule. */\nexport interface ClassificationRulePatternParent {\n kind: \"ClassificationRulePattern\" | \"Regex\";\n}\n\n/** The properties of custom classification rule. */\nexport interface CustomClassificationRuleProperties {\n minimumPercentageMatch?: number;\n /** The data patterns of custom classification rule. */\n dataPatterns?: Array<ClassificationRulePattern>;\n /** The column patterns of custom classification rule. */\n columnPatterns?: Array<ClassificationRulePattern>;\n /** The description of custom classification rule. */\n description?: string;\n /** The classification name of custom classification rule. */\n classificationName?: string;\n /** The rule status of custom classification rule. */\n ruleStatus?: \"Enabled\" | \"Disabled\";\n}\n\n/** Rule of custom classification. */\nexport interface CustomClassificationRule extends ClassificationRuleParent {\n /** The properties of custom classification rule. */\n properties?: CustomClassificationRuleProperties;\n kind: \"Custom\";\n}\n\n/** Pattern of regex classification rule. */\nexport interface RegexClassificationRulePattern extends ClassificationRulePatternParent {\n /** The pattern of regex classification rule pattern. */\n pattern?: string;\n kind: \"Regex\";\n}\n\n/** The store. */\nexport interface Store {\n /** The reference name of store. */\n referenceName?: string;\n /** The type of store. */\n type?: string;\n}\n\n/** The key vault secret. */\nexport interface KeyVaultSecret {\n /** The type of key vault secret. */\n type?: string;\n /** The secret name of key vault secret. */\n secretName?: string;\n /** The secret version of key vault secret. */\n secretVersion?: string;\n /** The store. */\n store?: Store;\n}\n\n/** Properties of key vault secret account key credential type. */\nexport interface KeyVaultSecretAccountKeyCredentialTypeProperties {\n /** The account key of key vault secret account key credential type. */\n accountKey?: KeyVaultSecret;\n}\n\n/** Properties of account key credential. */\nexport interface AccountKeyCredentialProperties {\n /** The type properties of account key credential. */\n typeProperties?: KeyVaultSecretAccountKeyCredentialTypeProperties;\n description?: string;\n}\n\n/** Credential type that uses Account Key for authentication. */\nexport interface AccountKeyAuthAzureKeyVaultCredential extends CredentialParent {\n /** The properties of account key auth Azure Key Vault credential. */\n properties?: AccountKeyCredentialProperties;\n kind: \"AccountKey\";\n}\n\n/** Properties of key vault secret user pass credential type. */\nexport interface KeyVaultSecretUserPassCredentialTypeProperties {\n /** User name. */\n user?: string;\n /** The password of key vault secret user pass credential type. */\n password?: KeyVaultSecret;\n}\n\n/** Properties of user pass credential. */\nexport interface UserPassCredentialProperties {\n /** Properties of key vault secret user pass credential type. */\n typeProperties?: KeyVaultSecretUserPassCredentialTypeProperties;\n description?: string;\n}\n\n/** Credential type that uses Basic authentication. */\nexport interface BasicAuthAzureKeyVaultCredential extends CredentialParent {\n /** The properties of basic auth Azure Key Vault credential. */\n properties?: UserPassCredentialProperties;\n kind: \"BasicAuth\";\n}\n\n/** The type properties of role ARN credential. */\nexport interface RoleARNCredentialTypeProperties {\n /** The role ARN of role ARN credential type properties. */\n roleARN?: string;\n}\n\n/** The properties of role ARN credential. */\nexport interface RoleARNCredentialProperties {\n /** The type properties of role ARN credential. */\n typeProperties?: RoleARNCredentialTypeProperties;\n /** The description of role ARN credential. */\n description?: string;\n}\n\n/** Credential type that uses Account ID, External ID and Role ARN for authentication. */\nexport interface RoleARNCredential extends CredentialParent {\n /** The properties of role ARN credential. */\n properties?: RoleARNCredentialProperties;\n kind: \"AmazonARN\";\n}\n\n/** The type properties of key vault secret service principal credential. */\nexport interface KeyVaultSecretServicePrinipalCredentialTypeProperties {\n /** The service principal ID of key vault secret service principal credential type properties. */\n servicePrincipalId?: string;\n /** The key vault secret. */\n servicePrincipalKey?: KeyVaultSecret;\n tenant?: string;\n}\n\n/** The properties of service principal Azure Key Vault credential. */\nexport interface ServicePrincipalAzureKeyVaultCredentialProperties {\n /** The type properties of key vault secret service principal credential. */\n typeProperties?: KeyVaultSecretServicePrinipalCredentialTypeProperties;\n description?: string;\n}\n\n/** Credential type that uses Tenant ID and Service principal ID for authentication. */\nexport interface ServicePrincipalAzureKeyVaultCredential extends CredentialParent {\n /** The properties of service principal Azure Key Vault credential. */\n properties?: ServicePrincipalAzureKeyVaultCredentialProperties;\n kind: \"ServicePrincipal\";\n}\n\n/** Credential type that uses Sql for authentication. */\nexport interface SqlAuthAzureKeyVaultCredential extends CredentialParent {\n /** Properties of user pass credential. */\n properties?: UserPassCredentialProperties;\n kind: \"SqlAuth\";\n}\n\n/** The type properties of key vault secret consumer key credential. */\nexport interface KeyVaultSecretConsumerKeyCredentialTypeProperties {\n /** User name. */\n user?: string;\n /** The password of key vault secret consumer key credential type properties. */\n password?: KeyVaultSecret;\n /** The consumer key of key vault secret consumer key credential type properties. */\n consumerKey?: string;\n /** The consumer secret of key vault secret consumer key credential type properties. */\n consumerSecret?: KeyVaultSecret;\n}\n\n/** The properties of consumer key credential. */\nexport interface ConsumerKeyCredentialProperties {\n /** The type properties of key vault secret consumer key credential. */\n typeProperties?: KeyVaultSecretConsumerKeyCredentialTypeProperties;\n /** Description of credential properties. */\n description?: string;\n}\n\n/** Credential type that uses consumer provided key and secret for authentication. */\nexport interface ConsumerKeyAuthAzureKeyVaultCredential extends CredentialParent {\n /** The properties of consumer key credential. */\n properties?: ConsumerKeyCredentialProperties;\n kind: \"ConsumerKeyAuth\";\n}\n\n/** The type properties of key vault secret delegated auth credential. */\nexport interface KeyVaultSecretDelegatedAuthCredentialTypeProperties {\n /** Credential type that uses Account ID, External ID and Role ARN for authentication. */\n clientId?: string;\n /** User name. */\n user?: string;\n /** Key vault secret. */\n password?: KeyVaultSecret;\n}\n\n/** The properties of delegated auth credential. */\nexport interface DelegatedAuthCredentialProperties {\n /** The type properties of key vault secret delegated auth credential. */\n typeProperties?: KeyVaultSecretDelegatedAuthCredentialTypeProperties;\n description?: string;\n}\n\n/** Credential type that uses Client ID for authentication. */\nexport interface DelegatedAuthAzureKeyVaultCredential extends CredentialParent {\n /** The properties of delegated auth Azure Key Vault credential. */\n properties?: DelegatedAuthCredentialProperties;\n kind: \"DelegatedAuth\";\n}\n\n/** The type properties of key vault secret managed identity Azure Key Vault credential. */\nexport interface KeyVaultSecretManagedIdentityAzureKeyVaultCredentialTypeProperties {\n /** The principal ID of key vault secret managed identity Azure Key Vault credential type properties. */\n principalId?: string;\n /** The tenant ID of key vault secret managed identity Azure Key Vault credential type properties. */\n tenantId?: string;\n /** The resource ID of key vault secret managed identity Azure Key Vault credential type properties. */\n resourceId?: string;\n}\n\n/** The properties of managed identity Azure Key Vault credential. */\nexport interface ManagedIdentityAzureKeyVaultCredentialProperties {\n /** The type properties of managed identity Azure Key Vault credential. */\n typeProperties?: KeyVaultSecretManagedIdentityAzureKeyVaultCredentialTypeProperties;\n description?: string;\n}\n\n/** Credential type that uses User assigned managed identities for authentication. */\nexport interface ManagedIdentityAzureKeyVaultCredential extends CredentialParent {\n /** The properties of managed identity Azure Key Vault credential. */\n properties?: ManagedIdentityAzureKeyVaultCredentialProperties;\n kind: \"ManagedIdentity\";\n}\n\n/** Properties of data source. */\nexport interface DataSourceProperties {\n /** The reference to collection. */\n collection?: CollectionReference;\n /** Data source collection moving state. */\n dataSourceCollectionMovingState?: \"Active\" | \"Moving\" | \"Failed\";\n}\n\n/** Properties of azure subscription. */\nexport interface AzureSubscriptionProperties extends DataSourceProperties {\n /** The subscription ID of azure subscription. */\n subscriptionId?: string;\n /** The resource ID of azure subscription. */\n resourceId?: string;\n /** The data use governance of azure subscription. */\n dataUseGovernance?:\n | \"Disabled\"\n | \"DisabledByAnotherAccount\"\n | \"Enabled\"\n | \"EnabledAtAncestorScope\";\n}\n\n/** Azure subscription data source. */\nexport interface AzureSubscriptionDataSource extends DataSourceParent {\n /** Azure subscription properties. */\n properties?: AzureSubscriptionProperties;\n kind: \"AzureSubscription\";\n}\n\n/** Azure resource group properties. */\nexport interface AzureResourceGroupProperties extends DataSourceProperties {\n /** Subscription id. */\n subscriptionId?: string;\n /** Resource group. */\n resourceGroup?: string;\n /** Resource id. */\n resourceId?: string;\n /** Data use governance. */\n dataUseGovernance?:\n | \"Disabled\"\n | \"DisabledByAnotherAccount\"\n | \"Enabled\"\n | \"EnabledAtAncestorScope\";\n}\n\n/** Azure resource group data source. */\nexport interface AzureResourceGroupDataSource extends DataSourceParent {\n /** Azure resource group properties. */\n properties?: AzureResourceGroupProperties;\n kind: \"AzureResourceGroup\";\n}\n\n/** Azure data source properties. */\nexport interface AzureDataSourceProperties extends DataSourceProperties {\n /** Resource group. */\n resourceGroup?: string;\n /** Subscription id. */\n subscriptionId?: string;\n /** Location. */\n location?: string;\n /** Resource name. */\n resourceName?: string;\n /** Resource id. */\n resourceId?: string;\n /** Data use governance. */\n dataUseGovernance?:\n | \"Disabled\"\n | \"DisabledByAnotherAccount\"\n | \"Enabled\"\n | \"EnabledAtAncestorScope\";\n}\n\n/** Azure synapse workspace data source properties. */\nexport interface AzureSynapseWorkspaceProperties extends AzureDataSourceProperties {\n /** The dedicated SQL endpoint of azure synapse workspace. */\n dedicatedSqlEndpoint?: string;\n /** The serverless SQL endpoint of azure synapse workspace. */\n serverlessSqlEndpoint?: string;\n}\n\n/** Azure synapse workspace data source. */\nexport interface AzureSynapseWorkspaceDataSource extends DataSourceParent {\n /** Azure synapse workspace properties. */\n properties?: AzureSynapseWorkspaceProperties;\n kind: \"AzureSynapseWorkspace\";\n}\n\n/** Azure synapse data source properties. */\nexport interface AzureSynapseProperties extends AzureDataSourceProperties {\n /** The SQL endpoint of azure synapse. */\n sqlEndpoint?: string;\n /** The SQL on demand endpoint of azure synapse. */\n sqlOnDemandEndpoint?: string;\n}\n\n/** Azure synapse data source. */\nexport interface AzureSynapseDataSource extends DataSourceParent {\n /** Azure synapse properties. */\n properties?: AzureSynapseProperties;\n kind: \"AzureSynapse\";\n}\n\n/** The properties of ADLS Gen1. */\nexport interface AdlsGen1Properties extends AzureDataSourceProperties {\n /** The endpoint of ADLS Gen1. */\n endpoint?: string;\n}\n\n/** The ADLS Gen1 data source. */\nexport interface AdlsGen1DataSource extends DataSourceParent {\n /** The properties of ADLS Gen1. */\n properties?: AdlsGen1Properties;\n kind: \"AdlsGen1\";\n}\n\n/** The properties of ADLS Gen2. */\nexport interface AdlsGen2Properties extends AzureDataSourceProperties {\n /** The endpoint of ADLS Gen2. */\n endpoint?: string;\n}\n\n/** The ADLS Gen2 data source. */\nexport interface AdlsGen2DataSource extends DataSourceParent {\n /** The properties of ADLS Gen2. */\n properties?: AdlsGen2Properties;\n kind: \"AdlsGen2\";\n}\n\n/** The properties of Amazon account. */\nexport interface AmazonAccountProperties extends DataSourceProperties {\n /** AWS account id. */\n awsAccountId?: string;\n /** Role arn. */\n roleARN?: string;\n}\n\n/** The Amazon account data source. */\nexport interface AmazonAccountDataSource extends DataSourceParent {\n /** The properties of Amazon account. */\n properties?: AmazonAccountProperties;\n kind: \"AmazonAccount\";\n}\n\n/** The properties of Amazon S3. */\nexport interface AmazonS3Properties extends DataSourceProperties {\n /** Service URL. */\n serviceUrl?: string;\n /** Role ARN. */\n roleARN?: string;\n}\n\n/** The Amazon S3 data source. */\nexport interface AmazonS3DataSource extends DataSourceParent {\n /** Amazon S3 properties. */\n properties?: AmazonS3Properties;\n kind: \"AmazonS3\";\n}\n\n/** The properties of Amazon SQL. */\nexport interface AmazonSqlProperties extends DataSourceProperties {\n /** Server Endpoint. */\n serverEndpoint?: string;\n /** Port. */\n port?: number;\n /** Vpc Endpoint Service Name. */\n vpcEndpointServiceName?: string;\n}\n\n/** The Amazon SQL data source. */\nexport interface AmazonSqlDataSource extends DataSourceParent {\n /** Amazon SQL properties. */\n properties?: AmazonSqlProperties;\n kind: \"AmazonSql\";\n}\n\n/** The properties of Azure Cosmos DB. */\nexport interface AzureCosmosDbProperties extends AzureDataSourceProperties {\n /** The account URI of Azure Cosmos DB. */\n accountUri?: string;\n}\n\n/** The Azure Cosmos DB data source. */\nexport interface AzureCosmosDbDataSource extends DataSourceParent {\n /** The properties of Azure Cosmos DB. */\n properties?: AzureCosmosDbProperties;\n kind: \"AzureCosmosDb\";\n}\n\n/** The properties of azure data explorer. */\nexport interface AzureDataExplorerProperties extends AzureDataSourceProperties {\n endpoint?: string;\n}\n\n/** The azure data explorer data source. */\nexport interface AzureDataExplorerDataSource extends DataSourceParent {\n /** The properties of azure data explorer. */\n properties?: AzureDataExplorerProperties;\n kind: \"AzureDataExplorer\";\n}\n\n/** The properties of azure file service. */\nexport interface AzureFileServiceProperties extends AzureDataSourceProperties {\n /** The endpoint of azure file service. */\n endpoint?: string;\n}\n\n/** The azure file service data source. */\nexport interface AzureFileServiceDataSource extends DataSourceParent {\n /** The properties of azure file service. */\n properties?: AzureFileServiceProperties;\n kind: \"AzureFileService\";\n}\n\n/** The properties of Azure SQL database. */\nexport interface AzureSqlDatabaseProperties extends AzureDataSourceProperties {\n /** The server endpoint of Azure SQL database. */\n serverEndpoint?: string;\n}\n\n/** The Azure SQL database data source. */\nexport interface AzureSqlDatabaseDataSource extends DataSourceParent {\n /** The properties of Azure SQL database. */\n properties?: AzureSqlDatabaseProperties;\n kind: \"AzureSqlDatabase\";\n}\n\n/** The properties of Amazon Postgre SQL. */\nexport interface AmazonPostgreSqlProperties extends DataSourceProperties {\n /** The server endpoint of Amazon Postgre SQL. */\n serverEndpoint?: string;\n /** The port of Amazon Postgre SQL. */\n port?: number;\n /** The vpc endpoint service name of Amazon Postgre SQL. */\n vpcEndpointServiceName?: string;\n}\n\n/** The Amazon Postgre SQL data source. */\nexport interface AmazonPostgreSqlDataSource extends DataSourceParent {\n /** The properties of Amazon Postgre SQL. */\n properties?: AmazonPostgreSqlProperties;\n kind: \"AmazonPostgreSql\";\n}\n\n/** The properties of Azure Postgre SQL. */\nexport interface AzurePostgreSqlProperties extends AzureDataSourceProperties {\n /** The server endpoint of Azure Postgre SQL. */\n serverEndpoint?: string;\n port?: number;\n}\n\n/** The Azure Postgre SQL data source. */\nexport interface AzurePostgreSqlDataSource extends DataSourceParent {\n /** The properties of Azure Postgre SQL. */\n properties?: AzurePostgreSqlProperties;\n kind: \"AzurePostgreSql\";\n}\n\n/** The properties of sql server database. */\nexport interface SqlServerDatabaseProperties extends AzureDataSourceProperties {\n /** The server endpoint of sql server database. */\n serverEndpoint?: string;\n}\n\n/** The sql server database data source. */\nexport interface SqlServerDatabaseDataSource extends DataSourceParent {\n /** The properties of sql server database. */\n properties?: SqlServerDatabaseProperties;\n kind: \"SqlServerDatabase\";\n}\n\n/** The properties of Azure SQL database managed instance. */\nexport interface AzureSqlDatabaseManagedInstanceProperties extends AzureDataSourceProperties {\n serverEndpoint?: string;\n}\n\n/** The Azure SQL database managed instance data source. */\nexport interface AzureSqlDatabaseManagedInstanceDataSource extends DataSourceParent {\n /** The properties of Azure SQL database managed instance. */\n properties?: AzureSqlDatabaseManagedInstanceProperties;\n kind: \"AzureSqlDatabaseManagedInstance\";\n}\n\n/** The properties of Azure SQL data warehouse. */\nexport interface AzureSqlDataWarehouseProperties extends AzureDataSourceProperties {\n serverEndpoint?: string;\n}\n\n/** The Azure SQL data warehouse data source. */\nexport interface AzureSqlDataWarehouseDataSource extends DataSourceParent {\n /** The properties of Azure SQL data warehouse. */\n properties?: AzureSqlDataWarehouseProperties;\n kind: \"AzureSqlDataWarehouse\";\n}\n\n/** Azure MySQL data source properties. */\nexport interface AzureMySqlProperties extends AzureDataSourceProperties {\n /** The server endpoint of azure my sql. */\n serverEndpoint?: string;\n /** The port of azure my sql. */\n port?: number;\n}\n\n/** Azure MySQL data source. */\nexport interface AzureMySqlDataSource extends DataSourceParent {\n /** Azure MySQL properties. */\n properties?: AzureMySqlProperties;\n kind: \"AzureMySql\";\n}\n\n/** The properties of Azure Storage. */\nexport interface AzureStorageProperties extends AzureDataSourceProperties {\n /** The endpoint of Azure Storage. */\n endpoint?: string;\n}\n\n/** The Azure Storage data source. */\nexport interface AzureStorageDataSource extends DataSourceParent {\n /** The properties of Azure Storage. */\n properties?: AzureStorageProperties;\n kind: \"AzureStorage\";\n}\n\n/** The properties of teradata. */\nexport interface TeradataProperties extends DataSourceProperties {\n /** The host of teradata. */\n host?: string;\n}\n\n/** The teradata data source. */\nexport interface TeradataDataSource extends DataSourceParent {\n /** The properties of teradata. */\n properties?: TeradataProperties;\n kind: \"Teradata\";\n}\n\n/** The properties of oracle. */\nexport interface OracleProperties extends DataSourceProperties {\n /** The host of Oracle server. */\n host?: string;\n /** The port of Oracle server. */\n port?: string;\n /** The service of Oracle server. */\n service?: string;\n}\n\n/** The oracle data source. */\nexport interface OracleDataSource extends DataSourceParent {\n /** The properties of oracle. */\n properties?: OracleProperties;\n kind: \"Oracle\";\n}\n\n/** SAP S/4HANA data source properties. */\nexport interface SapS4HanaProperties extends DataSourceProperties {\n /** The application server of SAP S/4HANA. */\n applicationServer?: string;\n /** The system number of SAP S/4HANA. */\n systemNumber?: string;\n}\n\n/** SAP S/4HANA data source. */\nexport interface SapS4HanaDataSource extends DataSourceParent {\n /** SAP S/4HANA data source properties. */\n properties?: SapS4HanaProperties;\n kind: \"SapS4Hana\";\n}\n\n/** SAP ECC properties. */\nexport interface SapEccProperties extends DataSourceProperties {\n /** The application server of SAP ECC. */\n applicationServer?: string;\n /** The system number of SAP ECC. */\n systemNumber?: string;\n}\n\n/** SAP ECC data source. */\nexport interface SapEccDataSource extends DataSourceParent {\n /** SAP ECC properties. */\n properties?: SapEccProperties;\n kind: \"SapEcc\";\n}\n\n/** Power BI properties. */\nexport interface PowerBIProperties extends DataSourceProperties {\n /** The tenant of Power BI. */\n tenant?: string;\n}\n\n/** Power BI data source. */\nexport interface PowerBIDataSource extends DataSourceParent {\n /** Power BI properties. */\n properties?: PowerBIProperties;\n kind: \"PowerBI\";\n}\n\n/** Scan ruleset properties. */\nexport interface ScanRulesetProperties {\n description?: string;\n /** The system classifications that are excluded from the scan ruleset. */\n excludedSystemClassifications?: Array<string>;\n /** The custom classification rule names that are included in the scan ruleset. */\n includedCustomClassificationRuleNames?: Array<string>;\n}\n\n/** Azure subscription scan ruleset properties. */\nexport interface AzureSubscriptionScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure subscription scan ruleset. */\nexport interface AzureSubscriptionScanRuleset extends ScanRulesetParent {\n /** Azure subscription scan ruleset properties. */\n properties?: AzureSubscriptionScanRulesetProperties;\n kind: \"AzureSubscription\";\n}\n\n/** Azure resource group scan ruleset properties. */\nexport interface AzureResourceGroupScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure resource group scan ruleset. */\nexport interface AzureResourceGroupScanRuleset extends ScanRulesetParent {\n /** Azure resource group scan ruleset properties. */\n properties?: AzureResourceGroupScanRulesetProperties;\n kind: \"AzureResourceGroup\";\n}\n\n/** Azure synapse workspace scan ruleset properties. */\nexport interface AzureSynapseWorkspaceScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure synapse workspace scan ruleset. */\nexport interface AzureSynapseWorkspaceScanRuleset extends ScanRulesetParent {\n /** Azure synapse workspace scan ruleset properties. */\n properties?: AzureSynapseWorkspaceScanRulesetProperties;\n kind: \"AzureSynapseWorkspace\";\n}\n\n/** Azure synapse scan ruleset properties. */\nexport interface AzureSynapseScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure synapse scan ruleset. */\nexport interface AzureSynapseScanRuleset extends ScanRulesetParent {\n /** Azure synapse scan ruleset properties. */\n properties?: AzureSynapseScanRulesetProperties;\n kind: \"AzureSynapse\";\n}\n\n/** Custom file type. */\nexport interface CustomFileType {\n /** The built-in file type of the custom file type. */\n builtInType?:\n | \"AVRO\"\n | \"ORC\"\n | \"PARQUET\"\n | \"JSON\"\n | \"TXT\"\n | \"XML\"\n | \"Documents\"\n | \"CSV\"\n | \"PSV\"\n | \"SSV\"\n | \"TSV\"\n | \"GZ\"\n | \"DOC\"\n | \"DOCM\"\n | \"DOCX\"\n | \"DOT\"\n | \"ODP\"\n | \"ODS\"\n | \"ODT\"\n | \"PDF\"\n | \"POT\"\n | \"PPS\"\n | \"PPSX\"\n | \"PPT\"\n | \"PPTM\"\n | \"PPTX\"\n | \"XLC\"\n | \"XLS\"\n | \"XLSB\"\n | \"XLSM\"\n | \"XLSX\"\n | \"XLT\";\n /** The custom delimiter of the custom file type. */\n customDelimiter?: string;\n}\n\n/** Custom file extension. */\nexport interface CustomFileExtension {\n /** The custom file type of the custom file extension. */\n customFileType?: CustomFileType;\n /** The description of the custom file extension. */\n description?: string;\n /** The flag to indicate whether the custom file extension is enabled or not. */\n enabled?: boolean;\n /** The file extension of the custom file extension. */\n fileExtension?: string;\n}\n\n/** Scanning rule. */\nexport interface ScanningRule {\n fileExtensions?: Array<\n | \"AVRO\"\n | \"ORC\"\n | \"PARQUET\"\n | \"JSON\"\n | \"TXT\"\n | \"XML\"\n | \"Documents\"\n | \"CSV\"\n | \"PSV\"\n | \"SSV\"\n | \"TSV\"\n | \"GZ\"\n | \"DOC\"\n | \"DOCM\"\n | \"DOCX\"\n | \"DOT\"\n | \"ODP\"\n | \"ODS\"\n | \"ODT\"\n | \"PDF\"\n | \"POT\"\n | \"PPS\"\n | \"PPSX\"\n | \"PPT\"\n | \"PPTM\"\n | \"PPTX\"\n | \"XLC\"\n | \"XLS\"\n | \"XLSB\"\n | \"XLSM\"\n | \"XLSX\"\n | \"XLT\"\n >;\n /** The custom file extensions of the scanning rule. */\n customFileExtensions?: Array<CustomFileExtension>;\n}\n\n/** Scanning rule scan ruleset properties. */\nexport interface ScanningRuleScanRulesetProperties extends ScanRulesetProperties {\n /** The scanning rule of the scanning rule scan ruleset. */\n scanningRule?: ScanningRule;\n}\n\n/** ADLS Gen1 scan ruleset properties. */\nexport interface AdlsGen1ScanRulesetProperties extends ScanningRuleScanRulesetProperties {}\n\n/** ADLS Gen1 scan ruleset. */\nexport interface AdlsGen1ScanRuleset extends ScanRulesetParent {\n /** ADLS Gen1 scan ruleset properties. */\n properties?: AdlsGen1ScanRulesetProperties;\n kind: \"AdlsGen1\";\n}\n\n/** Adls gen 2 scan ruleset properties. */\nexport interface AdlsGen2ScanRulesetProperties extends ScanningRuleScanRulesetProperties {}\n\n/** Adls gen 2 scan ruleset. */\nexport interface AdlsGen2ScanRuleset extends ScanRulesetParent {\n /** Adls gen 2 scan ruleset properties. */\n properties?: AdlsGen2ScanRulesetProperties;\n kind: \"AdlsGen2\";\n}\n\n/** Amazon account scan ruleset properties. */\nexport interface AmazonAccountScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Amazon account scan ruleset. */\nexport interface AmazonAccountScanRuleset extends ScanRulesetParent {\n /** Amazon account scan ruleset properties. */\n properties?: AmazonAccountScanRulesetProperties;\n kind: \"AmazonAccount\";\n}\n\n/** Amazon S3 scan ruleset properties. */\nexport interface AmazonS3ScanRulesetProperties extends ScanningRuleScanRulesetProperties {}\n\n/** Amazon S3 scan ruleset. */\nexport interface AmazonS3ScanRuleset extends ScanRulesetParent {\n /** Amazon S3 scan ruleset properties. */\n properties?: AmazonS3ScanRulesetProperties;\n kind: \"AmazonS3\";\n}\n\n/** Amazon SQL scan ruleset properties. */\nexport interface AmazonSqlScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Amazon SQL scan ruleset. */\nexport interface AmazonSqlScanRuleset extends ScanRulesetParent {\n /** Amazon SQL scan ruleset properties. */\n properties?: AmazonSqlScanRulesetProperties;\n kind: \"AmazonSql\";\n}\n\n/** Azure Cosmos DB scan ruleset properties. */\nexport interface AzureCosmosDbScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure Cosmos DB scan ruleset. */\nexport interface AzureCosmosDbScanRuleset extends ScanRulesetParent {\n /** Azure Cosmos DB scan ruleset properties. */\n properties?: AzureCosmosDbScanRulesetProperties;\n kind: \"AzureCosmosDb\";\n}\n\n/** Azure data explorer scan ruleset properties. */\nexport interface AzureDataExplorerScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure data explorer scan ruleset. */\nexport interface AzureDataExplorerScanRuleset extends ScanRulesetParent {\n /** Azure data explorer scan ruleset properties. */\n properties?: AzureDataExplorerScanRulesetProperties;\n kind: \"AzureDataExplorer\";\n}\n\n/** Azure file service scan ruleset properties. */\nexport interface AzureFileServiceScanRulesetProperties extends ScanningRuleScanRulesetProperties {}\n\n/** Azure file service scan ruleset. */\nexport interface AzureFileServiceScanRuleset extends ScanRulesetParent {\n /** Azure file service scan ruleset properties. */\n properties?: AzureFileServiceScanRulesetProperties;\n kind: \"AzureFileService\";\n}\n\n/** Azure SQL db scan ruleset properties. */\nexport interface AzureSqlDatabaseScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure SQL db scan ruleset. */\nexport interface AzureSqlDatabaseScanRuleset extends ScanRulesetParent {\n /** Azure SQL db scan ruleset properties. */\n properties?: AzureSqlDatabaseScanRulesetProperties;\n kind: \"AzureSqlDatabase\";\n}\n\n/** Azure Postgre SQL scan ruleset properties. */\nexport interface AmazonPostgreSqlScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure Postgre SQL scan ruleset. */\nexport interface AmazonPostgreSqlScanRuleset extends ScanRulesetParent {\n /** Azure Postgre SQL scan ruleset properties. */\n properties?: AmazonPostgreSqlScanRulesetProperties;\n kind: \"AmazonPostgreSql\";\n}\n\n/** Azure Postgre SQL scan ruleset properties. */\nexport interface AzurePostgreSqlScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure Postgre SQL scan ruleset. */\nexport interface AzurePostgreSqlScanRuleset extends ScanRulesetParent {\n /** Azure Postgre SQL scan ruleset properties. */\n properties?: AzurePostgreSqlScanRulesetProperties;\n kind: \"AzurePostgreSql\";\n}\n\n/** Sql server database scan ruleset properties. */\nexport interface SqlServerDatabaseScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Sql server database scan ruleset. */\nexport interface SqlServerDatabaseScanRuleset extends ScanRulesetParent {\n /** Sql server database scan ruleset properties. */\n properties?: SqlServerDatabaseScanRulesetProperties;\n kind: \"SqlServerDatabase\";\n}\n\n/** Azure SQL db managed instance scan ruleset properties. */\nexport interface AzureSqlDatabaseManagedInstanceScanRulesetProperties\n extends ScanRulesetProperties {}\n\n/** Azure SQL db managed instance scan ruleset. */\nexport interface AzureSqlDatabaseManagedInstanceScanRuleset extends ScanRulesetParent {\n /** Azure SQL db managed instance scan ruleset properties. */\n properties?: AzureSqlDatabaseManagedInstanceScanRulesetProperties;\n kind: \"AzureSqlDatabaseManagedInstance\";\n}\n\n/** Azure SQL data warehouse scan ruleset properties. */\nexport interface AzureSqlDataWarehouseScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure SQL data warehouse scan ruleset. */\nexport interface AzureSqlDataWarehouseScanRuleset extends ScanRulesetParent {\n /** Azure SQL data warehouse scan ruleset properties. */\n properties?: AzureSqlDataWarehouseScanRulesetProperties;\n kind: \"AzureSqlDataWarehouse\";\n}\n\n/** Azure MySQL scan ruleset properties. */\nexport interface AzureMySqlScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure MySQL scan ruleset. */\nexport interface AzureMySqlScanRuleset extends ScanRulesetParent {\n /** Azure MySQL scan ruleset properties. */\n properties?: AzureMySqlScanRulesetProperties;\n kind: \"AzureMySql\";\n}\n\n/** Azure Storage scan ruleset properties. */\nexport interface AzureStorageScanRulesetProperties extends ScanningRuleScanRulesetProperties {}\n\n/** Azure Storage scan ruleset. */\nexport interface AzureStorageScanRuleset extends ScanRulesetParent {\n /** Azure Storage scan ruleset properties. */\n properties?: AzureStorageScanRulesetProperties;\n kind: \"AzureStorage\";\n}\n\n/** Teradata scan ruleset properties. */\nexport interface TeradataScanRulesetProperties extends ScanningRuleScanRulesetProperties {}\n\n/** Teradata scan ruleset. */\nexport interface TeradataScanRuleset extends ScanRulesetParent {\n /** Teradata scan ruleset properties. */\n properties?: TeradataScanRulesetProperties;\n kind: \"Teradata\";\n}\n\n/** Oracle scan rule set properties. */\nexport interface OracleScanRulesetProperties extends ScanningRuleScanRulesetProperties {}\n\n/** Oracle scan ruleset. */\nexport interface OracleScanRuleset extends ScanRulesetParent {\n /** Oracle scan rule set properties. */\n properties?: OracleScanRulesetProperties;\n kind: \"Oracle\";\n}\n\n/** SAP S/4HANA scan ruleset properties. */\nexport interface SapS4HanaScanRulesetProperties extends ScanRulesetProperties {}\n\n/** SAP S/4HANA scan ruleset. */\nexport interface SapS4HanaScanRuleset extends ScanRulesetParent {\n /** SAP S/4HANA scan ruleset properties. */\n properties?: SapS4HanaScanRulesetProperties;\n kind: \"SapS4Hana\";\n}\n\n/** SAP ECC scan ruleset properties. */\nexport interface SapEccScanRulesetProperties extends ScanRulesetProperties {}\n\n/** SAP ECC scan ruleset. */\nexport interface SapEccScanRuleset extends ScanRulesetParent {\n /** SAP ECC scan ruleset properties. */\n properties?: SapEccScanRulesetProperties;\n kind: \"SapEcc\";\n}\n\n/** Power BI scan ruleset properties. */\nexport interface PowerBIScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Power BI scan ruleset. */\nexport interface PowerBIScanRuleset extends ScanRulesetParent {\n /** Power BI scan ruleset properties. */\n properties?: PowerBIScanRulesetProperties;\n kind: \"PowerBI\";\n}\n\n/** Resource name filter. */\nexport interface ResourceNameFilter {\n excludePrefixes?: Array<string>;\n includePrefixes?: Array<string>;\n resources?: Array<string>;\n}\n\n/** The credential reference. */\nexport interface CredentialReference {\n /** The reference name of the credential. */\n referenceName?: string;\n /** The type of the credential. */\n credentialType?:\n | \"AccountKey\"\n | \"ServicePrincipal\"\n | \"BasicAuth\"\n | \"SqlAuth\"\n | \"AmazonARN\"\n | \"ConsumerKeyAuth\"\n | \"DelegatedAuth\"\n | \"ManagedIdentity\";\n}\n\n/** Resource type filter. */\nexport interface ResourceTypeFilter {\n /** The name of the scan ruleset. */\n scanRulesetName?: string;\n /** The type of the scan ruleset. */\n scanRulesetType?: \"Custom\" | \"System\";\n /** Resource name filter. */\n resourceNameFilter?: ResourceNameFilter;\n /** The credential reference. */\n credential?: CredentialReference;\n}\n\n/** The integration runtime reference. */\nexport interface ConnectedVia {\n /** The reference name of the integration runtime. */\n referenceName?: string;\n}\n\n/** Scan properties. */\nexport interface ScanProperties {\n /** The name of the scan ruleset. */\n scanRulesetName?: string;\n /** The name of the business rule set. */\n businessRuleSetName?: string;\n /** The type of the scan ruleset. */\n scanRulesetType?: \"Custom\" | \"System\";\n /** The collection reference of the scan. */\n collection?: CollectionReference;\n /** The domain of the scan. */\n domain?: string;\n /** The number of workers of the scan. */\n workers?: number;\n /** The integration runtime reference of the scan. */\n connectedVia?: ConnectedVia;\n /** The flag to indicate whether the scan is a preset scan or not. */\n isPresetScan?: boolean;\n /** The flag to indicate whether the live view is enabled or not. */\n isLiveViewEnabled?: boolean;\n /** The number of parallel scans. */\n parallelScanCount?: number;\n /** The log level of the scan. */\n logLevel?: string;\n}\n\n/** Expanding resource scan properties. */\nexport interface ExpandingResourceScanProperties extends ScanProperties {\n /** Resource types of scan properties in expanding resources. */\n resourceTypes?: ExpandingResourceScanPropertiesResourceTypes;\n /** The credential reference. */\n credential?: CredentialReference;\n}\n\n/** Resource types of scan properties in expanding resources. */\nexport interface ExpandingResourceScanPropertiesResourceTypes {\n /** Resource type filter. */\n none?: ResourceTypeFilter;\n /** Resource type filter. */\n azureSubscription?: ResourceTypeFilter;\n /** Resource type filter. */\n azureResourceGroup?: ResourceTypeFilter;\n /** Resource type filter. */\n azureSynapseWorkspace?: ResourceTypeFilter;\n /** Resource type filter. */\n azureSynapse?: ResourceTypeFilter;\n /** Resource type filter. */\n adlsGen1?: ResourceTypeFilter;\n /** Resource type filter. */\n adlsGen2?: ResourceTypeFilter;\n /** Resource type filter. */\n amazonAccount?: ResourceTypeFilter;\n /** Resource type filter. */\n amazonS3?: ResourceTypeFilter;\n /** Resource type filter. */\n amazonSql?: ResourceTypeFilter;\n /** Resource type filter. */\n azureCosmosDb?: ResourceTypeFilter;\n /** Resource type filter. */\n azureDataExplorer?: ResourceTypeFilter;\n /** Resource type filter. */\n azureFileService?: ResourceTypeFilter;\n /** Resource type filter. */\n azureSqlDatabase?: ResourceTypeFilter;\n /** Resource type filter. */\n amazonPostgreSql?: ResourceTypeFilter;\n /** Resource type filter. */\n azurePostgreSql?: ResourceTypeFilter;\n /** Resource type filter. */\n sqlServerDatabase?: ResourceTypeFilter;\n /** Resource type filter. */\n azureSqlDatabaseManagedInstance?: ResourceTypeFilter;\n /** Resource type filter. */\n azureSqlDataWarehouse?: ResourceTypeFilter;\n /** Resource type filter. */\n azureMySql?: ResourceTypeFilter;\n /** Resource type filter. */\n azureStorage?: ResourceTypeFilter;\n /** Resource type filter. */\n teradata?: ResourceTypeFilter;\n /** Resource type filter. */\n oracle?: ResourceTypeFilter;\n /** Resource type filter. */\n sapS4Hana?: ResourceTypeFilter;\n /** Resource type filter. */\n sapEcc?: ResourceTypeFilter;\n /** Resource type filter. */\n powerBI?: ResourceTypeFilter;\n}\n\n/** Azure subscription credential scan properties. */\nexport interface AzureSubscriptionCredentialScanProperties\n extends ExpandingResourceScanProperties {}\n\n/** Azure subscription credential scan. */\nexport interface AzureSubscriptionCredentialScan extends ScanParent {\n /** Azure subscription credential scan properties. */\n properties?: AzureSubscriptionCredentialScanProperties;\n kind: \"AzureSubscriptionCredential\";\n}\n\n/** Azure subscription MSI scan properties. */\nexport interface AzureSubscriptionMsiScanProperties extends ExpandingResourceScanProperties {}\n\n/** Azure subscription MSI scan. */\nexport interface AzureSubscriptionMsiScan extends ScanParent {\n /** Azure subscription MSI scan properties. */\n properties?: AzureSubscriptionMsiScanProperties;\n kind: \"AzureSubscriptionMsi\";\n}\n\n/** Azure resource group credential scan properties. */\nexport interface AzureResourceGroupCredentialScanProperties\n extends ExpandingResourceScanProperties {}\n\n/** Azure resource group credential scan. */\nexport interface AzureResourceGroupCredentialScan extends ScanParent {\n /** Azure resource group credential scan properties. */\n properties?: AzureResourceGroupCredentialScanProperties;\n kind: \"AzureResourceGroupCredential\";\n}\n\n/** Azure resource group MSI scan properties. */\nexport interface AzureResourceGroupMsiScanProperties extends ExpandingResourceScanProperties {}\n\n/** Azure resource group MSI scan. */\nexport interface AzureResourceGroupMsiScan extends ScanParent {\n /** Azure resource group MSI scan properties. */\n properties?: AzureResourceGroupMsiScanProperties;\n kind: \"AzureResourceGroupMsi\";\n}\n\n/** Azure synapse workspace credential scan properties. */\nexport interface AzureSynapseWorkspaceCredentialScanProperties\n extends ExpandingResourceScanProperties {}\n\n/** Azure synapse workspace credential scan. */\nexport interface AzureSynapseWorkspaceCredentialScan extends ScanParent {\n /** Azure synapse workspace credential scan properties. */\n properties?: AzureSynapseWorkspaceCredentialScanProperties;\n kind: \"AzureSynapseWorkspaceCredential\";\n}\n\n/** Azure synapse workspace MSI scan properties. */\nexport interface AzureSynapseWorkspaceMsiScanProperties extends ExpandingResourceScanProperties {}\n\n/** Azure synapse workspace MSI scan. */\nexport interface AzureSynapseWorkspaceMsiScan extends ScanParent {\n /** Azure synapse workspace MSI scan properties. */\n properties?: AzureSynapseWorkspaceMsiScanProperties;\n kind: \"AzureSynapseWorkspaceMsi\";\n}\n\n/** Azure synapse credential scan properties. */\nexport interface AzureSynapseCredentialScanProperties extends ExpandingResourceScanProperties {}\n\n/** Azure synapse credential scan. */\nexport interface AzureSynapseCredentialScan extends ScanParent {\n /** Azure synapse credential scan properties. */\n properties?: AzureSynapseCredentialScanProperties;\n kind: \"AzureSynapseCredential\";\n}\n\n/** Azure synapse MSI scan properties. */\nexport interface AzureSynapseMsiScanProperties extends ExpandingResourceScanProperties {}\n\n/** Azure synapse MSI scan. */\nexport interface AzureSynapseMsiScan extends ScanParent {\n /** Azure synapse MSI scan properties. */\n properties?: AzureSynapseMsiScanProperties;\n kind: \"AzureSynapseMsi\";\n}\n\n/** ADLS Gen1 credential scan properties. */\nexport interface AdlsGen1CredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n}\n\n/** ADLS Gen1 credential scan. */\nexport interface AdlsGen1CredentialScan extends ScanParent {\n /** ADLS Gen1 credential scan properties. */\n properties?: AdlsGen1CredentialScanProperties;\n kind: \"AdlsGen1Credential\";\n}\n\n/** ADLS Gen1 MSI scan properties. */\nexport interface AdlsGen1MsiScanProperties extends ScanProperties {}\n\n/** ADLS Gen1 MSI scan. */\nexport interface AdlsGen1MsiScan extends ScanParent {\n /** ADLS Gen1 MSI scan properties. */\n properties?: AdlsGen1MsiScanProperties;\n kind: \"AdlsGen1Msi\";\n}\n\n/** ADLS Gen2 credential scan properties. */\nexport interface AdlsGen2CredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n}\n\n/** ADLS Gen2 credential scan. */\nexport interface AdlsGen2CredentialScan extends ScanParent {\n /** ADLS Gen2 credential scan properties. */\n properties?: AdlsGen2CredentialScanProperties;\n kind: \"AdlsGen2Credential\";\n}\n\n/** ADLS Gen2 MSI scan properties. */\nexport interface AdlsGen2MsiScanProperties extends ScanProperties {}\n\n/** ADLS Gen2 MSI scan. */\nexport interface AdlsGen2MsiScan extends ScanParent {\n /** ADLS Gen2 MSI scan properties. */\n properties?: AdlsGen2MsiScanProperties;\n kind: \"AdlsGen2Msi\";\n}\n\n/** Amazon account credential scan properties. */\nexport interface AmazonAccountCredentialScanProperties extends ExpandingResourceScanProperties {}\n\n/** Amazon account credential scan. */\nexport interface AmazonAccountCredentialScan extends ScanParent {\n /** Amazon account credential scan properties. */\n properties?: AmazonAccountCredentialScanProperties;\n kind: \"AmazonAccountCredential\";\n}\n\n/** Amazon S3 credential scan properties. */\nexport interface AmazonS3CredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n roleARN?: string;\n isMauiScan?: boolean;\n}\n\n/** Amazon S3 credential scan. */\nexport interface AmazonS3CredentialScan extends ScanParent {\n /** Amazon S3 credential scan properties. */\n properties?: AmazonS3CredentialScanProperties;\n kind: \"AmazonS3Credential\";\n}\n\n/** Amazon S3 role ARN scan properties. */\nexport interface AmazonS3RoleARNScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n /** The role ARN of the scan. */\n roleARN?: string;\n /** The flag to indicate whether the scan is a Maui scan or not. */\n isMauiScan?: boolean;\n}\n\n/** Amazon S3 role ARN scan. */\nexport interface AmazonS3RoleARNScan extends ScanParent {\n /** Amazon S3 role ARN scan properties. */\n properties?: AmazonS3RoleARNScanProperties;\n kind: \"AmazonS3RoleARN\";\n}\n\n/** Amazon SQL credential scan properties. */\nexport interface AmazonSqlCredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n /** The endpoint of Amazon SQL server. */\n serverEndpoint?: string;\n /** The database name. */\n databaseName?: string;\n /** The port of Amazon SQL server. */\n port?: number;\n /** The VPC endpoint service name of Amazon SQL server. */\n vpcEndpointServiceName?: string;\n}\n\n/** Amazon SQL credential scan. */\nexport interface AmazonSqlCredentialScan extends ScanParent {\n /** Amazon SQL credential scan properties. */\n properties?: AmazonSqlCredentialScanProperties;\n kind: \"AmazonSqlCredential\";\n}\n\n/** Azure Cosmos DB credential scan properties. */\nexport interface AzureCosmosDbCredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n databaseName?: string;\n}\n\n/** Azure Cosmos DB credential scan. */\nexport interface AzureCosmosDbCredentialScan extends ScanParent {\n /** Azure Cosmos DB credential scan properties. */\n properties?: AzureCosmosDbCredentialScanProperties;\n kind: \"AzureCosmosDbCredential\";\n}\n\n/** Azure data Explorer credential scan properties. */\nexport interface AzureDataExplorerCredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n database?: string;\n}\n\n/** Azure data Explorer credential scan. */\nexport interface AzureDataExplorerCredentialScan extends ScanParent {\n /** Azure data Explorer credential scan properties. */\n properties?: AzureDataExplorerCredentialScanProperties;\n kind: \"AzureDataExplorerCredential\";\n}\n\n/** Azure data Explorer MSI scan properties. */\nexport interface AzureDataExplorerMsiScanProperties extends ScanProperties {\n database?: string;\n}\n\n/** Azure data Explorer MSI scan. */\nexport interface AzureDataExplorerMsiScan extends ScanParent {\n /** Azure data Explorer MSI scan properties. */\n properties?: AzureDataExplorerMsiScanProperties;\n kind: \"AzureDataExplorerMsi\";\n}\n\n/** Azure file service credential scan properties. */\nexport interface AzureFileServiceCredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n shareName?: string;\n}\n\n/** Azure file service credential scan. */\nexport interface AzureFileServiceCredentialScan extends ScanParent {\n /** Azure file service credential scan properties. */\n properties?: AzureFileServiceCredentialScanProperties;\n kind: \"AzureFileServiceCredential\";\n}\n\n/** Azure SQL scan properties. */\nexport interface AzureSqlScanProperties extends ScanProperties {\n /** The endpoint of Azure SQL server. */\n serverEndpoint?: string;\n /** The database name. */\n databaseName?: string;\n}\n\n/** Azure SQL credential scan properties. */\nexport interface AzureSqlCredentialScanProperties extends AzureSqlScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n}\n\n/** Azure SQL database credential scan properties. */\nexport interface AzureSqlDatabaseCredentialScanProperties\n extends AzureSqlCredentialScanProperties {}\n\n/** Azure SQL database credential scan. */\nexport interface AzureSqlDatabaseCredentialScan extends ScanParent {\n /** Azure SQL database credential scan properties. */\n properties?: AzureSqlDatabaseCredentialScanProperties;\n kind: \"AzureSqlDatabaseCredential\";\n}\n\n/** Azure SQL database MSI scan properties. */\nexport interface AzureSqlDatabaseMsiScanProperties extends AzureSqlScanProperties {}\n\n/** Azure SQL database MSI scan. */\nexport interface AzureSqlDatabaseMsiScan extends ScanParent {\n /** Azure SQL database MSI scan properties. */\n properties?: AzureSqlDatabaseMsiScanProperties;\n kind: \"AzureSqlDatabaseMsi\";\n}\n\n/** Amazon Postgre SQL credential scan properties. */\nexport interface AmazonPostgreSqlCredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n /** The endpoint of Amazon Postgre SQL server. */\n serverEndpoint?: string;\n /** The database name. */\n databaseName?: string;\n /** The port of Amazon Postgre SQL server. */\n port?: number;\n /** The vpc endpoint service name of Amazon Postgre SQL server. */\n vpcEndpointServiceName?: string;\n}\n\n/** Amazon Postgre SQL credential scan. */\nexport interface AmazonPostgreSqlCredentialScan extends ScanParent {\n /** Amazon Postgre SQL credential scan properties. */\n properties?: AmazonPostgreSqlCredentialScanProperties;\n kind: \"AmazonPostgreSqlCredential\";\n}\n\n/** Azure Postgre SQL credential scan properties. */\nexport interface AzurePostgreSqlCredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n /** The endpoint of Azure Postgre SQL server. */\n serverEndpoint?: string;\n /** The database name. */\n databaseName?: string;\n /** The port of Azure Postgre SQL server. */\n port?: number;\n /** The SSL mode of Azure Postgre SQL server. */\n sslMode?: number;\n}\n\n/** Azure Postgre SQL credential scan. */\nexport interface AzurePostgreSqlCredentialScan extends ScanParent {\n /** Azure Postgre SQL credential scan properties. */\n properties?: AzurePostgreSqlCredentialScanProperties;\n kind: \"AzurePostgreSqlCredential\";\n}\n\n/** SQL server database credential scan properties. */\nexport interface SqlServerDatabaseCredentialScanProperties\n extends AzureSqlCredentialScanProperties {}\n\n/** SQL server database credential scan. */\nexport interface SqlServerDatabaseCredentialScan extends ScanParent {\n /** SQL server database credential scan properties. */\n properties?: SqlServerDatabaseCredentialScanProperties;\n kind: \"SqlServerDatabaseCredential\";\n}\n\n/** Azure SQL database managed instance credential scan properties. */\nexport interface AzureSqlDatabaseManagedInstanceCredentialScanProperties\n extends AzureSqlCredentialScanProperties {}\n\n/** Azure SQL database managed instance credential scan. */\nexport interface AzureSqlDatabaseManagedInstanceCredentialScan extends ScanParent {\n /** Azure SQL database managed instance credential scan properties. */\n properties?: AzureSqlDatabaseManagedInstanceCredentialScanProperties;\n kind: \"AzureSqlDatabaseManagedInstanceCredential\";\n}\n\n/** Azure SQL database managed instance MSI scan properties. */\nexport interface AzureSqlDatabaseManagedInstanceMsiScanProperties extends AzureSqlScanProperties {}\n\n/** Azure SQL database managed instance MSI scan. */\nexport interface AzureSqlDatabaseManagedInstanceMsiScan extends ScanParent {\n /** Azure SQL database managed instance MSI scan properties. */\n properties?: AzureSqlDatabaseManagedInstanceMsiScanProperties;\n kind: \"AzureSqlDatabaseManagedInstanceMsi\";\n}\n\n/** Azure SQL data warehouse credential scan properties. */\nexport interface AzureSqlDataWarehouseCredentialScanProperties\n extends AzureSqlCredentialScanProperties {}\n\n/** Azure SQL data warehouse credential scan. */\nexport interface AzureSqlDataWarehouseCredentialScan extends ScanParent {\n /** Azure SQL data warehouse credential scan properties. */\n properties?: AzureSqlDataWarehouseCredentialScanProperties;\n kind: \"AzureSqlDataWarehouseCredential\";\n}\n\n/** Azure SQL data warehouse MSI scan properties. */\nexport interface AzureSqlDataWarehouseMsiScanProperties extends AzureSqlScanProperties {}\n\n/** Azure SQL data warehouse MSI scan. */\nexport interface AzureSqlDataWarehouseMsiScan extends ScanParent {\n /** Azure SQL data warehouse MSI scan properties. */\n properties?: AzureSqlDataWarehouseMsiScanProperties;\n kind: \"AzureSqlDataWarehouseMsi\";\n}\n\n/** Azure MySQL scan properties. */\nexport interface AzureMySqlScanProperties extends ScanProperties {\n /** The endpoint of the Azure MySQL server. */\n serverEndpoint?: string;\n /** The port of the Azure MySQL server. */\n port?: number;\n /** The database name. */\n databaseName?: string;\n /** The credential reference. */\n credential?: CredentialReference;\n}\n\n/** Azure MySQL credential scan properties. */\nexport interface AzureMySqlCredentialScanProperties extends AzureMySqlScanProperties {}\n\n/** Azure MySQL credential scan. */\nexport interface AzureMySqlCredentialScan extends ScanParent {\n /** Azure MySQL credential scan properties. */\n properties?: AzureMySqlCredentialScanProperties;\n kind: \"AzureMySqlCredential\";\n}\n\n/** Miti scan properties. */\nexport interface MitiScanProperties extends ScanProperties {\n /** The maximum memory allowed in GB. */\n maximumMemoryAllowedInGb?: string;\n /** The miti cache. */\n mitiCache?: string;\n}\n\n/** Azure Storage credential scan properties. */\nexport interface AzureStorageCredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n}\n\n/** Azure Storage credential scan. */\nexport interface AzureStorageCredentialScan extends ScanParent {\n /** Azure Storage credential scan properties. */\n properties?: AzureStorageCredentialScanProperties;\n kind: \"AzureStorageCredential\";\n}\n\n/** Azure Storage MSI scan properties. */\nexport interface AzureStorageMsiScanProperties extends ScanProperties {}\n\n/** Azure Storage MSI scan. */\nexport interface AzureStorageMsiScan extends ScanParent {\n /** Azure Storage MSI scan properties. */\n properties?: AzureStorageMsiScanProperties;\n kind: \"AzureStorageMsi\";\n}\n\n/** Teradata credential scan properties. */\nexport interface TeradataCredentialScanProperties extends MitiScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n schema?: string;\n driverLocation?: string;\n storedProcedureDetails?: string;\n}\n\n/** Teradata credential scan. */\nexport interface TeradataCredentialScan extends ScanParent {\n /** Teradata credential scan properties. */\n properties?: TeradataCredentialScanProperties;\n kind: \"TeradataTeradataCredential\";\n}\n\n/** Teradata user pass scan properties. */\nexport interface TeradataUserPassScanProperties extends ScanProperties {\n username?: string;\n password?: string;\n}\n\n/** Teradata user pass scan. */\nexport interface TeradataUserPassScan extends ScanParent {\n /** Teradata user pass scan properties. */\n properties?: TeradataUserPassScanProperties;\n kind: \"TeradataUserPass\";\n}\n\n/** Teradata user pass scan properties. */\nexport interface TeradataTeradataUserPassScanProperties extends MitiScanProperties {\n /** The username of Teradata server. */\n username?: string;\n /** The password of Teradata server. */\n password?: string;\n /** The schema. */\n schema?: string;\n /** The driver location. */\n driverLocation?: string;\n}\n\n/** Teradata user pass scan. */\nexport interface TeradataTeradataUserPassScan extends ScanParent {\n /** Teradata user pass scan properties. */\n properties?: TeradataTeradataUserPassScanProperties;\n kind: \"TeradataTeradataUserPass\";\n}\n\n/** Oracle credential scan properties. */\nexport interface OracleCredentialScanProperties extends MitiScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n schema?: string;\n driverLocation?: string;\n storedProcedureDetails?: string;\n}\n\n/** Oracle credential scan. */\nexport interface OracleCredentialScan extends ScanParent {\n /** Oracle credential scan properties. */\n properties?: OracleCredentialScanProperties;\n kind: \"OracleOracleCredential\";\n}\n\n/** Oracle user pass scan properties. */\nexport interface OracleUserPassScanProperties extends MitiScanProperties {\n /** The username of Oracle server. */\n username?: string;\n /** The password of Oracle server. */\n password?: string;\n /** The schema. */\n schema?: string;\n /** The driver location. */\n driverLocation?: string;\n}\n\n/** Oracle user pass scan. */\nexport interface OracleUserPassScan extends ScanParent {\n /** Oracle user pass scan properties. */\n properties?: OracleUserPassScanProperties;\n kind: \"OracleOracleUserPass\";\n}\n\n/** SAP S/4HANA credential scan properties. */\nexport interface SapS4HanaSapS4HanaCredentialScanProperties extends MitiScanProperties {\n /** The client ID of SAP S/4HANA server. */\n clientId?: string;\n /** The credential reference. */\n credential?: CredentialReference;\n /** The JCo library path. */\n jCoLibraryPath?: string;\n}\n\n/** SAP S/4HANA credential scan. */\nexport interface SapS4HanaSapS4HanaCredentialScan extends ScanParent {\n /** SAP S/4HANA credential scan properties. */\n properties?: SapS4HanaSapS4HanaCredentialScanProperties;\n kind: \"SapS4HanaSapS4HanaCredential\";\n}\n\n/** SAP S/4HANA user pass scan properties. */\nexport interface SapS4HanaSapS4HanaUserPassScanProperties extends MitiScanProperties {\n /** The client ID of SAP S/4HANA server. */\n clientId?: string;\n /** The username of SAP S/4HANA server. */\n username?: string;\n /** The password of SAP S/4HANA server. */\n password?: string;\n /** The JCo library path. */\n jCoLibraryPath?: string;\n}\n\n/** SAP S/4HANA user pass scan. */\nexport interface SapS4HanaSapS4HanaUserPassScan extends ScanParent {\n /** SAP S/4HANA user pass scan properties. */\n properties?: SapS4HanaSapS4HanaUserPassScanProperties;\n kind: \"SapS4HanaSapS4HanaUserPass\";\n}\n\n/** SAP ECC credential scan properties. */\nexport interface SapEccCredentialScanProperties extends MitiScanProperties {\n clientId?: string;\n /** The credential reference. */\n credential?: CredentialReference;\n jCoLibraryPath?: string;\n}\n\n/** SAP ECC credential scan. */\nexport interface SapEccCredentialScan extends ScanParent {\n /** SAP ECC credential scan properties. */\n properties?: SapEccCredentialScanProperties;\n kind: \"SapEccSapEccCredential\";\n}\n\n/** SAP ECC user pass scan properties. */\nexport interface SapEccUserPassScanProperties extends MitiScanProperties {\n clientId?: string;\n username?: string;\n password?: string;\n jCoLibraryPath?: string;\n}\n\n/** SAP ECC user pass scan. */\nexport interface SapEccUserPassScan extends ScanParent {\n /** SAP ECC user pass scan properties. */\n properties?: SapEccUserPassScanProperties;\n kind: \"SapEccSapEccUserPass\";\n}\n\n/** Power BI delegated scan properties. */\nexport interface PowerBIDelegatedScanProperties extends ScanProperties {\n tenant?: string;\n authenticationType?: string;\n clientId?: string;\n userName?: string;\n password?: string;\n includePersonalWorkspaces?: boolean;\n}\n\n/** Power BI delegated scan. */\nexport interface PowerBIDelegatedScan extends ScanParent {\n /** Power BI delegated scan properties. */\n properties?: PowerBIDelegatedScanProperties;\n kind: \"PowerBIDelegated\";\n}\n\n/** Power BI MSI scan properties. */\nexport interface PowerBIMsiScanProperties extends ScanProperties {\n /** Whether to include personal workspaces or not. */\n includePersonalWorkspaces?: boolean;\n}\n\n/** Power BI MSI scan. */\nexport interface PowerBIMsiScan extends ScanParent {\n /** Power BI MSI scan properties. */\n properties?: PowerBIMsiScanProperties;\n kind: \"PowerBIMsi\";\n}\n\n/** Azure subscription system scan ruleset. */\nexport interface AzureSubscriptionSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure subscription scan ruleset properties. */\n properties?: AzureSubscriptionScanRulesetProperties;\n kind: \"AzureSubscription\";\n}\n\n/** Azure resource group system scan ruleset. */\nexport interface AzureResourceGroupSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure resource group scan ruleset properties. */\n properties?: AzureResourceGroupScanRulesetProperties;\n kind: \"AzureResourceGroup\";\n}\n\n/** Azure synapse workspace system scan ruleset. */\nexport interface AzureSynapseWorkspaceSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure synapse workspace scan ruleset properties. */\n properties?: AzureSynapseWorkspaceScanRulesetProperties;\n kind: \"AzureSynapseWorkspace\";\n}\n\n/** Azure Synapse System scan rule set. */\nexport interface AzureSynapseSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure synapse scan ruleset properties. */\n properties?: AzureSynapseScanRulesetProperties;\n kind: \"AzureSynapse\";\n}\n\n/** ADLS Gen1 System scan rule set. */\nexport interface AdlsGen1SystemScanRuleset extends SystemScanRulesetParent {\n /** ADLS Gen1 scan ruleset properties. */\n properties?: AdlsGen1ScanRulesetProperties;\n kind: \"AdlsGen1\";\n}\n\n/** ADLS Gen2 system scan rule set. */\nexport interface AdlsGen2SystemScanRuleset extends SystemScanRulesetParent {\n /** Adls gen 2 scan ruleset properties. */\n properties?: AdlsGen2ScanRulesetProperties;\n kind: \"AdlsGen2\";\n}\n\n/** Amazon account system scan rule set. */\nexport interface AmazonAccountSystemScanRuleset extends SystemScanRulesetParent {\n /** Amazon account scan ruleset properties. */\n properties?: AmazonAccountScanRulesetProperties;\n kind: \"AmazonAccount\";\n}\n\n/** Amazon S3 system scan ruleset. */\nexport interface AmazonS3SystemScanRuleset extends SystemScanRulesetParent {\n /** Amazon S3 scan ruleset properties. */\n properties?: AmazonS3ScanRulesetProperties;\n kind: \"AmazonS3\";\n}\n\n/** Amazon SQL system scan ruleset. */\nexport interface AmazonSqlSystemScanRuleset extends SystemScanRulesetParent {\n /** Amazon SQL scan ruleset properties. */\n properties?: AmazonSqlScanRulesetProperties;\n kind: \"AmazonSql\";\n}\n\n/** Azure Cosmos DB system scan rule set. */\nexport interface AzureCosmosDbSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure Cosmos DB scan ruleset properties. */\n properties?: AzureCosmosDbScanRulesetProperties;\n kind: \"AzureCosmosDb\";\n}\n\n/** Azure data explorer system scan rule set. */\nexport interface AzureDataExplorerSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure data explorer scan ruleset properties. */\n properties?: AzureDataExplorerScanRulesetProperties;\n kind: \"AzureDataExplorer\";\n}\n\n/** Azure file service system scan rule set. */\nexport interface AzureFileServiceSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure file service scan ruleset properties. */\n properties?: AzureFileServiceScanRulesetProperties;\n kind: \"AzureFileService\";\n}\n\n/** Azure SQL db system scan rule set. */\nexport interface AzureSqlDatabaseSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure SQL db scan ruleset properties. */\n properties?: AzureSqlDatabaseScanRulesetProperties;\n kind: \"AzureSqlDatabase\";\n}\n\n/** Amazon Postgre SQL system scan rule set. */\nexport interface AmazonPostgreSqlSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure Postgre SQL scan ruleset properties. */\n properties?: AmazonPostgreSqlScanRulesetProperties;\n kind: \"AmazonPostgreSql\";\n}\n\n/** Azure Postgre SQL system scan rule set. */\nexport interface AzurePostgreSqlSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure Postgre SQL scan ruleset properties. */\n properties?: AzurePostgreSqlScanRulesetProperties;\n kind: \"AzurePostgreSql\";\n}\n\n/** Sql server database system scan rule set. */\nexport interface SqlServerDatabaseSystemScanRuleset extends SystemScanRulesetParent {\n /** Sql server database scan ruleset properties. */\n properties?: SqlServerDatabaseScanRulesetProperties;\n kind: \"SqlServerDatabase\";\n}\n\n/** Azure SQL database managed instance system scan rule set. */\nexport interface AzureSqlDatabaseManagedInstanceSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure SQL db managed instance scan ruleset properties. */\n properties?: AzureSqlDatabaseManagedInstanceScanRulesetProperties;\n kind: \"AzureSqlDatabaseManagedInstance\";\n}\n\n/** Azure SQL data warehouse system scan ruleset. */\nexport interface AzureSqlDataWarehouseSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure SQL data warehouse scan ruleset properties. */\n properties?: AzureSqlDataWarehouseScanRulesetProperties;\n kind: \"AzureSqlDataWarehouse\";\n}\n\n/** Azure MySQL system scan ruleset. */\nexport interface AzureMySqlSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure MySQL scan ruleset properties. */\n properties?: AzureMySqlScanRulesetProperties;\n kind: \"AzureMySql\";\n}\n\n/** Azure Storage system scan ruleset. */\nexport interface AzureStorageSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure Storage scan ruleset properties. */\n properties?: AzureStorageScanRulesetProperties;\n kind: \"AzureStorage\";\n}\n\n/** Teradata system scan ruleset. */\nexport interface TeradataSystemScanRuleset extends SystemScanRulesetParent {\n /** Teradata scan ruleset properties. */\n properties?: TeradataScanRulesetProperties;\n kind: \"Teradata\";\n}\n\n/** Oracle system scan ruleset. */\nexport interface OracleSystemScanRuleset extends SystemScanRulesetParent {\n /** Oracle scan rule set properties. */\n properties?: OracleScanRulesetProperties;\n kind: \"Oracle\";\n}\n\n/** SAP S/4HANA system scan ruleset. */\nexport interface SapS4HanaSystemScanRuleset extends SystemScanRulesetParent {\n /** SAP S/4HANA scan ruleset properties. */\n properties?: SapS4HanaScanRulesetProperties;\n kind: \"SapS4Hana\";\n}\n\n/** SAP ECC system scan ruleset. */\nexport interface SapEccSystemScanRuleset extends SystemScanRulesetParent {\n /** SAP ECC scan ruleset properties. */\n properties?: SapEccScanRulesetProperties;\n kind: \"SapEcc\";\n}\n\n/** Power BI system scan ruleset. */\nexport interface PowerBISystemScanRuleset extends SystemScanRulesetParent {\n /** Power BI scan ruleset properties. */\n properties?: PowerBIScanRulesetProperties;\n kind: \"PowerBI\";\n}\n\n/** The classification rule. */\nexport type ClassificationRule = SystemClassificationRule | CustomClassificationRule;\n/** The credential. */\nexport type Credential =\n | AccountKeyAuthAzureKeyVaultCredential\n | BasicAuthAzureKeyVaultCredential\n | RoleARNCredential\n | ServicePrincipalAzureKeyVaultCredential\n | SqlAuthAzureKeyVaultCredential\n | ConsumerKeyAuthAzureKeyVaultCredential\n | DelegatedAuthAzureKeyVaultCredential\n | ManagedIdentityAzureKeyVaultCredential;\n/** The data source. */\nexport type DataSource =\n | AzureSubscriptionDataSource\n | AzureResourceGroupDataSource\n | AzureSynapseWorkspaceDataSource\n | AzureSynapseDataSource\n | AdlsGen1DataSource\n | AdlsGen2DataSource\n | AmazonAccountDataSource\n | AmazonS3DataSource\n | AmazonSqlDataSource\n | AzureCosmosDbDataSource\n | AzureDataExplorerDataSource\n | AzureFileServiceDataSource\n | AzureSqlDatabaseDataSource\n | AmazonPostgreSqlDataSource\n | AzurePostgreSqlDataSource\n | SqlServerDatabaseDataSource\n | AzureSqlDatabaseManagedInstanceDataSource\n | AzureSqlDataWarehouseDataSource\n | AzureMySqlDataSource\n | AzureStorageDataSource\n | TeradataDataSource\n | OracleDataSource\n | SapS4HanaDataSource\n | SapEccDataSource\n | PowerBIDataSource;\n/** The scan. */\nexport type Scan =\n | AzureSubscriptionCredentialScan\n | AzureSubscriptionMsiScan\n | AzureResourceGroupCredentialScan\n | AzureResourceGroupMsiScan\n | AzureSynapseWorkspaceCredentialScan\n | AzureSynapseWorkspaceMsiScan\n | AzureSynapseCredentialScan\n | AzureSynapseMsiScan\n | AdlsGen1CredentialScan\n | AdlsGen1MsiScan\n | AdlsGen2CredentialScan\n | AdlsGen2MsiScan\n | AmazonAccountCredentialScan\n | AmazonS3CredentialScan\n | AmazonS3RoleARNScan\n | AmazonSqlCredentialScan\n | AzureCosmosDbCredentialScan\n | AzureDataExplorerCredentialScan\n | AzureDataExplorerMsiScan\n | AzureFileServiceCredentialScan\n | AzureSqlDatabaseCredentialScan\n | AzureSqlDatabaseMsiScan\n | AmazonPostgreSqlCredentialScan\n | AzurePostgreSqlCredentialScan\n | SqlServerDatabaseCredentialScan\n | AzureSqlDatabaseManagedInstanceCredentialScan\n | AzureSqlDatabaseManagedInstanceMsiScan\n | AzureSqlDataWarehouseCredentialScan\n | AzureSqlDataWarehouseMsiScan\n | AzureMySqlCredentialScan\n | AzureStorageCredentialScan\n | AzureStorageMsiScan\n | TeradataCredentialScan\n | TeradataUserPassScan\n | TeradataTeradataUserPassScan\n | OracleCredentialScan\n | OracleUserPassScan\n | SapS4HanaSapS4HanaCredentialScan\n | SapS4HanaSapS4HanaUserPassScan\n | SapEccCredentialScan\n | SapEccUserPassScan\n | PowerBIDelegatedScan\n | PowerBIMsiScan;\n/** Purview nested object which serves as a compute resource for activities. */\nexport type IntegrationRuntime = ManagedIntegrationRuntime | SelfHostedIntegrationRuntime;\n/** Integration runtime status. */\nexport type IntegrationRuntimeStatus =\n | SelfHostedIntegrationRuntimeStatus\n | ManagedIntegrationRuntimeStatus;\n/** The scan ruleset. */\nexport type ScanRuleset =\n | AzureSubscriptionScanRuleset\n | AzureResourceGroupScanRuleset\n | AzureSynapseWorkspaceScanRuleset\n | AzureSynapseScanRuleset\n | AdlsGen1ScanRuleset\n | AdlsGen2ScanRuleset\n | AmazonAccountScanRuleset\n | AmazonS3ScanRuleset\n | AmazonSqlScanRuleset\n | AzureCosmosDbScanRuleset\n | AzureDataExplorerScanRuleset\n | AzureFileServiceScanRuleset\n | AzureSqlDatabaseScanRuleset\n | AmazonPostgreSqlScanRuleset\n | AzurePostgreSqlScanRuleset\n | SqlServerDatabaseScanRuleset\n | AzureSqlDatabaseManagedInstanceScanRuleset\n | AzureSqlDataWarehouseScanRuleset\n | AzureMySqlScanRuleset\n | AzureStorageScanRuleset\n | TeradataScanRuleset\n | OracleScanRuleset\n | SapS4HanaScanRuleset\n | SapEccScanRuleset\n | PowerBIScanRuleset;\n/** The system scan ruleset. */\nexport type SystemScanRuleset =\n | AzureSubscriptionSystemScanRuleset\n | AzureResourceGroupSystemScanRuleset\n | AzureSynapseWorkspaceSystemScanRuleset\n | AzureSynapseSystemScanRuleset\n | AdlsGen1SystemScanRuleset\n | AdlsGen2SystemScanRuleset\n | AmazonAccountSystemScanRuleset\n | AmazonS3SystemScanRuleset\n | AmazonSqlSystemScanRuleset\n | AzureCosmosDbSystemScanRuleset\n | AzureDataExplorerSystemScanRuleset\n | AzureFileServiceSystemScanRuleset\n | AzureSqlDatabaseSystemScanRuleset\n | AmazonPostgreSqlSystemScanRuleset\n | AzurePostgreSqlSystemScanRuleset\n | SqlServerDatabaseSystemScanRuleset\n | AzureSqlDatabaseManagedInstanceSystemScanRuleset\n | AzureSqlDataWarehouseSystemScanRuleset\n | AzureMySqlSystemScanRuleset\n | AzureStorageSystemScanRuleset\n | TeradataSystemScanRuleset\n | OracleSystemScanRuleset\n | SapS4HanaSystemScanRuleset\n | SapEccSystemScanRuleset\n | PowerBISystemScanRuleset;\n/** Pattern of classification rule. */\nexport type ClassificationRulePattern = RegexClassificationRulePattern;\n"]}
|
|
1
|
+
{"version":3,"file":"models.js","sourceRoot":"","sources":["../../src/models.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\n/** The Azure Key Vault connection. */\nexport interface AzureKeyVault extends ProxyResource {\n /** Azure Key Vault connection properties. */\n properties?: AzureKeyVaultProperties;\n}\n\n/** Azure Key Vault connection properties. */\nexport interface AzureKeyVaultProperties {\n /** The base URL of the Azure Key Vault. */\n baseUrl?: string;\n /** The description of the Azure Key Vault connection. */\n description?: string;\n}\n\n/** The proxy resource. */\nexport interface ProxyResource {}\n\n/** The error model. */\nexport interface ErrorModel {\n /** A unique error code that identifies the specific error. */\n code: string;\n /** A human-readable error message that provides more details about the error. */\n message: string;\n /** The specific component that the error is associated with. */\n target?: string;\n /** An array of nested ErrorModel objects that provides additional error details. */\n details?: Array<ErrorModel>;\n}\n\n/** The classification rule. */\nexport interface ClassificationRuleParent extends ProxyResource {\n kind: \"ClassificationRule\" | \"System\" | \"Custom\";\n}\n\n/** The credential. */\nexport interface CredentialParent extends ProxyResource {\n kind:\n | \"Credential\"\n | \"AccountKey\"\n | \"BasicAuth\"\n | \"AmazonARN\"\n | \"ServicePrincipal\"\n | \"SqlAuth\"\n | \"ConsumerKeyAuth\"\n | \"DelegatedAuth\"\n | \"ManagedIdentity\";\n}\n\n/** The data source. */\nexport interface DataSourceParent extends ProxyResource {\n /** The creation type. */\n creationType?: \"Manual\" | \"AutoNative\" | \"AutoManaged\";\n kind:\n | \"DataSource\"\n | \"AzureSubscription\"\n | \"AzureResourceGroup\"\n | \"AzureSynapseWorkspace\"\n | \"AzureSynapse\"\n | \"AdlsGen1\"\n | \"AdlsGen2\"\n | \"AmazonAccount\"\n | \"AmazonS3\"\n | \"AmazonSql\"\n | \"AzureCosmosDb\"\n | \"AzureDataExplorer\"\n | \"AzureFileService\"\n | \"AzureSqlDatabase\"\n | \"AmazonPostgreSql\"\n | \"AzurePostgreSql\"\n | \"SqlServerDatabase\"\n | \"AzureSqlDatabaseManagedInstance\"\n | \"AzureSqlDataWarehouse\"\n | \"AzureMySql\"\n | \"AzureStorage\"\n | \"Teradata\"\n | \"Oracle\"\n | \"SapS4Hana\"\n | \"SapEcc\"\n | \"PowerBI\";\n}\n\n/** The scan. */\nexport interface ScanParent extends ProxyResource {\n /** The scan identifier. */\n scanId?: string;\n /** The data source identifier. */\n dataSourceIdentifier?: DataSourceIdentifier;\n /** The data source name. */\n dataSourceName?: string;\n /** The creation type. */\n creationType?: \"Manual\" | \"AutoNative\" | \"AutoManaged\";\n kind:\n | \"Scan\"\n | \"AzureSubscriptionCredential\"\n | \"AzureSubscriptionMsi\"\n | \"AzureResourceGroupCredential\"\n | \"AzureResourceGroupMsi\"\n | \"AzureSynapseWorkspaceCredential\"\n | \"AzureSynapseWorkspaceMsi\"\n | \"AzureSynapseCredential\"\n | \"AzureSynapseMsi\"\n | \"AdlsGen1Credential\"\n | \"AdlsGen1Msi\"\n | \"AdlsGen2Credential\"\n | \"AdlsGen2Msi\"\n | \"AmazonAccountCredential\"\n | \"AmazonS3Credential\"\n | \"AmazonS3RoleARN\"\n | \"AmazonSqlCredential\"\n | \"AzureCosmosDbCredential\"\n | \"AzureDataExplorerCredential\"\n | \"AzureDataExplorerMsi\"\n | \"AzureFileServiceCredential\"\n | \"AzureSqlDatabaseCredential\"\n | \"AzureSqlDatabaseMsi\"\n | \"AmazonPostgreSqlCredential\"\n | \"AzurePostgreSqlCredential\"\n | \"SqlServerDatabaseCredential\"\n | \"AzureSqlDatabaseManagedInstanceCredential\"\n | \"AzureSqlDatabaseManagedInstanceMsi\"\n | \"AzureSqlDataWarehouseCredential\"\n | \"AzureSqlDataWarehouseMsi\"\n | \"AzureMySqlCredential\"\n | \"AzureStorageCredential\"\n | \"AzureStorageMsi\"\n | \"TeradataTeradataCredential\"\n | \"TeradataUserPass\"\n | \"TeradataTeradataUserPass\"\n | \"OracleOracleCredential\"\n | \"OracleOracleUserPass\"\n | \"SapS4HanaSapS4HanaCredential\"\n | \"SapS4HanaSapS4HanaUserPass\"\n | \"SapEccSapEccCredential\"\n | \"SapEccSapEccUserPass\"\n | \"PowerBIDelegated\"\n | \"PowerBIMsi\";\n}\n\n/** The scan result with ingestion. */\nexport interface ScanResultWithIngestion {\n /** The ingestion job identifier. */\n ingestionJobId?: string;\n /** The scan result status. */\n status?: \"Accepted\" | \"InProgress\" | \"TransientFailure\" | \"Succeeded\" | \"Failed\" | \"Canceled\";\n}\n\n/** The discovery execution details. */\nexport interface DiscoveryExecutionDetails {\n /** The discovery start time. */\n discoveryStartTime?: Date | string;\n /** The discovery end time. */\n discoveryEndTime?: Date | string;\n /** The discovery status. */\n status?:\n | \"Queued\"\n | \"Running\"\n | \"Succeeded\"\n | \"Failed\"\n | \"Cancelled\"\n | \"Delayed\"\n | \"Throttled\"\n | \"CompletedWithExceptions\"\n | \"CompleteWithWarning\";\n /** The discovery statistics. */\n statistics?: Record<string, any>;\n /** Indicates whether the error log is available. */\n isErrorLogAvailable?: boolean;\n}\n\n/** The ingestion execution details. */\nexport interface IngestionExecutionDetails {\n /** The ingestion start time. */\n ingestionStartTime?: Date | string;\n /** The ingestion end time. */\n ingestionEndTime?: Date | string;\n /** The ingestion status. */\n status?:\n | \"None\"\n | \"Succeeded\"\n | \"Queued\"\n | \"InProgress\"\n | \"SourceUnknown\"\n | \"PartialSucceeded\"\n | \"Failed\"\n | \"Canceled\"\n | \"Canceling\";\n /** The ingestion statistics. */\n statistics?: Record<string, any>;\n /** The estimated time remaining in seconds. */\n estimatedTimeRemainingInSeconds?: number;\n /** Indicates whether the error log is available. */\n isErrorLogAvailable?: boolean;\n /** The last updated time. */\n lastUpdatedAt?: Date | string;\n}\n\n/** The scan diagnostics. */\nexport interface ScanDiagnostics {\n /** Notifications. */\n notifications?: Array<Notification>;\n}\n\n/** The notification model. */\nexport interface Notification {\n /** Notification message. */\n message?: string;\n /** Notification code. */\n code?: number;\n}\n\n/** The data source identifier. */\nexport interface DataSourceIdentifier {\n /** The item path. */\n itemPath?: ItemPath;\n /** The qualified name. */\n qualifiedName?: QualifiedName;\n /** The data source name. */\n dataSourceName?: string;\n /** The guid. */\n guid?: string;\n /** The resource identifier. */\n resourceId?: string;\n}\n\n/** The item path. */\nexport interface ItemPath {\n /** The path. */\n path?: string;\n /** The extended properties. */\n extendedProperties?: ExtendedProperties;\n}\n\n/** The extended properties. */\nexport interface ExtendedProperties {\n /** The subscription identifier. */\n subscriptionId?: string;\n /** The resource group. */\n resourceGroup?: string;\n}\n\n/** The qualified name. */\nexport interface QualifiedName {\n /** The type name. */\n typeName?: string;\n /** The name. */\n name?: string;\n /** The extended properties. */\n extendedProperties?: ExtendedProperties;\n}\n\n/** The filter. */\nexport interface Filter extends ProxyResource {\n /** The filter properties. */\n properties?: FilterProperties;\n}\n\n/** The filter properties. */\nexport interface FilterProperties {\n /** The exclude uri prefixes. */\n excludeUriPrefixes: Array<string>;\n /** The include uri prefixes. */\n includeUriPrefixes: Array<string>;\n /** The exclude regexes. */\n excludeRegexes?: Array<string>;\n /** The include regexes. */\n includeRegexes?: Array<string>;\n}\n\n/** Purview nested object which serves as a compute resource for activities. */\nexport interface IntegrationRuntimeParent extends ProxyResource {\n kind: \"IntegrationRuntime\" | \"Managed\" | \"SelfHosted\";\n}\n\n/** Integration runtime status. */\nexport interface IntegrationRuntimeStatusParent extends ProxyResource {\n kind: \"IntegrationRuntimeStatus\" | \"SelfHosted\" | \"Managed\";\n}\n\n/** Parameters to regenerate the authentication key. */\nexport interface IntegrationRuntimeRegenerateKeyParameters {\n /** The name of the authentication key to regenerate. */\n keyName?: \"authKey1\" | \"authKey2\";\n}\n\n/** The request of enabling interactive query for integration runtime. */\nexport interface EnableInteractiveQueryForIntegrationRuntimeRequest {\n /** The interactive querying auto termination time in minutes. */\n autoTerminationMinutes?: number;\n}\n\n/** The managed virtual network. */\nexport interface ManagedVirtualNetwork extends ProxyResource {\n /** The properties of managed virtual network. */\n properties?: ManagedVirtualNetworkProperties;\n}\n\n/** The properties of managed virtual network. */\nexport interface ManagedVirtualNetworkProperties {}\n\n/** The managed private endpoint. */\nexport interface ManagedPrivateEndpoint extends ProxyResource {\n /** The properties of managed private endpoint. */\n properties?: ManagedPrivateEndpointProperties;\n}\n\n/** The properties of managed private endpoint. */\nexport interface ManagedPrivateEndpointProperties {\n /** The properties of connection state. */\n connectionState?: ConnectionStateProperties;\n /** The fqdns of managed private endpoint. */\n fqdns?: Array<string>;\n /** The group identifier of managed private endpoint. */\n groupId?: string;\n /** The private link resource identifier of managed private endpoint. */\n privateLinkResourceId?: string;\n /** The provisioning state of managed private endpoint. */\n provisioningState?: string;\n}\n\n/** The properties of connection state. */\nexport interface ConnectionStateProperties {}\n\n/** The scan ruleset. */\nexport interface ScanRulesetParent extends VersionedScanRuleset {\n kind:\n | \"ScanRuleset\"\n | \"AzureSubscription\"\n | \"AzureResourceGroup\"\n | \"AzureSynapseWorkspace\"\n | \"AzureSynapse\"\n | \"AdlsGen1\"\n | \"AdlsGen2\"\n | \"AmazonAccount\"\n | \"AmazonS3\"\n | \"AmazonSql\"\n | \"AzureCosmosDb\"\n | \"AzureDataExplorer\"\n | \"AzureFileService\"\n | \"AzureSqlDatabase\"\n | \"AmazonPostgreSql\"\n | \"AzurePostgreSql\"\n | \"SqlServerDatabase\"\n | \"AzureSqlDatabaseManagedInstance\"\n | \"AzureSqlDataWarehouse\"\n | \"AzureMySql\"\n | \"AzureStorage\"\n | \"Teradata\"\n | \"Oracle\"\n | \"SapS4Hana\"\n | \"SapEcc\"\n | \"PowerBI\";\n}\n\n/** The versioned scan ruleset. */\nexport interface VersionedScanRuleset extends ProxyResource {\n /** Versioned scan ruleset properties. */\n scanRulesetType?: \"Custom\" | \"System\";\n}\n\n/** The system scan ruleset. */\nexport interface SystemScanRulesetParent extends VersionedScanRuleset {\n kind:\n | \"SystemScanRuleset\"\n | \"AzureSubscription\"\n | \"AzureResourceGroup\"\n | \"AzureSynapseWorkspace\"\n | \"AzureSynapse\"\n | \"AdlsGen1\"\n | \"AdlsGen2\"\n | \"AmazonAccount\"\n | \"AmazonS3\"\n | \"AmazonSql\"\n | \"AzureCosmosDb\"\n | \"AzureDataExplorer\"\n | \"AzureFileService\"\n | \"AzureSqlDatabase\"\n | \"AmazonPostgreSql\"\n | \"AzurePostgreSql\"\n | \"SqlServerDatabase\"\n | \"AzureSqlDatabaseManagedInstance\"\n | \"AzureSqlDataWarehouse\"\n | \"AzureMySql\"\n | \"AzureStorage\"\n | \"Teradata\"\n | \"Oracle\"\n | \"SapS4Hana\"\n | \"SapEcc\"\n | \"PowerBI\";\n}\n\n/** The trigger object. */\nexport interface Trigger extends ProxyResource {\n /** The properties of trigger. */\n properties?: TriggerProperties;\n /** The validation error info of trigger. */\n validationErrorInfo?: string;\n}\n\n/** Properties detail of trigger. */\nexport interface TriggerProperties {\n /** The recurrence of trigger. */\n recurrence?: TriggerRecurrence;\n /** The recurrence interval of trigger. */\n recurrenceInterval?: string;\n /** The state of trigger. */\n state?: \"Enabled\" | \"Disabled\";\n /** The scan level of trigger. */\n scanLevel?: \"Full\" | \"Incremental\";\n /** The incremental scan start time of trigger. */\n incrementalScanStartTime?: Date | string;\n}\n\n/** The recurrence of trigger. */\nexport interface TriggerRecurrence {\n /** The frequency of trigger recurrence. */\n frequency?: \"Week\" | \"Month\" | \"Day\" | \"Hour\";\n /** The interval of trigger recurrence. */\n interval?: number;\n /** The start time of trigger recurrence. */\n startTime?: Date | string;\n /** The end time of trigger recurrence. */\n endTime?: Date | string;\n /** The schedule of trigger recurrence. */\n schedule?: RecurrenceSchedule;\n /** The time zone of trigger recurrence. */\n timeZone?: string;\n}\n\n/** Schedule of recurrence. */\nexport interface RecurrenceSchedule {\n /** The minutes of recurrence schedule. */\n minutes?: Array<number>;\n /** The hours of recurrence schedule. */\n hours?: Array<number>;\n /** The week days of recurrence schedule. */\n weekDays?: Array<\n \"Sunday\" | \"Monday\" | \"Tuesday\" | \"Wednesday\" | \"Thursday\" | \"Friday\" | \"Saturday\"\n >;\n /** Month days of recurrence schedule. */\n monthDays?: Array<number>;\n /** The monthly occurrences of recurrence schedule. */\n monthlyOccurrences?: Array<RecurrenceScheduleOccurrence>;\n}\n\n/** The occurrence of recurrence schedule. */\nexport interface RecurrenceScheduleOccurrence {\n /** The day of recurrence schedule occurrence. */\n day?: \"Sunday\" | \"Monday\" | \"Tuesday\" | \"Wednesday\" | \"Thursday\" | \"Friday\" | \"Saturday\";\n occurrence?: number;\n}\n\n/** The compute resource properties for managed integration runtime. */\nexport interface ManagedIntegrationRuntimeComputeProperties {\n /** The location for managed integration runtime. */\n location?: string;\n}\n\n/** Managed integration runtime type properties. */\nexport interface ManagedIntegrationRuntimeTypeProperties {\n /** The compute resource properties for managed integration runtime. */\n computeProperties?: ManagedIntegrationRuntimeComputeProperties;\n}\n\n/** The managed virtual network reference. */\nexport interface ManagedVirtualNetworkReference {\n /** Reference ManagedVirtualNetwork name. */\n referenceName?: string;\n /** Managed virtual network reference type. */\n type?: string;\n}\n\n/** The managed integration runtime properties. */\nexport interface ManagedIntegrationRuntimeProperties {\n /** Managed integration runtime type properties. */\n typeProperties?: ManagedIntegrationRuntimeTypeProperties;\n /** The managed virtual network reference. */\n managedVirtualNetworkReference?: ManagedVirtualNetworkReference;\n /** The managed integration runtime description. */\n description?: string;\n}\n\n/** The managed integration runtime. */\nexport interface ManagedIntegrationRuntime extends IntegrationRuntimeParent {\n /** The managed integration runtime properties. */\n properties?: ManagedIntegrationRuntimeProperties;\n kind: \"Managed\";\n}\n\n/** The self-hosted integration runtime properties. */\nexport interface SelfHostedIntegrationRuntimeProperties {\n /** The self-hosted integration runtime description. */\n description?: string;\n}\n\n/** Self-hosted integration runtime. */\nexport interface SelfHostedIntegrationRuntime extends IntegrationRuntimeParent {\n /** The self-hosted integration runtime properties. */\n properties?: SelfHostedIntegrationRuntimeProperties;\n kind: \"SelfHosted\";\n}\n\n/** Properties of Self-hosted integration runtime node. */\nexport interface SelfHostedIntegrationRuntimeNode {}\n\n/** Self-hosted integration runtime status type properties. */\nexport interface SelfHostedIntegrationRuntimeStatusTypeProperties {\n /** List of nodes for this integration runtime. */\n nodes?: Array<SelfHostedIntegrationRuntimeNode>;\n}\n\n/** Self-hosted integration runtime status properties. */\nexport interface SelfHostedIntegrationRuntimeStatusProperties {\n /** Self-hosted integration runtime status type properties. */\n typeProperties?: SelfHostedIntegrationRuntimeStatusTypeProperties;\n}\n\n/** Self-hosted integration runtime status. */\nexport interface SelfHostedIntegrationRuntimeStatus extends IntegrationRuntimeStatusParent {\n /** Self-hosted integration runtime status properties. */\n properties?: SelfHostedIntegrationRuntimeStatusProperties;\n kind: \"SelfHosted\";\n}\n\n/** Interactive query properties of managed integration runtime. */\nexport interface InteractiveQuery {\n /** Auto termination minutes of interactive query. */\n autoTerminationMinutes?: number;\n /** Status of interactive query. */\n status?: string;\n}\n\n/** Managed integration runtime status type properties. */\nexport interface ManagedIntegrationRuntimeStatusTypeProperties {\n /** The time at which the integration runtime was created, in ISO8601 format. */\n createTime?: Date | string;\n /** Interactive query properties of managed integration runtime. */\n interactiveQuery?: InteractiveQuery;\n}\n\n/** Managed integration runtime status properties. */\nexport interface ManagedIntegrationRuntimeStatusProperties {\n /** Managed integration runtime status type properties. */\n typeProperties?: ManagedIntegrationRuntimeStatusTypeProperties;\n}\n\n/** Managed integration runtime status. */\nexport interface ManagedIntegrationRuntimeStatus extends IntegrationRuntimeStatusParent {\n /** Managed integration runtime status properties. */\n properties?: ManagedIntegrationRuntimeStatusProperties;\n kind: \"Managed\";\n}\n\n/** The reference to collection. */\nexport interface CollectionReference {\n /** The reference name of collection reference. */\n referenceName?: string;\n /** The type of collection reference. */\n type?: string;\n}\n\n/** The properties of system classification rule. */\nexport interface SystemClassificationRuleProperties {\n description?: string;\n /** The classification name of system classification rule. */\n classificationName?: string;\n /** The rule status of system classification rule. */\n ruleStatus?: \"Enabled\" | \"Disabled\";\n}\n\n/** The rule of system classification. */\nexport interface SystemClassificationRule extends ClassificationRuleParent {\n /** The properties of system classification rule. */\n properties?: SystemClassificationRuleProperties;\n kind: \"System\";\n}\n\n/** Pattern of classification rule. */\nexport interface ClassificationRulePatternParent {\n kind: \"ClassificationRulePattern\" | \"Regex\";\n}\n\n/** The properties of custom classification rule. */\nexport interface CustomClassificationRuleProperties {\n minimumPercentageMatch?: number;\n /** The data patterns of custom classification rule. */\n dataPatterns?: Array<ClassificationRulePattern>;\n /** The column patterns of custom classification rule. */\n columnPatterns?: Array<ClassificationRulePattern>;\n /** The description of custom classification rule. */\n description?: string;\n /** The classification name of custom classification rule. */\n classificationName?: string;\n /** The rule status of custom classification rule. */\n ruleStatus?: \"Enabled\" | \"Disabled\";\n}\n\n/** Rule of custom classification. */\nexport interface CustomClassificationRule extends ClassificationRuleParent {\n /** The properties of custom classification rule. */\n properties?: CustomClassificationRuleProperties;\n kind: \"Custom\";\n}\n\n/** Pattern of regex classification rule. */\nexport interface RegexClassificationRulePattern extends ClassificationRulePatternParent {\n /** The pattern of regex classification rule pattern. */\n pattern?: string;\n kind: \"Regex\";\n}\n\n/** The store. */\nexport interface Store {\n /** The reference name of store. */\n referenceName?: string;\n /** The type of store. */\n type?: string;\n}\n\n/** The key vault secret. */\nexport interface KeyVaultSecret {\n /** The type of key vault secret. */\n type?: string;\n /** The secret name of key vault secret. */\n secretName?: string;\n /** The secret version of key vault secret. */\n secretVersion?: string;\n /** The store. */\n store?: Store;\n}\n\n/** Properties of key vault secret account key credential type. */\nexport interface KeyVaultSecretAccountKeyCredentialTypeProperties {\n /** The account key of key vault secret account key credential type. */\n accountKey?: KeyVaultSecret;\n}\n\n/** Properties of account key credential. */\nexport interface AccountKeyCredentialProperties {\n /** The type properties of account key credential. */\n typeProperties?: KeyVaultSecretAccountKeyCredentialTypeProperties;\n description?: string;\n}\n\n/** Credential type that uses Account Key for authentication. */\nexport interface AccountKeyAuthAzureKeyVaultCredential extends CredentialParent {\n /** The properties of account key auth Azure Key Vault credential. */\n properties?: AccountKeyCredentialProperties;\n kind: \"AccountKey\";\n}\n\n/** Properties of key vault secret user pass credential type. */\nexport interface KeyVaultSecretUserPassCredentialTypeProperties {\n /** User name. */\n user?: string;\n /** The password of key vault secret user pass credential type. */\n password?: KeyVaultSecret;\n}\n\n/** Properties of user pass credential. */\nexport interface UserPassCredentialProperties {\n /** Properties of key vault secret user pass credential type. */\n typeProperties?: KeyVaultSecretUserPassCredentialTypeProperties;\n description?: string;\n}\n\n/** Credential type that uses Basic authentication. */\nexport interface BasicAuthAzureKeyVaultCredential extends CredentialParent {\n /** The properties of basic auth Azure Key Vault credential. */\n properties?: UserPassCredentialProperties;\n kind: \"BasicAuth\";\n}\n\n/** The type properties of role ARN credential. */\nexport interface RoleARNCredentialTypeProperties {\n /** The role ARN of role ARN credential type properties. */\n roleARN?: string;\n}\n\n/** The properties of role ARN credential. */\nexport interface RoleARNCredentialProperties {\n /** The type properties of role ARN credential. */\n typeProperties?: RoleARNCredentialTypeProperties;\n /** The description of role ARN credential. */\n description?: string;\n}\n\n/** Credential type that uses Account ID, External ID and Role ARN for authentication. */\nexport interface RoleARNCredential extends CredentialParent {\n /** The properties of role ARN credential. */\n properties?: RoleARNCredentialProperties;\n kind: \"AmazonARN\";\n}\n\n/** The type properties of key vault secret service principal credential. */\nexport interface KeyVaultSecretServicePrinipalCredentialTypeProperties {\n /** The service principal ID of key vault secret service principal credential type properties. */\n servicePrincipalId?: string;\n /** The key vault secret. */\n servicePrincipalKey?: KeyVaultSecret;\n tenant?: string;\n}\n\n/** The properties of service principal Azure Key Vault credential. */\nexport interface ServicePrincipalAzureKeyVaultCredentialProperties {\n /** The type properties of key vault secret service principal credential. */\n typeProperties?: KeyVaultSecretServicePrinipalCredentialTypeProperties;\n description?: string;\n}\n\n/** Credential type that uses Tenant ID and Service principal ID for authentication. */\nexport interface ServicePrincipalAzureKeyVaultCredential extends CredentialParent {\n /** The properties of service principal Azure Key Vault credential. */\n properties?: ServicePrincipalAzureKeyVaultCredentialProperties;\n kind: \"ServicePrincipal\";\n}\n\n/** Credential type that uses Sql for authentication. */\nexport interface SqlAuthAzureKeyVaultCredential extends CredentialParent {\n /** Properties of user pass credential. */\n properties?: UserPassCredentialProperties;\n kind: \"SqlAuth\";\n}\n\n/** The type properties of key vault secret consumer key credential. */\nexport interface KeyVaultSecretConsumerKeyCredentialTypeProperties {\n /** User name. */\n user?: string;\n /** The password of key vault secret consumer key credential type properties. */\n password?: KeyVaultSecret;\n /** The consumer key of key vault secret consumer key credential type properties. */\n consumerKey?: string;\n /** The consumer secret of key vault secret consumer key credential type properties. */\n consumerSecret?: KeyVaultSecret;\n}\n\n/** The properties of consumer key credential. */\nexport interface ConsumerKeyCredentialProperties {\n /** The type properties of key vault secret consumer key credential. */\n typeProperties?: KeyVaultSecretConsumerKeyCredentialTypeProperties;\n /** Description of credential properties. */\n description?: string;\n}\n\n/** Credential type that uses consumer provided key and secret for authentication. */\nexport interface ConsumerKeyAuthAzureKeyVaultCredential extends CredentialParent {\n /** The properties of consumer key credential. */\n properties?: ConsumerKeyCredentialProperties;\n kind: \"ConsumerKeyAuth\";\n}\n\n/** The type properties of key vault secret delegated auth credential. */\nexport interface KeyVaultSecretDelegatedAuthCredentialTypeProperties {\n /** Credential type that uses Account ID, External ID and Role ARN for authentication. */\n clientId?: string;\n /** User name. */\n user?: string;\n /** Key vault secret. */\n password?: KeyVaultSecret;\n}\n\n/** The properties of delegated auth credential. */\nexport interface DelegatedAuthCredentialProperties {\n /** The type properties of key vault secret delegated auth credential. */\n typeProperties?: KeyVaultSecretDelegatedAuthCredentialTypeProperties;\n description?: string;\n}\n\n/** Credential type that uses Client ID for authentication. */\nexport interface DelegatedAuthAzureKeyVaultCredential extends CredentialParent {\n /** The properties of delegated auth Azure Key Vault credential. */\n properties?: DelegatedAuthCredentialProperties;\n kind: \"DelegatedAuth\";\n}\n\n/** The type properties of key vault secret managed identity Azure Key Vault credential. */\nexport interface KeyVaultSecretManagedIdentityAzureKeyVaultCredentialTypeProperties {\n /** The principal ID of key vault secret managed identity Azure Key Vault credential type properties. */\n principalId?: string;\n /** The tenant ID of key vault secret managed identity Azure Key Vault credential type properties. */\n tenantId?: string;\n /** The resource ID of key vault secret managed identity Azure Key Vault credential type properties. */\n resourceId?: string;\n}\n\n/** The properties of managed identity Azure Key Vault credential. */\nexport interface ManagedIdentityAzureKeyVaultCredentialProperties {\n /** The type properties of managed identity Azure Key Vault credential. */\n typeProperties?: KeyVaultSecretManagedIdentityAzureKeyVaultCredentialTypeProperties;\n description?: string;\n}\n\n/** Credential type that uses User assigned managed identities for authentication. */\nexport interface ManagedIdentityAzureKeyVaultCredential extends CredentialParent {\n /** The properties of managed identity Azure Key Vault credential. */\n properties?: ManagedIdentityAzureKeyVaultCredentialProperties;\n kind: \"ManagedIdentity\";\n}\n\n/** Properties of data source. */\nexport interface DataSourceProperties {\n /** The reference to collection. */\n collection?: CollectionReference;\n /** Data source collection moving state. */\n dataSourceCollectionMovingState?: \"Active\" | \"Moving\" | \"Failed\";\n}\n\n/** Properties of azure subscription. */\nexport interface AzureSubscriptionProperties extends DataSourceProperties {\n /** The subscription ID of azure subscription. */\n subscriptionId?: string;\n /** The resource ID of azure subscription. */\n resourceId?: string;\n /** The data use governance of azure subscription. */\n dataUseGovernance?:\n | \"Disabled\"\n | \"DisabledByAnotherAccount\"\n | \"Enabled\"\n | \"EnabledAtAncestorScope\";\n}\n\n/** Azure subscription data source. */\nexport interface AzureSubscriptionDataSource extends DataSourceParent {\n /** Azure subscription properties. */\n properties?: AzureSubscriptionProperties;\n kind: \"AzureSubscription\";\n}\n\n/** Azure resource group properties. */\nexport interface AzureResourceGroupProperties extends DataSourceProperties {\n /** Subscription id. */\n subscriptionId?: string;\n /** Resource group. */\n resourceGroup?: string;\n /** Resource id. */\n resourceId?: string;\n /** Data use governance. */\n dataUseGovernance?:\n | \"Disabled\"\n | \"DisabledByAnotherAccount\"\n | \"Enabled\"\n | \"EnabledAtAncestorScope\";\n}\n\n/** Azure resource group data source. */\nexport interface AzureResourceGroupDataSource extends DataSourceParent {\n /** Azure resource group properties. */\n properties?: AzureResourceGroupProperties;\n kind: \"AzureResourceGroup\";\n}\n\n/** Azure data source properties. */\nexport interface AzureDataSourceProperties extends DataSourceProperties {\n /** Resource group. */\n resourceGroup?: string;\n /** Subscription id. */\n subscriptionId?: string;\n /** Location. */\n location?: string;\n /** Resource name. */\n resourceName?: string;\n /** Resource id. */\n resourceId?: string;\n /** Data use governance. */\n dataUseGovernance?:\n | \"Disabled\"\n | \"DisabledByAnotherAccount\"\n | \"Enabled\"\n | \"EnabledAtAncestorScope\";\n}\n\n/** Azure synapse workspace data source properties. */\nexport interface AzureSynapseWorkspaceProperties extends AzureDataSourceProperties {\n /** The dedicated SQL endpoint of azure synapse workspace. */\n dedicatedSqlEndpoint?: string;\n /** The serverless SQL endpoint of azure synapse workspace. */\n serverlessSqlEndpoint?: string;\n}\n\n/** Azure synapse workspace data source. */\nexport interface AzureSynapseWorkspaceDataSource extends DataSourceParent {\n /** Azure synapse workspace properties. */\n properties?: AzureSynapseWorkspaceProperties;\n kind: \"AzureSynapseWorkspace\";\n}\n\n/** Azure synapse data source properties. */\nexport interface AzureSynapseProperties extends AzureDataSourceProperties {\n /** The SQL endpoint of azure synapse. */\n sqlEndpoint?: string;\n /** The SQL on demand endpoint of azure synapse. */\n sqlOnDemandEndpoint?: string;\n}\n\n/** Azure synapse data source. */\nexport interface AzureSynapseDataSource extends DataSourceParent {\n /** Azure synapse properties. */\n properties?: AzureSynapseProperties;\n kind: \"AzureSynapse\";\n}\n\n/** The properties of ADLS Gen1. */\nexport interface AdlsGen1Properties extends AzureDataSourceProperties {\n /** The endpoint of ADLS Gen1. */\n endpoint?: string;\n}\n\n/** The ADLS Gen1 data source. */\nexport interface AdlsGen1DataSource extends DataSourceParent {\n /** The properties of ADLS Gen1. */\n properties?: AdlsGen1Properties;\n kind: \"AdlsGen1\";\n}\n\n/** The properties of ADLS Gen2. */\nexport interface AdlsGen2Properties extends AzureDataSourceProperties {\n /** The endpoint of ADLS Gen2. */\n endpoint?: string;\n}\n\n/** The ADLS Gen2 data source. */\nexport interface AdlsGen2DataSource extends DataSourceParent {\n /** The properties of ADLS Gen2. */\n properties?: AdlsGen2Properties;\n kind: \"AdlsGen2\";\n}\n\n/** The properties of Amazon account. */\nexport interface AmazonAccountProperties extends DataSourceProperties {\n /** AWS account id. */\n awsAccountId?: string;\n /** Role arn. */\n roleARN?: string;\n}\n\n/** The Amazon account data source. */\nexport interface AmazonAccountDataSource extends DataSourceParent {\n /** The properties of Amazon account. */\n properties?: AmazonAccountProperties;\n kind: \"AmazonAccount\";\n}\n\n/** The properties of Amazon S3. */\nexport interface AmazonS3Properties extends DataSourceProperties {\n /** Service URL. */\n serviceUrl?: string;\n /** Role ARN. */\n roleARN?: string;\n}\n\n/** The Amazon S3 data source. */\nexport interface AmazonS3DataSource extends DataSourceParent {\n /** Amazon S3 properties. */\n properties?: AmazonS3Properties;\n kind: \"AmazonS3\";\n}\n\n/** The properties of Amazon SQL. */\nexport interface AmazonSqlProperties extends DataSourceProperties {\n /** Server Endpoint. */\n serverEndpoint?: string;\n /** Port. */\n port?: number;\n /** Vpc Endpoint Service Name. */\n vpcEndpointServiceName?: string;\n}\n\n/** The Amazon SQL data source. */\nexport interface AmazonSqlDataSource extends DataSourceParent {\n /** Amazon SQL properties. */\n properties?: AmazonSqlProperties;\n kind: \"AmazonSql\";\n}\n\n/** The properties of Azure Cosmos DB. */\nexport interface AzureCosmosDbProperties extends AzureDataSourceProperties {\n /** The account URI of Azure Cosmos DB. */\n accountUri?: string;\n}\n\n/** The Azure Cosmos DB data source. */\nexport interface AzureCosmosDbDataSource extends DataSourceParent {\n /** The properties of Azure Cosmos DB. */\n properties?: AzureCosmosDbProperties;\n kind: \"AzureCosmosDb\";\n}\n\n/** The properties of azure data explorer. */\nexport interface AzureDataExplorerProperties extends AzureDataSourceProperties {\n endpoint?: string;\n}\n\n/** The azure data explorer data source. */\nexport interface AzureDataExplorerDataSource extends DataSourceParent {\n /** The properties of azure data explorer. */\n properties?: AzureDataExplorerProperties;\n kind: \"AzureDataExplorer\";\n}\n\n/** The properties of azure file service. */\nexport interface AzureFileServiceProperties extends AzureDataSourceProperties {\n /** The endpoint of azure file service. */\n endpoint?: string;\n}\n\n/** The azure file service data source. */\nexport interface AzureFileServiceDataSource extends DataSourceParent {\n /** The properties of azure file service. */\n properties?: AzureFileServiceProperties;\n kind: \"AzureFileService\";\n}\n\n/** The properties of Azure SQL database. */\nexport interface AzureSqlDatabaseProperties extends AzureDataSourceProperties {\n /** The server endpoint of Azure SQL database. */\n serverEndpoint?: string;\n}\n\n/** The Azure SQL database data source. */\nexport interface AzureSqlDatabaseDataSource extends DataSourceParent {\n /** The properties of Azure SQL database. */\n properties?: AzureSqlDatabaseProperties;\n kind: \"AzureSqlDatabase\";\n}\n\n/** The properties of Amazon Postgre SQL. */\nexport interface AmazonPostgreSqlProperties extends DataSourceProperties {\n /** The server endpoint of Amazon Postgre SQL. */\n serverEndpoint?: string;\n /** The port of Amazon Postgre SQL. */\n port?: number;\n /** The vpc endpoint service name of Amazon Postgre SQL. */\n vpcEndpointServiceName?: string;\n}\n\n/** The Amazon Postgre SQL data source. */\nexport interface AmazonPostgreSqlDataSource extends DataSourceParent {\n /** The properties of Amazon Postgre SQL. */\n properties?: AmazonPostgreSqlProperties;\n kind: \"AmazonPostgreSql\";\n}\n\n/** The properties of Azure Postgre SQL. */\nexport interface AzurePostgreSqlProperties extends AzureDataSourceProperties {\n /** The server endpoint of Azure Postgre SQL. */\n serverEndpoint?: string;\n port?: number;\n}\n\n/** The Azure Postgre SQL data source. */\nexport interface AzurePostgreSqlDataSource extends DataSourceParent {\n /** The properties of Azure Postgre SQL. */\n properties?: AzurePostgreSqlProperties;\n kind: \"AzurePostgreSql\";\n}\n\n/** The properties of sql server database. */\nexport interface SqlServerDatabaseProperties extends AzureDataSourceProperties {\n /** The server endpoint of sql server database. */\n serverEndpoint?: string;\n}\n\n/** The sql server database data source. */\nexport interface SqlServerDatabaseDataSource extends DataSourceParent {\n /** The properties of sql server database. */\n properties?: SqlServerDatabaseProperties;\n kind: \"SqlServerDatabase\";\n}\n\n/** The properties of Azure SQL database managed instance. */\nexport interface AzureSqlDatabaseManagedInstanceProperties extends AzureDataSourceProperties {\n serverEndpoint?: string;\n}\n\n/** The Azure SQL database managed instance data source. */\nexport interface AzureSqlDatabaseManagedInstanceDataSource extends DataSourceParent {\n /** The properties of Azure SQL database managed instance. */\n properties?: AzureSqlDatabaseManagedInstanceProperties;\n kind: \"AzureSqlDatabaseManagedInstance\";\n}\n\n/** The properties of Azure SQL data warehouse. */\nexport interface AzureSqlDataWarehouseProperties extends AzureDataSourceProperties {\n serverEndpoint?: string;\n}\n\n/** The Azure SQL data warehouse data source. */\nexport interface AzureSqlDataWarehouseDataSource extends DataSourceParent {\n /** The properties of Azure SQL data warehouse. */\n properties?: AzureSqlDataWarehouseProperties;\n kind: \"AzureSqlDataWarehouse\";\n}\n\n/** Azure MySQL data source properties. */\nexport interface AzureMySqlProperties extends AzureDataSourceProperties {\n /** The server endpoint of azure my sql. */\n serverEndpoint?: string;\n /** The port of azure my sql. */\n port?: number;\n}\n\n/** Azure MySQL data source. */\nexport interface AzureMySqlDataSource extends DataSourceParent {\n /** Azure MySQL properties. */\n properties?: AzureMySqlProperties;\n kind: \"AzureMySql\";\n}\n\n/** The properties of Azure Storage. */\nexport interface AzureStorageProperties extends AzureDataSourceProperties {\n /** The endpoint of Azure Storage. */\n endpoint?: string;\n}\n\n/** The Azure Storage data source. */\nexport interface AzureStorageDataSource extends DataSourceParent {\n /** The properties of Azure Storage. */\n properties?: AzureStorageProperties;\n kind: \"AzureStorage\";\n}\n\n/** The properties of teradata. */\nexport interface TeradataProperties extends DataSourceProperties {\n /** The host of teradata. */\n host?: string;\n}\n\n/** The teradata data source. */\nexport interface TeradataDataSource extends DataSourceParent {\n /** The properties of teradata. */\n properties?: TeradataProperties;\n kind: \"Teradata\";\n}\n\n/** The properties of oracle. */\nexport interface OracleProperties extends DataSourceProperties {\n /** The host of Oracle server. */\n host?: string;\n /** The port of Oracle server. */\n port?: string;\n /** The service of Oracle server. */\n service?: string;\n}\n\n/** The oracle data source. */\nexport interface OracleDataSource extends DataSourceParent {\n /** The properties of oracle. */\n properties?: OracleProperties;\n kind: \"Oracle\";\n}\n\n/** SAP S/4HANA data source properties. */\nexport interface SapS4HanaProperties extends DataSourceProperties {\n /** The application server of SAP S/4HANA. */\n applicationServer?: string;\n /** The system number of SAP S/4HANA. */\n systemNumber?: string;\n}\n\n/** SAP S/4HANA data source. */\nexport interface SapS4HanaDataSource extends DataSourceParent {\n /** SAP S/4HANA data source properties. */\n properties?: SapS4HanaProperties;\n kind: \"SapS4Hana\";\n}\n\n/** SAP ECC properties. */\nexport interface SapEccProperties extends DataSourceProperties {\n /** The application server of SAP ECC. */\n applicationServer?: string;\n /** The system number of SAP ECC. */\n systemNumber?: string;\n}\n\n/** SAP ECC data source. */\nexport interface SapEccDataSource extends DataSourceParent {\n /** SAP ECC properties. */\n properties?: SapEccProperties;\n kind: \"SapEcc\";\n}\n\n/** Power BI properties. */\nexport interface PowerBIProperties extends DataSourceProperties {\n /** The tenant of Power BI. */\n tenant?: string;\n}\n\n/** Power BI data source. */\nexport interface PowerBIDataSource extends DataSourceParent {\n /** Power BI properties. */\n properties?: PowerBIProperties;\n kind: \"PowerBI\";\n}\n\n/** Scan ruleset properties. */\nexport interface ScanRulesetProperties {\n description?: string;\n /** The system classifications that are excluded from the scan ruleset. */\n excludedSystemClassifications?: Array<string>;\n /** The custom classification rule names that are included in the scan ruleset. */\n includedCustomClassificationRuleNames?: Array<string>;\n}\n\n/** Azure subscription scan ruleset properties. */\nexport interface AzureSubscriptionScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure subscription scan ruleset. */\nexport interface AzureSubscriptionScanRuleset extends ScanRulesetParent {\n /** Azure subscription scan ruleset properties. */\n properties?: AzureSubscriptionScanRulesetProperties;\n kind: \"AzureSubscription\";\n}\n\n/** Azure resource group scan ruleset properties. */\nexport interface AzureResourceGroupScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure resource group scan ruleset. */\nexport interface AzureResourceGroupScanRuleset extends ScanRulesetParent {\n /** Azure resource group scan ruleset properties. */\n properties?: AzureResourceGroupScanRulesetProperties;\n kind: \"AzureResourceGroup\";\n}\n\n/** Azure synapse workspace scan ruleset properties. */\nexport interface AzureSynapseWorkspaceScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure synapse workspace scan ruleset. */\nexport interface AzureSynapseWorkspaceScanRuleset extends ScanRulesetParent {\n /** Azure synapse workspace scan ruleset properties. */\n properties?: AzureSynapseWorkspaceScanRulesetProperties;\n kind: \"AzureSynapseWorkspace\";\n}\n\n/** Azure synapse scan ruleset properties. */\nexport interface AzureSynapseScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure synapse scan ruleset. */\nexport interface AzureSynapseScanRuleset extends ScanRulesetParent {\n /** Azure synapse scan ruleset properties. */\n properties?: AzureSynapseScanRulesetProperties;\n kind: \"AzureSynapse\";\n}\n\n/** Custom file type. */\nexport interface CustomFileType {\n /** The built-in file type of the custom file type. */\n builtInType?:\n | \"AVRO\"\n | \"ORC\"\n | \"PARQUET\"\n | \"JSON\"\n | \"TXT\"\n | \"XML\"\n | \"Documents\"\n | \"CSV\"\n | \"PSV\"\n | \"SSV\"\n | \"TSV\"\n | \"GZ\"\n | \"DOC\"\n | \"DOCM\"\n | \"DOCX\"\n | \"DOT\"\n | \"ODP\"\n | \"ODS\"\n | \"ODT\"\n | \"PDF\"\n | \"POT\"\n | \"PPS\"\n | \"PPSX\"\n | \"PPT\"\n | \"PPTM\"\n | \"PPTX\"\n | \"XLC\"\n | \"XLS\"\n | \"XLSB\"\n | \"XLSM\"\n | \"XLSX\"\n | \"XLT\";\n /** The custom delimiter of the custom file type. */\n customDelimiter?: string;\n}\n\n/** Custom file extension. */\nexport interface CustomFileExtension {\n /** The custom file type of the custom file extension. */\n customFileType?: CustomFileType;\n /** The description of the custom file extension. */\n description?: string;\n /** The flag to indicate whether the custom file extension is enabled or not. */\n enabled?: boolean;\n /** The file extension of the custom file extension. */\n fileExtension?: string;\n}\n\n/** Scanning rule. */\nexport interface ScanningRule {\n fileExtensions?: Array<\n | \"AVRO\"\n | \"ORC\"\n | \"PARQUET\"\n | \"JSON\"\n | \"TXT\"\n | \"XML\"\n | \"Documents\"\n | \"CSV\"\n | \"PSV\"\n | \"SSV\"\n | \"TSV\"\n | \"GZ\"\n | \"DOC\"\n | \"DOCM\"\n | \"DOCX\"\n | \"DOT\"\n | \"ODP\"\n | \"ODS\"\n | \"ODT\"\n | \"PDF\"\n | \"POT\"\n | \"PPS\"\n | \"PPSX\"\n | \"PPT\"\n | \"PPTM\"\n | \"PPTX\"\n | \"XLC\"\n | \"XLS\"\n | \"XLSB\"\n | \"XLSM\"\n | \"XLSX\"\n | \"XLT\"\n >;\n /** The custom file extensions of the scanning rule. */\n customFileExtensions?: Array<CustomFileExtension>;\n}\n\n/** Scanning rule scan ruleset properties. */\nexport interface ScanningRuleScanRulesetProperties extends ScanRulesetProperties {\n /** The scanning rule of the scanning rule scan ruleset. */\n scanningRule?: ScanningRule;\n}\n\n/** ADLS Gen1 scan ruleset properties. */\nexport interface AdlsGen1ScanRulesetProperties extends ScanningRuleScanRulesetProperties {}\n\n/** ADLS Gen1 scan ruleset. */\nexport interface AdlsGen1ScanRuleset extends ScanRulesetParent {\n /** ADLS Gen1 scan ruleset properties. */\n properties?: AdlsGen1ScanRulesetProperties;\n kind: \"AdlsGen1\";\n}\n\n/** Adls gen 2 scan ruleset properties. */\nexport interface AdlsGen2ScanRulesetProperties extends ScanningRuleScanRulesetProperties {}\n\n/** Adls gen 2 scan ruleset. */\nexport interface AdlsGen2ScanRuleset extends ScanRulesetParent {\n /** Adls gen 2 scan ruleset properties. */\n properties?: AdlsGen2ScanRulesetProperties;\n kind: \"AdlsGen2\";\n}\n\n/** Amazon account scan ruleset properties. */\nexport interface AmazonAccountScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Amazon account scan ruleset. */\nexport interface AmazonAccountScanRuleset extends ScanRulesetParent {\n /** Amazon account scan ruleset properties. */\n properties?: AmazonAccountScanRulesetProperties;\n kind: \"AmazonAccount\";\n}\n\n/** Amazon S3 scan ruleset properties. */\nexport interface AmazonS3ScanRulesetProperties extends ScanningRuleScanRulesetProperties {}\n\n/** Amazon S3 scan ruleset. */\nexport interface AmazonS3ScanRuleset extends ScanRulesetParent {\n /** Amazon S3 scan ruleset properties. */\n properties?: AmazonS3ScanRulesetProperties;\n kind: \"AmazonS3\";\n}\n\n/** Amazon SQL scan ruleset properties. */\nexport interface AmazonSqlScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Amazon SQL scan ruleset. */\nexport interface AmazonSqlScanRuleset extends ScanRulesetParent {\n /** Amazon SQL scan ruleset properties. */\n properties?: AmazonSqlScanRulesetProperties;\n kind: \"AmazonSql\";\n}\n\n/** Azure Cosmos DB scan ruleset properties. */\nexport interface AzureCosmosDbScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure Cosmos DB scan ruleset. */\nexport interface AzureCosmosDbScanRuleset extends ScanRulesetParent {\n /** Azure Cosmos DB scan ruleset properties. */\n properties?: AzureCosmosDbScanRulesetProperties;\n kind: \"AzureCosmosDb\";\n}\n\n/** Azure data explorer scan ruleset properties. */\nexport interface AzureDataExplorerScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure data explorer scan ruleset. */\nexport interface AzureDataExplorerScanRuleset extends ScanRulesetParent {\n /** Azure data explorer scan ruleset properties. */\n properties?: AzureDataExplorerScanRulesetProperties;\n kind: \"AzureDataExplorer\";\n}\n\n/** Azure file service scan ruleset properties. */\nexport interface AzureFileServiceScanRulesetProperties extends ScanningRuleScanRulesetProperties {}\n\n/** Azure file service scan ruleset. */\nexport interface AzureFileServiceScanRuleset extends ScanRulesetParent {\n /** Azure file service scan ruleset properties. */\n properties?: AzureFileServiceScanRulesetProperties;\n kind: \"AzureFileService\";\n}\n\n/** Azure SQL db scan ruleset properties. */\nexport interface AzureSqlDatabaseScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure SQL db scan ruleset. */\nexport interface AzureSqlDatabaseScanRuleset extends ScanRulesetParent {\n /** Azure SQL db scan ruleset properties. */\n properties?: AzureSqlDatabaseScanRulesetProperties;\n kind: \"AzureSqlDatabase\";\n}\n\n/** Azure Postgre SQL scan ruleset properties. */\nexport interface AmazonPostgreSqlScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure Postgre SQL scan ruleset. */\nexport interface AmazonPostgreSqlScanRuleset extends ScanRulesetParent {\n /** Azure Postgre SQL scan ruleset properties. */\n properties?: AmazonPostgreSqlScanRulesetProperties;\n kind: \"AmazonPostgreSql\";\n}\n\n/** Azure Postgre SQL scan ruleset properties. */\nexport interface AzurePostgreSqlScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure Postgre SQL scan ruleset. */\nexport interface AzurePostgreSqlScanRuleset extends ScanRulesetParent {\n /** Azure Postgre SQL scan ruleset properties. */\n properties?: AzurePostgreSqlScanRulesetProperties;\n kind: \"AzurePostgreSql\";\n}\n\n/** Sql server database scan ruleset properties. */\nexport interface SqlServerDatabaseScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Sql server database scan ruleset. */\nexport interface SqlServerDatabaseScanRuleset extends ScanRulesetParent {\n /** Sql server database scan ruleset properties. */\n properties?: SqlServerDatabaseScanRulesetProperties;\n kind: \"SqlServerDatabase\";\n}\n\n/** Azure SQL db managed instance scan ruleset properties. */\nexport interface AzureSqlDatabaseManagedInstanceScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure SQL db managed instance scan ruleset. */\nexport interface AzureSqlDatabaseManagedInstanceScanRuleset extends ScanRulesetParent {\n /** Azure SQL db managed instance scan ruleset properties. */\n properties?: AzureSqlDatabaseManagedInstanceScanRulesetProperties;\n kind: \"AzureSqlDatabaseManagedInstance\";\n}\n\n/** Azure SQL data warehouse scan ruleset properties. */\nexport interface AzureSqlDataWarehouseScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure SQL data warehouse scan ruleset. */\nexport interface AzureSqlDataWarehouseScanRuleset extends ScanRulesetParent {\n /** Azure SQL data warehouse scan ruleset properties. */\n properties?: AzureSqlDataWarehouseScanRulesetProperties;\n kind: \"AzureSqlDataWarehouse\";\n}\n\n/** Azure MySQL scan ruleset properties. */\nexport interface AzureMySqlScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Azure MySQL scan ruleset. */\nexport interface AzureMySqlScanRuleset extends ScanRulesetParent {\n /** Azure MySQL scan ruleset properties. */\n properties?: AzureMySqlScanRulesetProperties;\n kind: \"AzureMySql\";\n}\n\n/** Azure Storage scan ruleset properties. */\nexport interface AzureStorageScanRulesetProperties extends ScanningRuleScanRulesetProperties {}\n\n/** Azure Storage scan ruleset. */\nexport interface AzureStorageScanRuleset extends ScanRulesetParent {\n /** Azure Storage scan ruleset properties. */\n properties?: AzureStorageScanRulesetProperties;\n kind: \"AzureStorage\";\n}\n\n/** Teradata scan ruleset properties. */\nexport interface TeradataScanRulesetProperties extends ScanningRuleScanRulesetProperties {}\n\n/** Teradata scan ruleset. */\nexport interface TeradataScanRuleset extends ScanRulesetParent {\n /** Teradata scan ruleset properties. */\n properties?: TeradataScanRulesetProperties;\n kind: \"Teradata\";\n}\n\n/** Oracle scan rule set properties. */\nexport interface OracleScanRulesetProperties extends ScanningRuleScanRulesetProperties {}\n\n/** Oracle scan ruleset. */\nexport interface OracleScanRuleset extends ScanRulesetParent {\n /** Oracle scan rule set properties. */\n properties?: OracleScanRulesetProperties;\n kind: \"Oracle\";\n}\n\n/** SAP S/4HANA scan ruleset properties. */\nexport interface SapS4HanaScanRulesetProperties extends ScanRulesetProperties {}\n\n/** SAP S/4HANA scan ruleset. */\nexport interface SapS4HanaScanRuleset extends ScanRulesetParent {\n /** SAP S/4HANA scan ruleset properties. */\n properties?: SapS4HanaScanRulesetProperties;\n kind: \"SapS4Hana\";\n}\n\n/** SAP ECC scan ruleset properties. */\nexport interface SapEccScanRulesetProperties extends ScanRulesetProperties {}\n\n/** SAP ECC scan ruleset. */\nexport interface SapEccScanRuleset extends ScanRulesetParent {\n /** SAP ECC scan ruleset properties. */\n properties?: SapEccScanRulesetProperties;\n kind: \"SapEcc\";\n}\n\n/** Power BI scan ruleset properties. */\nexport interface PowerBIScanRulesetProperties extends ScanRulesetProperties {}\n\n/** Power BI scan ruleset. */\nexport interface PowerBIScanRuleset extends ScanRulesetParent {\n /** Power BI scan ruleset properties. */\n properties?: PowerBIScanRulesetProperties;\n kind: \"PowerBI\";\n}\n\n/** Resource name filter. */\nexport interface ResourceNameFilter {\n excludePrefixes?: Array<string>;\n includePrefixes?: Array<string>;\n resources?: Array<string>;\n}\n\n/** The credential reference. */\nexport interface CredentialReference {\n /** The reference name of the credential. */\n referenceName?: string;\n /** The type of the credential. */\n credentialType?:\n | \"AccountKey\"\n | \"ServicePrincipal\"\n | \"BasicAuth\"\n | \"SqlAuth\"\n | \"AmazonARN\"\n | \"ConsumerKeyAuth\"\n | \"DelegatedAuth\"\n | \"ManagedIdentity\";\n}\n\n/** Resource type filter. */\nexport interface ResourceTypeFilter {\n /** The name of the scan ruleset. */\n scanRulesetName?: string;\n /** The type of the scan ruleset. */\n scanRulesetType?: \"Custom\" | \"System\";\n /** Resource name filter. */\n resourceNameFilter?: ResourceNameFilter;\n /** The credential reference. */\n credential?: CredentialReference;\n}\n\n/** The integration runtime reference. */\nexport interface ConnectedVia {\n /** The reference name of the integration runtime. */\n referenceName?: string;\n}\n\n/** Scan properties. */\nexport interface ScanProperties {\n /** The name of the scan ruleset. */\n scanRulesetName?: string;\n /** The name of the business rule set. */\n businessRuleSetName?: string;\n /** The type of the scan ruleset. */\n scanRulesetType?: \"Custom\" | \"System\";\n /** The collection reference of the scan. */\n collection?: CollectionReference;\n /** The domain of the scan. */\n domain?: string;\n /** The number of workers of the scan. */\n workers?: number;\n /** The integration runtime reference of the scan. */\n connectedVia?: ConnectedVia;\n /** The flag to indicate whether the scan is a preset scan or not. */\n isPresetScan?: boolean;\n /** The flag to indicate whether the live view is enabled or not. */\n isLiveViewEnabled?: boolean;\n /** The number of parallel scans. */\n parallelScanCount?: number;\n /** The log level of the scan. */\n logLevel?: string;\n}\n\n/** Expanding resource scan properties. */\nexport interface ExpandingResourceScanProperties extends ScanProperties {\n /** Resource types of scan properties in expanding resources. */\n resourceTypes?: ExpandingResourceScanPropertiesResourceTypes;\n /** The credential reference. */\n credential?: CredentialReference;\n}\n\n/** Resource types of scan properties in expanding resources. */\nexport interface ExpandingResourceScanPropertiesResourceTypes {\n /** Resource type filter. */\n none?: ResourceTypeFilter;\n /** Resource type filter. */\n azureSubscription?: ResourceTypeFilter;\n /** Resource type filter. */\n azureResourceGroup?: ResourceTypeFilter;\n /** Resource type filter. */\n azureSynapseWorkspace?: ResourceTypeFilter;\n /** Resource type filter. */\n azureSynapse?: ResourceTypeFilter;\n /** Resource type filter. */\n adlsGen1?: ResourceTypeFilter;\n /** Resource type filter. */\n adlsGen2?: ResourceTypeFilter;\n /** Resource type filter. */\n amazonAccount?: ResourceTypeFilter;\n /** Resource type filter. */\n amazonS3?: ResourceTypeFilter;\n /** Resource type filter. */\n amazonSql?: ResourceTypeFilter;\n /** Resource type filter. */\n azureCosmosDb?: ResourceTypeFilter;\n /** Resource type filter. */\n azureDataExplorer?: ResourceTypeFilter;\n /** Resource type filter. */\n azureFileService?: ResourceTypeFilter;\n /** Resource type filter. */\n azureSqlDatabase?: ResourceTypeFilter;\n /** Resource type filter. */\n amazonPostgreSql?: ResourceTypeFilter;\n /** Resource type filter. */\n azurePostgreSql?: ResourceTypeFilter;\n /** Resource type filter. */\n sqlServerDatabase?: ResourceTypeFilter;\n /** Resource type filter. */\n azureSqlDatabaseManagedInstance?: ResourceTypeFilter;\n /** Resource type filter. */\n azureSqlDataWarehouse?: ResourceTypeFilter;\n /** Resource type filter. */\n azureMySql?: ResourceTypeFilter;\n /** Resource type filter. */\n azureStorage?: ResourceTypeFilter;\n /** Resource type filter. */\n teradata?: ResourceTypeFilter;\n /** Resource type filter. */\n oracle?: ResourceTypeFilter;\n /** Resource type filter. */\n sapS4Hana?: ResourceTypeFilter;\n /** Resource type filter. */\n sapEcc?: ResourceTypeFilter;\n /** Resource type filter. */\n powerBI?: ResourceTypeFilter;\n}\n\n/** Azure subscription credential scan properties. */\nexport interface AzureSubscriptionCredentialScanProperties extends ExpandingResourceScanProperties {}\n\n/** Azure subscription credential scan. */\nexport interface AzureSubscriptionCredentialScan extends ScanParent {\n /** Azure subscription credential scan properties. */\n properties?: AzureSubscriptionCredentialScanProperties;\n kind: \"AzureSubscriptionCredential\";\n}\n\n/** Azure subscription MSI scan properties. */\nexport interface AzureSubscriptionMsiScanProperties extends ExpandingResourceScanProperties {}\n\n/** Azure subscription MSI scan. */\nexport interface AzureSubscriptionMsiScan extends ScanParent {\n /** Azure subscription MSI scan properties. */\n properties?: AzureSubscriptionMsiScanProperties;\n kind: \"AzureSubscriptionMsi\";\n}\n\n/** Azure resource group credential scan properties. */\nexport interface AzureResourceGroupCredentialScanProperties extends ExpandingResourceScanProperties {}\n\n/** Azure resource group credential scan. */\nexport interface AzureResourceGroupCredentialScan extends ScanParent {\n /** Azure resource group credential scan properties. */\n properties?: AzureResourceGroupCredentialScanProperties;\n kind: \"AzureResourceGroupCredential\";\n}\n\n/** Azure resource group MSI scan properties. */\nexport interface AzureResourceGroupMsiScanProperties extends ExpandingResourceScanProperties {}\n\n/** Azure resource group MSI scan. */\nexport interface AzureResourceGroupMsiScan extends ScanParent {\n /** Azure resource group MSI scan properties. */\n properties?: AzureResourceGroupMsiScanProperties;\n kind: \"AzureResourceGroupMsi\";\n}\n\n/** Azure synapse workspace credential scan properties. */\nexport interface AzureSynapseWorkspaceCredentialScanProperties extends ExpandingResourceScanProperties {}\n\n/** Azure synapse workspace credential scan. */\nexport interface AzureSynapseWorkspaceCredentialScan extends ScanParent {\n /** Azure synapse workspace credential scan properties. */\n properties?: AzureSynapseWorkspaceCredentialScanProperties;\n kind: \"AzureSynapseWorkspaceCredential\";\n}\n\n/** Azure synapse workspace MSI scan properties. */\nexport interface AzureSynapseWorkspaceMsiScanProperties extends ExpandingResourceScanProperties {}\n\n/** Azure synapse workspace MSI scan. */\nexport interface AzureSynapseWorkspaceMsiScan extends ScanParent {\n /** Azure synapse workspace MSI scan properties. */\n properties?: AzureSynapseWorkspaceMsiScanProperties;\n kind: \"AzureSynapseWorkspaceMsi\";\n}\n\n/** Azure synapse credential scan properties. */\nexport interface AzureSynapseCredentialScanProperties extends ExpandingResourceScanProperties {}\n\n/** Azure synapse credential scan. */\nexport interface AzureSynapseCredentialScan extends ScanParent {\n /** Azure synapse credential scan properties. */\n properties?: AzureSynapseCredentialScanProperties;\n kind: \"AzureSynapseCredential\";\n}\n\n/** Azure synapse MSI scan properties. */\nexport interface AzureSynapseMsiScanProperties extends ExpandingResourceScanProperties {}\n\n/** Azure synapse MSI scan. */\nexport interface AzureSynapseMsiScan extends ScanParent {\n /** Azure synapse MSI scan properties. */\n properties?: AzureSynapseMsiScanProperties;\n kind: \"AzureSynapseMsi\";\n}\n\n/** ADLS Gen1 credential scan properties. */\nexport interface AdlsGen1CredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n}\n\n/** ADLS Gen1 credential scan. */\nexport interface AdlsGen1CredentialScan extends ScanParent {\n /** ADLS Gen1 credential scan properties. */\n properties?: AdlsGen1CredentialScanProperties;\n kind: \"AdlsGen1Credential\";\n}\n\n/** ADLS Gen1 MSI scan properties. */\nexport interface AdlsGen1MsiScanProperties extends ScanProperties {}\n\n/** ADLS Gen1 MSI scan. */\nexport interface AdlsGen1MsiScan extends ScanParent {\n /** ADLS Gen1 MSI scan properties. */\n properties?: AdlsGen1MsiScanProperties;\n kind: \"AdlsGen1Msi\";\n}\n\n/** ADLS Gen2 credential scan properties. */\nexport interface AdlsGen2CredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n}\n\n/** ADLS Gen2 credential scan. */\nexport interface AdlsGen2CredentialScan extends ScanParent {\n /** ADLS Gen2 credential scan properties. */\n properties?: AdlsGen2CredentialScanProperties;\n kind: \"AdlsGen2Credential\";\n}\n\n/** ADLS Gen2 MSI scan properties. */\nexport interface AdlsGen2MsiScanProperties extends ScanProperties {}\n\n/** ADLS Gen2 MSI scan. */\nexport interface AdlsGen2MsiScan extends ScanParent {\n /** ADLS Gen2 MSI scan properties. */\n properties?: AdlsGen2MsiScanProperties;\n kind: \"AdlsGen2Msi\";\n}\n\n/** Amazon account credential scan properties. */\nexport interface AmazonAccountCredentialScanProperties extends ExpandingResourceScanProperties {}\n\n/** Amazon account credential scan. */\nexport interface AmazonAccountCredentialScan extends ScanParent {\n /** Amazon account credential scan properties. */\n properties?: AmazonAccountCredentialScanProperties;\n kind: \"AmazonAccountCredential\";\n}\n\n/** Amazon S3 credential scan properties. */\nexport interface AmazonS3CredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n roleARN?: string;\n isMauiScan?: boolean;\n}\n\n/** Amazon S3 credential scan. */\nexport interface AmazonS3CredentialScan extends ScanParent {\n /** Amazon S3 credential scan properties. */\n properties?: AmazonS3CredentialScanProperties;\n kind: \"AmazonS3Credential\";\n}\n\n/** Amazon S3 role ARN scan properties. */\nexport interface AmazonS3RoleARNScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n /** The role ARN of the scan. */\n roleARN?: string;\n /** The flag to indicate whether the scan is a Maui scan or not. */\n isMauiScan?: boolean;\n}\n\n/** Amazon S3 role ARN scan. */\nexport interface AmazonS3RoleARNScan extends ScanParent {\n /** Amazon S3 role ARN scan properties. */\n properties?: AmazonS3RoleARNScanProperties;\n kind: \"AmazonS3RoleARN\";\n}\n\n/** Amazon SQL credential scan properties. */\nexport interface AmazonSqlCredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n /** The endpoint of Amazon SQL server. */\n serverEndpoint?: string;\n /** The database name. */\n databaseName?: string;\n /** The port of Amazon SQL server. */\n port?: number;\n /** The VPC endpoint service name of Amazon SQL server. */\n vpcEndpointServiceName?: string;\n}\n\n/** Amazon SQL credential scan. */\nexport interface AmazonSqlCredentialScan extends ScanParent {\n /** Amazon SQL credential scan properties. */\n properties?: AmazonSqlCredentialScanProperties;\n kind: \"AmazonSqlCredential\";\n}\n\n/** Azure Cosmos DB credential scan properties. */\nexport interface AzureCosmosDbCredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n databaseName?: string;\n}\n\n/** Azure Cosmos DB credential scan. */\nexport interface AzureCosmosDbCredentialScan extends ScanParent {\n /** Azure Cosmos DB credential scan properties. */\n properties?: AzureCosmosDbCredentialScanProperties;\n kind: \"AzureCosmosDbCredential\";\n}\n\n/** Azure data Explorer credential scan properties. */\nexport interface AzureDataExplorerCredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n database?: string;\n}\n\n/** Azure data Explorer credential scan. */\nexport interface AzureDataExplorerCredentialScan extends ScanParent {\n /** Azure data Explorer credential scan properties. */\n properties?: AzureDataExplorerCredentialScanProperties;\n kind: \"AzureDataExplorerCredential\";\n}\n\n/** Azure data Explorer MSI scan properties. */\nexport interface AzureDataExplorerMsiScanProperties extends ScanProperties {\n database?: string;\n}\n\n/** Azure data Explorer MSI scan. */\nexport interface AzureDataExplorerMsiScan extends ScanParent {\n /** Azure data Explorer MSI scan properties. */\n properties?: AzureDataExplorerMsiScanProperties;\n kind: \"AzureDataExplorerMsi\";\n}\n\n/** Azure file service credential scan properties. */\nexport interface AzureFileServiceCredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n shareName?: string;\n}\n\n/** Azure file service credential scan. */\nexport interface AzureFileServiceCredentialScan extends ScanParent {\n /** Azure file service credential scan properties. */\n properties?: AzureFileServiceCredentialScanProperties;\n kind: \"AzureFileServiceCredential\";\n}\n\n/** Azure SQL scan properties. */\nexport interface AzureSqlScanProperties extends ScanProperties {\n /** The endpoint of Azure SQL server. */\n serverEndpoint?: string;\n /** The database name. */\n databaseName?: string;\n}\n\n/** Azure SQL credential scan properties. */\nexport interface AzureSqlCredentialScanProperties extends AzureSqlScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n}\n\n/** Azure SQL database credential scan properties. */\nexport interface AzureSqlDatabaseCredentialScanProperties extends AzureSqlCredentialScanProperties {}\n\n/** Azure SQL database credential scan. */\nexport interface AzureSqlDatabaseCredentialScan extends ScanParent {\n /** Azure SQL database credential scan properties. */\n properties?: AzureSqlDatabaseCredentialScanProperties;\n kind: \"AzureSqlDatabaseCredential\";\n}\n\n/** Azure SQL database MSI scan properties. */\nexport interface AzureSqlDatabaseMsiScanProperties extends AzureSqlScanProperties {}\n\n/** Azure SQL database MSI scan. */\nexport interface AzureSqlDatabaseMsiScan extends ScanParent {\n /** Azure SQL database MSI scan properties. */\n properties?: AzureSqlDatabaseMsiScanProperties;\n kind: \"AzureSqlDatabaseMsi\";\n}\n\n/** Amazon Postgre SQL credential scan properties. */\nexport interface AmazonPostgreSqlCredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n /** The endpoint of Amazon Postgre SQL server. */\n serverEndpoint?: string;\n /** The database name. */\n databaseName?: string;\n /** The port of Amazon Postgre SQL server. */\n port?: number;\n /** The vpc endpoint service name of Amazon Postgre SQL server. */\n vpcEndpointServiceName?: string;\n}\n\n/** Amazon Postgre SQL credential scan. */\nexport interface AmazonPostgreSqlCredentialScan extends ScanParent {\n /** Amazon Postgre SQL credential scan properties. */\n properties?: AmazonPostgreSqlCredentialScanProperties;\n kind: \"AmazonPostgreSqlCredential\";\n}\n\n/** Azure Postgre SQL credential scan properties. */\nexport interface AzurePostgreSqlCredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n /** The endpoint of Azure Postgre SQL server. */\n serverEndpoint?: string;\n /** The database name. */\n databaseName?: string;\n /** The port of Azure Postgre SQL server. */\n port?: number;\n /** The SSL mode of Azure Postgre SQL server. */\n sslMode?: number;\n}\n\n/** Azure Postgre SQL credential scan. */\nexport interface AzurePostgreSqlCredentialScan extends ScanParent {\n /** Azure Postgre SQL credential scan properties. */\n properties?: AzurePostgreSqlCredentialScanProperties;\n kind: \"AzurePostgreSqlCredential\";\n}\n\n/** SQL server database credential scan properties. */\nexport interface SqlServerDatabaseCredentialScanProperties extends AzureSqlCredentialScanProperties {}\n\n/** SQL server database credential scan. */\nexport interface SqlServerDatabaseCredentialScan extends ScanParent {\n /** SQL server database credential scan properties. */\n properties?: SqlServerDatabaseCredentialScanProperties;\n kind: \"SqlServerDatabaseCredential\";\n}\n\n/** Azure SQL database managed instance credential scan properties. */\nexport interface AzureSqlDatabaseManagedInstanceCredentialScanProperties extends AzureSqlCredentialScanProperties {}\n\n/** Azure SQL database managed instance credential scan. */\nexport interface AzureSqlDatabaseManagedInstanceCredentialScan extends ScanParent {\n /** Azure SQL database managed instance credential scan properties. */\n properties?: AzureSqlDatabaseManagedInstanceCredentialScanProperties;\n kind: \"AzureSqlDatabaseManagedInstanceCredential\";\n}\n\n/** Azure SQL database managed instance MSI scan properties. */\nexport interface AzureSqlDatabaseManagedInstanceMsiScanProperties extends AzureSqlScanProperties {}\n\n/** Azure SQL database managed instance MSI scan. */\nexport interface AzureSqlDatabaseManagedInstanceMsiScan extends ScanParent {\n /** Azure SQL database managed instance MSI scan properties. */\n properties?: AzureSqlDatabaseManagedInstanceMsiScanProperties;\n kind: \"AzureSqlDatabaseManagedInstanceMsi\";\n}\n\n/** Azure SQL data warehouse credential scan properties. */\nexport interface AzureSqlDataWarehouseCredentialScanProperties extends AzureSqlCredentialScanProperties {}\n\n/** Azure SQL data warehouse credential scan. */\nexport interface AzureSqlDataWarehouseCredentialScan extends ScanParent {\n /** Azure SQL data warehouse credential scan properties. */\n properties?: AzureSqlDataWarehouseCredentialScanProperties;\n kind: \"AzureSqlDataWarehouseCredential\";\n}\n\n/** Azure SQL data warehouse MSI scan properties. */\nexport interface AzureSqlDataWarehouseMsiScanProperties extends AzureSqlScanProperties {}\n\n/** Azure SQL data warehouse MSI scan. */\nexport interface AzureSqlDataWarehouseMsiScan extends ScanParent {\n /** Azure SQL data warehouse MSI scan properties. */\n properties?: AzureSqlDataWarehouseMsiScanProperties;\n kind: \"AzureSqlDataWarehouseMsi\";\n}\n\n/** Azure MySQL scan properties. */\nexport interface AzureMySqlScanProperties extends ScanProperties {\n /** The endpoint of the Azure MySQL server. */\n serverEndpoint?: string;\n /** The port of the Azure MySQL server. */\n port?: number;\n /** The database name. */\n databaseName?: string;\n /** The credential reference. */\n credential?: CredentialReference;\n}\n\n/** Azure MySQL credential scan properties. */\nexport interface AzureMySqlCredentialScanProperties extends AzureMySqlScanProperties {}\n\n/** Azure MySQL credential scan. */\nexport interface AzureMySqlCredentialScan extends ScanParent {\n /** Azure MySQL credential scan properties. */\n properties?: AzureMySqlCredentialScanProperties;\n kind: \"AzureMySqlCredential\";\n}\n\n/** Miti scan properties. */\nexport interface MitiScanProperties extends ScanProperties {\n /** The maximum memory allowed in GB. */\n maximumMemoryAllowedInGb?: string;\n /** The miti cache. */\n mitiCache?: string;\n}\n\n/** Azure Storage credential scan properties. */\nexport interface AzureStorageCredentialScanProperties extends ScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n}\n\n/** Azure Storage credential scan. */\nexport interface AzureStorageCredentialScan extends ScanParent {\n /** Azure Storage credential scan properties. */\n properties?: AzureStorageCredentialScanProperties;\n kind: \"AzureStorageCredential\";\n}\n\n/** Azure Storage MSI scan properties. */\nexport interface AzureStorageMsiScanProperties extends ScanProperties {}\n\n/** Azure Storage MSI scan. */\nexport interface AzureStorageMsiScan extends ScanParent {\n /** Azure Storage MSI scan properties. */\n properties?: AzureStorageMsiScanProperties;\n kind: \"AzureStorageMsi\";\n}\n\n/** Teradata credential scan properties. */\nexport interface TeradataCredentialScanProperties extends MitiScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n schema?: string;\n driverLocation?: string;\n storedProcedureDetails?: string;\n}\n\n/** Teradata credential scan. */\nexport interface TeradataCredentialScan extends ScanParent {\n /** Teradata credential scan properties. */\n properties?: TeradataCredentialScanProperties;\n kind: \"TeradataTeradataCredential\";\n}\n\n/** Teradata user pass scan properties. */\nexport interface TeradataUserPassScanProperties extends ScanProperties {\n username?: string;\n password?: string;\n}\n\n/** Teradata user pass scan. */\nexport interface TeradataUserPassScan extends ScanParent {\n /** Teradata user pass scan properties. */\n properties?: TeradataUserPassScanProperties;\n kind: \"TeradataUserPass\";\n}\n\n/** Teradata user pass scan properties. */\nexport interface TeradataTeradataUserPassScanProperties extends MitiScanProperties {\n /** The username of Teradata server. */\n username?: string;\n /** The password of Teradata server. */\n password?: string;\n /** The schema. */\n schema?: string;\n /** The driver location. */\n driverLocation?: string;\n}\n\n/** Teradata user pass scan. */\nexport interface TeradataTeradataUserPassScan extends ScanParent {\n /** Teradata user pass scan properties. */\n properties?: TeradataTeradataUserPassScanProperties;\n kind: \"TeradataTeradataUserPass\";\n}\n\n/** Oracle credential scan properties. */\nexport interface OracleCredentialScanProperties extends MitiScanProperties {\n /** The credential reference. */\n credential?: CredentialReference;\n schema?: string;\n driverLocation?: string;\n storedProcedureDetails?: string;\n}\n\n/** Oracle credential scan. */\nexport interface OracleCredentialScan extends ScanParent {\n /** Oracle credential scan properties. */\n properties?: OracleCredentialScanProperties;\n kind: \"OracleOracleCredential\";\n}\n\n/** Oracle user pass scan properties. */\nexport interface OracleUserPassScanProperties extends MitiScanProperties {\n /** The username of Oracle server. */\n username?: string;\n /** The password of Oracle server. */\n password?: string;\n /** The schema. */\n schema?: string;\n /** The driver location. */\n driverLocation?: string;\n}\n\n/** Oracle user pass scan. */\nexport interface OracleUserPassScan extends ScanParent {\n /** Oracle user pass scan properties. */\n properties?: OracleUserPassScanProperties;\n kind: \"OracleOracleUserPass\";\n}\n\n/** SAP S/4HANA credential scan properties. */\nexport interface SapS4HanaSapS4HanaCredentialScanProperties extends MitiScanProperties {\n /** The client ID of SAP S/4HANA server. */\n clientId?: string;\n /** The credential reference. */\n credential?: CredentialReference;\n /** The JCo library path. */\n jCoLibraryPath?: string;\n}\n\n/** SAP S/4HANA credential scan. */\nexport interface SapS4HanaSapS4HanaCredentialScan extends ScanParent {\n /** SAP S/4HANA credential scan properties. */\n properties?: SapS4HanaSapS4HanaCredentialScanProperties;\n kind: \"SapS4HanaSapS4HanaCredential\";\n}\n\n/** SAP S/4HANA user pass scan properties. */\nexport interface SapS4HanaSapS4HanaUserPassScanProperties extends MitiScanProperties {\n /** The client ID of SAP S/4HANA server. */\n clientId?: string;\n /** The username of SAP S/4HANA server. */\n username?: string;\n /** The password of SAP S/4HANA server. */\n password?: string;\n /** The JCo library path. */\n jCoLibraryPath?: string;\n}\n\n/** SAP S/4HANA user pass scan. */\nexport interface SapS4HanaSapS4HanaUserPassScan extends ScanParent {\n /** SAP S/4HANA user pass scan properties. */\n properties?: SapS4HanaSapS4HanaUserPassScanProperties;\n kind: \"SapS4HanaSapS4HanaUserPass\";\n}\n\n/** SAP ECC credential scan properties. */\nexport interface SapEccCredentialScanProperties extends MitiScanProperties {\n clientId?: string;\n /** The credential reference. */\n credential?: CredentialReference;\n jCoLibraryPath?: string;\n}\n\n/** SAP ECC credential scan. */\nexport interface SapEccCredentialScan extends ScanParent {\n /** SAP ECC credential scan properties. */\n properties?: SapEccCredentialScanProperties;\n kind: \"SapEccSapEccCredential\";\n}\n\n/** SAP ECC user pass scan properties. */\nexport interface SapEccUserPassScanProperties extends MitiScanProperties {\n clientId?: string;\n username?: string;\n password?: string;\n jCoLibraryPath?: string;\n}\n\n/** SAP ECC user pass scan. */\nexport interface SapEccUserPassScan extends ScanParent {\n /** SAP ECC user pass scan properties. */\n properties?: SapEccUserPassScanProperties;\n kind: \"SapEccSapEccUserPass\";\n}\n\n/** Power BI delegated scan properties. */\nexport interface PowerBIDelegatedScanProperties extends ScanProperties {\n tenant?: string;\n authenticationType?: string;\n clientId?: string;\n userName?: string;\n password?: string;\n includePersonalWorkspaces?: boolean;\n}\n\n/** Power BI delegated scan. */\nexport interface PowerBIDelegatedScan extends ScanParent {\n /** Power BI delegated scan properties. */\n properties?: PowerBIDelegatedScanProperties;\n kind: \"PowerBIDelegated\";\n}\n\n/** Power BI MSI scan properties. */\nexport interface PowerBIMsiScanProperties extends ScanProperties {\n /** Whether to include personal workspaces or not. */\n includePersonalWorkspaces?: boolean;\n}\n\n/** Power BI MSI scan. */\nexport interface PowerBIMsiScan extends ScanParent {\n /** Power BI MSI scan properties. */\n properties?: PowerBIMsiScanProperties;\n kind: \"PowerBIMsi\";\n}\n\n/** Azure subscription system scan ruleset. */\nexport interface AzureSubscriptionSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure subscription scan ruleset properties. */\n properties?: AzureSubscriptionScanRulesetProperties;\n kind: \"AzureSubscription\";\n}\n\n/** Azure resource group system scan ruleset. */\nexport interface AzureResourceGroupSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure resource group scan ruleset properties. */\n properties?: AzureResourceGroupScanRulesetProperties;\n kind: \"AzureResourceGroup\";\n}\n\n/** Azure synapse workspace system scan ruleset. */\nexport interface AzureSynapseWorkspaceSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure synapse workspace scan ruleset properties. */\n properties?: AzureSynapseWorkspaceScanRulesetProperties;\n kind: \"AzureSynapseWorkspace\";\n}\n\n/** Azure Synapse System scan rule set. */\nexport interface AzureSynapseSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure synapse scan ruleset properties. */\n properties?: AzureSynapseScanRulesetProperties;\n kind: \"AzureSynapse\";\n}\n\n/** ADLS Gen1 System scan rule set. */\nexport interface AdlsGen1SystemScanRuleset extends SystemScanRulesetParent {\n /** ADLS Gen1 scan ruleset properties. */\n properties?: AdlsGen1ScanRulesetProperties;\n kind: \"AdlsGen1\";\n}\n\n/** ADLS Gen2 system scan rule set. */\nexport interface AdlsGen2SystemScanRuleset extends SystemScanRulesetParent {\n /** Adls gen 2 scan ruleset properties. */\n properties?: AdlsGen2ScanRulesetProperties;\n kind: \"AdlsGen2\";\n}\n\n/** Amazon account system scan rule set. */\nexport interface AmazonAccountSystemScanRuleset extends SystemScanRulesetParent {\n /** Amazon account scan ruleset properties. */\n properties?: AmazonAccountScanRulesetProperties;\n kind: \"AmazonAccount\";\n}\n\n/** Amazon S3 system scan ruleset. */\nexport interface AmazonS3SystemScanRuleset extends SystemScanRulesetParent {\n /** Amazon S3 scan ruleset properties. */\n properties?: AmazonS3ScanRulesetProperties;\n kind: \"AmazonS3\";\n}\n\n/** Amazon SQL system scan ruleset. */\nexport interface AmazonSqlSystemScanRuleset extends SystemScanRulesetParent {\n /** Amazon SQL scan ruleset properties. */\n properties?: AmazonSqlScanRulesetProperties;\n kind: \"AmazonSql\";\n}\n\n/** Azure Cosmos DB system scan rule set. */\nexport interface AzureCosmosDbSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure Cosmos DB scan ruleset properties. */\n properties?: AzureCosmosDbScanRulesetProperties;\n kind: \"AzureCosmosDb\";\n}\n\n/** Azure data explorer system scan rule set. */\nexport interface AzureDataExplorerSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure data explorer scan ruleset properties. */\n properties?: AzureDataExplorerScanRulesetProperties;\n kind: \"AzureDataExplorer\";\n}\n\n/** Azure file service system scan rule set. */\nexport interface AzureFileServiceSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure file service scan ruleset properties. */\n properties?: AzureFileServiceScanRulesetProperties;\n kind: \"AzureFileService\";\n}\n\n/** Azure SQL db system scan rule set. */\nexport interface AzureSqlDatabaseSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure SQL db scan ruleset properties. */\n properties?: AzureSqlDatabaseScanRulesetProperties;\n kind: \"AzureSqlDatabase\";\n}\n\n/** Amazon Postgre SQL system scan rule set. */\nexport interface AmazonPostgreSqlSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure Postgre SQL scan ruleset properties. */\n properties?: AmazonPostgreSqlScanRulesetProperties;\n kind: \"AmazonPostgreSql\";\n}\n\n/** Azure Postgre SQL system scan rule set. */\nexport interface AzurePostgreSqlSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure Postgre SQL scan ruleset properties. */\n properties?: AzurePostgreSqlScanRulesetProperties;\n kind: \"AzurePostgreSql\";\n}\n\n/** Sql server database system scan rule set. */\nexport interface SqlServerDatabaseSystemScanRuleset extends SystemScanRulesetParent {\n /** Sql server database scan ruleset properties. */\n properties?: SqlServerDatabaseScanRulesetProperties;\n kind: \"SqlServerDatabase\";\n}\n\n/** Azure SQL database managed instance system scan rule set. */\nexport interface AzureSqlDatabaseManagedInstanceSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure SQL db managed instance scan ruleset properties. */\n properties?: AzureSqlDatabaseManagedInstanceScanRulesetProperties;\n kind: \"AzureSqlDatabaseManagedInstance\";\n}\n\n/** Azure SQL data warehouse system scan ruleset. */\nexport interface AzureSqlDataWarehouseSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure SQL data warehouse scan ruleset properties. */\n properties?: AzureSqlDataWarehouseScanRulesetProperties;\n kind: \"AzureSqlDataWarehouse\";\n}\n\n/** Azure MySQL system scan ruleset. */\nexport interface AzureMySqlSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure MySQL scan ruleset properties. */\n properties?: AzureMySqlScanRulesetProperties;\n kind: \"AzureMySql\";\n}\n\n/** Azure Storage system scan ruleset. */\nexport interface AzureStorageSystemScanRuleset extends SystemScanRulesetParent {\n /** Azure Storage scan ruleset properties. */\n properties?: AzureStorageScanRulesetProperties;\n kind: \"AzureStorage\";\n}\n\n/** Teradata system scan ruleset. */\nexport interface TeradataSystemScanRuleset extends SystemScanRulesetParent {\n /** Teradata scan ruleset properties. */\n properties?: TeradataScanRulesetProperties;\n kind: \"Teradata\";\n}\n\n/** Oracle system scan ruleset. */\nexport interface OracleSystemScanRuleset extends SystemScanRulesetParent {\n /** Oracle scan rule set properties. */\n properties?: OracleScanRulesetProperties;\n kind: \"Oracle\";\n}\n\n/** SAP S/4HANA system scan ruleset. */\nexport interface SapS4HanaSystemScanRuleset extends SystemScanRulesetParent {\n /** SAP S/4HANA scan ruleset properties. */\n properties?: SapS4HanaScanRulesetProperties;\n kind: \"SapS4Hana\";\n}\n\n/** SAP ECC system scan ruleset. */\nexport interface SapEccSystemScanRuleset extends SystemScanRulesetParent {\n /** SAP ECC scan ruleset properties. */\n properties?: SapEccScanRulesetProperties;\n kind: \"SapEcc\";\n}\n\n/** Power BI system scan ruleset. */\nexport interface PowerBISystemScanRuleset extends SystemScanRulesetParent {\n /** Power BI scan ruleset properties. */\n properties?: PowerBIScanRulesetProperties;\n kind: \"PowerBI\";\n}\n\n/** The classification rule. */\nexport type ClassificationRule = SystemClassificationRule | CustomClassificationRule;\n/** The credential. */\nexport type Credential =\n | AccountKeyAuthAzureKeyVaultCredential\n | BasicAuthAzureKeyVaultCredential\n | RoleARNCredential\n | ServicePrincipalAzureKeyVaultCredential\n | SqlAuthAzureKeyVaultCredential\n | ConsumerKeyAuthAzureKeyVaultCredential\n | DelegatedAuthAzureKeyVaultCredential\n | ManagedIdentityAzureKeyVaultCredential;\n/** The data source. */\nexport type DataSource =\n | AzureSubscriptionDataSource\n | AzureResourceGroupDataSource\n | AzureSynapseWorkspaceDataSource\n | AzureSynapseDataSource\n | AdlsGen1DataSource\n | AdlsGen2DataSource\n | AmazonAccountDataSource\n | AmazonS3DataSource\n | AmazonSqlDataSource\n | AzureCosmosDbDataSource\n | AzureDataExplorerDataSource\n | AzureFileServiceDataSource\n | AzureSqlDatabaseDataSource\n | AmazonPostgreSqlDataSource\n | AzurePostgreSqlDataSource\n | SqlServerDatabaseDataSource\n | AzureSqlDatabaseManagedInstanceDataSource\n | AzureSqlDataWarehouseDataSource\n | AzureMySqlDataSource\n | AzureStorageDataSource\n | TeradataDataSource\n | OracleDataSource\n | SapS4HanaDataSource\n | SapEccDataSource\n | PowerBIDataSource;\n/** The scan. */\nexport type Scan =\n | AzureSubscriptionCredentialScan\n | AzureSubscriptionMsiScan\n | AzureResourceGroupCredentialScan\n | AzureResourceGroupMsiScan\n | AzureSynapseWorkspaceCredentialScan\n | AzureSynapseWorkspaceMsiScan\n | AzureSynapseCredentialScan\n | AzureSynapseMsiScan\n | AdlsGen1CredentialScan\n | AdlsGen1MsiScan\n | AdlsGen2CredentialScan\n | AdlsGen2MsiScan\n | AmazonAccountCredentialScan\n | AmazonS3CredentialScan\n | AmazonS3RoleARNScan\n | AmazonSqlCredentialScan\n | AzureCosmosDbCredentialScan\n | AzureDataExplorerCredentialScan\n | AzureDataExplorerMsiScan\n | AzureFileServiceCredentialScan\n | AzureSqlDatabaseCredentialScan\n | AzureSqlDatabaseMsiScan\n | AmazonPostgreSqlCredentialScan\n | AzurePostgreSqlCredentialScan\n | SqlServerDatabaseCredentialScan\n | AzureSqlDatabaseManagedInstanceCredentialScan\n | AzureSqlDatabaseManagedInstanceMsiScan\n | AzureSqlDataWarehouseCredentialScan\n | AzureSqlDataWarehouseMsiScan\n | AzureMySqlCredentialScan\n | AzureStorageCredentialScan\n | AzureStorageMsiScan\n | TeradataCredentialScan\n | TeradataUserPassScan\n | TeradataTeradataUserPassScan\n | OracleCredentialScan\n | OracleUserPassScan\n | SapS4HanaSapS4HanaCredentialScan\n | SapS4HanaSapS4HanaUserPassScan\n | SapEccCredentialScan\n | SapEccUserPassScan\n | PowerBIDelegatedScan\n | PowerBIMsiScan;\n/** Purview nested object which serves as a compute resource for activities. */\nexport type IntegrationRuntime = ManagedIntegrationRuntime | SelfHostedIntegrationRuntime;\n/** Integration runtime status. */\nexport type IntegrationRuntimeStatus =\n | SelfHostedIntegrationRuntimeStatus\n | ManagedIntegrationRuntimeStatus;\n/** The scan ruleset. */\nexport type ScanRuleset =\n | AzureSubscriptionScanRuleset\n | AzureResourceGroupScanRuleset\n | AzureSynapseWorkspaceScanRuleset\n | AzureSynapseScanRuleset\n | AdlsGen1ScanRuleset\n | AdlsGen2ScanRuleset\n | AmazonAccountScanRuleset\n | AmazonS3ScanRuleset\n | AmazonSqlScanRuleset\n | AzureCosmosDbScanRuleset\n | AzureDataExplorerScanRuleset\n | AzureFileServiceScanRuleset\n | AzureSqlDatabaseScanRuleset\n | AmazonPostgreSqlScanRuleset\n | AzurePostgreSqlScanRuleset\n | SqlServerDatabaseScanRuleset\n | AzureSqlDatabaseManagedInstanceScanRuleset\n | AzureSqlDataWarehouseScanRuleset\n | AzureMySqlScanRuleset\n | AzureStorageScanRuleset\n | TeradataScanRuleset\n | OracleScanRuleset\n | SapS4HanaScanRuleset\n | SapEccScanRuleset\n | PowerBIScanRuleset;\n/** The system scan ruleset. */\nexport type SystemScanRuleset =\n | AzureSubscriptionSystemScanRuleset\n | AzureResourceGroupSystemScanRuleset\n | AzureSynapseWorkspaceSystemScanRuleset\n | AzureSynapseSystemScanRuleset\n | AdlsGen1SystemScanRuleset\n | AdlsGen2SystemScanRuleset\n | AmazonAccountSystemScanRuleset\n | AmazonS3SystemScanRuleset\n | AmazonSqlSystemScanRuleset\n | AzureCosmosDbSystemScanRuleset\n | AzureDataExplorerSystemScanRuleset\n | AzureFileServiceSystemScanRuleset\n | AzureSqlDatabaseSystemScanRuleset\n | AmazonPostgreSqlSystemScanRuleset\n | AzurePostgreSqlSystemScanRuleset\n | SqlServerDatabaseSystemScanRuleset\n | AzureSqlDatabaseManagedInstanceSystemScanRuleset\n | AzureSqlDataWarehouseSystemScanRuleset\n | AzureMySqlSystemScanRuleset\n | AzureStorageSystemScanRuleset\n | TeradataSystemScanRuleset\n | OracleSystemScanRuleset\n | SapS4HanaSystemScanRuleset\n | SapEccSystemScanRuleset\n | PowerBISystemScanRuleset;\n/** Pattern of classification rule. */\nexport type ClassificationRulePattern = RegexClassificationRulePattern;\n"]}
|