SecurityInsightsMgmtClient Class

API spec for Microsoft.SecurityInsights (Azure Security Insights) resource provider.

Constructor

SecurityInsightsMgmtClient(credential: TokenCredential, subscription_id: str, base_url: str | None = None, *, cloud_setting: AzureClouds | None = None, **kwargs: Any)

Parameters

Name Description
credential
Required

Credential used to authenticate requests to the service. Required.

subscription_id
Required
str

The ID of the target subscription. The value must be an UUID. Required.

base_url
str

Service host. Default value is None.

Default value: None

Keyword-Only Parameters

Name Description
cloud_setting

The cloud setting for which to get the ARM endpoint. Default value is None.

Default value: None
api_version
str

The API version to use for this operation. Known values are "2025-07-01-preview" and None. Default value is None. If not set, the operation's default API version will be used. Note that overriding this default value may result in unsupported behavior.

polling_interval
int

Default waiting time between two polls for LRO operations if no Retry-After header is present.

Variables

Name Description
operations

Operations operations

alert_rules

AlertRulesOperations operations

alert_rule_templates

AlertRuleTemplatesOperations operations

automation_rules

AutomationRulesOperations operations

incidents

IncidentsOperations operations

bookmarks

BookmarksOperations operations

data_connector_definitions

DataConnectorDefinitionsOperations operations

data_connectors

DataConnectorsOperations operations

incident_comments

IncidentCommentsOperations operations

bookmark_relations

BookmarkRelationsOperations operations

entity_relations

EntityRelationsOperations operations

incident_tasks

IncidentTasksOperations operations

sentinel_onboarding_states

SentinelOnboardingStatesOperations operations

security_ml_analytics_settings

SecurityMLAnalyticsSettingsOperations operations

source_controls

SourceControlsOperations operations

watchlists

WatchlistsOperations operations

watchlist_items

WatchlistItemsOperations operations

billing_statistics

BillingStatisticsOperations operations

entities

EntitiesOperations operations

entity_queries

EntityQueriesOperations operations

entity_query_templates

EntityQueryTemplatesOperations operations

file_imports

FileImportsOperations operations

hunts

HuntsOperations operations

hunt_comments

HuntCommentsOperations operations

hunt_relations

HuntRelationsOperations operations

office_consents

OfficeConsentsOperations operations

product_settings

ProductSettingsOperations operations

workspace_manager_assignments

WorkspaceManagerAssignmentsOperations operations

workspace_manager_configurations

WorkspaceManagerConfigurationsOperations operations

workspace_manager_groups

WorkspaceManagerGroupsOperations operations

workspace_manager_members

WorkspaceManagerMembersOperations operations

alert_rule

AlertRuleOperations operations

actions

ActionsOperations operations

bookmark

BookmarkOperations operations

content_packages

ContentPackagesOperations operations

content_package

ContentPackageOperations operations

product_package

ProductPackageOperations operations

product_packages

ProductPackagesOperations operations

product_template

ProductTemplateOperations operations

product_templates

ProductTemplatesOperations operations

content_template

ContentTemplateOperations operations

content_templates

ContentTemplatesOperations operations

incident_relations

IncidentRelationsOperations operations

entities_relations

EntitiesRelationsOperations operations

metadata

MetadataOperations operations

threat_intelligence_indicator

ThreatIntelligenceIndicatorOperations operations

threat_intelligence_indicators

ThreatIntelligenceIndicatorsOperations operations

data_connectors_check_requirements

DataConnectorsCheckRequirementsOperations operations

source_control

SourceControlOperations operations

threat_intelligence_indicator_metrics

ThreatIntelligenceIndicatorMetricsOperations operations

threat_intelligence

ThreatIntelligenceOperations operations

entities_get_timeline

EntitiesGetTimelineOperations operations

get

GetOperations operations

update

UpdateOperations operations

get_recommendations

GetRecommendationsOperations operations

reevaluate

ReevaluateOperations operations

triggered_analytics_rule_run

TriggeredAnalyticsRuleRunOperations operations

get_triggered_analytics_rule_runs

GetTriggeredAnalyticsRuleRunsOperations operations

workspace_manager_assignment_jobs

WorkspaceManagerAssignmentJobsOperations operations

Methods

close
send_request

Runs the network request through the client's chained policies.


>>> from azure.core.rest import HttpRequest
>>> request = HttpRequest("GET", "https://www.example.org/")
<HttpRequest [GET], url: 'https://www.example.org/'>
>>> response = client.send_request(request)
<HttpResponse: 200 OK>

For more information on this code flow, see https://aka.ms/azsdk/dpcodegen/python/send_request

close

close() -> None

send_request

Runs the network request through the client's chained policies.


>>> from azure.core.rest import HttpRequest
>>> request = HttpRequest("GET", "https://www.example.org/")
<HttpRequest [GET], url: 'https://www.example.org/'>
>>> response = client.send_request(request)
<HttpResponse: 200 OK>

For more information on this code flow, see https://aka.ms/azsdk/dpcodegen/python/send_request

send_request(request: HttpRequest, *, stream: bool = False, **kwargs: Any) -> HttpResponse

Parameters

Name Description
request
Required

The network request you want to make. Required.

Keyword-Only Parameters

Name Description
stream

Whether the response payload will be streamed. Defaults to False.

Default value: False

Returns

Type Description

The response of your network call. Does not do error handling on your response.