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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
# 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 ContainerServiceAgentPoolProfile(Model):
"""Profile for container service agent pool.
Variables are only populated by the server, and will be ignored when
sending a request.
:param name: Unique name of the agent pool profile within the context of
the subscription and resource group
:type name: str
:param count: No. of agents (VMs) that will host docker containers
:type count: int
:param vm_size: Size of agent VMs. Possible values include:
'Standard_A0', 'Standard_A1', 'Standard_A2', 'Standard_A3',
'Standard_A4', 'Standard_A5', 'Standard_A6', 'Standard_A7',
'Standard_A8', 'Standard_A9', 'Standard_A10', 'Standard_A11',
'Standard_D1', 'Standard_D2', 'Standard_D3', 'Standard_D4',
'Standard_D11', 'Standard_D12', 'Standard_D13', 'Standard_D14',
'Standard_D1_v2', 'Standard_D2_v2', 'Standard_D3_v2', 'Standard_D4_v2',
'Standard_D5_v2', 'Standard_D11_v2', 'Standard_D12_v2',
'Standard_D13_v2', 'Standard_D14_v2', 'Standard_G1', 'Standard_G2',
'Standard_G3', 'Standard_G4', 'Standard_G5', 'Standard_DS1',
'Standard_DS2', 'Standard_DS3', 'Standard_DS4', 'Standard_DS11',
'Standard_DS12', 'Standard_DS13', 'Standard_DS14', 'Standard_GS1',
'Standard_GS2', 'Standard_GS3', 'Standard_GS4', 'Standard_GS5'
:type vm_size: str or :class:`ContainerServiceVMSizeTypes
<azure.mgmt.compute.models.ContainerServiceVMSizeTypes>`
:param dns_prefix: DNS prefix to be used to create FQDN for this agent
pool
:type dns_prefix: str
:ivar fqdn: FDQN for the agent pool
:vartype fqdn: str
"""
_validation = {
'name': {'required': True},
'count': {'maximum': 100, 'minimum': 1},
'dns_prefix': {'required': True},
'fqdn': {'readonly': True},
}
_attribute_map = {
'name': {'key': 'name', 'type': 'str'},
'count': {'key': 'count', 'type': 'int'},
'vm_size': {'key': 'vmSize', 'type': 'str'},
'dns_prefix': {'key': 'dnsPrefix', 'type': 'str'},
'fqdn': {'key': 'fqdn', 'type': 'str'},
}
def __init__(self, name, dns_prefix, count=None, vm_size=None):
self.name = name
self.count = count
self.vm_size = vm_size
self.dns_prefix = dns_prefix
self.fqdn = None
|