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
5457from .operations import OpenIdConnectProviderOperations
5558from .operations import PolicyOperations
5659from .operations import PolicyDescriptionOperations
60+ from .operations import PortalRevisionOperations
61+ from .operations import PortalSettingsOperations
5762from .operations import SignInSettingsOperations
5863from .operations import SignUpSettingsOperations
5964from .operations import DelegationSettingsOperations
6671from .operations import QuotaByPeriodKeysOperations
6772from .operations import RegionOperations
6873from .operations import ReportsOperations
74+ from .operations import TenantSettingsOperations
6975from .operations import SubscriptionOperations
7076from .operations import TagResourceOperations
7177from .operations import TenantAccessOperations
@@ -126,6 +132,12 @@ class ApiManagementClient(SDKClient):
126132 :vartype cache: azure.mgmt.apimanagement.operations.CacheOperations
127133 :ivar certificate: Certificate operations
128134 :vartype certificate: azure.mgmt.apimanagement.operations.CertificateOperations
135+ :ivar content_type: ContentType operations
136+ :vartype content_type: azure.mgmt.apimanagement.operations.ContentTypeOperations
137+ :ivar content_item: ContentItem operations
138+ :vartype content_item: azure.mgmt.apimanagement.operations.ContentItemOperations
139+ :ivar deleted_services: DeletedServices operations
140+ :vartype deleted_services: azure.mgmt.apimanagement.operations.DeletedServicesOperations
129141 :ivar api_management_operations: ApiManagementOperations operations
130142 :vartype api_management_operations: azure.mgmt.apimanagement.operations.ApiManagementOperations
131143 :ivar api_management_service_skus: ApiManagementServiceSkus operations
@@ -168,6 +180,10 @@ class ApiManagementClient(SDKClient):
168180 :vartype policy: azure.mgmt.apimanagement.operations.PolicyOperations
169181 :ivar policy_description: PolicyDescription operations
170182 :vartype policy_description: azure.mgmt.apimanagement.operations.PolicyDescriptionOperations
183+ :ivar portal_revision: PortalRevision operations
184+ :vartype portal_revision: azure.mgmt.apimanagement.operations.PortalRevisionOperations
185+ :ivar portal_settings: PortalSettings operations
186+ :vartype portal_settings: azure.mgmt.apimanagement.operations.PortalSettingsOperations
171187 :ivar sign_in_settings: SignInSettings operations
172188 :vartype sign_in_settings: azure.mgmt.apimanagement.operations.SignInSettingsOperations
173189 :ivar sign_up_settings: SignUpSettings operations
@@ -192,6 +208,8 @@ class ApiManagementClient(SDKClient):
192208 :vartype region: azure.mgmt.apimanagement.operations.RegionOperations
193209 :ivar reports: Reports operations
194210 :vartype reports: azure.mgmt.apimanagement.operations.ReportsOperations
211+ :ivar tenant_settings: TenantSettings operations
212+ :vartype tenant_settings: azure.mgmt.apimanagement.operations.TenantSettingsOperations
195213 :ivar subscription: Subscription operations
196214 :vartype subscription: azure.mgmt.apimanagement.operations.SubscriptionOperations
197215 :ivar tag_resource: TagResource operations
@@ -232,7 +250,7 @@ def __init__(
232250 super (ApiManagementClient , self ).__init__ (self .config .credentials , self .config )
233251
234252 client_models = {k : v for k , v in models .__dict__ .items () if isinstance (v , type )}
235- self .api_version = '2019-12 -01'
253+ self .api_version = '2020-06 -01-preview '
236254 self ._serialize = Serializer (client_models )
237255 self ._deserialize = Deserializer (client_models )
238256
@@ -276,6 +294,12 @@ def __init__(
276294 self ._client , self .config , self ._serialize , self ._deserialize )
277295 self .certificate = CertificateOperations (
278296 self ._client , self .config , self ._serialize , self ._deserialize )
297+ self .content_type = ContentTypeOperations (
298+ self ._client , self .config , self ._serialize , self ._deserialize )
299+ self .content_item = ContentItemOperations (
300+ self ._client , self .config , self ._serialize , self ._deserialize )
301+ self .deleted_services = DeletedServicesOperations (
302+ self ._client , self .config , self ._serialize , self ._deserialize )
279303 self .api_management_operations = ApiManagementOperations (
280304 self ._client , self .config , self ._serialize , self ._deserialize )
281305 self .api_management_service_skus = ApiManagementServiceSkusOperations (
@@ -318,6 +342,10 @@ def __init__(
318342 self ._client , self .config , self ._serialize , self ._deserialize )
319343 self .policy_description = PolicyDescriptionOperations (
320344 self ._client , self .config , self ._serialize , self ._deserialize )
345+ self .portal_revision = PortalRevisionOperations (
346+ self ._client , self .config , self ._serialize , self ._deserialize )
347+ self .portal_settings = PortalSettingsOperations (
348+ self ._client , self .config , self ._serialize , self ._deserialize )
321349 self .sign_in_settings = SignInSettingsOperations (
322350 self ._client , self .config , self ._serialize , self ._deserialize )
323351 self .sign_up_settings = SignUpSettingsOperations (
@@ -342,6 +370,8 @@ def __init__(
342370 self ._client , self .config , self ._serialize , self ._deserialize )
343371 self .reports = ReportsOperations (
344372 self ._client , self .config , self ._serialize , self ._deserialize )
373+ self .tenant_settings = TenantSettingsOperations (
374+ self ._client , self .config , self ._serialize , self ._deserialize )
345375 self .subscription = SubscriptionOperations (
346376 self ._client , self .config , self ._serialize , self ._deserialize )
347377 self .tag_resource = TagResourceOperations (
0 commit comments