3333from .operations import BackendOperations
3434from .operations import CacheOperations
3535from .operations import CertificateOperations
36+ from .operations import ContentTypeOperations
37+ from .operations import ContentItemOperations
38+ from .operations import DeletedServicesOperations
3639from .operations import ApiManagementOperations
3740from .operations import ApiManagementServiceSkusOperations
3841from .operations import ApiManagementServiceOperations
4144from .operations import GatewayOperations
4245from .operations import GatewayHostnameConfigurationOperations
4346from .operations import GatewayApiOperations
47+ from .operations import GatewayCertificateAuthorityOperations
4448from .operations import GroupOperations
4549from .operations import GroupUserOperations
4650from .operations import IdentityProviderOperations
5458from .operations import OpenIdConnectProviderOperations
5559from .operations import PolicyOperations
5660from .operations import PolicyDescriptionOperations
61+ from .operations import PortalRevisionOperations
62+ from .operations import PortalSettingsOperations
5763from .operations import SignInSettingsOperations
5864from .operations import SignUpSettingsOperations
5965from .operations import DelegationSettingsOperations
6672from .operations import QuotaByPeriodKeysOperations
6773from .operations import RegionOperations
6874from .operations import ReportsOperations
75+ from .operations import TenantSettingsOperations
76+ from .operations import ApiManagementSkusOperations
6977from .operations import SubscriptionOperations
7078from .operations import TagResourceOperations
7179from .operations import TenantAccessOperations
@@ -126,6 +134,12 @@ class ApiManagementClient(SDKClient):
126134 :vartype cache: azure.mgmt.apimanagement.operations.CacheOperations
127135 :ivar certificate: Certificate operations
128136 :vartype certificate: azure.mgmt.apimanagement.operations.CertificateOperations
137+ :ivar content_type: ContentType operations
138+ :vartype content_type: azure.mgmt.apimanagement.operations.ContentTypeOperations
139+ :ivar content_item: ContentItem operations
140+ :vartype content_item: azure.mgmt.apimanagement.operations.ContentItemOperations
141+ :ivar deleted_services: DeletedServices operations
142+ :vartype deleted_services: azure.mgmt.apimanagement.operations.DeletedServicesOperations
129143 :ivar api_management_operations: ApiManagementOperations operations
130144 :vartype api_management_operations: azure.mgmt.apimanagement.operations.ApiManagementOperations
131145 :ivar api_management_service_skus: ApiManagementServiceSkus operations
@@ -142,6 +156,8 @@ class ApiManagementClient(SDKClient):
142156 :vartype gateway_hostname_configuration: azure.mgmt.apimanagement.operations.GatewayHostnameConfigurationOperations
143157 :ivar gateway_api: GatewayApi operations
144158 :vartype gateway_api: azure.mgmt.apimanagement.operations.GatewayApiOperations
159+ :ivar gateway_certificate_authority: GatewayCertificateAuthority operations
160+ :vartype gateway_certificate_authority: azure.mgmt.apimanagement.operations.GatewayCertificateAuthorityOperations
145161 :ivar group: Group operations
146162 :vartype group: azure.mgmt.apimanagement.operations.GroupOperations
147163 :ivar group_user: GroupUser operations
@@ -168,6 +184,10 @@ class ApiManagementClient(SDKClient):
168184 :vartype policy: azure.mgmt.apimanagement.operations.PolicyOperations
169185 :ivar policy_description: PolicyDescription operations
170186 :vartype policy_description: azure.mgmt.apimanagement.operations.PolicyDescriptionOperations
187+ :ivar portal_revision: PortalRevision operations
188+ :vartype portal_revision: azure.mgmt.apimanagement.operations.PortalRevisionOperations
189+ :ivar portal_settings: PortalSettings operations
190+ :vartype portal_settings: azure.mgmt.apimanagement.operations.PortalSettingsOperations
171191 :ivar sign_in_settings: SignInSettings operations
172192 :vartype sign_in_settings: azure.mgmt.apimanagement.operations.SignInSettingsOperations
173193 :ivar sign_up_settings: SignUpSettings operations
@@ -192,6 +212,10 @@ class ApiManagementClient(SDKClient):
192212 :vartype region: azure.mgmt.apimanagement.operations.RegionOperations
193213 :ivar reports: Reports operations
194214 :vartype reports: azure.mgmt.apimanagement.operations.ReportsOperations
215+ :ivar tenant_settings: TenantSettings operations
216+ :vartype tenant_settings: azure.mgmt.apimanagement.operations.TenantSettingsOperations
217+ :ivar api_management_skus: ApiManagementSkus operations
218+ :vartype api_management_skus: azure.mgmt.apimanagement.operations.ApiManagementSkusOperations
195219 :ivar subscription: Subscription operations
196220 :vartype subscription: azure.mgmt.apimanagement.operations.SubscriptionOperations
197221 :ivar tag_resource: TagResource operations
@@ -232,7 +256,7 @@ def __init__(
232256 super (ApiManagementClient , self ).__init__ (self .config .credentials , self .config )
233257
234258 client_models = {k : v for k , v in models .__dict__ .items () if isinstance (v , type )}
235- self .api_version = '2019 -12-01'
259+ self .api_version = '2020 -12-01'
236260 self ._serialize = Serializer (client_models )
237261 self ._deserialize = Deserializer (client_models )
238262
@@ -276,6 +300,12 @@ def __init__(
276300 self ._client , self .config , self ._serialize , self ._deserialize )
277301 self .certificate = CertificateOperations (
278302 self ._client , self .config , self ._serialize , self ._deserialize )
303+ self .content_type = ContentTypeOperations (
304+ self ._client , self .config , self ._serialize , self ._deserialize )
305+ self .content_item = ContentItemOperations (
306+ self ._client , self .config , self ._serialize , self ._deserialize )
307+ self .deleted_services = DeletedServicesOperations (
308+ self ._client , self .config , self ._serialize , self ._deserialize )
279309 self .api_management_operations = ApiManagementOperations (
280310 self ._client , self .config , self ._serialize , self ._deserialize )
281311 self .api_management_service_skus = ApiManagementServiceSkusOperations (
@@ -292,6 +322,8 @@ def __init__(
292322 self ._client , self .config , self ._serialize , self ._deserialize )
293323 self .gateway_api = GatewayApiOperations (
294324 self ._client , self .config , self ._serialize , self ._deserialize )
325+ self .gateway_certificate_authority = GatewayCertificateAuthorityOperations (
326+ self ._client , self .config , self ._serialize , self ._deserialize )
295327 self .group = GroupOperations (
296328 self ._client , self .config , self ._serialize , self ._deserialize )
297329 self .group_user = GroupUserOperations (
@@ -318,6 +350,10 @@ def __init__(
318350 self ._client , self .config , self ._serialize , self ._deserialize )
319351 self .policy_description = PolicyDescriptionOperations (
320352 self ._client , self .config , self ._serialize , self ._deserialize )
353+ self .portal_revision = PortalRevisionOperations (
354+ self ._client , self .config , self ._serialize , self ._deserialize )
355+ self .portal_settings = PortalSettingsOperations (
356+ self ._client , self .config , self ._serialize , self ._deserialize )
321357 self .sign_in_settings = SignInSettingsOperations (
322358 self ._client , self .config , self ._serialize , self ._deserialize )
323359 self .sign_up_settings = SignUpSettingsOperations (
@@ -342,6 +378,10 @@ def __init__(
342378 self ._client , self .config , self ._serialize , self ._deserialize )
343379 self .reports = ReportsOperations (
344380 self ._client , self .config , self ._serialize , self ._deserialize )
381+ self .tenant_settings = TenantSettingsOperations (
382+ self ._client , self .config , self ._serialize , self ._deserialize )
383+ self .api_management_skus = ApiManagementSkusOperations (
384+ self ._client , self .config , self ._serialize , self ._deserialize )
345385 self .subscription = SubscriptionOperations (
346386 self ._client , self .config , self ._serialize , self ._deserialize )
347387 self .tag_resource = TagResourceOperations (
0 commit comments