Skip to content

Commit 497d4b9

Browse files
author
SDK Automation
committed
Generated from 9c1de26b7864ad53d6afb69e6a8546c1ce725569
prettifier
1 parent 755f561 commit 497d4b9

File tree

6 files changed

+21
-6
lines changed

6 files changed

+21
-6
lines changed

sdk/loganalytics/azure-mgmt-loganalytics/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Release History
22

3+
## 0.7.0 (2020-07-09)
4+
5+
**Features**
6+
7+
- Model DataSource has a new parameter etag
8+
- Model SavedSearch has a new parameter etag
9+
10+
**Breaking changes**
11+
12+
- Model DataSource no longer has parameter e_tag
13+
- Model SavedSearch no longer has parameter e_tag
14+
315
## 0.6.0 (2020-05-28)
416

517
**Features**

sdk/loganalytics/azure-mgmt-loganalytics/azure/mgmt/loganalytics/models/_log_analytics_management_client_enums.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ class DataSourceType(str, Enum):
6767

6868
custom_logs = "CustomLogs"
6969
azure_watson = "AzureWatson"
70+
query = "Query"
71+
ingestion = "Ingestion"
72+
alerts = "Alerts"
7073

7174

7275
class WorkspaceSkuNameEnum(str, Enum):

sdk/loganalytics/azure-mgmt-loganalytics/azure/mgmt/loganalytics/models/_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -868,7 +868,7 @@ class LinkedStorageAccountsResource(ProxyResource):
868868
Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
869869
:vartype type: str
870870
:ivar data_source_type: Linked storage accounts type. Possible values
871-
include: 'CustomLogs', 'AzureWatson'
871+
include: 'CustomLogs', 'AzureWatson', 'Query', 'Ingestion', 'Alerts'
872872
:vartype data_source_type: str or
873873
~azure.mgmt.loganalytics.models.DataSourceType
874874
:param storage_account_ids: Linked storage accounts resources ids.

sdk/loganalytics/azure-mgmt-loganalytics/azure/mgmt/loganalytics/models/_models_py3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -868,7 +868,7 @@ class LinkedStorageAccountsResource(ProxyResource):
868868
Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
869869
:vartype type: str
870870
:ivar data_source_type: Linked storage accounts type. Possible values
871-
include: 'CustomLogs', 'AzureWatson'
871+
include: 'CustomLogs', 'AzureWatson', 'Query', 'Ingestion', 'Alerts'
872872
:vartype data_source_type: str or
873873
~azure.mgmt.loganalytics.models.DataSourceType
874874
:param storage_account_ids: Linked storage accounts resources ids.

sdk/loganalytics/azure-mgmt-loganalytics/azure/mgmt/loganalytics/operations/_linked_storage_accounts_operations.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def create_or_update(
5050
:param workspace_name: The name of the workspace.
5151
:type workspace_name: str
5252
:param data_source_type: Linked storage accounts type. Possible values
53-
include: 'CustomLogs', 'AzureWatson'
53+
include: 'CustomLogs', 'AzureWatson', 'Query', 'Ingestion', 'Alerts'
5454
:type data_source_type: str or
5555
~azure.mgmt.loganalytics.models.DataSourceType
5656
:param storage_account_ids: Linked storage accounts resources ids.
@@ -127,7 +127,7 @@ def delete(
127127
:param workspace_name: The name of the workspace.
128128
:type workspace_name: str
129129
:param data_source_type: Linked storage accounts type. Possible values
130-
include: 'CustomLogs', 'AzureWatson'
130+
include: 'CustomLogs', 'AzureWatson', 'Query', 'Ingestion', 'Alerts'
131131
:type data_source_type: str or
132132
~azure.mgmt.loganalytics.models.DataSourceType
133133
:param dict custom_headers: headers that will be added to the request
@@ -187,7 +187,7 @@ def get(
187187
:param workspace_name: The name of the workspace.
188188
:type workspace_name: str
189189
:param data_source_type: Linked storage accounts type. Possible values
190-
include: 'CustomLogs', 'AzureWatson'
190+
include: 'CustomLogs', 'AzureWatson', 'Query', 'Ingestion', 'Alerts'
191191
:type data_source_type: str or
192192
~azure.mgmt.loganalytics.models.DataSourceType
193193
:param dict custom_headers: headers that will be added to the request

sdk/loganalytics/azure-mgmt-loganalytics/azure/mgmt/loganalytics/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
# regenerated.
1010
# --------------------------------------------------------------------------
1111

12-
VERSION = "0.6.0"
12+
VERSION = "0.7.0"
1313

0 commit comments

Comments
 (0)