-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AutoPR] signalr/resource-manager (#2835)
* Generated from 03e114d3a1f7e25099ec02d897257b49db4d196b (#2830) add a new tier * [AutoPR signalr/resource-manager] Add api to list usages of Azure SignalR resources (#3020) * Generated from 6ec3df9b7b3881359ed9687408ab6f6bd0fefed7 add api to list usages of Azure SignalR resources * Generated from 6ec3df9b7b3881359ed9687408ab6f6bd0fefed7 add api to list usages of Azure SignalR resources * Generated from e93d86167dc28119dd3ae4505c5dce528ad92ad6 (#3176) return version/connection string of SignalR * SignalR packaging * SignalR version changelog
- Loading branch information
1 parent
4a76ec8
commit 8b6155f
Showing
29 changed files
with
493 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class Dimension(Model): | ||
"""Specifications of the Dimension of metrics. | ||
:param name: The public facing name of the dimension. | ||
:type name: str | ||
:param display_name: Localized friendly display name of the dimension. | ||
:type display_name: str | ||
:param internal_name: Name of the dimension as it appears in MDM. | ||
:type internal_name: str | ||
:param to_be_exported_for_shoebox: A Boolean flag indicating whether this | ||
dimension should be included for the shoebox export scenario. | ||
:type to_be_exported_for_shoebox: bool | ||
""" | ||
|
||
_attribute_map = { | ||
'name': {'key': 'name', 'type': 'str'}, | ||
'display_name': {'key': 'displayName', 'type': 'str'}, | ||
'internal_name': {'key': 'internalName', 'type': 'str'}, | ||
'to_be_exported_for_shoebox': {'key': 'toBeExportedForShoebox', 'type': 'bool'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(Dimension, self).__init__(**kwargs) | ||
self.name = kwargs.get('name', None) | ||
self.display_name = kwargs.get('display_name', None) | ||
self.internal_name = kwargs.get('internal_name', None) | ||
self.to_be_exported_for_shoebox = kwargs.get('to_be_exported_for_shoebox', None) |
41 changes: 41 additions & 0 deletions
41
azure-mgmt-signalr/azure/mgmt/signalr/models/dimension_py3.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class Dimension(Model): | ||
"""Specifications of the Dimension of metrics. | ||
:param name: The public facing name of the dimension. | ||
:type name: str | ||
:param display_name: Localized friendly display name of the dimension. | ||
:type display_name: str | ||
:param internal_name: Name of the dimension as it appears in MDM. | ||
:type internal_name: str | ||
:param to_be_exported_for_shoebox: A Boolean flag indicating whether this | ||
dimension should be included for the shoebox export scenario. | ||
:type to_be_exported_for_shoebox: bool | ||
""" | ||
|
||
_attribute_map = { | ||
'name': {'key': 'name', 'type': 'str'}, | ||
'display_name': {'key': 'displayName', 'type': 'str'}, | ||
'internal_name': {'key': 'internalName', 'type': 'str'}, | ||
'to_be_exported_for_shoebox': {'key': 'toBeExportedForShoebox', 'type': 'bool'}, | ||
} | ||
|
||
def __init__(self, *, name: str=None, display_name: str=None, internal_name: str=None, to_be_exported_for_shoebox: bool=None, **kwargs) -> None: | ||
super(Dimension, self).__init__(**kwargs) | ||
self.name = name | ||
self.display_name = display_name | ||
self.internal_name = internal_name | ||
self.to_be_exported_for_shoebox = to_be_exported_for_shoebox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.