2222 ArcSettingsOperations ,
2323 ClustersOperations ,
2424 DeploymentSettingsOperations ,
25+ EdgeDeviceJobsOperations ,
2526 EdgeDevicesOperations ,
2627 ExtensionsOperations ,
2728 OffersOperations ,
3536)
3637
3738if TYPE_CHECKING :
38- # pylint: disable=unused-import,ungrouped-imports
3939 from azure .core .credentials import TokenCredential
4040
4141
42- class AzureStackHCIClient : # pylint: disable=client-accepts-api-version-keyword, too-many-instance-attributes
42+ class AzureStackHCIClient : # pylint: disable=too-many-instance-attributes
4343 """Azure Stack HCI management service.
4444
4545 :ivar arc_settings: ArcSettingsOperations operations
@@ -48,6 +48,8 @@ class AzureStackHCIClient: # pylint: disable=client-accepts-api-version-keyword
4848 :vartype clusters: azure.mgmt.azurestackhci.operations.ClustersOperations
4949 :ivar deployment_settings: DeploymentSettingsOperations operations
5050 :vartype deployment_settings: azure.mgmt.azurestackhci.operations.DeploymentSettingsOperations
51+ :ivar edge_device_jobs: EdgeDeviceJobsOperations operations
52+ :vartype edge_device_jobs: azure.mgmt.azurestackhci.operations.EdgeDeviceJobsOperations
5153 :ivar edge_devices: EdgeDevicesOperations operations
5254 :vartype edge_devices: azure.mgmt.azurestackhci.operations.EdgeDevicesOperations
5355 :ivar extensions: ExtensionsOperations operations
@@ -64,18 +66,18 @@ class AzureStackHCIClient: # pylint: disable=client-accepts-api-version-keyword
6466 :vartype skus: azure.mgmt.azurestackhci.operations.SkusOperations
6567 :ivar update_runs: UpdateRunsOperations operations
6668 :vartype update_runs: azure.mgmt.azurestackhci.operations.UpdateRunsOperations
67- :ivar update_summaries: UpdateSummariesOperations operations
68- :vartype update_summaries: azure.mgmt.azurestackhci.operations.UpdateSummariesOperations
6969 :ivar updates: UpdatesOperations operations
7070 :vartype updates: azure.mgmt.azurestackhci.operations.UpdatesOperations
71+ :ivar update_summaries: UpdateSummariesOperations operations
72+ :vartype update_summaries: azure.mgmt.azurestackhci.operations.UpdateSummariesOperations
7173 :param credential: Credential needed for the client to connect to Azure. Required.
7274 :type credential: ~azure.core.credentials.TokenCredential
7375 :param subscription_id: The ID of the target subscription. The value must be an UUID. Required.
7476 :type subscription_id: str
7577 :param base_url: Service URL. Default value is "https://management.azure.com".
7678 :type base_url: str
77- :keyword api_version: Api Version. Default value is "2024-04 -01". Note that overriding this
78- default value may result in unsupported behavior.
79+ :keyword api_version: Api Version. Default value is "2025-02 -01-preview ". Note that overriding
80+ this default value may result in unsupported behavior.
7981 :paramtype api_version: str
8082 :keyword int polling_interval: Default waiting time between two polls for LRO operations if no
8183 Retry-After header is present.
@@ -120,6 +122,7 @@ def __init__(
120122 self .deployment_settings = DeploymentSettingsOperations (
121123 self ._client , self ._config , self ._serialize , self ._deserialize
122124 )
125+ self .edge_device_jobs = EdgeDeviceJobsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
123126 self .edge_devices = EdgeDevicesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
124127 self .extensions = ExtensionsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
125128 self .offers = OffersOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
@@ -130,10 +133,10 @@ def __init__(
130133 )
131134 self .skus = SkusOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
132135 self .update_runs = UpdateRunsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
136+ self .updates = UpdatesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
133137 self .update_summaries = UpdateSummariesOperations (
134138 self ._client , self ._config , self ._serialize , self ._deserialize
135139 )
136- self .updates = UpdatesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
137140
138141 def _send_request (self , request : HttpRequest , * , stream : bool = False , ** kwargs : Any ) -> HttpResponse :
139142 """Runs the network request through the client's chained policies.
0 commit comments