@@ -142,6 +142,8 @@ class SitePatchResource(ProxyOnlyResource):
142142 :vartype in_progress_operation_id: str
143143 :param geo_distributions: GeoDistributions for this site
144144 :type geo_distributions: list[~azure.mgmt.web.models.GeoDistribution]
145+ :param identity:
146+ :type identity: ~azure.mgmt.web.models.ManagedServiceIdentity
145147 """
146148
147149 _validation = {
@@ -210,9 +212,10 @@ class SitePatchResource(ProxyOnlyResource):
210212 'redundancy_mode' : {'key' : 'properties.redundancyMode' , 'type' : 'RedundancyMode' },
211213 'in_progress_operation_id' : {'key' : 'properties.inProgressOperationId' , 'type' : 'str' },
212214 'geo_distributions' : {'key' : 'properties.geoDistributions' , 'type' : '[GeoDistribution]' },
215+ 'identity' : {'key' : 'identity' , 'type' : 'ManagedServiceIdentity' },
213216 }
214217
215- def __init__ (self , * , kind : str = None , enabled : bool = None , host_name_ssl_states = None , server_farm_id : str = None , reserved : bool = False , is_xenon : bool = False , hyper_v : bool = False , site_config = None , scm_site_also_stopped : bool = False , hosting_environment_profile = None , client_affinity_enabled : bool = None , client_cert_enabled : bool = None , client_cert_exclusion_paths : str = None , host_names_disabled : bool = None , container_size : int = None , daily_memory_time_quota : int = None , cloning_info = None , https_only : bool = None , redundancy_mode = None , geo_distributions = None , ** kwargs ) -> None :
218+ def __init__ (self , * , kind : str = None , enabled : bool = None , host_name_ssl_states = None , server_farm_id : str = None , reserved : bool = False , is_xenon : bool = False , hyper_v : bool = False , site_config = None , scm_site_also_stopped : bool = False , hosting_environment_profile = None , client_affinity_enabled : bool = None , client_cert_enabled : bool = None , client_cert_exclusion_paths : str = None , host_names_disabled : bool = None , container_size : int = None , daily_memory_time_quota : int = None , cloning_info = None , https_only : bool = None , redundancy_mode = None , geo_distributions = None , identity = None , ** kwargs ) -> None :
216219 super (SitePatchResource , self ).__init__ (kind = kind , ** kwargs )
217220 self .state = None
218221 self .host_names = None
@@ -251,3 +254,4 @@ def __init__(self, *, kind: str=None, enabled: bool=None, host_name_ssl_states=N
251254 self .redundancy_mode = redundancy_mode
252255 self .in_progress_operation_id = None
253256 self .geo_distributions = geo_distributions
257+ self .identity = identity
0 commit comments