@@ -297,6 +297,8 @@ class ExtensionInstance(ProxyResource):
297297 :param identity: The identity of the configuration.
298298 :type identity:
299299 ~azure.mgmt.kubernetesconfiguration.v2020_07_01_preview.models.ConfigurationIdentity
300+ :param location: Location of resource type
301+ :type location: str
300302 """
301303
302304 _validation = {
@@ -329,6 +331,7 @@ class ExtensionInstance(ProxyResource):
329331 'last_status_time' : {'key' : 'properties.lastStatusTime' , 'type' : 'str' },
330332 'error_info' : {'key' : 'properties.errorInfo' , 'type' : 'ErrorDefinition' },
331333 'identity' : {'key' : 'identity' , 'type' : 'ConfigurationIdentity' },
334+ 'location' : {'key' : 'location' , 'type' : 'str' },
332335 }
333336
334337 def __init__ (
@@ -344,6 +347,7 @@ def __init__(
344347 configuration_protected_settings : Optional [Dict [str , str ]] = None ,
345348 statuses : Optional [List ["ExtensionStatus" ]] = None ,
346349 identity : Optional ["ConfigurationIdentity" ] = None ,
350+ location : Optional [str ] = None ,
347351 ** kwargs
348352 ):
349353 super (ExtensionInstance , self ).__init__ (system_data = system_data , ** kwargs )
@@ -361,6 +365,7 @@ def __init__(
361365 self .last_status_time = None
362366 self .error_info = None
363367 self .identity = identity
368+ self .location = location
364369
365370
366371class ExtensionInstancesList (msrest .serialization .Model ):
0 commit comments