1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
# 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 ApplicationGatewaySku(Model):
"""SKU of application gateway.
:param name: Name of application gateway SKU. Possible values include:
'Standard_Small', 'Standard_Medium', 'Standard_Large'
:type name: str or :class:`ApplicationGatewaySkuName
<azure.mgmt.network.models.ApplicationGatewaySkuName>`
:param tier: Tier of application gateway. Possible values include:
'Standard'
:type tier: str or :class:`ApplicationGatewayTier
<azure.mgmt.network.models.ApplicationGatewayTier>`
:param capacity: Capacity (instance count) of application gateway
:type capacity: int
"""
_attribute_map = {
'name': {'key': 'name', 'type': 'str'},
'tier': {'key': 'tier', 'type': 'str'},
'capacity': {'key': 'capacity', 'type': 'int'},
}
def __init__(self, name=None, tier=None, capacity=None):
self.name = name
self.tier = tier
self.capacity = capacity
|