1717from .operations import LocationsOperations
1818from .operations import PrivateCloudsOperations
1919from .operations import ClustersOperations
20+ from .operations import DatastoresOperations
2021from .operations import HcxEnterpriseSitesOperations
2122from .operations import AuthorizationsOperations
23+ from .operations import GlobalReachConnectionsOperations
24+ from .operations import WorkloadNetworksOperations
25+ from .operations import CloudLinksOperations
26+ from .operations import AddonsOperations
27+ from .operations import ScriptPackagesOperations
28+ from .operations import ScriptCmdletsOperations
29+ from .operations import ScriptExecutionsOperations
2230from . import models
2331
2432
@@ -36,10 +44,26 @@ class AVSClient(SDKClient):
3644 :vartype private_clouds: azure.mgmt.avs.operations.PrivateCloudsOperations
3745 :ivar clusters: Clusters operations
3846 :vartype clusters: azure.mgmt.avs.operations.ClustersOperations
47+ :ivar datastores: Datastores operations
48+ :vartype datastores: azure.mgmt.avs.operations.DatastoresOperations
3949 :ivar hcx_enterprise_sites: HcxEnterpriseSites operations
4050 :vartype hcx_enterprise_sites: azure.mgmt.avs.operations.HcxEnterpriseSitesOperations
4151 :ivar authorizations: Authorizations operations
4252 :vartype authorizations: azure.mgmt.avs.operations.AuthorizationsOperations
53+ :ivar global_reach_connections: GlobalReachConnections operations
54+ :vartype global_reach_connections: azure.mgmt.avs.operations.GlobalReachConnectionsOperations
55+ :ivar workload_networks: WorkloadNetworks operations
56+ :vartype workload_networks: azure.mgmt.avs.operations.WorkloadNetworksOperations
57+ :ivar cloud_links: CloudLinks operations
58+ :vartype cloud_links: azure.mgmt.avs.operations.CloudLinksOperations
59+ :ivar addons: Addons operations
60+ :vartype addons: azure.mgmt.avs.operations.AddonsOperations
61+ :ivar script_packages: ScriptPackages operations
62+ :vartype script_packages: azure.mgmt.avs.operations.ScriptPackagesOperations
63+ :ivar script_cmdlets: ScriptCmdlets operations
64+ :vartype script_cmdlets: azure.mgmt.avs.operations.ScriptCmdletsOperations
65+ :ivar script_executions: ScriptExecutions operations
66+ :vartype script_executions: azure.mgmt.avs.operations.ScriptExecutionsOperations
4367
4468 :param credentials: Credentials needed for the client to connect to Azure.
4569 :type credentials: :mod:`A msrestazure Credentials
@@ -56,7 +80,7 @@ def __init__(
5680 super (AVSClient , self ).__init__ (self .config .credentials , self .config )
5781
5882 client_models = {k : v for k , v in models .__dict__ .items () if isinstance (v , type )}
59- self .api_version = '2020-03-20 '
83+ self .api_version = '2021-06-01 '
6084 self ._serialize = Serializer (client_models )
6185 self ._deserialize = Deserializer (client_models )
6286
@@ -68,7 +92,23 @@ def __init__(
6892 self ._client , self .config , self ._serialize , self ._deserialize )
6993 self .clusters = ClustersOperations (
7094 self ._client , self .config , self ._serialize , self ._deserialize )
95+ self .datastores = DatastoresOperations (
96+ self ._client , self .config , self ._serialize , self ._deserialize )
7197 self .hcx_enterprise_sites = HcxEnterpriseSitesOperations (
7298 self ._client , self .config , self ._serialize , self ._deserialize )
7399 self .authorizations = AuthorizationsOperations (
74100 self ._client , self .config , self ._serialize , self ._deserialize )
101+ self .global_reach_connections = GlobalReachConnectionsOperations (
102+ self ._client , self .config , self ._serialize , self ._deserialize )
103+ self .workload_networks = WorkloadNetworksOperations (
104+ self ._client , self .config , self ._serialize , self ._deserialize )
105+ self .cloud_links = CloudLinksOperations (
106+ self ._client , self .config , self ._serialize , self ._deserialize )
107+ self .addons = AddonsOperations (
108+ self ._client , self .config , self ._serialize , self ._deserialize )
109+ self .script_packages = ScriptPackagesOperations (
110+ self ._client , self .config , self ._serialize , self ._deserialize )
111+ self .script_cmdlets = ScriptCmdletsOperations (
112+ self ._client , self .config , self ._serialize , self ._deserialize )
113+ self .script_executions = ScriptExecutionsOperations (
114+ self ._client , self .config , self ._serialize , self ._deserialize )
0 commit comments