Source code for azure.mgmt.powerbiembedded.models.azure_sku_py3

# 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


[docs]class AzureSku(Model): """AzureSku. Variables are only populated by the server, and will be ignored when sending a request. All required parameters must be populated in order to send to Azure. :ivar name: Required. SKU name. Default value: "S1" . :vartype name: str :ivar tier: Required. SKU tier. Default value: "Standard" . :vartype tier: str """ _validation = { 'name': {'required': True, 'constant': True}, 'tier': {'required': True, 'constant': True}, } _attribute_map = { 'name': {'key': 'name', 'type': 'str'}, 'tier': {'key': 'tier', 'type': 'str'}, } name = "S1" tier = "Standard"