@@ -47,7 +47,7 @@ async def get(
4747 self ,
4848 provisioning_service_name : str ,
4949 resource_group_name : str ,
50- ** kwargs
50+ ** kwargs : Any
5151 ) -> "_models.ProvisioningServiceDescription" :
5252 """Get the non-security related metadata of the provisioning service.
5353
@@ -109,7 +109,7 @@ async def _create_or_update_initial(
109109 resource_group_name : str ,
110110 provisioning_service_name : str ,
111111 iot_dps_description : "_models.ProvisioningServiceDescription" ,
112- ** kwargs
112+ ** kwargs : Any
113113 ) -> "_models.ProvisioningServiceDescription" :
114114 cls = kwargs .pop ('cls' , None ) # type: ClsType["_models.ProvisioningServiceDescription"]
115115 error_map = {
@@ -167,7 +167,7 @@ async def begin_create_or_update(
167167 resource_group_name : str ,
168168 provisioning_service_name : str ,
169169 iot_dps_description : "_models.ProvisioningServiceDescription" ,
170- ** kwargs
170+ ** kwargs : Any
171171 ) -> AsyncLROPoller ["_models.ProvisioningServiceDescription" ]:
172172 """Create or update the metadata of the provisioning service.
173173
@@ -183,8 +183,8 @@ async def begin_create_or_update(
183183 :type iot_dps_description: ~azure.mgmt.iothubprovisioningservices.models.ProvisioningServiceDescription
184184 :keyword callable cls: A custom type or function that will be passed the direct response
185185 :keyword str continuation_token: A continuation token to restart a poller from a saved state.
186- :keyword polling: Pass in True if you'd like the AsyncARMPolling polling method,
187- False for no polling , or your own initialized polling object for a personal polling strategy.
186+ :keyword polling: By default, your polling method will be AsyncARMPolling.
187+ Pass in False for this operation to not poll , or pass in your own initialized polling object for a personal polling strategy.
188188 :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
189189 :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
190190 :return: An instance of AsyncLROPoller that returns either ProvisioningServiceDescription or the result of cls(response)
@@ -242,7 +242,7 @@ async def _update_initial(
242242 resource_group_name : str ,
243243 provisioning_service_name : str ,
244244 provisioning_service_tags : "_models.TagsResource" ,
245- ** kwargs
245+ ** kwargs : Any
246246 ) -> "_models.ProvisioningServiceDescription" :
247247 cls = kwargs .pop ('cls' , None ) # type: ClsType["_models.ProvisioningServiceDescription"]
248248 error_map = {
@@ -295,7 +295,7 @@ async def begin_update(
295295 resource_group_name : str ,
296296 provisioning_service_name : str ,
297297 provisioning_service_tags : "_models.TagsResource" ,
298- ** kwargs
298+ ** kwargs : Any
299299 ) -> AsyncLROPoller ["_models.ProvisioningServiceDescription" ]:
300300 """Update an existing provisioning service's tags.
301301
@@ -311,8 +311,8 @@ async def begin_update(
311311 :type provisioning_service_tags: ~azure.mgmt.iothubprovisioningservices.models.TagsResource
312312 :keyword callable cls: A custom type or function that will be passed the direct response
313313 :keyword str continuation_token: A continuation token to restart a poller from a saved state.
314- :keyword polling: Pass in True if you'd like the AsyncARMPolling polling method,
315- False for no polling , or your own initialized polling object for a personal polling strategy.
314+ :keyword polling: By default, your polling method will be AsyncARMPolling.
315+ Pass in False for this operation to not poll , or pass in your own initialized polling object for a personal polling strategy.
316316 :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
317317 :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
318318 :return: An instance of AsyncLROPoller that returns either ProvisioningServiceDescription or the result of cls(response)
@@ -369,7 +369,7 @@ async def _delete_initial(
369369 self ,
370370 provisioning_service_name : str ,
371371 resource_group_name : str ,
372- ** kwargs
372+ ** kwargs : Any
373373 ) -> None :
374374 cls = kwargs .pop ('cls' , None ) # type: ClsType[None]
375375 error_map = {
@@ -414,7 +414,7 @@ async def begin_delete(
414414 self ,
415415 provisioning_service_name : str ,
416416 resource_group_name : str ,
417- ** kwargs
417+ ** kwargs : Any
418418 ) -> AsyncLROPoller [None ]:
419419 """Delete the Provisioning Service.
420420
@@ -426,8 +426,8 @@ async def begin_delete(
426426 :type resource_group_name: str
427427 :keyword callable cls: A custom type or function that will be passed the direct response
428428 :keyword str continuation_token: A continuation token to restart a poller from a saved state.
429- :keyword polling: Pass in True if you'd like the AsyncARMPolling polling method,
430- False for no polling , or your own initialized polling object for a personal polling strategy.
429+ :keyword polling: By default, your polling method will be AsyncARMPolling.
430+ Pass in False for this operation to not poll , or pass in your own initialized polling object for a personal polling strategy.
431431 :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
432432 :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
433433 :return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
@@ -478,7 +478,7 @@ def get_long_running_output(pipeline_response):
478478
479479 def list_by_subscription (
480480 self ,
481- ** kwargs
481+ ** kwargs : Any
482482 ) -> AsyncIterable ["_models.ProvisioningServiceDescriptionListResult" ]:
483483 """Get all the provisioning services in a subscription.
484484
@@ -548,7 +548,7 @@ async def get_next(next_link=None):
548548 def list_by_resource_group (
549549 self ,
550550 resource_group_name : str ,
551- ** kwargs
551+ ** kwargs : Any
552552 ) -> AsyncIterable ["_models.ProvisioningServiceDescriptionListResult" ]:
553553 """Get a list of all provisioning services in the given resource group.
554554
@@ -622,7 +622,7 @@ async def get_operation_result(
622622 resource_group_name : str ,
623623 provisioning_service_name : str ,
624624 asyncinfo : str = "true" ,
625- ** kwargs
625+ ** kwargs : Any
626626 ) -> "_models.AsyncOperationResult" :
627627 """Gets the status of a long running operation, such as create, update or delete a provisioning
628628 service.
@@ -691,7 +691,7 @@ def list_valid_skus(
691691 self ,
692692 provisioning_service_name : str ,
693693 resource_group_name : str ,
694- ** kwargs
694+ ** kwargs : Any
695695 ) -> AsyncIterable ["_models.IotDpsSkuDefinitionListResult" ]:
696696 """Get the list of valid SKUs for a provisioning service.
697697
@@ -767,7 +767,7 @@ async def get_next(next_link=None):
767767 async def check_provisioning_service_name_availability (
768768 self ,
769769 arguments : "_models.OperationInputs" ,
770- ** kwargs
770+ ** kwargs : Any
771771 ) -> "_models.NameAvailabilityInfo" :
772772 """Check if a provisioning service name is available.
773773
@@ -831,7 +831,7 @@ def list_keys(
831831 self ,
832832 provisioning_service_name : str ,
833833 resource_group_name : str ,
834- ** kwargs
834+ ** kwargs : Any
835835 ) -> AsyncIterable ["_models.SharedAccessSignatureAuthorizationRuleListResult" ]:
836836 """Get the security metadata for a provisioning service.
837837
@@ -910,7 +910,7 @@ async def list_keys_for_key_name(
910910 provisioning_service_name : str ,
911911 key_name : str ,
912912 resource_group_name : str ,
913- ** kwargs
913+ ** kwargs : Any
914914 ) -> "_models.SharedAccessSignatureAuthorizationRuleAccessRightsDescription" :
915915 """Get a shared access policy by name from a provisioning service.
916916
@@ -975,7 +975,7 @@ async def list_private_link_resources(
975975 self ,
976976 resource_group_name : str ,
977977 resource_name : str ,
978- ** kwargs
978+ ** kwargs : Any
979979 ) -> "_models.PrivateLinkResources" :
980980 """List private link resources.
981981
@@ -1038,7 +1038,7 @@ async def get_private_link_resources(
10381038 resource_group_name : str ,
10391039 resource_name : str ,
10401040 group_id : str ,
1041- ** kwargs
1041+ ** kwargs : Any
10421042 ) -> "_models.GroupIdInformation" :
10431043 """Get the specified private link resource.
10441044
@@ -1103,7 +1103,7 @@ async def list_private_endpoint_connections(
11031103 self ,
11041104 resource_group_name : str ,
11051105 resource_name : str ,
1106- ** kwargs
1106+ ** kwargs : Any
11071107 ) -> List ["_models.PrivateEndpointConnection" ]:
11081108 """List private endpoint connections.
11091109
@@ -1166,7 +1166,7 @@ async def get_private_endpoint_connection(
11661166 resource_group_name : str ,
11671167 resource_name : str ,
11681168 private_endpoint_connection_name : str ,
1169- ** kwargs
1169+ ** kwargs : Any
11701170 ) -> "_models.PrivateEndpointConnection" :
11711171 """Get private endpoint connection.
11721172
@@ -1233,7 +1233,7 @@ async def _create_or_update_private_endpoint_connection_initial(
12331233 resource_name : str ,
12341234 private_endpoint_connection_name : str ,
12351235 private_endpoint_connection : "_models.PrivateEndpointConnection" ,
1236- ** kwargs
1236+ ** kwargs : Any
12371237 ) -> "_models.PrivateEndpointConnection" :
12381238 cls = kwargs .pop ('cls' , None ) # type: ClsType["_models.PrivateEndpointConnection"]
12391239 error_map = {
@@ -1293,7 +1293,7 @@ async def begin_create_or_update_private_endpoint_connection(
12931293 resource_name : str ,
12941294 private_endpoint_connection_name : str ,
12951295 private_endpoint_connection : "_models.PrivateEndpointConnection" ,
1296- ** kwargs
1296+ ** kwargs : Any
12971297 ) -> AsyncLROPoller ["_models.PrivateEndpointConnection" ]:
12981298 """Create or update private endpoint connection.
12991299
@@ -1310,8 +1310,8 @@ async def begin_create_or_update_private_endpoint_connection(
13101310 :type private_endpoint_connection: ~azure.mgmt.iothubprovisioningservices.models.PrivateEndpointConnection
13111311 :keyword callable cls: A custom type or function that will be passed the direct response
13121312 :keyword str continuation_token: A continuation token to restart a poller from a saved state.
1313- :keyword polling: Pass in True if you'd like the AsyncARMPolling polling method,
1314- False for no polling , or your own initialized polling object for a personal polling strategy.
1313+ :keyword polling: By default, your polling method will be AsyncARMPolling.
1314+ Pass in False for this operation to not poll , or pass in your own initialized polling object for a personal polling strategy.
13151315 :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
13161316 :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
13171317 :return: An instance of AsyncLROPoller that returns either PrivateEndpointConnection or the result of cls(response)
@@ -1371,7 +1371,7 @@ async def _delete_private_endpoint_connection_initial(
13711371 resource_group_name : str ,
13721372 resource_name : str ,
13731373 private_endpoint_connection_name : str ,
1374- ** kwargs
1374+ ** kwargs : Any
13751375 ) -> Optional ["_models.PrivateEndpointConnection" ]:
13761376 cls = kwargs .pop ('cls' , None ) # type: ClsType[Optional["_models.PrivateEndpointConnection"]]
13771377 error_map = {
@@ -1426,7 +1426,7 @@ async def begin_delete_private_endpoint_connection(
14261426 resource_group_name : str ,
14271427 resource_name : str ,
14281428 private_endpoint_connection_name : str ,
1429- ** kwargs
1429+ ** kwargs : Any
14301430 ) -> AsyncLROPoller ["_models.PrivateEndpointConnection" ]:
14311431 """Delete private endpoint connection.
14321432
@@ -1441,8 +1441,8 @@ async def begin_delete_private_endpoint_connection(
14411441 :type private_endpoint_connection_name: str
14421442 :keyword callable cls: A custom type or function that will be passed the direct response
14431443 :keyword str continuation_token: A continuation token to restart a poller from a saved state.
1444- :keyword polling: Pass in True if you'd like the AsyncARMPolling polling method,
1445- False for no polling , or your own initialized polling object for a personal polling strategy.
1444+ :keyword polling: By default, your polling method will be AsyncARMPolling.
1445+ Pass in False for this operation to not poll , or pass in your own initialized polling object for a personal polling strategy.
14461446 :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
14471447 :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
14481448 :return: An instance of AsyncLROPoller that returns either PrivateEndpointConnection or the result of cls(response)
0 commit comments