Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class AccountEntity(Entity):
:ivar account_name: The name of the account. This field should hold only
the name without any domain added to it, i.e. administrator.
:vartype account_name: str
:ivar nt_domain: The NETBIOS domain name as it appears in the alert format
:ivar nt_domain: The NetBIOS domain name as it appears in the alert format
– domain\\username. Examples: NT AUTHORITY.
:vartype nt_domain: str
:ivar upn_suffix: The user principal name suffix for the account, in some
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class AccountEntity(Entity):
:ivar account_name: The name of the account. This field should hold only
the name without any domain added to it, i.e. administrator.
:vartype account_name: str
:ivar nt_domain: The NETBIOS domain name as it appears in the alert format
:ivar nt_domain: The NetBIOS domain name as it appears in the alert format
– domain\\username. Examples: NT AUTHORITY.
:vartype nt_domain: str
:ivar upn_suffix: The user principal name suffix for the account, in some
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class HostEntity(Entity):
:vartype azure_id: str
:ivar oms_agent_id: The OMS agent id, if the host has OMS agent installed.
:vartype oms_agent_id: str
:param os_family: The operartion system type. Possible values include:
:param os_family: The operating system type. Possible values include:
'Linux', 'Windows', 'Android', 'IOS'
:type os_family: str or ~azure.mgmt.securityinsight.models.OSFamily
:ivar os_version: A free text representation of the operating system. This
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class HostEntity(Entity):
:vartype azure_id: str
:ivar oms_agent_id: The OMS agent id, if the host has OMS agent installed.
:vartype oms_agent_id: str
:param os_family: The operartion system type. Possible values include:
:param os_family: The operating system type. Possible values include:
'Linux', 'Windows', 'Android', 'IOS'
:type os_family: str or ~azure.mgmt.securityinsight.models.OSFamily
:ivar os_version: A free text representation of the operating system. This
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ class OfficeConsent(Resource):
:vartype type: str
:ivar name: Azure resource name
:vartype name: str
:param tenant_id: The tenantId of the Office365 with the concesnt.
:param tenant_id: The tenantId of the Office365 with the consent.
:type tenant_id: str
:ivar tenant_name: The tenant name of the Office365 with the concesnt.
:ivar tenant_name: The tenant name of the Office365 with the consent.
:vartype tenant_name: str
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ class OfficeConsent(Resource):
:vartype type: str
:ivar name: Azure resource name
:vartype name: str
:param tenant_id: The tenantId of the Office365 with the concesnt.
:param tenant_id: The tenantId of the Office365 with the consent.
:type tenant_id: str
:ivar tenant_name: The tenant name of the Office365 with the concesnt.
:ivar tenant_name: The tenant name of the Office365 with the consent.
:vartype tenant_name: str
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ class EntityKind(str, Enum):

class OSFamily(str, Enum):

linux = "Linux" #: Host with Linux operartion system.
windows = "Windows" #: Host with Windows operartion system.
android = "Android" #: Host with Android operartion system.
ios = "IOS" #: Host with IOS operartion system.
linux = "Linux" #: Host with Linux operating system.
windows = "Windows" #: Host with Windows operating system.
android = "Android" #: Host with Android operating system.
ios = "IOS" #: Host with IOS operating system.


class SettingKind(str, Enum):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(self, client, config, serializer, deserializer):

def get(
self, resource_group_name, operational_insights_resource_provider, workspace_name, settings_name, custom_headers=None, raw=False, **operation_config):
"""Gets a stting.
"""Gets a setting.

:param resource_group_name: The name of the resource group within the
user's subscription. The name is case insensitive.
Expand Down