17
17
from .operations import LocationsOperations
18
18
from .operations import PrivateCloudsOperations
19
19
from .operations import ClustersOperations
20
+ from .operations import DatastoresOperations
20
21
from .operations import HcxEnterpriseSitesOperations
21
22
from .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
22
30
from . import models
23
31
24
32
@@ -36,10 +44,26 @@ class AVSClient(SDKClient):
36
44
:vartype private_clouds: azure.mgmt.avs.operations.PrivateCloudsOperations
37
45
:ivar clusters: Clusters operations
38
46
:vartype clusters: azure.mgmt.avs.operations.ClustersOperations
47
+ :ivar datastores: Datastores operations
48
+ :vartype datastores: azure.mgmt.avs.operations.DatastoresOperations
39
49
:ivar hcx_enterprise_sites: HcxEnterpriseSites operations
40
50
:vartype hcx_enterprise_sites: azure.mgmt.avs.operations.HcxEnterpriseSitesOperations
41
51
:ivar authorizations: Authorizations operations
42
52
: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
43
67
44
68
:param credentials: Credentials needed for the client to connect to Azure.
45
69
:type credentials: :mod:`A msrestazure Credentials
@@ -56,7 +80,7 @@ def __init__(
56
80
super (AVSClient , self ).__init__ (self .config .credentials , self .config )
57
81
58
82
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 '
60
84
self ._serialize = Serializer (client_models )
61
85
self ._deserialize = Deserializer (client_models )
62
86
@@ -68,7 +92,23 @@ def __init__(
68
92
self ._client , self .config , self ._serialize , self ._deserialize )
69
93
self .clusters = ClustersOperations (
70
94
self ._client , self .config , self ._serialize , self ._deserialize )
95
+ self .datastores = DatastoresOperations (
96
+ self ._client , self .config , self ._serialize , self ._deserialize )
71
97
self .hcx_enterprise_sites = HcxEnterpriseSitesOperations (
72
98
self ._client , self .config , self ._serialize , self ._deserialize )
73
99
self .authorizations = AuthorizationsOperations (
74
100
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