Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Generated from ab899e75a364a5b6dbf21370c1db65b769094ec8
removed bookmarkEntity from entities api (currently not supported)
  • Loading branch information
AutorestCI committed Jul 24, 2019
commit 75fccff78394820923d1f6ddc57dfa7d8045f9c4
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@
from .registry_key_entity_py3 import RegistryKeyEntity
from .registry_value_entity_py3 import RegistryValueEntity
from .url_entity_py3 import UrlEntity
from .bookmark_entity_py3 import BookmarkEntity
from .entity_expand_parameters_py3 import EntityExpandParameters
from .entity_expand_response_value_py3 import EntityExpandResponseValue
from .expansion_result_aggregation_py3 import ExpansionResultAggregation
Expand Down Expand Up @@ -137,7 +136,6 @@
from .registry_key_entity import RegistryKeyEntity
from .registry_value_entity import RegistryValueEntity
from .url_entity import UrlEntity
from .bookmark_entity import BookmarkEntity
from .entity_expand_parameters import EntityExpandParameters
from .entity_expand_response_value import EntityExpandResponseValue
from .expansion_result_aggregation import ExpansionResultAggregation
Expand Down Expand Up @@ -245,7 +243,6 @@
'RegistryKeyEntity',
'RegistryValueEntity',
'UrlEntity',
'BookmarkEntity',
'EntityExpandParameters',
'EntityExpandResponseValue',
'ExpansionResultAggregation',
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Entity(Model):
sub-classes are: AccountEntity, HostEntity, FileEntity, SecurityAlert,
FileHashEntity, MalwareEntity, SecurityGroupEntity, AzureResourceEntity,
CloudApplicationEntity, ProcessEntity, DnsEntity, IpEntity,
RegistryKeyEntity, RegistryValueEntity, UrlEntity, BookmarkEntity
RegistryKeyEntity, RegistryValueEntity, UrlEntity

Variables are only populated by the server, and will be ignored when
sending a request.
Expand Down Expand Up @@ -51,7 +51,7 @@ class Entity(Model):
}

_subtype_map = {
'kind': {'Account': 'AccountEntity', 'Host': 'HostEntity', 'File': 'FileEntity', 'SecurityAlert': 'SecurityAlert', 'FileHash': 'FileHashEntity', 'Malware': 'MalwareEntity', 'SecurityGroup': 'SecurityGroupEntity', 'AzureResource': 'AzureResourceEntity', 'CloudApplication': 'CloudApplicationEntity', 'Process': 'ProcessEntity', 'DnsResolution': 'DnsEntity', 'Ip': 'IpEntity', 'RegistryKey': 'RegistryKeyEntity', 'RegistryValue': 'RegistryValueEntity', 'Url': 'UrlEntity', 'Bookmark': 'BookmarkEntity'}
'kind': {'Account': 'AccountEntity', 'Host': 'HostEntity', 'File': 'FileEntity', 'SecurityAlert': 'SecurityAlert', 'FileHash': 'FileHashEntity', 'Malware': 'MalwareEntity', 'SecurityGroup': 'SecurityGroupEntity', 'AzureResource': 'AzureResourceEntity', 'CloudApplication': 'CloudApplicationEntity', 'Process': 'ProcessEntity', 'DnsResolution': 'DnsEntity', 'Ip': 'IpEntity', 'RegistryKey': 'RegistryKeyEntity', 'RegistryValue': 'RegistryValueEntity', 'Url': 'UrlEntity'}
}

def __init__(self, **kwargs):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Entity(Model):
sub-classes are: AccountEntity, HostEntity, FileEntity, SecurityAlert,
FileHashEntity, MalwareEntity, SecurityGroupEntity, AzureResourceEntity,
CloudApplicationEntity, ProcessEntity, DnsEntity, IpEntity,
RegistryKeyEntity, RegistryValueEntity, UrlEntity, BookmarkEntity
RegistryKeyEntity, RegistryValueEntity, UrlEntity

Variables are only populated by the server, and will be ignored when
sending a request.
Expand Down Expand Up @@ -51,7 +51,7 @@ class Entity(Model):
}

_subtype_map = {
'kind': {'Account': 'AccountEntity', 'Host': 'HostEntity', 'File': 'FileEntity', 'SecurityAlert': 'SecurityAlert', 'FileHash': 'FileHashEntity', 'Malware': 'MalwareEntity', 'SecurityGroup': 'SecurityGroupEntity', 'AzureResource': 'AzureResourceEntity', 'CloudApplication': 'CloudApplicationEntity', 'Process': 'ProcessEntity', 'DnsResolution': 'DnsEntity', 'Ip': 'IpEntity', 'RegistryKey': 'RegistryKeyEntity', 'RegistryValue': 'RegistryValueEntity', 'Url': 'UrlEntity', 'Bookmark': 'BookmarkEntity'}
'kind': {'Account': 'AccountEntity', 'Host': 'HostEntity', 'File': 'FileEntity', 'SecurityAlert': 'SecurityAlert', 'FileHash': 'FileHashEntity', 'Malware': 'MalwareEntity', 'SecurityGroup': 'SecurityGroupEntity', 'AzureResource': 'AzureResourceEntity', 'CloudApplication': 'CloudApplicationEntity', 'Process': 'ProcessEntity', 'DnsResolution': 'DnsEntity', 'Ip': 'IpEntity', 'RegistryKey': 'RegistryKeyEntity', 'RegistryValue': 'RegistryValueEntity', 'Url': 'UrlEntity'}
}

def __init__(self, **kwargs) -> None:
Expand Down