Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ class ComponentPurgeBodyFilters(Model):
run
:type column: str
:param operator: A query operator to evaluate over the provided column and
value(s).
value(s). Supported operators are ==, =~, in, in~, >, >=, <, <=, between,
and have the same behavior as they would in a KQL query.
:type operator: str
:param value: the value for the operator to function over. This can be a
number (e.g., > 100), a string (timestamp >= '2017-09-01') or array of
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ class ComponentPurgeBodyFilters(Model):
run
:type column: str
:param operator: A query operator to evaluate over the provided column and
value(s).
value(s). Supported operators are ==, =~, in, in~, >, >=, <, <=, between,
and have the same behavior as they would in a KQL query.
:type operator: str
:param value: the value for the operator to function over. This can be a
number (e.g., > 100), a string (timestamp >= '2017-09-01') or array of
Expand Down
4 changes: 4 additions & 0 deletions sdk/loganalytics/azure-mgmt-loganalytics/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
recursive-include tests *.py *.yaml
include *.rst
include azure/__init__.py
include azure/mgmt/__init__.py

19 changes: 0 additions & 19 deletions sdk/loganalytics/azure-mgmt-loganalytics/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,6 @@ For the older Azure Service Management (ASM) libraries, see
For a more complete set of Azure libraries, see the `azure <https://pypi.python.org/pypi/azure>`__ bundle package.


Compatibility
=============

**IMPORTANT**: If you have an earlier version of the azure package
(version < 1.0), you should uninstall it before installing this package.

You can check the version using pip:

.. code:: shell

pip freeze

If you see azure==0.11.0 (or any version below 1.0), uninstall it first:

.. code:: shell

pip uninstall azure


Usage
=====

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
# regenerated.
# --------------------------------------------------------------------------

from .log_analytics_management_client import LogAnalyticsManagementClient
from .operational_insights_management_client import OperationalInsightsManagementClient
from .version import VERSION

__all__ = ['LogAnalyticsManagementClient']
__all__ = ['OperationalInsightsManagementClient']

__version__ = VERSION

Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,6 @@
# --------------------------------------------------------------------------

try:
from .link_target_py3 import LinkTarget
from .tag_py3 import Tag
from .core_summary_py3 import CoreSummary
from .search_sort_py3 import SearchSort
from .search_metadata_schema_py3 import SearchMetadataSchema
from .search_metadata_py3 import SearchMetadata
from .saved_search_py3 import SavedSearch
from .saved_searches_list_result_py3 import SavedSearchesListResult
from .search_error_py3 import SearchError
from .search_results_response_py3 import SearchResultsResponse
from .search_schema_value_py3 import SearchSchemaValue
from .search_get_schema_response_py3 import SearchGetSchemaResponse
from .search_highlight_py3 import SearchHighlight
from .search_parameters_py3 import SearchParameters
from .storage_account_py3 import StorageAccount
from .storage_insight_status_py3 import StorageInsightStatus
from .storage_insight_py3 import StorageInsight
from .resource_py3 import Resource
from .proxy_resource_py3 import ProxyResource
from .workspace_purge_body_filters_py3 import WorkspacePurgeBodyFilters
from .workspace_purge_body_py3 import WorkspacePurgeBody
from .workspace_purge_response_py3 import WorkspacePurgeResponse
from .workspace_purge_status_response_py3 import WorkspacePurgeStatusResponse
from .operation_display_py3 import OperationDisplay
from .operation_py3 import Operation
from .linked_service_py3 import LinkedService
Expand All @@ -45,30 +22,9 @@
from .management_group_py3 import ManagementGroup
from .sku_py3 import Sku
from .workspace_py3 import Workspace
from .resource_py3 import Resource
from .proxy_resource_py3 import ProxyResource
except (SyntaxError, ImportError):
from .link_target import LinkTarget
from .tag import Tag
from .core_summary import CoreSummary
from .search_sort import SearchSort
from .search_metadata_schema import SearchMetadataSchema
from .search_metadata import SearchMetadata
from .saved_search import SavedSearch
from .saved_searches_list_result import SavedSearchesListResult
from .search_error import SearchError
from .search_results_response import SearchResultsResponse
from .search_schema_value import SearchSchemaValue
from .search_get_schema_response import SearchGetSchemaResponse
from .search_highlight import SearchHighlight
from .search_parameters import SearchParameters
from .storage_account import StorageAccount
from .storage_insight_status import StorageInsightStatus
from .storage_insight import StorageInsight
from .resource import Resource
from .proxy_resource import ProxyResource
from .workspace_purge_body_filters import WorkspacePurgeBodyFilters
from .workspace_purge_body import WorkspacePurgeBody
from .workspace_purge_response import WorkspacePurgeResponse
from .workspace_purge_status_response import WorkspacePurgeStatusResponse
from .operation_display import OperationDisplay
from .operation import Operation
from .linked_service import LinkedService
Expand All @@ -81,46 +37,21 @@
from .management_group import ManagementGroup
from .sku import Sku
from .workspace import Workspace
from .storage_insight_paged import StorageInsightPaged
from .resource import Resource
from .proxy_resource import ProxyResource
from .linked_service_paged import LinkedServicePaged
from .data_source_paged import DataSourcePaged
from .usage_metric_paged import UsageMetricPaged
from .management_group_paged import ManagementGroupPaged
from .workspace_paged import WorkspacePaged
from .linked_service_paged import LinkedServicePaged
from .data_source_paged import DataSourcePaged
from .operation_paged import OperationPaged
from .log_analytics_management_client_enums import (
SearchSortEnum,
StorageInsightState,
PurgeState,
from .operational_insights_management_client_enums import (
DataSourceKind,
SkuNameEnum,
EntityStatus,
)

__all__ = [
'LinkTarget',
'Tag',
'CoreSummary',
'SearchSort',
'SearchMetadataSchema',
'SearchMetadata',
'SavedSearch',
'SavedSearchesListResult',
'SearchError',
'SearchResultsResponse',
'SearchSchemaValue',
'SearchGetSchemaResponse',
'SearchHighlight',
'SearchParameters',
'StorageAccount',
'StorageInsightStatus',
'StorageInsight',
'Resource',
'ProxyResource',
'WorkspacePurgeBodyFilters',
'WorkspacePurgeBody',
'WorkspacePurgeResponse',
'WorkspacePurgeStatusResponse',
'OperationDisplay',
'Operation',
'LinkedService',
Expand All @@ -133,16 +64,14 @@
'ManagementGroup',
'Sku',
'Workspace',
'StorageInsightPaged',
'Resource',
'ProxyResource',
'LinkedServicePaged',
'DataSourcePaged',
'UsageMetricPaged',
'ManagementGroupPaged',
'WorkspacePaged',
'LinkedServicePaged',
'DataSourcePaged',
'OperationPaged',
'SearchSortEnum',
'StorageInsightState',
'PurgeState',
'DataSourceKind',
'SkuNameEnum',
'EntityStatus',
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,6 @@
from enum import Enum


class SearchSortEnum(str, Enum):

asc = "asc"
desc = "desc"


class StorageInsightState(str, Enum):

ok = "OK"
error = "ERROR"


class PurgeState(str, Enum):

pending = "Pending"
completed = "Completed"


class DataSourceKind(str, Enum):

azure_activity_log = "AzureActivityLog"
Expand All @@ -54,7 +36,6 @@ class SkuNameEnum(str, Enum):
free = "Free"
standard = "Standard"
premium = "Premium"
unlimited = "Unlimited"
per_node = "PerNode"
per_gb2018 = "PerGB2018"
standalone = "Standalone"
Expand Down
Loading