Skip to content

Commit

Permalink
Merge pull request #310 from microsoft/users/tedchamb/5.1fix
Browse files Browse the repository at this point in the history
regen after fix for float types in generator for 5.0 and 5.1 apis
  • Loading branch information
tedchamb authored Jan 3, 2020
2 parents 8c9266b + 0fc81e0 commit c21624b
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 26 deletions.
8 changes: 4 additions & 4 deletions azure-devops/azure/devops/v5_0/cloud_load_test/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,12 +199,12 @@ class BrowserMix(Model):
:param browser_name:
:type browser_name: str
:param browser_percentage:
:type browser_percentage: int
:type browser_percentage: float
"""

_attribute_map = {
'browser_name': {'key': 'browserName', 'type': 'str'},
'browser_percentage': {'key': 'browserPercentage', 'type': 'int'}
'browser_percentage': {'key': 'browserPercentage', 'type': 'float'}
}

def __init__(self, browser_name=None, browser_percentage=None):
Expand Down Expand Up @@ -291,7 +291,7 @@ class CounterSample(Model):
:param base_value:
:type base_value: long
:param computed_value:
:type computed_value: int
:type computed_value: float
:param counter_frequency:
:type counter_frequency: long
:param counter_instance_id:
Expand All @@ -312,7 +312,7 @@ class CounterSample(Model):

_attribute_map = {
'base_value': {'key': 'baseValue', 'type': 'long'},
'computed_value': {'key': 'computedValue', 'type': 'int'},
'computed_value': {'key': 'computedValue', 'type': 'float'},
'counter_frequency': {'key': 'counterFrequency', 'type': 'long'},
'counter_instance_id': {'key': 'counterInstanceId', 'type': 'str'},
'counter_type': {'key': 'counterType', 'type': 'str'},
Expand Down
4 changes: 2 additions & 2 deletions azure-devops/azure/devops/v5_0/contributions/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -689,15 +689,15 @@ class ResolvedDataProvider(Model):
"""ResolvedDataProvider.
:param duration: The total time the data provider took to resolve its data (in milliseconds)
:type duration: int
:type duration: float
:param error:
:type error: str
:param id:
:type id: str
"""

_attribute_map = {
'duration': {'key': 'duration', 'type': 'int'},
'duration': {'key': 'duration', 'type': 'float'},
'error': {'key': 'error', 'type': 'str'},
'id': {'key': 'id', 'type': 'str'}
}
Expand Down
8 changes: 4 additions & 4 deletions azure-devops/azure/devops/v5_0/gallery/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ class EventCounts(Model):
"""EventCounts.
:param average_rating: Average rating on the day for extension
:type average_rating: int
:type average_rating: float
:param buy_count: Number of times the extension was bought in hosted scenario (applies only to VSTS extensions)
:type buy_count: int
:param connected_buy_count: Number of times the extension was bought in connected scenario (applies only to VSTS extensions)
Expand All @@ -233,7 +233,7 @@ class EventCounts(Model):
"""

_attribute_map = {
'average_rating': {'key': 'averageRating', 'type': 'int'},
'average_rating': {'key': 'averageRating', 'type': 'float'},
'buy_count': {'key': 'buyCount', 'type': 'int'},
'connected_buy_count': {'key': 'connectedBuyCount', 'type': 'int'},
'connected_install_count': {'key': 'connectedInstallCount', 'type': 'int'},
Expand Down Expand Up @@ -1541,15 +1541,15 @@ class ReviewSummary(Model):
"""ReviewSummary.
:param average_rating: Average Rating
:type average_rating: int
:type average_rating: float
:param rating_count: Count of total ratings
:type rating_count: long
:param rating_split: Split of count accross rating
:type rating_split: list of :class:`RatingCountPerRating <azure.devops.v5_0.gallery.models.RatingCountPerRating>`
"""

_attribute_map = {
'average_rating': {'key': 'averageRating', 'type': 'int'},
'average_rating': {'key': 'averageRating', 'type': 'float'},
'rating_count': {'key': 'ratingCount', 'type': 'long'},
'rating_split': {'key': 'ratingSplit', 'type': '[RatingCountPerRating]'}
}
Expand Down
4 changes: 2 additions & 2 deletions azure-devops/azure/devops/v5_0/work/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ class Activity(Model):
"""Activity.
:param capacity_per_day:
:type capacity_per_day: int
:type capacity_per_day: float
:param name:
:type name: str
"""

_attribute_map = {
'capacity_per_day': {'key': 'capacityPerDay', 'type': 'int'},
'capacity_per_day': {'key': 'capacityPerDay', 'type': 'float'},
'name': {'key': 'name', 'type': 'str'}
}

Expand Down
8 changes: 4 additions & 4 deletions azure-devops/azure/devops/v5_1/cloud_load_test/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,12 +193,12 @@ class BrowserMix(Model):
:param browser_name:
:type browser_name: str
:param browser_percentage:
:type browser_percentage: int
:type browser_percentage: float
"""

_attribute_map = {
'browser_name': {'key': 'browserName', 'type': 'str'},
'browser_percentage': {'key': 'browserPercentage', 'type': 'int'}
'browser_percentage': {'key': 'browserPercentage', 'type': 'float'}
}

def __init__(self, browser_name=None, browser_percentage=None):
Expand Down Expand Up @@ -281,7 +281,7 @@ class CounterSample(Model):
:param base_value:
:type base_value: long
:param computed_value:
:type computed_value: int
:type computed_value: float
:param counter_frequency:
:type counter_frequency: long
:param counter_instance_id:
Expand All @@ -302,7 +302,7 @@ class CounterSample(Model):

_attribute_map = {
'base_value': {'key': 'baseValue', 'type': 'long'},
'computed_value': {'key': 'computedValue', 'type': 'int'},
'computed_value': {'key': 'computedValue', 'type': 'float'},
'counter_frequency': {'key': 'counterFrequency', 'type': 'long'},
'counter_instance_id': {'key': 'counterInstanceId', 'type': 'str'},
'counter_type': {'key': 'counterType', 'type': 'str'},
Expand Down
4 changes: 2 additions & 2 deletions azure-devops/azure/devops/v5_1/contributions/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -706,15 +706,15 @@ class ResolvedDataProvider(Model):
Entry for a specific data provider's resulting data
:param duration: The total time the data provider took to resolve its data (in milliseconds)
:type duration: int
:type duration: float
:param error:
:type error: str
:param id:
:type id: str
"""

_attribute_map = {
'duration': {'key': 'duration', 'type': 'int'},
'duration': {'key': 'duration', 'type': 'float'},
'error': {'key': 'error', 'type': 'str'},
'id': {'key': 'id', 'type': 'str'}
}
Expand Down
8 changes: 4 additions & 4 deletions azure-devops/azure/devops/v5_1/gallery/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def __init__(self, lang=None, lcid=None, title=None):
class EventCounts(Model):
"""
:param average_rating: Average rating on the day for extension
:type average_rating: int
:type average_rating: float
:param buy_count: Number of times the extension was bought in hosted scenario (applies only to VSTS extensions)
:type buy_count: int
:param connected_buy_count: Number of times the extension was bought in connected scenario (applies only to VSTS extensions)
Expand All @@ -230,7 +230,7 @@ class EventCounts(Model):
"""

_attribute_map = {
'average_rating': {'key': 'averageRating', 'type': 'int'},
'average_rating': {'key': 'averageRating', 'type': 'float'},
'buy_count': {'key': 'buyCount', 'type': 'int'},
'connected_buy_count': {'key': 'connectedBuyCount', 'type': 'int'},
'connected_install_count': {'key': 'connectedInstallCount', 'type': 'int'},
Expand Down Expand Up @@ -1715,15 +1715,15 @@ def __init__(self, has_more_reviews=None, reviews=None, total_review_count=None)
class ReviewSummary(Model):
"""
:param average_rating: Average Rating
:type average_rating: int
:type average_rating: float
:param rating_count: Count of total ratings
:type rating_count: long
:param rating_split: Split of count across rating
:type rating_split: list of :class:`RatingCountPerRating <azure.devops.v5_1.gallery.models.RatingCountPerRating>`
"""

_attribute_map = {
'average_rating': {'key': 'averageRating', 'type': 'int'},
'average_rating': {'key': 'averageRating', 'type': 'float'},
'rating_count': {'key': 'ratingCount', 'type': 'long'},
'rating_split': {'key': 'ratingSplit', 'type': '[RatingCountPerRating]'}
}
Expand Down
4 changes: 2 additions & 2 deletions azure-devops/azure/devops/v5_1/work/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
class Activity(Model):
"""
:param capacity_per_day:
:type capacity_per_day: int
:type capacity_per_day: float
:param name:
:type name: str
"""

_attribute_map = {
'capacity_per_day': {'key': 'capacityPerDay', 'type': 'int'},
'capacity_per_day': {'key': 'capacityPerDay', 'type': 'float'},
'name': {'key': 'name', 'type': 'str'}
}

Expand Down
2 changes: 1 addition & 1 deletion azure-devops/azure/devops/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------

VERSION = "5.1.0b6"
VERSION = "5.1.0b7"
2 changes: 1 addition & 1 deletion azure-devops/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from setuptools import setup, find_packages

NAME = "azure-devops"
VERSION = "5.1.0b6"
VERSION = "5.1.0b7"

# To install the library, run the following
#
Expand Down

0 comments on commit c21624b

Please sign in to comment.