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

Manually Release Monitor #10756

Merged
merged 1 commit into from
Apr 10, 2020
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
16 changes: 16 additions & 0 deletions sdk/monitor/azure-mgmt-monitor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Release History

## 0.9.0 (2020-04-09)

**Features**

- Model AzureMonitorPrivateLinkScope has a new parameter private_endpoint_connections

**Breaking changes**

- Operation PrivateLinkScopedResourcesOperations.create_or_update has a new signature
- Model PrivateEndpointConnection no longer has parameter tags
- Model PrivateLinkResource no longer has parameter tags
- Model ScopedResource no longer has parameter tags
- Model ProxyResource no longer has parameter tags
- Operation PrivateEndpointConnectionsOperations.create_or_update has a new signature
- Model ErrorResponse has a new signature

## 0.8.0 (2020-03-14)

**Features**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class MonitorManagementClientConfiguration(AzureConfiguration):
:param credentials: Credentials needed for the client to connect to Azure.
:type credentials: :mod:`A msrestazure Credentials
object<msrestazure.azure_active_directory>`
:param subscription_id: The ID of the target subscription.
:param subscription_id: The Azure subscription Id.
:type subscription_id: str
:param str base_url: Service URL
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __init__(self, client, config, serializer, deserializer):

def create_or_update(
self, resource_group_name, rule_name, parameters, custom_headers=None, raw=False, **operation_config):
"""Creates or updates an alert rule.
"""Creates or updates a classic metric alert rule.

:param resource_group_name: The name of the resource group.
:type resource_group_name: str
Expand Down Expand Up @@ -110,7 +110,7 @@ def create_or_update(

def delete(
self, resource_group_name, rule_name, custom_headers=None, raw=False, **operation_config):
"""Deletes an alert rule.
"""Deletes a classic metric alert rule.

:param resource_group_name: The name of the resource group.
:type resource_group_name: str
Expand Down Expand Up @@ -163,7 +163,7 @@ def delete(

def get(
self, resource_group_name, rule_name, custom_headers=None, raw=False, **operation_config):
"""Gets an alert rule.
"""Gets a classic metric alert rule.

:param resource_group_name: The name of the resource group.
:type resource_group_name: str
Expand Down Expand Up @@ -224,8 +224,8 @@ def get(

def update(
self, resource_group_name, rule_name, alert_rules_resource, custom_headers=None, raw=False, **operation_config):
"""Updates an existing AlertRuleResource. To update other fields use the
CreateOrUpdate method.
"""Updates an existing classic metric AlertRuleResource. To update other
fields use the CreateOrUpdate method.

:param resource_group_name: The name of the resource group.
:type resource_group_name: str
Expand Down Expand Up @@ -294,7 +294,7 @@ def update(

def list_by_resource_group(
self, resource_group_name, custom_headers=None, raw=False, **operation_config):
"""List the alert rules within a resource group.
"""List the classic metric alert rules within a resource group.

:param resource_group_name: The name of the resource group.
:type resource_group_name: str
Expand Down Expand Up @@ -363,7 +363,7 @@ def internal_paging(next_link=None):

def list_by_subscription(
self, custom_headers=None, raw=False, **operation_config):
"""List the alert rules within a subscription.
"""List the classic metric alert rules within a subscription.

:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,7 @@ class MetricAlertResource(Resource):
information.
:type criteria: ~azure.mgmt.monitor.v2018_03_01.models.MetricAlertCriteria
:param auto_mitigate: the flag that indicates whether the alert should be
auto resolved or not.
auto resolved or not. The default is true.
:type auto_mitigate: bool
:param actions: the array of actions that are performed when the alert
rule becomes active, and when an alert condition is resolved.
Expand Down Expand Up @@ -883,7 +883,7 @@ class MetricAlertResourcePatch(Model):
information.
:type criteria: ~azure.mgmt.monitor.v2018_03_01.models.MetricAlertCriteria
:param auto_mitigate: the flag that indicates whether the alert should be
auto resolved or not.
auto resolved or not. The default is true.
:type auto_mitigate: bool
:param actions: the array of actions that are performed when the alert
rule becomes active, and when an alert condition is resolved.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,7 @@ class MetricAlertResource(Resource):
information.
:type criteria: ~azure.mgmt.monitor.v2018_03_01.models.MetricAlertCriteria
:param auto_mitigate: the flag that indicates whether the alert should be
auto resolved or not.
auto resolved or not. The default is true.
:type auto_mitigate: bool
:param actions: the array of actions that are performed when the alert
rule becomes active, and when an alert condition is resolved.
Expand Down Expand Up @@ -883,7 +883,7 @@ class MetricAlertResourcePatch(Model):
information.
:type criteria: ~azure.mgmt.monitor.v2018_03_01.models.MetricAlertCriteria
:param auto_mitigate: the flag that indicates whether the alert should be
auto resolved or not.
auto resolved or not. The default is true.
:type auto_mitigate: bool
:param actions: the array of actions that are performed when the alert
rule becomes active, and when an alert condition is resolved.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class MonitorManagementClientConfiguration(AzureConfiguration):
:param credentials: Credentials needed for the client to connect to Azure.
:type credentials: :mod:`A msrestazure Credentials
object<msrestazure.azure_active_directory>`
:param subscription_id: The ID of the target subscription.
:param subscription_id: The Azure subscription Id.
:type subscription_id: str
:param str base_url: Service URL
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class MonitorManagementClient(SDKClient):
:param credentials: Credentials needed for the client to connect to Azure.
:type credentials: :mod:`A msrestazure Credentials
object<msrestazure.azure_active_directory>`
:param subscription_id: The ID of the target subscription.
:param subscription_id: The Azure subscription Id.
:type subscription_id: str
:param str base_url: Service URL
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
try:
from ._models_py3 import AzureMonitorPrivateLinkScope
from ._models_py3 import ErrorAdditionalInfo
from ._models_py3 import ErrorResponse, ErrorResponseException
from ._models_py3 import ErrorResponse
from ._models_py3 import ErrorResponseCommon
from ._models_py3 import OperationStatus
from ._models_py3 import PrivateEndpointConnection
from ._models_py3 import PrivateEndpointProperty
Expand All @@ -25,7 +26,8 @@
except (SyntaxError, ImportError):
from ._models import AzureMonitorPrivateLinkScope
from ._models import ErrorAdditionalInfo
from ._models import ErrorResponse, ErrorResponseException
from ._models import ErrorResponse
from ._models import ErrorResponseCommon
from ._models import OperationStatus
from ._models import PrivateEndpointConnection
from ._models import PrivateEndpointProperty
Expand All @@ -43,7 +45,8 @@
__all__ = [
'AzureMonitorPrivateLinkScope',
'ErrorAdditionalInfo',
'ErrorResponse', 'ErrorResponseException',
'ErrorResponse',
'ErrorResponseCommon',
'OperationStatus',
'PrivateEndpointConnection',
'PrivateEndpointProperty',
Expand Down
Loading