How to use the azure-mgmt-security.azure.mgmt.security.security_center.SecurityCenterConfiguration function in azure-mgmt-security

To help you get started, we’ve selected a few azure-mgmt-security examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Azure / azure-sdk-for-python / azure-mgmt-security / azure / mgmt / security / security_center.py View on Github external
def __init__(
            self, credentials, subscription_id, asc_location, base_url=None):

        self.config = SecurityCenterConfiguration(credentials, subscription_id, asc_location, base_url)
        super(SecurityCenter, self).__init__(self.config.credentials, self.config)

        client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)}
        self._serialize = Serializer(client_models)
        self._deserialize = Deserializer(client_models)

        self.pricings = PricingsOperations(
            self._client, self.config, self._serialize, self._deserialize)
        self.alerts = AlertsOperations(
            self._client, self.config, self._serialize, self._deserialize)
        self.settings = SettingsOperations(
            self._client, self.config, self._serialize, self._deserialize)
        self.allowed_connections = AllowedConnectionsOperations(
            self._client, self.config, self._serialize, self._deserialize)
        self.discovered_security_solutions = DiscoveredSecuritySolutionsOperations(
            self._client, self.config, self._serialize, self._deserialize)
github Azure / azure-sdk-for-python / azure-mgmt-security / azure / mgmt / security / security_center.py View on Github external
def __init__(
            self, credentials, subscription_id, asc_location, base_url=None):

        if credentials is None:
            raise ValueError("Parameter 'credentials' must not be None.")
        if subscription_id is None:
            raise ValueError("Parameter 'subscription_id' must not be None.")
        if asc_location is None:
            raise ValueError("Parameter 'asc_location' must not be None.")
        if not base_url:
            base_url = 'https://management.azure.com'

        super(SecurityCenterConfiguration, self).__init__(base_url)

        self.add_user_agent('azure-mgmt-security/{}'.format(VERSION))
        self.add_user_agent('Azure-SDK-For-Python')

        self.credentials = credentials
        self.subscription_id = subscription_id
        self.asc_location = asc_location

azure-mgmt-security

Microsoft Azure Security Center Management Client Library for Python

MIT
Latest version published 4 months ago

Package Health Score

96 / 100
Full package analysis

Similar packages