-
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.
Generated from de66598d5b247c2309c05d25f06af83dd2d306b1
Merge pull request #3 from FBettati/availableClusterCollection Modify availableClusters API to have a valid ARM collection response
- Loading branch information
1 parent
8ad93d5
commit ed150ae
Showing
4 changed files
with
66 additions
and
3 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
29 changes: 29 additions & 0 deletions
29
...e-mgmt-eventhub/azure/mgmt/eventhub/v2018_01_01_preview/models/available_clusters_list.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,29 @@ | ||
# 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 AvailableClustersList(Model): | ||
"""The response of the List Available Clusters operation. | ||
:param value: The count of readily available and pre-provisioned Event | ||
Hubs Clusters per region. | ||
:type value: list[dict[str, int]] | ||
""" | ||
|
||
_attribute_map = { | ||
'value': {'key': 'value', 'type': '[{int}]'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(AvailableClustersList, self).__init__(**kwargs) | ||
self.value = kwargs.get('value', None) |
29 changes: 29 additions & 0 deletions
29
...mt-eventhub/azure/mgmt/eventhub/v2018_01_01_preview/models/available_clusters_list_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,29 @@ | ||
# 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 AvailableClustersList(Model): | ||
"""The response of the List Available Clusters operation. | ||
:param value: The count of readily available and pre-provisioned Event | ||
Hubs Clusters per region. | ||
:type value: list[dict[str, int]] | ||
""" | ||
|
||
_attribute_map = { | ||
'value': {'key': 'value', 'type': '[{int}]'}, | ||
} | ||
|
||
def __init__(self, *, value=None, **kwargs) -> None: | ||
super(AvailableClustersList, self).__init__(**kwargs) | ||
self.value = value |
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