Skip to content

Commit

Permalink
Merge pull request microsoft#308 from microsoft/users/tedchamb/bv
Browse files Browse the repository at this point in the history
Regenerate after fixing float type handling in generator
  • Loading branch information
tedchamb authored Jan 3, 2020
2 parents 9a04304 + 73e992b commit 3838e91
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 27 deletions.
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
8 changes: 4 additions & 4 deletions azure-devops/azure/devops/v6_0/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/v6_0/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/v6_0/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.v6_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/v6_0/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 = "6.0.0b1"
VERSION = "6.0.0b2"
4 changes: 2 additions & 2 deletions 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 = "6.0.0b1"
VERSION = "6.0.0b2"

# To install the library, run the following
#
Expand Down Expand Up @@ -38,7 +38,7 @@
name=NAME,
version=VERSION,
license='MIT',
description="Python wrapper around the Azure DevOps 5.x APIs",
description="Python wrapper around the Azure DevOps 6.x APIs",
author="Microsoft Corporation",
author_email="vstscli@microsoft.com",
url="https://github.com/Microsoft/vsts-python-api",
Expand Down

0 comments on commit 3838e91

Please sign in to comment.