Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR azure-mgmt-security] Add Microsoft.Security softwareInventories API #5537

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions sdk/security/azure-mgmt-security/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
include _meta.json
recursive-include tests *.py *.yaml
include *.md
include azure/__init__.py
Expand Down
8 changes: 8 additions & 0 deletions sdk/security/azure-mgmt-security/_meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"autorest": "V2",
"use": "@microsoft.azure/autorest.python@~4.0.71",
"commit": "7fcb0b46f05fc4e963fc65bff63fa34d585a0b3f",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest_command": "autorest specification/security/resource-manager/readme.md --keep-version-file --multiapi --no-async --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk --use=@microsoft.azure/autorest.python@~4.0.71 --version=V2",
"readme": "specification/security/resource-manager/readme.md"
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
from .operations import AdaptiveNetworkHardeningsOperations
from .operations import AllowedConnectionsOperations
from .operations import TopologyOperations
from .operations import AlertsOperations
from .operations import JitNetworkAccessPoliciesOperations
from .operations import DiscoveredSecuritySolutionsOperations
from .operations import SecuritySolutionsReferenceDataOperations
Expand All @@ -66,6 +65,10 @@
from .operations import DevicesForHubOperations
from .operations import DeviceOperations
from .operations import OnPremiseIotSensorsOperations
from .operations import IotSitesOperations
from .operations import AlertsOperations
from .operations import IngestionSettingsOperations
from .operations import SoftwareInventoriesOperations
from . import models


Expand Down Expand Up @@ -143,8 +146,6 @@ class SecurityCenter(SDKClient):
:vartype allowed_connections: azure.mgmt.security.operations.AllowedConnectionsOperations
:ivar topology: Topology operations
:vartype topology: azure.mgmt.security.operations.TopologyOperations
:ivar alerts: Alerts operations
:vartype alerts: azure.mgmt.security.operations.AlertsOperations
:ivar jit_network_access_policies: JitNetworkAccessPolicies operations
:vartype jit_network_access_policies: azure.mgmt.security.operations.JitNetworkAccessPoliciesOperations
:ivar discovered_security_solutions: DiscoveredSecuritySolutions operations
Expand Down Expand Up @@ -181,6 +182,14 @@ class SecurityCenter(SDKClient):
:vartype device: azure.mgmt.security.operations.DeviceOperations
:ivar on_premise_iot_sensors: OnPremiseIotSensors operations
:vartype on_premise_iot_sensors: azure.mgmt.security.operations.OnPremiseIotSensorsOperations
:ivar iot_sites: IotSites operations
:vartype iot_sites: azure.mgmt.security.operations.IotSitesOperations
:ivar alerts: Alerts operations
:vartype alerts: azure.mgmt.security.operations.AlertsOperations
:ivar ingestion_settings: IngestionSettings operations
:vartype ingestion_settings: azure.mgmt.security.operations.IngestionSettingsOperations
:ivar software_inventories: SoftwareInventories operations
:vartype software_inventories: azure.mgmt.security.operations.SoftwareInventoriesOperations

:param credentials: Credentials needed for the client to connect to Azure.
:type credentials: :mod:`A msrestazure Credentials
Expand Down Expand Up @@ -271,8 +280,6 @@ def __init__(
self._client, self.config, self._serialize, self._deserialize)
self.topology = TopologyOperations(
self._client, self.config, self._serialize, self._deserialize)
self.alerts = AlertsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.jit_network_access_policies = JitNetworkAccessPoliciesOperations(
self._client, self.config, self._serialize, self._deserialize)
self.discovered_security_solutions = DiscoveredSecuritySolutionsOperations(
Expand Down Expand Up @@ -309,3 +316,11 @@ def __init__(
self._client, self.config, self._serialize, self._deserialize)
self.on_premise_iot_sensors = OnPremiseIotSensorsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.iot_sites = IotSitesOperations(
self._client, self.config, self._serialize, self._deserialize)
self.alerts = AlertsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.ingestion_settings = IngestionSettingsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.software_inventories = SoftwareInventoriesOperations(
self._client, self.config, self._serialize, self._deserialize)
Loading