36
36
ContainerAppsBuildsByContainerAppOperations ,
37
37
ContainerAppsBuildsOperations ,
38
38
ContainerAppsDiagnosticsOperations ,
39
+ ContainerAppsLabelHistoryOperations ,
39
40
ContainerAppsOperations ,
40
41
ContainerAppsPatchesOperations ,
41
42
ContainerAppsRevisionReplicasOperations ,
47
48
DaprSubscriptionsOperations ,
48
49
DotNetComponentsOperations ,
49
50
FunctionsExtensionOperations ,
51
+ HttpRouteConfigOperations ,
50
52
JavaComponentsOperations ,
51
53
JobsExecutionsOperations ,
52
54
JobsOperations ,
53
55
LogicAppsOperations ,
56
+ MaintenanceConfigurationsOperations ,
54
57
ManagedCertificatesOperations ,
55
58
ManagedEnvironmentDiagnosticsOperations ,
56
59
ManagedEnvironmentPrivateEndpointConnectionsOperations ,
65
68
)
66
69
67
70
if TYPE_CHECKING :
68
- # pylint: disable=unused-import,ungrouped-imports
69
71
from azure .core .credentials import TokenCredential
70
72
71
73
72
- class ContainerAppsAPIClient (
73
- ContainerAppsAPIClientOperationsMixin
74
- ): # pylint: disable=client-accepts-api-version-keyword,too-many-instance-attributes
74
+ class ContainerAppsAPIClient (ContainerAppsAPIClientOperationsMixin ): # pylint: disable=too-many-instance-attributes
75
75
"""Functions is an extension resource to revisions and the api listed is used to proxy the call
76
76
from Web RP to the function app's host process, this api is not exposed to users and only Web
77
77
RP is allowed to invoke functions extension resource.
@@ -121,6 +121,9 @@ class ContainerAppsAPIClient(
121
121
:ivar container_apps_patches: ContainerAppsPatchesOperations operations
122
122
:vartype container_apps_patches:
123
123
azure.mgmt.appcontainers.operations.ContainerAppsPatchesOperations
124
+ :ivar container_apps_label_history: ContainerAppsLabelHistoryOperations operations
125
+ :vartype container_apps_label_history:
126
+ azure.mgmt.appcontainers.operations.ContainerAppsLabelHistoryOperations
124
127
:ivar container_apps_revisions: ContainerAppsRevisionsOperations operations
125
128
:vartype container_apps_revisions:
126
129
azure.mgmt.appcontainers.operations.ContainerAppsRevisionsOperations
@@ -175,6 +178,11 @@ class ContainerAppsAPIClient(
175
178
:vartype dapr_components: azure.mgmt.appcontainers.operations.DaprComponentsOperations
176
179
:ivar dapr_subscriptions: DaprSubscriptionsOperations operations
177
180
:vartype dapr_subscriptions: azure.mgmt.appcontainers.operations.DaprSubscriptionsOperations
181
+ :ivar http_route_config: HttpRouteConfigOperations operations
182
+ :vartype http_route_config: azure.mgmt.appcontainers.operations.HttpRouteConfigOperations
183
+ :ivar maintenance_configurations: MaintenanceConfigurationsOperations operations
184
+ :vartype maintenance_configurations:
185
+ azure.mgmt.appcontainers.operations.MaintenanceConfigurationsOperations
178
186
:ivar managed_environments_storages: ManagedEnvironmentsStoragesOperations operations
179
187
:vartype managed_environments_storages:
180
188
azure.mgmt.appcontainers.operations.ManagedEnvironmentsStoragesOperations
@@ -195,7 +203,7 @@ class ContainerAppsAPIClient(
195
203
:type subscription_id: str
196
204
:param base_url: Service URL. Default value is "https://management.azure.com".
197
205
:type base_url: str
198
- :keyword api_version: Api Version. Default value is "2024-08 -02-preview". Note that overriding
206
+ :keyword api_version: Api Version. Default value is "2024-10 -02-preview". Note that overriding
199
207
this default value may result in unsupported behavior.
200
208
:paramtype api_version: str
201
209
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
@@ -272,6 +280,9 @@ def __init__(
272
280
self .container_apps_patches = ContainerAppsPatchesOperations (
273
281
self ._client , self ._config , self ._serialize , self ._deserialize
274
282
)
283
+ self .container_apps_label_history = ContainerAppsLabelHistoryOperations (
284
+ self ._client , self ._config , self ._serialize , self ._deserialize
285
+ )
275
286
self .container_apps_revisions = ContainerAppsRevisionsOperations (
276
287
self ._client , self ._config , self ._serialize , self ._deserialize
277
288
)
@@ -319,6 +330,12 @@ def __init__(
319
330
self .dapr_subscriptions = DaprSubscriptionsOperations (
320
331
self ._client , self ._config , self ._serialize , self ._deserialize
321
332
)
333
+ self .http_route_config = HttpRouteConfigOperations (
334
+ self ._client , self ._config , self ._serialize , self ._deserialize
335
+ )
336
+ self .maintenance_configurations = MaintenanceConfigurationsOperations (
337
+ self ._client , self ._config , self ._serialize , self ._deserialize
338
+ )
322
339
self .managed_environments_storages = ManagedEnvironmentsStoragesOperations (
323
340
self ._client , self ._config , self ._serialize , self ._deserialize
324
341
)
0 commit comments