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

[ReleasePR azure-mgmt-loganalytics] Operationalinsights tables, wokspace capping and sku #11626

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 @@ -24,12 +24,15 @@
from .operations import SharedKeysOperations
from .operations import UsagesOperations
from .operations import WorkspacesOperations
from .operations import DeletedWorkspacesOperations
from .operations import ClustersOperations
from .operations import StorageInsightConfigsOperations
from .operations import SavedSearchesOperations
from .operations import AvailableServiceTiersOperations
from .operations import GatewaysOperations
from .operations import SchemaOperations
from .operations import WorkspacePurgeOperations
from .operations import TablesOperations
from . import models


Expand Down Expand Up @@ -61,18 +64,24 @@ class LogAnalyticsManagementClient(SDKClient):
:vartype usages: azure.mgmt.loganalytics.operations.UsagesOperations
:ivar workspaces: Workspaces operations
:vartype workspaces: azure.mgmt.loganalytics.operations.WorkspacesOperations
:ivar deleted_workspaces: DeletedWorkspaces operations
:vartype deleted_workspaces: azure.mgmt.loganalytics.operations.DeletedWorkspacesOperations
:ivar clusters: Clusters operations
:vartype clusters: azure.mgmt.loganalytics.operations.ClustersOperations
:ivar storage_insight_configs: StorageInsightConfigs operations
:vartype storage_insight_configs: azure.mgmt.loganalytics.operations.StorageInsightConfigsOperations
:ivar saved_searches: SavedSearches operations
:vartype saved_searches: azure.mgmt.loganalytics.operations.SavedSearchesOperations
:ivar available_service_tiers: AvailableServiceTiers operations
:vartype available_service_tiers: azure.mgmt.loganalytics.operations.AvailableServiceTiersOperations
:ivar gateways: Gateways operations
:vartype gateways: azure.mgmt.loganalytics.operations.GatewaysOperations
:ivar schema: Schema operations
:vartype schema: azure.mgmt.loganalytics.operations.SchemaOperations
:ivar workspace_purge: WorkspacePurge operations
:vartype workspace_purge: azure.mgmt.loganalytics.operations.WorkspacePurgeOperations
:ivar tables: Tables operations
:vartype tables: azure.mgmt.loganalytics.operations.TablesOperations

:param credentials: Credentials needed for the client to connect to Azure.
:type credentials: :mod:`A msrestazure Credentials
Expand Down Expand Up @@ -115,15 +124,21 @@ def __init__(
self._client, self.config, self._serialize, self._deserialize)
self.workspaces = WorkspacesOperations(
self._client, self.config, self._serialize, self._deserialize)
self.deleted_workspaces = DeletedWorkspacesOperations(
self._client, self.config, self._serialize, self._deserialize)
self.clusters = ClustersOperations(
self._client, self.config, self._serialize, self._deserialize)
self.storage_insight_configs = StorageInsightConfigsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.saved_searches = SavedSearchesOperations(
self._client, self.config, self._serialize, self._deserialize)
self.available_service_tiers = AvailableServiceTiersOperations(
self._client, self.config, self._serialize, self._deserialize)
self.gateways = GatewaysOperations(
self._client, self.config, self._serialize, self._deserialize)
self.schema = SchemaOperations(
self._client, self.config, self._serialize, self._deserialize)
self.workspace_purge = WorkspacePurgeOperations(
self._client, self.config, self._serialize, self._deserialize)
self.tables = TablesOperations(
self._client, self.config, self._serialize, self._deserialize)
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
from ._models_py3 import DataSource
from ._models_py3 import DataSourceFilter
from ._models_py3 import ErrorAdditionalInfo
from ._models_py3 import ErrorContract, ErrorContractException
from ._models_py3 import ErrorResponse
from ._models_py3 import Identity
from ._models_py3 import IntelligencePack
Expand All @@ -47,10 +48,12 @@
from ._models_py3 import StorageAccount
from ._models_py3 import StorageInsight
from ._models_py3 import StorageInsightStatus
from ._models_py3 import Table
from ._models_py3 import Tag
from ._models_py3 import TrackedResource
from ._models_py3 import UsageMetric
from ._models_py3 import Workspace
from ._models_py3 import WorkspaceCapping
from ._models_py3 import WorkspacePatch
from ._models_py3 import WorkspacePurgeBody
from ._models_py3 import WorkspacePurgeBodyFilters
Expand All @@ -70,6 +73,7 @@
from ._models import DataSource
from ._models import DataSourceFilter
from ._models import ErrorAdditionalInfo
from ._models import ErrorContract, ErrorContractException
from ._models import ErrorResponse
from ._models import Identity
from ._models import IntelligencePack
Expand All @@ -95,10 +99,12 @@
from ._models import StorageAccount
from ._models import StorageInsight
from ._models import StorageInsightStatus
from ._models import Table
from ._models import Tag
from ._models import TrackedResource
from ._models import UsageMetric
from ._models import Workspace
from ._models import WorkspaceCapping
from ._models import WorkspacePatch
from ._models import WorkspacePurgeBody
from ._models import WorkspacePurgeBodyFilters
Expand All @@ -113,6 +119,7 @@
from ._paged_models import ManagementGroupPaged
from ._paged_models import OperationPaged
from ._paged_models import StorageInsightPaged
from ._paged_models import TablePaged
from ._paged_models import UsageMetricPaged
from ._paged_models import WorkspacePaged
from ._log_analytics_management_client_enums import (
Expand All @@ -121,6 +128,7 @@
LinkedServiceEntityStatus,
DataSourceType,
WorkspaceSkuNameEnum,
DataIngestionStatus,
WorkspaceEntityStatus,
PublicNetworkAccessType,
ClusterEntityStatus,
Expand All @@ -145,6 +153,7 @@
'DataSource',
'DataSourceFilter',
'ErrorAdditionalInfo',
'ErrorContract', 'ErrorContractException',
'ErrorResponse',
'Identity',
'IntelligencePack',
Expand All @@ -170,10 +179,12 @@
'StorageAccount',
'StorageInsight',
'StorageInsightStatus',
'Table',
'Tag',
'TrackedResource',
'UsageMetric',
'Workspace',
'WorkspaceCapping',
'WorkspacePatch',
'WorkspacePurgeBody',
'WorkspacePurgeBodyFilters',
Expand All @@ -190,11 +201,13 @@
'WorkspacePaged',
'ClusterPaged',
'StorageInsightPaged',
'TablePaged',
'Type',
'DataSourceKind',
'LinkedServiceEntityStatus',
'DataSourceType',
'WorkspaceSkuNameEnum',
'DataIngestionStatus',
'WorkspaceEntityStatus',
'PublicNetworkAccessType',
'ClusterEntityStatus',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,16 @@ class WorkspaceSkuNameEnum(str, Enum):
capacity_reservation = "CapacityReservation"


class DataIngestionStatus(str, Enum):

respect_quota = "RespectQuota"
force_on = "ForceOn"
force_off = "ForceOff"
over_quota = "OverQuota"
subscription_suspended = "SubscriptionSuspended"
approaching_quota = "ApproachingQuota"


class WorkspaceEntityStatus(str, Enum):

creating = "Creating"
Expand Down
Loading