1+ # pylint: disable=too-many-lines
12# coding=utf-8
23# --------------------------------------------------------------------------
34# Copyright (c) Microsoft Corporation. All rights reserved.
7374 InboundSecurityRuleOperations ,
7475 IpAllocationsOperations ,
7576 IpGroupsOperations ,
77+ IpamPoolsOperations ,
7678 LoadBalancerBackendAddressPoolsOperations ,
7779 LoadBalancerFrontendIPConfigurationsOperations ,
7880 LoadBalancerLoadBalancingRulesOperations ,
108110 PrivateLinkServicesOperations ,
109111 PublicIPAddressesOperations ,
110112 PublicIPPrefixesOperations ,
113+ ReachabilityAnalysisIntentsOperations ,
114+ ReachabilityAnalysisRunsOperations ,
111115 ResourceNavigationLinksOperations ,
112116 RouteFilterRulesOperations ,
113117 RouteFiltersOperations ,
129133 ServiceEndpointPolicyDefinitionsOperations ,
130134 ServiceTagInformationOperations ,
131135 ServiceTagsOperations ,
136+ StaticCidrsOperations ,
132137 StaticMembersOperations ,
133138 SubnetsOperations ,
134139 SubscriptionNetworkManagerConnectionsOperations ,
135140 UsagesOperations ,
141+ VerifierWorkspacesOperations ,
136142 VipSwapOperations ,
137143 VirtualApplianceSitesOperations ,
138144 VirtualApplianceSkusOperations ,
164170)
165171
166172if TYPE_CHECKING :
167- # pylint: disable=unused-import,ungrouped-imports
168173 from azure .core .credentials import TokenCredential
169174
170175
@@ -295,6 +300,10 @@ class NetworkManagementClient(
295300 FirewallPolicyRuleCollectionGroupDraftsOperations operations
296301 :vartype firewall_policy_rule_collection_group_drafts:
297302 azure.mgmt.network.operations.FirewallPolicyRuleCollectionGroupDraftsOperations
303+ :ivar ipam_pools: IpamPoolsOperations operations
304+ :vartype ipam_pools: azure.mgmt.network.operations.IpamPoolsOperations
305+ :ivar static_cidrs: StaticCidrsOperations operations
306+ :vartype static_cidrs: azure.mgmt.network.operations.StaticCidrsOperations
298307 :ivar ip_allocations: IpAllocationsOperations operations
299308 :vartype ip_allocations: azure.mgmt.network.operations.IpAllocationsOperations
300309 :ivar ip_groups: IpGroupsOperations operations
@@ -356,6 +365,15 @@ class NetworkManagementClient(
356365 :vartype network_groups: azure.mgmt.network.operations.NetworkGroupsOperations
357366 :ivar static_members: StaticMembersOperations operations
358367 :vartype static_members: azure.mgmt.network.operations.StaticMembersOperations
368+ :ivar network_manager_routing_configurations: NetworkManagerRoutingConfigurationsOperations
369+ operations
370+ :vartype network_manager_routing_configurations:
371+ azure.mgmt.network.operations.NetworkManagerRoutingConfigurationsOperations
372+ :ivar routing_rule_collections: RoutingRuleCollectionsOperations operations
373+ :vartype routing_rule_collections:
374+ azure.mgmt.network.operations.RoutingRuleCollectionsOperations
375+ :ivar routing_rules: RoutingRulesOperations operations
376+ :vartype routing_rules: azure.mgmt.network.operations.RoutingRulesOperations
359377 :ivar scope_connections: ScopeConnectionsOperations operations
360378 :vartype scope_connections: azure.mgmt.network.operations.ScopeConnectionsOperations
361379 :ivar security_admin_configurations: SecurityAdminConfigurationsOperations operations
@@ -373,15 +391,6 @@ class NetworkManagementClient(
373391 azure.mgmt.network.operations.SecurityUserRuleCollectionsOperations
374392 :ivar security_user_rules: SecurityUserRulesOperations operations
375393 :vartype security_user_rules: azure.mgmt.network.operations.SecurityUserRulesOperations
376- :ivar network_manager_routing_configurations: NetworkManagerRoutingConfigurationsOperations
377- operations
378- :vartype network_manager_routing_configurations:
379- azure.mgmt.network.operations.NetworkManagerRoutingConfigurationsOperations
380- :ivar routing_rule_collections: RoutingRuleCollectionsOperations operations
381- :vartype routing_rule_collections:
382- azure.mgmt.network.operations.RoutingRuleCollectionsOperations
383- :ivar routing_rules: RoutingRulesOperations operations
384- :vartype routing_rules: azure.mgmt.network.operations.RoutingRulesOperations
385394 :ivar network_profiles: NetworkProfilesOperations operations
386395 :vartype network_profiles: azure.mgmt.network.operations.NetworkProfilesOperations
387396 :ivar network_security_groups: NetworkSecurityGroupsOperations operations
@@ -390,6 +399,14 @@ class NetworkManagementClient(
390399 :vartype security_rules: azure.mgmt.network.operations.SecurityRulesOperations
391400 :ivar default_security_rules: DefaultSecurityRulesOperations operations
392401 :vartype default_security_rules: azure.mgmt.network.operations.DefaultSecurityRulesOperations
402+ :ivar reachability_analysis_intents: ReachabilityAnalysisIntentsOperations operations
403+ :vartype reachability_analysis_intents:
404+ azure.mgmt.network.operations.ReachabilityAnalysisIntentsOperations
405+ :ivar reachability_analysis_runs: ReachabilityAnalysisRunsOperations operations
406+ :vartype reachability_analysis_runs:
407+ azure.mgmt.network.operations.ReachabilityAnalysisRunsOperations
408+ :ivar verifier_workspaces: VerifierWorkspacesOperations operations
409+ :vartype verifier_workspaces: azure.mgmt.network.operations.VerifierWorkspacesOperations
393410 :ivar network_virtual_appliances: NetworkVirtualAppliancesOperations operations
394411 :vartype network_virtual_appliances:
395412 azure.mgmt.network.operations.NetworkVirtualAppliancesOperations
@@ -706,6 +723,8 @@ def __init__(
706723 self .firewall_policy_rule_collection_group_drafts = FirewallPolicyRuleCollectionGroupDraftsOperations (
707724 self ._client , self ._config , self ._serialize , self ._deserialize
708725 )
726+ self .ipam_pools = IpamPoolsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
727+ self .static_cidrs = StaticCidrsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
709728 self .ip_allocations = IpAllocationsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
710729 self .ip_groups = IpGroupsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
711730 self .load_balancers = LoadBalancersOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
@@ -760,6 +779,13 @@ def __init__(
760779 )
761780 self .network_groups = NetworkGroupsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
762781 self .static_members = StaticMembersOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
782+ self .network_manager_routing_configurations = NetworkManagerRoutingConfigurationsOperations (
783+ self ._client , self ._config , self ._serialize , self ._deserialize
784+ )
785+ self .routing_rule_collections = RoutingRuleCollectionsOperations (
786+ self ._client , self ._config , self ._serialize , self ._deserialize
787+ )
788+ self .routing_rules = RoutingRulesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
763789 self .scope_connections = ScopeConnectionsOperations (
764790 self ._client , self ._config , self ._serialize , self ._deserialize
765791 )
@@ -779,13 +805,6 @@ def __init__(
779805 self .security_user_rules = SecurityUserRulesOperations (
780806 self ._client , self ._config , self ._serialize , self ._deserialize
781807 )
782- self .network_manager_routing_configurations = NetworkManagerRoutingConfigurationsOperations (
783- self ._client , self ._config , self ._serialize , self ._deserialize
784- )
785- self .routing_rule_collections = RoutingRuleCollectionsOperations (
786- self ._client , self ._config , self ._serialize , self ._deserialize
787- )
788- self .routing_rules = RoutingRulesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
789808 self .network_profiles = NetworkProfilesOperations (
790809 self ._client , self ._config , self ._serialize , self ._deserialize
791810 )
@@ -796,6 +815,15 @@ def __init__(
796815 self .default_security_rules = DefaultSecurityRulesOperations (
797816 self ._client , self ._config , self ._serialize , self ._deserialize
798817 )
818+ self .reachability_analysis_intents = ReachabilityAnalysisIntentsOperations (
819+ self ._client , self ._config , self ._serialize , self ._deserialize
820+ )
821+ self .reachability_analysis_runs = ReachabilityAnalysisRunsOperations (
822+ self ._client , self ._config , self ._serialize , self ._deserialize
823+ )
824+ self .verifier_workspaces = VerifierWorkspacesOperations (
825+ self ._client , self ._config , self ._serialize , self ._deserialize
826+ )
799827 self .network_virtual_appliances = NetworkVirtualAppliancesOperations (
800828 self ._client , self ._config , self ._serialize , self ._deserialize
801829 )
0 commit comments