Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR hanaonazure/resource-manager] Update Swagger constraints to allow HANA Very Large Instances #2544

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
class HanaHardwareTypeNamesEnum(Enum):

cisco_ucs = "Cisco_UCS"
hpe = "HPE"


class HanaInstanceSizeNamesEnum(Enum):
Expand All @@ -25,3 +26,9 @@ class HanaInstanceSizeNamesEnum(Enum):
s144 = "S144"
s192 = "S192"
s192m = "S192m"
s384 = "S384"
s384m = "S384m"
s384xm = "S384xm"
s576 = "S576"
s768 = "S768"
s960 = "S960"
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@ class HardwareProfile(Model):
Variables are only populated by the server, and will be ignored when
sending a request.

:ivar hardware_type: Name of the hardware type (vendor and/or thrie
product name). Possible values include: 'Cisco_UCS'
:ivar hardware_type: Name of the hardware type (vendor and/or their
product name). Possible values include: 'Cisco_UCS', 'HPE'
:vartype hardware_type: str or
~azure.mgmt.hanaonazure.models.HanaHardwareTypeNamesEnum
:ivar hana_instance_size: Specifies the HANA instance SKU. Possible values
include: 'S72m', 'S144m', 'S72', 'S144', 'S192', 'S192m'
include: 'S72m', 'S144m', 'S72', 'S144', 'S192', 'S192m', 'S384', 'S384m',
'S384xm', 'S576', 'S768', 'S960'
:vartype hana_instance_size: str or
~azure.mgmt.hanaonazure.models.HanaInstanceSizeNamesEnum
"""
Expand Down