Skip to content

Commit

Permalink
Generated from 03e114d3a1f7e25099ec02d897257b49db4d196b (#2830)
Browse files Browse the repository at this point in the history
add a new tier
  • Loading branch information
AutorestCI authored Jun 28, 2018
1 parent e8e9507 commit 72092b7
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
5 changes: 3 additions & 2 deletions azure-mgmt-signalr/azure/mgmt/signalr/models/resource_sku.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ class ResourceSku(Model):
:param name: Required. The name of the SKU. This is typically a letter +
number code, such as A0 or P3. Required (if sku is specified)
:type name: str
:param tier: The tier of this particular SKU. Optional. Possible values
include: 'Free', 'Basic', 'Premium'
:param tier: Optional tier of this particular SKU. `Basic` is deprecated,
use `Standard` instead for Basic tier. Possible values include: 'Free',
'Basic', 'Standard', 'Premium'
:type tier: str or ~azure.mgmt.signalr.models.SignalRSkuTier
:param size: Optional, string. When the name field is the combination of
tier and some other value, this would be the standalone code.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ class ResourceSku(Model):
:param name: Required. The name of the SKU. This is typically a letter +
number code, such as A0 or P3. Required (if sku is specified)
:type name: str
:param tier: The tier of this particular SKU. Optional. Possible values
include: 'Free', 'Basic', 'Premium'
:param tier: Optional tier of this particular SKU. `Basic` is deprecated,
use `Standard` instead for Basic tier. Possible values include: 'Free',
'Basic', 'Standard', 'Premium'
:type tier: str or ~azure.mgmt.signalr.models.SignalRSkuTier
:param size: Optional, string. When the name field is the combination of
tier and some other value, this would be the standalone code.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# regenerated.
# --------------------------------------------------------------------------

from .signal_rupdate_parameters import SignalRUpdateParameters
from .signal_rupdate_parameters_py3 import SignalRUpdateParameters


class SignalRCreateParameters(SignalRUpdateParameters):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class SignalRSkuTier(str, Enum):

free = "Free"
basic = "Basic"
standard = "Standard"
premium = "Premium"


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# regenerated.
# --------------------------------------------------------------------------

from .tracked_resource import TrackedResource
from .tracked_resource_py3 import TrackedResource


class SignalRResource(TrackedResource):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# regenerated.
# --------------------------------------------------------------------------

from .resource import Resource
from .resource_py3 import Resource


class TrackedResource(Resource):
Expand Down

0 comments on commit 72092b7

Please sign in to comment.