18
18
from ._configuration import ContainerAppsAPIClientConfiguration
19
19
from ._serialization import Deserializer , Serializer
20
20
from .operations import (
21
- AppResiliencyOperations ,
22
21
AvailableWorkloadProfilesOperations ,
23
22
BillingMetersOperations ,
24
- BuildAuthTokenOperations ,
25
- BuildersOperations ,
26
- BuildsByBuilderResourceOperations ,
27
- BuildsOperations ,
28
23
CertificatesOperations ,
29
24
ConnectedEnvironmentsCertificatesOperations ,
30
25
ConnectedEnvironmentsDaprComponentsOperations ,
37
32
ContainerAppsRevisionReplicasOperations ,
38
33
ContainerAppsRevisionsOperations ,
39
34
ContainerAppsSourceControlsOperations ,
40
- DaprComponentResiliencyPoliciesOperations ,
41
35
DaprComponentsOperations ,
42
- DaprSubscriptionsOperations ,
43
- DotNetComponentsOperations ,
44
- JavaComponentsOperations ,
45
36
JobsExecutionsOperations ,
46
37
JobsOperations ,
47
38
ManagedCertificatesOperations ,
@@ -65,8 +56,6 @@ class ContainerAppsAPIClient(
65
56
): # pylint: disable=client-accepts-api-version-keyword,too-many-instance-attributes
66
57
"""ContainerAppsAPIClient.
67
58
68
- :ivar app_resiliency: AppResiliencyOperations operations
69
- :vartype app_resiliency: azure.mgmt.appcontainers.operations.AppResiliencyOperations
70
59
:ivar container_apps_auth_configs: ContainerAppsAuthConfigsOperations operations
71
60
:vartype container_apps_auth_configs:
72
61
azure.mgmt.appcontainers.operations.ContainerAppsAuthConfigsOperations
@@ -75,15 +64,6 @@ class ContainerAppsAPIClient(
75
64
azure.mgmt.appcontainers.operations.AvailableWorkloadProfilesOperations
76
65
:ivar billing_meters: BillingMetersOperations operations
77
66
:vartype billing_meters: azure.mgmt.appcontainers.operations.BillingMetersOperations
78
- :ivar builders: BuildersOperations operations
79
- :vartype builders: azure.mgmt.appcontainers.operations.BuildersOperations
80
- :ivar builds_by_builder_resource: BuildsByBuilderResourceOperations operations
81
- :vartype builds_by_builder_resource:
82
- azure.mgmt.appcontainers.operations.BuildsByBuilderResourceOperations
83
- :ivar builds: BuildsOperations operations
84
- :vartype builds: azure.mgmt.appcontainers.operations.BuildsOperations
85
- :ivar build_auth_token: BuildAuthTokenOperations operations
86
- :vartype build_auth_token: azure.mgmt.appcontainers.operations.BuildAuthTokenOperations
87
67
:ivar connected_environments: ConnectedEnvironmentsOperations operations
88
68
:vartype connected_environments:
89
69
azure.mgmt.appcontainers.operations.ConnectedEnvironmentsOperations
@@ -115,10 +95,10 @@ class ContainerAppsAPIClient(
115
95
:ivar managed_environments_diagnostics: ManagedEnvironmentsDiagnosticsOperations operations
116
96
:vartype managed_environments_diagnostics:
117
97
azure.mgmt.appcontainers.operations.ManagedEnvironmentsDiagnosticsOperations
118
- :ivar jobs: JobsOperations operations
119
- :vartype jobs: azure.mgmt.appcontainers.operations.JobsOperations
120
98
:ivar operations: Operations operations
121
99
:vartype operations: azure.mgmt.appcontainers.operations.Operations
100
+ :ivar jobs: JobsOperations operations
101
+ :vartype jobs: azure.mgmt.appcontainers.operations.JobsOperations
122
102
:ivar jobs_executions: JobsExecutionsOperations operations
123
103
:vartype jobs_executions: azure.mgmt.appcontainers.operations.JobsExecutionsOperations
124
104
:ivar managed_environments: ManagedEnvironmentsOperations operations
@@ -131,13 +111,8 @@ class ContainerAppsAPIClient(
131
111
azure.mgmt.appcontainers.operations.ManagedCertificatesOperations
132
112
:ivar namespaces: NamespacesOperations operations
133
113
:vartype namespaces: azure.mgmt.appcontainers.operations.NamespacesOperations
134
- :ivar dapr_component_resiliency_policies: DaprComponentResiliencyPoliciesOperations operations
135
- :vartype dapr_component_resiliency_policies:
136
- azure.mgmt.appcontainers.operations.DaprComponentResiliencyPoliciesOperations
137
114
:ivar dapr_components: DaprComponentsOperations operations
138
115
:vartype dapr_components: azure.mgmt.appcontainers.operations.DaprComponentsOperations
139
- :ivar dapr_subscriptions: DaprSubscriptionsOperations operations
140
- :vartype dapr_subscriptions: azure.mgmt.appcontainers.operations.DaprSubscriptionsOperations
141
116
:ivar managed_environments_storages: ManagedEnvironmentsStoragesOperations operations
142
117
:vartype managed_environments_storages:
143
118
azure.mgmt.appcontainers.operations.ManagedEnvironmentsStoragesOperations
@@ -149,18 +124,14 @@ class ContainerAppsAPIClient(
149
124
:ivar managed_environment_usages: ManagedEnvironmentUsagesOperations operations
150
125
:vartype managed_environment_usages:
151
126
azure.mgmt.appcontainers.operations.ManagedEnvironmentUsagesOperations
152
- :ivar java_components: JavaComponentsOperations operations
153
- :vartype java_components: azure.mgmt.appcontainers.operations.JavaComponentsOperations
154
- :ivar dot_net_components: DotNetComponentsOperations operations
155
- :vartype dot_net_components: azure.mgmt.appcontainers.operations.DotNetComponentsOperations
156
127
:param credential: Credential needed for the client to connect to Azure. Required.
157
128
:type credential: ~azure.core.credentials.TokenCredential
158
- :param subscription_id: The ID of the target subscription. The value must be an UUID. Required.
129
+ :param subscription_id: The ID of the target subscription. Required.
159
130
:type subscription_id: str
160
131
:param base_url: Service URL. Default value is "https://management.azure.com".
161
132
:type base_url: str
162
- :keyword api_version: Api Version. Default value is "2023-11-02-preview ". Note that overriding
163
- this default value may result in unsupported behavior.
133
+ :keyword api_version: Api Version. Default value is "2024-03-01 ". Note that overriding this
134
+ default value may result in unsupported behavior.
164
135
:paramtype api_version: str
165
136
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
166
137
Retry-After header is present.
@@ -200,20 +171,13 @@ def __init__(
200
171
self ._serialize = Serializer (client_models )
201
172
self ._deserialize = Deserializer (client_models )
202
173
self ._serialize .client_side_validation = False
203
- self .app_resiliency = AppResiliencyOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
204
174
self .container_apps_auth_configs = ContainerAppsAuthConfigsOperations (
205
175
self ._client , self ._config , self ._serialize , self ._deserialize
206
176
)
207
177
self .available_workload_profiles = AvailableWorkloadProfilesOperations (
208
178
self ._client , self ._config , self ._serialize , self ._deserialize
209
179
)
210
180
self .billing_meters = BillingMetersOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
211
- self .builders = BuildersOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
212
- self .builds_by_builder_resource = BuildsByBuilderResourceOperations (
213
- self ._client , self ._config , self ._serialize , self ._deserialize
214
- )
215
- self .builds = BuildsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
216
- self .build_auth_token = BuildAuthTokenOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
217
181
self .connected_environments = ConnectedEnvironmentsOperations (
218
182
self ._client , self ._config , self ._serialize , self ._deserialize
219
183
)
@@ -242,8 +206,8 @@ def __init__(
242
206
self .managed_environments_diagnostics = ManagedEnvironmentsDiagnosticsOperations (
243
207
self ._client , self ._config , self ._serialize , self ._deserialize
244
208
)
245
- self .jobs = JobsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
246
209
self .operations = Operations (self ._client , self ._config , self ._serialize , self ._deserialize )
210
+ self .jobs = JobsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
247
211
self .jobs_executions = JobsExecutionsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
248
212
self .managed_environments = ManagedEnvironmentsOperations (
249
213
self ._client , self ._config , self ._serialize , self ._deserialize
@@ -253,13 +217,7 @@ def __init__(
253
217
self ._client , self ._config , self ._serialize , self ._deserialize
254
218
)
255
219
self .namespaces = NamespacesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
256
- self .dapr_component_resiliency_policies = DaprComponentResiliencyPoliciesOperations (
257
- self ._client , self ._config , self ._serialize , self ._deserialize
258
- )
259
220
self .dapr_components = DaprComponentsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
260
- self .dapr_subscriptions = DaprSubscriptionsOperations (
261
- self ._client , self ._config , self ._serialize , self ._deserialize
262
- )
263
221
self .managed_environments_storages = ManagedEnvironmentsStoragesOperations (
264
222
self ._client , self ._config , self ._serialize , self ._deserialize
265
223
)
@@ -270,10 +228,6 @@ def __init__(
270
228
self .managed_environment_usages = ManagedEnvironmentUsagesOperations (
271
229
self ._client , self ._config , self ._serialize , self ._deserialize
272
230
)
273
- self .java_components = JavaComponentsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
274
- self .dot_net_components = DotNetComponentsOperations (
275
- self ._client , self ._config , self ._serialize , self ._deserialize
276
- )
277
231
278
232
def _send_request (self , request : HttpRequest , * , stream : bool = False , ** kwargs : Any ) -> HttpResponse :
279
233
"""Runs the network request through the client's chained policies.
0 commit comments