@@ -68,7 +68,7 @@ def get_parser(self, prog_name):
6868 return parser
6969
7070 def take_action (self , parsed_args ):
71- compute_client = self .app .client_manager .sdk_connection . compute
71+ compute_client = self .app .client_manager .compute
7272
7373 aggregate = compute_client .find_aggregate (
7474 parsed_args .aggregate , ignore_missing = False
@@ -111,7 +111,7 @@ def get_parser(self, prog_name):
111111 return parser
112112
113113 def take_action (self , parsed_args ):
114- compute_client = self .app .client_manager .sdk_connection . compute
114+ compute_client = self .app .client_manager .compute
115115
116116 attrs = {'name' : parsed_args .name }
117117
@@ -147,7 +147,7 @@ def get_parser(self, prog_name):
147147 return parser
148148
149149 def take_action (self , parsed_args ):
150- compute_client = self .app .client_manager .sdk_connection . compute
150+ compute_client = self .app .client_manager .compute
151151 result = 0
152152 for a in parsed_args .aggregate :
153153 try :
@@ -190,7 +190,7 @@ def get_parser(self, prog_name):
190190 return parser
191191
192192 def take_action (self , parsed_args ):
193- compute_client = self .app .client_manager .sdk_connection . compute
193+ compute_client = self .app .client_manager .compute
194194
195195 aggregates = list (compute_client .aggregates ())
196196
@@ -252,7 +252,7 @@ def get_parser(self, prog_name):
252252 return parser
253253
254254 def take_action (self , parsed_args ):
255- compute_client = self .app .client_manager .sdk_connection . compute
255+ compute_client = self .app .client_manager .compute
256256
257257 aggregate = compute_client .find_aggregate (
258258 parsed_args .aggregate , ignore_missing = False
@@ -309,7 +309,7 @@ def get_parser(self, prog_name):
309309 return parser
310310
311311 def take_action (self , parsed_args ):
312- compute_client = self .app .client_manager .sdk_connection . compute
312+ compute_client = self .app .client_manager .compute
313313 aggregate = compute_client .find_aggregate (
314314 parsed_args .aggregate , ignore_missing = False
315315 )
@@ -354,7 +354,7 @@ def get_parser(self, prog_name):
354354 return parser
355355
356356 def take_action (self , parsed_args ):
357- compute_client = self .app .client_manager .sdk_connection . compute
357+ compute_client = self .app .client_manager .compute
358358 aggregate = compute_client .find_aggregate (
359359 parsed_args .aggregate , ignore_missing = False
360360 )
@@ -394,7 +394,7 @@ def get_parser(self, prog_name):
394394 return parser
395395
396396 def take_action (self , parsed_args ):
397- compute_client = self .app .client_manager .sdk_connection . compute
397+ compute_client = self .app .client_manager .compute
398398 aggregate = compute_client .find_aggregate (
399399 parsed_args .aggregate , ignore_missing = False
400400 )
@@ -429,7 +429,7 @@ def get_parser(self, prog_name):
429429 return parser
430430
431431 def take_action (self , parsed_args ):
432- compute_client = self .app .client_manager .sdk_connection . compute
432+ compute_client = self .app .client_manager .compute
433433
434434 if not sdk_utils .supports_microversion (compute_client , '2.81' ):
435435 msg = _ (
0 commit comments