From 18762beb72d438b3907e7357d5f5f29af88910ac Mon Sep 17 00:00:00 2001 From: Alirose Burrell <16234397@massey.ac.nz> Date: Wed, 21 Aug 2024 15:40:02 +1200 Subject: [PATCH 01/31] exploring AST unfinished - minor emergency had to leave --- .../pylint_guidelines_checker.py | 50 ++++++++++++++++++- 1 file changed, 49 insertions(+), 1 deletion(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index 30cb9dab28d..b5d45926128 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -2749,7 +2749,55 @@ def visit_import(self, node): ) except: pass + + # [Pylint] custom linter check for invalid use of @overload #3229 +class InvalidUseOfOverload(BaseChecker): + + """Rule to check that use of the @overload decorator matches the async/sync nature of the underlying function""" + + name = "invalid-use-of-overload" + priority = -1 + msgs = { + "C4765": ( + "Do not mix async and synchronous overloads", + "invalid-use-of-overload", + "Functions and their overloads must be either all async or all synchronous.", + ), + } + + def visit_call(self, node): + + klass = node.parent.parent.parent + # function = node.parent.parent + # print("Klass", klass, "\n") + # print(dir(klass)) + # print() + print(klass.body) + # print(type(klass.body)) + # print(len(klass.body)) + print(klass.body[0]) + print(dir(klass.body[0])) + + for item in klass.body: + # print("DIR", dir(item)) + try: # imports doesn't have a name + print("NAME", item.name) + except: + print("must be imports") + + # def visit_asyncfunctiondef(self, node): + # print(node) + # print(dir(node)) + # print(node.name) + # + # + # def visit_functiondef(self, node): + # if (node.decorators.nodes[0].name == "overload"): + # print("OVERLOADED") + # else: + # print("n") + # [Pylint] Custom Linter check for Exception Logging #3227 # [Pylint] Address Commented out Pylint Custom Plugin Checkers #3228 # [Pylint] Add a check for connection_verify hardcoded settings #35355 @@ -2786,7 +2834,7 @@ def register(linter): linter.register_checker(DoNotImportLegacySix(linter)) linter.register_checker(NoLegacyAzureCoreHttpResponseImport(linter)) linter.register_checker(NoImportTypingFromTypeCheck(linter)) - # [Pylint] custom linter check for invalid use of @overload #3229 + linter.register_checker(InvalidUseOfOverload(linter)) # [Pylint] Custom Linter check for Exception Logging #3227 # [Pylint] Address Commented out Pylint Custom Plugin Checkers #3228 # [Pylint] Add a check for connection_verify hardcoded settings #35355 From 22381615627759f1a7489ee684c4af66d370fcb5 Mon Sep 17 00:00:00 2001 From: Alirose Burrell <16234397@massey.ac.nz> Date: Wed, 28 Aug 2024 15:21:48 +1200 Subject: [PATCH 02/31] identifying some mismatched functions --- .../pylint_guidelines_checker.py | 68 +++++++++++-------- 1 file changed, 40 insertions(+), 28 deletions(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index b5d45926128..2a60b5f11e5 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -2753,7 +2753,6 @@ def visit_import(self, node): # [Pylint] custom linter check for invalid use of @overload #3229 class InvalidUseOfOverload(BaseChecker): - """Rule to check that use of the @overload decorator matches the async/sync nature of the underlying function""" name = "invalid-use-of-overload" @@ -2767,36 +2766,49 @@ class InvalidUseOfOverload(BaseChecker): } def visit_call(self, node): - klass = node.parent.parent.parent - # function = node.parent.parent - # print("Klass", klass, "\n") - # print(dir(klass)) - # print() - print(klass.body) - # print(type(klass.body)) - # print(len(klass.body)) - print(klass.body[0]) - print(dir(klass.body[0])) + functions = [] + # Obtain a list of all functions and function names for item in klass.body: - # print("DIR", dir(item)) - try: # imports doesn't have a name - print("NAME", item.name) - except: - print("must be imports") - - # def visit_asyncfunctiondef(self, node): - # print(node) - # print(dir(node)) - # print(node.name) - # - # - # def visit_functiondef(self, node): - # if (node.decorators.nodes[0].name == "overload"): - # print("OVERLOADED") - # else: - # print("n") + if hasattr(item, 'name'): + functions.append(item) + + # Count up overloaded functions + overloadedfunctions = {} + for item in functions: + if item.name in overloadedfunctions: + overloadedfunctions[item.name].append(item) + else: + overloadedfunctions[item.name] = [item] + + # Loop through the overloaded functions and check they are the same type + for funct in overloadedfunctions.values(): + functionIsAsync = None + + for item in funct: + print("Function Async", functionIsAsync) + if (functionIsAsync == None): + if (item.__class__ == astroid.nodes.AsyncFunctionDef): + functionIsAsync = True + elif (item.__class__ == astroid.nodes.FunctionDef): + if (item.returns == None): + functionIsAsync = False + # Check to see if it contains subscript value= + else: + # TODO might contain subscript awaitable update later + functionIsAsync = False + # funcitonIsAsync is not none and there are functions to compare to + else: + if (item.__class__ == astroid.nodes.AsyncFunctionDef): + if (functionIsAsync == False): + print("there is a miss match of async and sync functions") + elif (item.__class__ == astroid.nodes.FunctionDef): + # TODO add checks for subscript awaitable here + if (functionIsAsync == True): + print("there is a miss match of async and sync functions") + + # [Pylint] Custom Linter check for Exception Logging #3227 # [Pylint] Address Commented out Pylint Custom Plugin Checkers #3228 From 95fe015a1ef51d9dc4df3be7bb3ad5c6f2997564 Mon Sep 17 00:00:00 2001 From: Joshua Bishop <13187637+MJoshuaB@users.noreply.github.com> Date: Wed, 28 Aug 2024 15:58:04 +1200 Subject: [PATCH 03/31] refactor checker and tests --- .../pylint_guidelines_checker.py | 201 +++++++++++++----- .../tests/test_pylint_custom_plugins.py | 123 ++++++++--- 2 files changed, 242 insertions(+), 82 deletions(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index 522205e6a0f..b8ec0cd7913 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -152,28 +152,104 @@ def visit_functiondef(self, node): pass +# class ClientHasApprovedMethodNamePrefix(BaseChecker): +# name = "client-approved-method-name-prefix" +# priority = -1 +# msgs = { +# "C4720": ( +# "Client is not using an approved method name prefix. See details:" +# " https://azure.github.io/azure-sdk/python_design.html#service-operations", +# "unapproved-client-method-name-prefix", +# "All clients should use the preferred verbs for method names.", +# ) +# } +# options = ( +# ( +# "ignore-unapproved-client-method-name-prefix", +# { +# "default": False, +# "type": "yn", +# "metavar": "", +# "help": "Allow clients to not use preferred method name prefixes", +# }, +# ), +# ) + +# ignore_clients = [ +# "PipelineClient", +# "AsyncPipelineClient", +# "ARMPipelineClient", +# "AsyncARMPipelineClient", +# ] + +# def __init__(self, linter=None): +# super(ClientHasApprovedMethodNamePrefix, self).__init__(linter) + +# def visit_classdef(self, node): +# """Visits every class in file and checks if it is a client. If it is a client, checks +# that approved method name prefixes are present. + +# :param node: class node +# :type node: ast.ClassDef +# :return: None +# """ +# try: +# if node.name.endswith("Client") and node.name not in self.ignore_clients: +# client_methods = [ +# child for child in node.get_children() if child.is_function +# ] + +# approved_prefixes = [ +# "get", +# "list", +# "create", +# "upsert", +# "set", +# "update", +# "replace", +# "append", +# "add", +# "delete", +# "remove", +# "begin", +# ] +# for idx, method in enumerate(client_methods): +# if ( +# method.name.startswith("__") +# or "_exists" in method.name +# or method.name.startswith("_") +# or method.name.startswith("from") +# ): +# continue +# prefix = method.name.split("_")[0] +# if prefix.lower() not in approved_prefixes: +# self.add_message( +# msgid="unapproved-client-method-name-prefix", +# node=client_methods[idx], +# confidence=None, +# ) +# except AttributeError: +# logger.debug( +# "Pylint custom checker failed to check if client has approved method name prefix." +# ) +# pass + class ClientHasApprovedMethodNamePrefix(BaseChecker): name = "client-approved-method-name-prefix" priority = -1 msgs = { - "C4720": ( - "Client is not using an approved method name prefix. See details:" + "C5000": ( + "%s: Client is not using an approved method name prefix. See details:" " https://azure.github.io/azure-sdk/python_design.html#service-operations", "unapproved-client-method-name-prefix", "All clients should use the preferred verbs for method names.", + ), + "C5001": ( + "%s: Client is using short method names", + "short-client-method-name", + "Client method names should be descriptive.", ) } - options = ( - ( - "ignore-unapproved-client-method-name-prefix", - { - "default": False, - "type": "yn", - "metavar": "", - "help": "Allow clients to not use preferred method name prefixes", - }, - ), - ) ignore_clients = [ "PipelineClient", @@ -182,58 +258,67 @@ class ClientHasApprovedMethodNamePrefix(BaseChecker): "AsyncARMPipelineClient", ] + approved_prefixes = [ + "get", + "list", + "create", + "upsert", + "set", + "update", + "replace", + "append", + "add", + "delete", + "remove", + "begin", + ] + def __init__(self, linter=None): super(ClientHasApprovedMethodNamePrefix, self).__init__(linter) + self.process_class = None + + def _is_property(self, node): + if not node.decorators: + return False + for decorator in node.decorators.nodes: + if decorator.name == "property": + return True + return False def visit_classdef(self, node): - """Visits every class in file and checks if it is a client. If it is a client, checks - that approved method name prefixes are present. + if node.name.endswith("Client") and node.name not in self.ignore_clients: + self.process_class = node - :param node: class node - :type node: ast.ClassDef - :return: None - """ - try: - if node.name.endswith("Client") and node.name not in self.ignore_clients: - client_methods = [ - child for child in node.get_children() if child.is_function - ] - - approved_prefixes = [ - "get", - "list", - "create", - "upsert", - "set", - "update", - "replace", - "append", - "add", - "delete", - "remove", - "begin", - ] - for idx, method in enumerate(client_methods): - if ( - method.name.startswith("__") - or "_exists" in method.name - or method.name.startswith("_") - or method.name.startswith("from") - ): - continue - prefix = method.name.split("_")[0] - if prefix.lower() not in approved_prefixes: - self.add_message( - msgid="unapproved-client-method-name-prefix", - node=client_methods[idx], - confidence=None, - ) - except AttributeError: - logger.debug( - "Pylint custom checker failed to check if client has approved method name prefix." + def visit_functiondef(self, node): + if any(( + self.process_class is None, # not in a client class + node.name.startswith("_"), # private method + node.name.endswith("_exists"), # special case + node.name.startswith("from"), # special case + self._is_property(node), # property + node.parent != self.process_class, # nested method + )): + return + + # check for approved prefix + parts = node.name.split("_") + if len(parts) < 2 and parts[0].lower() not in self.approved_prefixes: + self.add_message( + msgid="short-client-method-name", + args=node.name, + node=node, + confidence=None, + ) + elif parts[0].lower() not in self.approved_prefixes: + self.add_message( + msgid="unapproved-client-method-name-prefix", + args=node.name, + node=node, + confidence=None, ) - pass + def leave_classdef(self, node): + self.process_class = None class ClientMethodsUseKwargsWithMultipleParameters(BaseChecker): name = "client-method-multiple-parameters" diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py index f9f3972ca75..145085f144a 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py @@ -512,6 +512,7 @@ def __init__(self, **kwargs): #@ with self.assertNoMessages(): self.checker.visit_classdef(class_node) + self.checker.visit_functiondef(function_node) def test_ignores_private_method(self): class_node, function_node = astroid.extract_node( @@ -524,6 +525,7 @@ def _private_method(self, **kwargs): #@ with self.assertNoMessages(): self.checker.visit_classdef(class_node) + self.checker.visit_functiondef(function_node) def test_ignores_if_exists_suffix(self): class_node, function_node = astroid.extract_node( @@ -536,6 +538,7 @@ def check_if_exists(self, **kwargs): #@ with self.assertNoMessages(): self.checker.visit_classdef(class_node) + self.checker.visit_functiondef(function_node) def test_ignores_from_prefix(self): class_node, function_node = astroid.extract_node( @@ -548,23 +551,11 @@ def from_connection_string(self, **kwargs): #@ with self.assertNoMessages(): self.checker.visit_classdef(class_node) + self.checker.visit_functiondef(function_node) def test_ignores_approved_prefix_names(self): - ( - class_node, - func_node_a, - func_node_b, - func_node_c, - func_node_d, - func_node_e, - func_node_f, - func_node_g, - func_node_h, - func_node_i, - func_node_j, - func_node_k, - func_node_l, - ) = astroid.extract_node( + # TODO: convert to parametrized test + class_node, *func_nodes = astroid.extract_node( """ class SomeClient(): #@ def create_configuration(self): #@ @@ -596,6 +587,8 @@ def begin_thing(self): #@ with self.assertNoMessages(): self.checker.visit_classdef(class_node) + for node in func_nodes: + self.checker.visit_functiondef(node) def test_ignores_non_client_with_unapproved_prefix_names(self): class_node, function_node = astroid.extract_node( @@ -608,21 +601,25 @@ def download_thing(self, some, **kwargs): #@ with self.assertNoMessages(): self.checker.visit_classdef(class_node) + self.checker.visit_functiondef(function_node) def test_ignores_nested_function_with_unapproved_prefix_names(self): - class_node, function_node = astroid.extract_node( + class_node, function_node, nested_function_node = astroid.extract_node( """ class SomeClient(): #@ def create_configuration(self, **kwargs): #@ - def nested(hello, world): + def nested(hello, world): #@ pass """ ) with self.assertNoMessages(): self.checker.visit_classdef(class_node) + self.checker.visit_functiondef(function_node) + self.checker.visit_functiondef(nested_function_node) def test_finds_unapproved_prefix_names(self): + # TODO: convert to parametrized test ( class_node, func_node_a, @@ -642,7 +639,7 @@ def test_finds_unapproved_prefix_names(self): func_node_o, func_node_p, ) = astroid.extract_node( - """ + """ class SomeClient(): #@ @distributed_trace def build_configuration(self): #@ @@ -683,6 +680,7 @@ def removes_thing(self): #@ with self.assertAddsMessages( pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", + args=func_node_a.name, line=4, node=func_node_a, col_offset=4, @@ -691,6 +689,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", + args=func_node_b.name, line=6, node=func_node_b, col_offset=4, @@ -699,6 +698,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", + args=func_node_c.name, line=8, node=func_node_c, col_offset=4, @@ -707,6 +707,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", + args=func_node_d.name, line=10, node=func_node_d, col_offset=4, @@ -715,6 +716,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", + args=func_node_e.name, line=12, node=func_node_e, col_offset=4, @@ -723,6 +725,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", + args=func_node_f.name, line=14, node=func_node_f, col_offset=4, @@ -731,6 +734,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", + args=func_node_g.name, line=16, node=func_node_g, col_offset=4, @@ -739,6 +743,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", + args=func_node_h.name, line=18, node=func_node_h, col_offset=4, @@ -747,6 +752,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", + args=func_node_i.name, line=20, node=func_node_i, col_offset=4, @@ -755,6 +761,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", + args=func_node_j.name, line=22, node=func_node_j, col_offset=4, @@ -763,6 +770,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", + args=func_node_k.name, line=24, node=func_node_k, col_offset=4, @@ -771,6 +779,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", + args=func_node_l.name, line=26, node=func_node_l, col_offset=4, @@ -779,6 +788,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", + args=func_node_m.name, line=28, node=func_node_m, col_offset=4, @@ -787,6 +797,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", + args=func_node_n.name, line=30, node=func_node_n, col_offset=4, @@ -795,6 +806,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", + args=func_node_o.name, line=32, node=func_node_o, col_offset=4, @@ -803,6 +815,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", + args=func_node_p.name, line=34, node=func_node_p, col_offset=4, @@ -811,6 +824,63 @@ def removes_thing(self): #@ ), ): self.checker.visit_classdef(class_node) + nodes = [ + func_node_a, + func_node_b, + func_node_c, + func_node_d, + func_node_e, + func_node_f, + func_node_g, + func_node_h, + func_node_i, + func_node_j, + func_node_k, + func_node_l, + func_node_m, + func_node_n, + func_node_o, + func_node_p, + ] + for node in nodes: + self.checker.visit_functiondef(node) + + def test_ignores_property(self): + class_node, property_node = astroid.extract_node( + """ + class SomeClient(): #@ + @property + def thing(self): #@ + pass + """ + ) + + with self.assertNoMessages(): + self.checker.visit_classdef(class_node) + self.checker.visit_functiondef(property_node) + + def test_finds_short_name(self): + class_node, func_node = astroid.extract_node( + """ + class SomeClient(): #@ + def close(self): #@ + pass + """ + ) + + with self.assertAddsMessages( + pylint.testutils.MessageTest( + msg_id="short-client-method-name", + args=func_node.name, + line=3, + node=func_node, + col_offset=4, + end_line=3, + end_col_offset=13, + ) + ): + self.checker.visit_classdef(class_node) + self.checker.visit_functiondef(func_node) def test_guidelines_link_active(self): url = "https://azure.github.io/azure-sdk/python_design.html#service-operations" @@ -3141,7 +3211,10 @@ def test_package_name_violation(self): with self.assertAddsMessages( pylint.testutils.MessageTest( - msg_id="package-name-incorrect", line=0, node=module_node, col_offset=0, + msg_id="package-name-incorrect", + line=0, + node=module_node, + col_offset=0, ) ): self.checker.visit_module(module_node) @@ -3186,7 +3259,10 @@ def __init__(self): module_node.body = [client_node] with self.assertAddsMessages( pylint.testutils.MessageTest( - msg_id="client-suffix-needed", line=0, node=module_node, col_offset=0, + msg_id="client-suffix-needed", + line=0, + node=module_node, + col_offset=0, ) ): self.checker.visit_module(module_node) @@ -4313,7 +4389,6 @@ def __init__(self, dog, **kwargs): #@ class TestDeleteOperationReturnType(pylint.testutils.CheckerTestCase): - """Test that we are checking the return type of delete functions is correct""" CHECKER_CLASS = checker.DeleteOperationReturnStatement @@ -4390,7 +4465,6 @@ def begin_delete_some_function(self, **kwargs) -> LROPoller[None]: #@ class TestDocstringParameters(pylint.testutils.CheckerTestCase): - """Test that we are checking the docstring is correct""" CHECKER_CLASS = checker.CheckDocstringParameters @@ -4801,7 +4875,7 @@ def test_allowed_imports(self): """Check that allowed imports don't raise warnings.""" # import not in the blocked list. importfrom_node = astroid.extract_node( - """ + """ from typing import TYPE_CHECKING if TYPE_CHECKING: @@ -4831,9 +4905,10 @@ def test_allowed_import_else(self): self.checker.visit_import(imc) self.checker.visit_importfrom(imd) + # [Pylint] custom linter check for invalid use of @overload #3229 # [Pylint] Custom Linter check for Exception Logging #3227 # [Pylint] Address Commented out Pylint Custom Plugin Checkers #3228 # [Pylint] Add a check for connection_verify hardcoded settings #35355 # [Pylint] Refactor test suite for custom pylint checkers to use files instead of docstrings #3233 -# [Pylint] Investigate pylint rule around missing dependency #3231 \ No newline at end of file +# [Pylint] Investigate pylint rule around missing dependency #3231 From e2e664f0e7f39937f2db9c098dfd817fa365d303 Mon Sep 17 00:00:00 2001 From: Joshua Bishop <13187637+MJoshuaB@users.noreply.github.com> Date: Thu, 29 Aug 2024 11:54:50 +1200 Subject: [PATCH 04/31] fix error with non-builtins decorators --- .../pylint_guidelines_checker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index b8ec0cd7913..51d61c75683 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -281,7 +281,7 @@ def _is_property(self, node): if not node.decorators: return False for decorator in node.decorators.nodes: - if decorator.name == "property": + if isinstance(decorator, astroid.nodes.Name) and decorator.name == "property": return True return False @@ -2885,7 +2885,7 @@ def register(linter): # Rules are disabled until false positive rate improved # linter.register_checker(CheckForPolicyUse(linter)) - # linter.register_checker(ClientHasApprovedMethodNamePrefix(linter)) + linter.register_checker(ClientHasApprovedMethodNamePrefix(linter)) # linter.register_checker(ClientDocstringUsesLiteralIncludeForCodeExample(linter)) # linter.register_checker(ClientLROMethodsUseCorePolling(linter)) From 46053e62a75529f288ec0d398cae3575c5c6bd3c Mon Sep 17 00:00:00 2001 From: Alirose Burrell <16234397@massey.ac.nz> Date: Thu, 29 Aug 2024 12:54:26 +1200 Subject: [PATCH 05/31] fine tuning and testing required --- .../azure-pylint-guidelines-checker/README.md | 4 +- .../pylint_guidelines_checker.py | 39 ++++++++++--------- 2 files changed, 22 insertions(+), 21 deletions(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/README.md b/tools/pylint-extensions/azure-pylint-guidelines-checker/README.md index a1c7e5a9a1b..8ee28159799 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/README.md +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/README.md @@ -53,7 +53,7 @@ In the case of a false positive, use the disable command to remove the pylint er ## Rules List | Pylint checker name | How to fix this | How to disable this rule | Link to python guideline | -| -------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | +| -------------------------------------------------- |----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------| | client-method-should-not-use-static-method | Use module level functions instead. | # pylint:disable=client-method-should-not-use-static-method | [link](https://azure.github.io/azure-sdk/python_implementation.html#method-signatures) | | missing-client-constructor-parameter-credential | Add a credential parameter to the client constructor. Do not use plural form "credentials". | # pylint:disable=missing-client-constructor-parameter-credential | [link](https://azure.github.io/azure-sdk/python_design.html#client-configuration) | | missing-client-constructor-parameter-kwargs | Add a \*\*kwargs parameter to the client constructor. | # pylint:disable=missing-client-constructor-parameter-kwargs | [link](https://azure.github.io/azure-sdk/python_design.html#client-configuration) | @@ -92,7 +92,7 @@ In the case of a false positive, use the disable command to remove the pylint er | docstring-keyword-should-match-keyword-only | Docstring keyword arguments and keyword-only method arguments should match. | pylint:disable=docstring-keyword-should-match-keyword-only | [link](https://azure.github.io/azure-sdk/python_documentation.html#docstrings) | | docstring-type-do-not-use-class | Docstring type is formatted incorrectly. Do not use `:class` in docstring type. | pylint:disable=docstring-type-do-not-use-class | [link](https://sphinx-rtd-tutorial.readthedocs.io/en/latest/docstrings.html) | | no-typing-import-in-type-check | Do not import typing under TYPE_CHECKING. | pylint:disable=no-typing-import-in-type-check | No Link. | -| TODO | custom linter check for invalid use of @overload #3229 | | | +| invalid-use-of-overload | Do not mix async and synchronous overloads | pylint:disable=invalid-use-of-overload | No Link. | | TODO | Custom Linter check for Exception Logging #3227 | | | | TODO | Address Commented out Pylint Custom Plugin Checkers #3228 | | | | TODO | Add a check for connection_verify hardcoded settings #35355 | | | \ No newline at end of file diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index 2a60b5f11e5..33aabf845e9 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -2787,26 +2787,27 @@ def visit_call(self, node): functionIsAsync = None for item in funct: - print("Function Async", functionIsAsync) - if (functionIsAsync == None): - if (item.__class__ == astroid.nodes.AsyncFunctionDef): - functionIsAsync = True - elif (item.__class__ == astroid.nodes.FunctionDef): - if (item.returns == None): - functionIsAsync = False - # Check to see if it contains subscript value= - else: - # TODO might contain subscript awaitable update later - functionIsAsync = False - # funcitonIsAsync is not none and there are functions to compare to + if functionIsAsync is None: + functionIsAsync = self.is_function_async(item) + else: + if functionIsAsync != self.is_function_async(item): + self.add_message( + msgid=f"invalid-use-of-overload", + node=node, + confidence=None, + ) + + def is_function_async(self, node): + if node.__class__ == astroid.nodes.AsyncFunctionDef: + return True + elif node.__class__ == astroid.nodes.FunctionDef: + if node.returns is None: + return False + else: + if node.returns.value.name == "Awaitable": + return True else: - if (item.__class__ == astroid.nodes.AsyncFunctionDef): - if (functionIsAsync == False): - print("there is a miss match of async and sync functions") - elif (item.__class__ == astroid.nodes.FunctionDef): - # TODO add checks for subscript awaitable here - if (functionIsAsync == True): - print("there is a miss match of async and sync functions") + return False From b402a5d3c7c8561dcf39734626fbdf483a7144f8 Mon Sep 17 00:00:00 2001 From: Joshua Bishop <13187637+MJoshuaB@users.noreply.github.com> Date: Thu, 29 Aug 2024 15:23:27 +1200 Subject: [PATCH 06/31] add pylint report --- .../pylintreport.txt | 3060 +++++++++++++++++ 1 file changed, 3060 insertions(+) create mode 100644 tools/pylint-extensions/azure-pylint-guidelines-checker/pylintreport.txt diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylintreport.txt b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylintreport.txt new file mode 100644 index 00000000000..20819964a6e --- /dev/null +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylintreport.txt @@ -0,0 +1,3060 @@ +************* Module azure.mgmt.advisor._advisor_management_client +sdk\advisor\azure-mgmt-advisor\azure\mgmt\advisor\_advisor_management_client.py:102:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.99/10, +0.00) + +************* Module azure.agrifood.farming._client +sdk\agrifood\azure-agrifood-farming\azure\agrifood\farming\_client.py:222:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\agrifood\azure-agrifood-farming\azure\agrifood\farming\_client.py:244:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.agrifood.farming.aio._client +sdk\agrifood\azure-agrifood-farming\azure\agrifood\farming\aio\_client.py:224:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.mgmt.agrifood._agri_food_mgmt_client +sdk\agrifood\azure-mgmt-agrifood\azure\mgmt\agrifood\_agri_food_mgmt_client.py:132:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) + +************* Module azure.ai.generative.evaluate._client.openai_client +sdk\ai\azure-ai-generative\azure\ai\generative\evaluate\_client\openai_client.py:43:4: C5000: bounded_chat_completion: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.ai.generative.synthetic.simulator._conversation.augloop_client +sdk\ai\azure-ai-generative\azure\ai\generative\synthetic\simulator\_conversation\augloop_client.py:115:4: C5000: send_signal_and_wait_for_annotation: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-generative\azure\ai\generative\synthetic\simulator\_conversation\augloop_client.py:191:4: C5000: send_message_to_al: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-generative\azure\ai\generative\synthetic\simulator\_conversation\augloop_client.py:208:4: C5000: send_signal_message: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-generative\azure\ai\generative\synthetic\simulator\_conversation\augloop_client.py:217:4: C5000: reconnect_and_attempt_session_init: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-generative\azure\ai\generative\synthetic\simulator\_conversation\augloop_client.py:265:4: C5000: setup_session_after_init: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.ai.inference._client +sdk\ai\azure-ai-inference\azure\ai\inference\_client.py:76:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-inference\azure\ai\inference\_client.py:102:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\ai\azure-ai-inference\azure\ai\inference\_client.py:154:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-inference\azure\ai\inference\_client.py:180:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\ai\azure-ai-inference\azure\ai\inference\_client.py:232:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-inference\azure\ai\inference\_client.py:258:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.ai.inference._patch +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:255:4: C5001: complete: Client is using short method names (short-client-method-name) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:278:4: C5001: complete: Client is using short method names (short-client-method-name) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:301:4: C5001: complete: Client is using short method names (short-client-method-name) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:412:4: C5001: complete: Client is using short method names (short-client-method-name) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:436:4: C5001: complete: Client is using short method names (short-client-method-name) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:460:4: C5001: complete: Client is using short method names (short-client-method-name) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:733:4: C5001: embed: Client is using short method names (short-client-method-name) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:775:4: C5001: embed: Client is using short method names (short-client-method-name) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:797:4: C5001: embed: Client is using short method names (short-client-method-name) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:818:4: C5001: embed: Client is using short method names (short-client-method-name) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:1017:4: C5001: embed: Client is using short method names (short-client-method-name) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:1059:4: C5001: embed: Client is using short method names (short-client-method-name) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:1081:4: C5001: embed: Client is using short method names (short-client-method-name) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:1102:4: C5001: embed: Client is using short method names (short-client-method-name) +************* Module azure.ai.inference.aio._client +sdk\ai\azure-ai-inference\azure\ai\inference\aio\_client.py:78:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-inference\azure\ai\inference\aio\_client.py:160:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-inference\azure\ai\inference\aio\_client.py:242:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.ai.resources.client._ai_client +sdk\ai\azure-ai-resources\azure\ai\resources\client\_ai_client.py:334:4: C5000: build_index_on_cloud: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------- +Your code has been rated at 9.97/10 (previous run: 10.00/10, -0.02) + +************* Module azure.mgmt.devspaces._dev_spaces_management_client +sdk\aks\azure-mgmt-devspaces\azure\mgmt\devspaces\_dev_spaces_management_client.py:92:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.97/10, +0.02) + +************* Module azure.mgmt.alertsmanagement._alerts_management_client +sdk\alertsmanagement\azure-mgmt-alertsmanagement\azure\mgmt\alertsmanagement\_alerts_management_client.py:102:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) + +************* Module azure.ai.anomalydetector._client +sdk\anomalydetector\azure-ai-anomalydetector\azure\ai\anomalydetector\_client.py:58:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\anomalydetector\azure-ai-anomalydetector\azure\ai\anomalydetector\_client.py:87:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.ai.anomalydetector.aio._client +sdk\anomalydetector\azure-ai-anomalydetector\azure\ai\anomalydetector\aio\_client.py:58:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------- +Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.01) + +************* Module azure.mgmt.apicenter._api_center_mgmt_client +sdk\apicenter\azure-mgmt-apicenter\azure\mgmt\apicenter\_api_center_mgmt_client.py:119:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.01) + +************* Module azure.mgmt.apimanagement._api_management_client +sdk\apimanagement\azure-mgmt-apimanagement\azure\mgmt\apimanagement\_api_management_client.py:541:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.app._container_apps_api_client +sdk\app\azure-mgmt-app\azure\mgmt\app\_container_apps_api_client.py:115:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.appcomplianceautomation._app_compliance_automation_mgmt_client +sdk\appcomplianceautomation\azure-mgmt-appcomplianceautomation\azure\mgmt\appcomplianceautomation\_app_compliance_automation_mgmt_client.py:127:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.appconfiguration._azure_appconfiguration_client +sdk\appconfiguration\azure-appconfiguration\azure\appconfiguration\_azure_appconfiguration_client.py:126:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\appconfiguration\azure-appconfiguration\azure\appconfiguration\_azure_appconfiguration_client.py:689:4: C5000: archive_snapshot: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\appconfiguration\azure-appconfiguration\azure\appconfiguration\_azure_appconfiguration_client.py:730:4: C5000: recover_snapshot: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\appconfiguration\azure-appconfiguration\azure\appconfiguration\_azure_appconfiguration_client.py:832:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appconfiguration._app_configuration_management_client +sdk\appconfiguration\azure-mgmt-appconfiguration\azure\mgmt\appconfiguration\_app_configuration_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\appconfiguration\azure-mgmt-appconfiguration\azure\mgmt\appconfiguration\_app_configuration_management_client.py:259:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appconfiguration.aio._app_configuration_management_client +sdk\appconfiguration\azure-mgmt-appconfiguration\azure\mgmt\appconfiguration\aio\_app_configuration_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appconfiguration.v2022_03_01_preview._app_configuration_management_client +sdk\appconfiguration\azure-mgmt-appconfiguration\azure\mgmt\appconfiguration\v2022_03_01_preview\_app_configuration_management_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appconfiguration.v2022_05_01._app_configuration_management_client +sdk\appconfiguration\azure-mgmt-appconfiguration\azure\mgmt\appconfiguration\v2022_05_01\_app_configuration_management_client.py:110:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appconfiguration.v2023_03_01._app_configuration_management_client +sdk\appconfiguration\azure-mgmt-appconfiguration\azure\mgmt\appconfiguration\v2023_03_01\_app_configuration_management_client.py:114:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + +************* Module azure.mgmt.appcontainers._container_apps_api_client +sdk\appcontainers\azure-mgmt-appcontainers\azure\mgmt\appcontainers\_container_apps_api_client.py:255:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------ +Your code has been rated at 10.00/10 + +************* Module azure.mgmt.applicationinsights._application_insights_management_client +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\_application_insights_management_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\_application_insights_management_client.py:555:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.applicationinsights.aio._application_insights_management_client +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\aio\_application_insights_management_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.applicationinsights.v2015_05_01._application_insights_management_client +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2015_05_01\_application_insights_management_client.py:174:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.applicationinsights.v2017_10_01._application_insights_management_client +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2017_10_01\_application_insights_management_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.applicationinsights.v2018_05_01_preview._application_insights_management_client +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2018_05_01_preview\_application_insights_management_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.applicationinsights.v2018_06_17_preview._application_insights_management_client +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2018_06_17_preview\_application_insights_management_client.py:85:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.applicationinsights.v2019_10_17_preview._application_insights_management_client +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2019_10_17_preview\_application_insights_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.applicationinsights.v2020_02_02._application_insights_management_client +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2020_02_02\_application_insights_management_client.py:81:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.applicationinsights.v2020_02_02_preview._application_insights_management_client +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2020_02_02_preview\_application_insights_management_client.py:82:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.applicationinsights.v2020_03_01_preview._application_insights_management_client +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2020_03_01_preview\_application_insights_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.applicationinsights.v2020_06_02_preview._application_insights_management_client +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2020_06_02_preview\_application_insights_management_client.py:77:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.applicationinsights.v2020_11_20._application_insights_management_client +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2020_11_20\_application_insights_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.applicationinsights.v2021_03_08._application_insights_management_client +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2021_03_08\_application_insights_management_client.py:82:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.applicationinsights.v2021_08_01._application_insights_management_client +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2021_08_01\_application_insights_management_client.py:81:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.applicationinsights.v2021_10._application_insights_management_client +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2021_10\_application_insights_management_client.py:73:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.applicationinsights.v2022_04_01._application_insights_management_client +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2022_04_01\_application_insights_management_client.py:81:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.applicationinsights.v2022_06_15._application_insights_management_client +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2022_06_15\_application_insights_management_client.py:81:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + +************* Module azure.mgmt.appplatform._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\_app_platform_management_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\_app_platform_management_client.py:2026:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.aio._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\aio\_app_platform_management_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2020_07_01._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2020_07_01\_app_platform_management_client.py:161:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2020_11_01_preview._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2020_11_01_preview\_app_platform_management_client.py:171:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2021_06_01_preview._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2021_06_01_preview\_app_platform_management_client.py:171:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2021_09_01_preview._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2021_09_01_preview\_app_platform_management_client.py:177:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2022_01_01_preview._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2022_01_01_preview\_app_platform_management_client.py:253:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2022_03_01_preview._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2022_03_01_preview\_app_platform_management_client.py:253:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2022_04_01._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2022_04_01\_app_platform_management_client.py:202:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2022_05_01_preview._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2022_05_01_preview\_app_platform_management_client.py:253:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2022_09_01_preview._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2022_09_01_preview\_app_platform_management_client.py:253:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2022_11_01_preview._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2022_11_01_preview\_app_platform_management_client.py:288:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2022_12_01._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2022_12_01\_app_platform_management_client.py:237:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2023_01_01_preview._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2023_01_01_preview\_app_platform_management_client.py:288:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2023_03_01_preview._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2023_03_01_preview\_app_platform_management_client.py:295:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2023_05_01_preview._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2023_05_01_preview\_app_platform_management_client.py:306:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2023_07_01_preview._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2023_07_01_preview\_app_platform_management_client.py:306:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2023_09_01_preview._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2023_09_01_preview\_app_platform_management_client.py:306:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2023_11_01_preview._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2023_11_01_preview\_app_platform_management_client.py:306:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2023_12_01._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2023_12_01\_app_platform_management_client.py:283:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2024_01_01_preview._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2024_01_01_preview\_app_platform_management_client.py:306:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.appplatform.v2024_05_01_preview._app_platform_management_client +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2024_05_01_preview\_app_platform_management_client.py:328:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.web._web_site_management_client +sdk\appservice\azure-mgmt-web\azure\mgmt\web\_web_site_management_client.py:112:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\appservice\azure-mgmt-web\azure\mgmt\web\_web_site_management_client.py:1238:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.web.v2015_04_01._web_site_management_client +sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2015_04_01\_web_site_management_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.web.v2015_08_01._web_site_management_client +sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2015_08_01\_web_site_management_client.py:114:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.web.aio._web_site_management_client +sdk\appservice\azure-mgmt-web\azure\mgmt\web\aio\_web_site_management_client.py:112:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.web.v2016_03_01._web_site_management_client +sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2016_03_01\_web_site_management_client.py:145:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.web.v2016_08_01._web_site_management_client +sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2016_08_01\_web_site_management_client.py:105:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.web.v2016_09_01._web_site_management_client +sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2016_09_01\_web_site_management_client.py:113:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.web.v2018_02_01._web_site_management_client +sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2018_02_01\_web_site_management_client.py:189:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.web.v2018_11_01._web_site_management_client +sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2018_11_01\_web_site_management_client.py:105:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.web.v2019_08_01._web_site_management_client +sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2019_08_01\_web_site_management_client.py:195:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.web.v2020_06_01._web_site_management_client +sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2020_06_01\_web_site_management_client.py:195:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.web.v2020_09_01._web_site_management_client +sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2020_09_01\_web_site_management_client.py:195:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.web.v2020_12_01._web_site_management_client +sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2020_12_01\_web_site_management_client.py:208:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.web.v2021_01_01._web_site_management_client +sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2021_01_01\_web_site_management_client.py:214:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.web.v2021_01_15._web_site_management_client +sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2021_01_15\_web_site_management_client.py:214:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.web.v2021_03_01._web_site_management_client +sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2021_03_01\_web_site_management_client.py:227:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.web.v2022_09_01._web_site_management_client +sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2022_09_01\_web_site_management_client.py:288:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.web.v2023_01_01._web_site_management_client +sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2023_01_01\_web_site_management_client.py:295:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.web.v2023_12_01._web_site_management_client +sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2023_12_01\_web_site_management_client.py:295:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) + +************* Module azure.mgmt.astro._astro_mgmt_client +sdk\astro\azure-mgmt-astro\azure\mgmt\astro\_astro_mgmt_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + +************* Module azure.mgmt.attestation._attestation_management_client +sdk\attestation\azure-mgmt-attestation\azure\mgmt\attestation\_attestation_management_client.py:94:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.security.attestation._client +sdk\attestation\azure-security-attestation\azure\security\attestation\_client.py:114:4: C5000: attest_sgx_enclave: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\attestation\azure-security-attestation\azure\security\attestation\_client.py:232:4: C5000: attest_open_enclave: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\attestation\azure-security-attestation\azure\security\attestation\_client.py:357:4: C5000: attest_tpm: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\attestation\azure-security-attestation\azure\security\attestation\_client.py:387:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.security.attestation._administration_client +sdk\attestation\azure-security-attestation\azure\security\attestation\_administration_client.py:290:4: C5000: reset_policy: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\attestation\azure-security-attestation\azure\security\attestation\_administration_client.py:689:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------ +Your code has been rated at 9.97/10 (previous run: 9.99/10, -0.02) + +************* Module azure.mgmt.authorization._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\_authorization_management_client.py:131:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\_authorization_management_client.py:1119:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.authorization.aio._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\aio\_authorization_management_client.py:131:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.authorization.v2015_06_01._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2015_06_01\_authorization_management_client.py:87:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.authorization.v2015_07_01._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2015_07_01\_authorization_management_client.py:123:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.authorization.v2018_01_01_preview._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2018_01_01_preview\_authorization_management_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.authorization.v2018_05_01_preview._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2018_05_01_preview\_authorization_management_client.py:146:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.authorization.v2018_07_01_preview._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2018_07_01_preview\_authorization_management_client.py:87:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.authorization.v2018_09_01_preview._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2018_09_01_preview\_authorization_management_client.py:86:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.authorization.v2019_08_01_preview._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2019_08_01_preview\_authorization_management_client.py:86:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.authorization.v2020_04_01_preview._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2020_04_01_preview\_authorization_management_client.py:86:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.authorization.v2020_10_01._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2020_10_01\_authorization_management_client.py:137:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.authorization.v2020_10_01_preview._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2020_10_01_preview\_authorization_management_client.py:152:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.authorization.v2021_01_01_preview._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2021_01_01_preview\_authorization_management_client.py:121:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.authorization.v2021_03_01_preview._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2021_03_01_preview\_authorization_management_client.py:146:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.authorization.v2021_07_01_preview._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2021_07_01_preview\_authorization_management_client.py:164:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.authorization.v2021_12_01_preview._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2021_12_01_preview\_authorization_management_client.py:272:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.authorization.v2022_04_01._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2022_04_01\_authorization_management_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.authorization.v2022_04_01_preview._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2022_04_01_preview\_authorization_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.authorization.v2022_05_01_preview._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2022_05_01_preview\_authorization_management_client.py:92:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.authorization.v2022_08_01_preview._authorization_management_client +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2022_08_01_preview\_authorization_management_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.40/10, +0.59) + +************* Module azure.mgmt.automanage._automanage_client +sdk\automanage\azure-mgmt-automanage\azure\mgmt\automanage\_automanage_client.py:147:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.97/10, +0.03) + +************* Module azure.mgmt.automation._automation_client +sdk\automation\azure-mgmt-automation\azure\mgmt\automation\_automation_client.py:317:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.35/10, +0.65) + +************* Module azure.mgmt.azurearcdata._azure_arc_data_management_client +sdk\azurearcdata\azure-mgmt-azurearcdata\azure\mgmt\azurearcdata\_azure_arc_data_management_client.py:118:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.azurelargeinstance._large_instance_mgmt_client +sdk\azurelargeinstance\azure-mgmt-azurelargeinstance\azure\mgmt\azurelargeinstance\_large_instance_mgmt_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.azurestack._azure_stack_management_client +sdk\azurestack\azure-mgmt-azurestack\azure\mgmt\azurestack\_azure_stack_management_client.py:111:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) + +************* Module azure.mgmt.azurestackhci._azure_stack_hci_client +sdk\azurestackhci\azure-mgmt-azurestackhci\azure\mgmt\azurestackhci\_azure_stack_hci_client.py:160:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------ +Your code has been rated at 10.00/10 + +************* Module azure.mgmt.baremetalinfrastructure._bare_metal_infrastructure_client +sdk\baremetalinfrastructure\azure-mgmt-baremetalinfrastructure\azure\mgmt\baremetalinfrastructure\_bare_metal_infrastructure_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.batch._batch_management_client +sdk\batch\azure-mgmt-batch\azure\mgmt\batch\_batch_management_client.py:125:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.mgmt.billing._billing_management_client +sdk\billing\azure-mgmt-billing\azure\mgmt\billing\_billing_management_client.py:184:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.mgmt.cdn._cdn_management_client +sdk\cdn\azure-mgmt-cdn\azure\mgmt\cdn\_cdn_management_client.py:196:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.changeanalysis._azure_change_analysis_management_client +sdk\changeanalysis\azure-mgmt-changeanalysis\azure\mgmt\changeanalysis\_azure_change_analysis_management_client.py:68:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + +************* Module azure.mgmt.chaos._chaos_management_client +sdk\chaos\azure-mgmt-chaos\azure\mgmt\chaos\_chaos_management_client.py:113:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) + +************* Module azure.ai.language.conversations.aio._client +sdk\cognitivelanguage\azure-ai-language-conversations\azure\ai\language\conversations\aio\_client.py:70:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.ai.language.conversations._client +sdk\cognitivelanguage\azure-ai-language-conversations\azure\ai\language\conversations\_client.py:70:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\cognitivelanguage\azure-ai-language-conversations\azure\ai\language\conversations\_client.py:96:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.ai.language.conversations.authoring._client +sdk\cognitivelanguage\azure-ai-language-conversations\azure\ai\language\conversations\authoring\_client.py:70:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\cognitivelanguage\azure-ai-language-conversations\azure\ai\language\conversations\authoring\_client.py:96:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.ai.language.conversations.authoring.aio._client +sdk\cognitivelanguage\azure-ai-language-conversations\azure\ai\language\conversations\authoring\aio\_client.py:70:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.ai.language.questionanswering._client +sdk\cognitivelanguage\azure-ai-language-questionanswering\azure\ai\language\questionanswering\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\cognitivelanguage\azure-ai-language-questionanswering\azure\ai\language\questionanswering\_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.ai.language.questionanswering.aio._client +sdk\cognitivelanguage\azure-ai-language-questionanswering\azure\ai\language\questionanswering\aio\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.ai.language.questionanswering.authoring._client +sdk\cognitivelanguage\azure-ai-language-questionanswering\azure\ai\language\questionanswering\authoring\_client.py:67:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\cognitivelanguage\azure-ai-language-questionanswering\azure\ai\language\questionanswering\authoring\_client.py:93:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.ai.language.questionanswering.authoring.aio._client +sdk\cognitivelanguage\azure-ai-language-questionanswering\azure\ai\language\questionanswering\authoring\aio\_client.py:67:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------- +Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.02) + +************* Module azure.cognitiveservices.formrecognizer.form_recognizer_client +sdk\cognitiveservices\azure-cognitiveservices-formrecognizer\azure\cognitiveservices\formrecognizer\form_recognizer_client.py:75:4: C5000: train_custom_model: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\cognitiveservices\azure-cognitiveservices-formrecognizer\azure\cognitiveservices\formrecognizer\form_recognizer_client.py:356:4: C5000: analyze_with_custom_model: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.cognitiveservices.language.textanalytics.text_analytics_client +sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:76:4: C5000: detect_language: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:150:4: C5001: entities: Client is using short method names (short-client-method-name) +sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:226:4: C5000: key_phrases: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:302:4: C5001: sentiment: Client is using short method names (short-client-method-name) +************* Module azure.cognitiveservices.personalizer.personalizer_client +sdk\cognitiveservices\azure-cognitiveservices-personalizer\azure\cognitiveservices\personalizer\personalizer_client.py:80:4: C5001: rank: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.cognitiveservices._cognitive_services_management_client +sdk\cognitiveservices\azure-mgmt-cognitiveservices\azure\mgmt\cognitiveservices\_cognitive_services_management_client.py:140:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) + +************* Module azure.mgmt.commerce._usage_management_client +sdk\commerce\azure-mgmt-commerce\azure\mgmt\commerce\_usage_management_client.py:87:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.01) + +************* Module azure.communication.callautomation._call_automation_client +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:310:4: C5000: answer_call: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:370:4: C5000: redirect_call: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:416:4: C5000: reject_call: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:446:4: C5000: start_recording: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:499:4: C5000: start_recording: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:552:4: C5000: start_recording: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:586:4: C5000: stop_recording: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:602:4: C5000: pause_recording: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:618:4: C5000: resume_recording: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:654:4: C5000: download_recording: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:707:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.communication.chat._chat_client +sdk\communication\azure-communication-chat\azure\communication\chat\_chat_client.py:248:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.communication.chat._chat_thread_client +sdk\communication\azure-communication-chat\azure\communication\chat\_chat_thread_client.py:176:4: C5000: send_read_receipt: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-chat\azure\communication\chat\_chat_thread_client.py:242:4: C5000: send_typing_notification: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-chat\azure\communication\chat\_chat_thread_client.py:273:4: C5000: send_message: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-chat\azure\communication\chat\_chat_thread_client.py:584:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.communication.callautomation._call_connection_client +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:192:4: C5000: hang_up: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:249:4: C5000: transfer_call_to_participant: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:415:4: C5000: play_media: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:513:4: C5000: play_media_to_all: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:559:4: C5000: start_recognizing_media: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:682:4: C5000: cancel_all_media_operations: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:692:4: C5000: start_continuous_dtmf_recognition: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:727:4: C5000: stop_continuous_dtmf_recognition: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:762:4: C5000: send_dtmf_tones: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:804:4: C5000: mute_participant: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:834:4: C5000: cancel_add_participant_operation: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:871:4: C5000: start_hold_music: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:911:4: C5000: stop_hold_music: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:938:4: C5000: start_transcription: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:965:4: C5000: stop_transcription: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:1008:4: C5001: hold: Client is using short method names (short-client-method-name) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:1056:4: C5001: unhold: Client is using short method names (short-client-method-name) +************* Module azure.communication.identity._communication_identity_client +sdk\communication\azure-communication-identity\azure\communication\identity\_communication_identity_client.py:188:4: C5000: revoke_tokens: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.communication.jobrouter._client +sdk\communication\azure-communication-jobrouter\azure\communication\jobrouter\_client.py:62:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-jobrouter\azure\communication\jobrouter\_client.py:88:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\communication\azure-communication-jobrouter\azure\communication\jobrouter\_client.py:138:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-jobrouter\azure\communication\jobrouter\_client.py:164:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.communication.jobrouter.aio._client +sdk\communication\azure-communication-jobrouter\azure\communication\jobrouter\aio\_client.py:62:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-jobrouter\azure\communication\jobrouter\aio\_client.py:140:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.communication.messages._client +sdk\communication\azure-communication-messages\azure\communication\messages\_client.py:67:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-messages\azure\communication\messages\_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\communication\azure-communication-messages\azure\communication\messages\_client.py:145:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-messages\azure\communication\messages\_client.py:175:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.communication.messages.aio._client +sdk\communication\azure-communication-messages\azure\communication\messages\aio\_client.py:66:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-messages\azure\communication\messages\aio\_client.py:146:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.communication.phonenumbers._phone_numbers_client +sdk\communication\azure-communication-phonenumbers\azure\communication\phonenumbers\_phone_numbers_client.py:425:4: C5000: search_operator_information: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.communication.phonenumbers.aio._phone_numbers_client_async +sdk\communication\azure-communication-phonenumbers\azure\communication\phonenumbers\aio\_phone_numbers_client_async.py:421:4: C5000: search_operator_information: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.communication.phonenumbers.siprouting._sip_routing_client +sdk\communication\azure-communication-phonenumbers\azure\communication\phonenumbers\siprouting\_sip_routing_client.py:277:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.communication.rooms._rooms_client +sdk\communication\azure-communication-rooms\azure\communication\rooms\_rooms_client.py:302:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.communication.sms._sms_client +sdk\communication\azure-communication-sms\azure\communication\sms\_sms_client.py:84:4: C5001: send: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.communication._communication_service_management_client +sdk\communication\azure-mgmt-communication\azure\mgmt\communication\_communication_service_management_client.py:106:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.97/10 (previous run: 10.00/10, -0.03) + +************* Module azure.mgmt.avs._avs_client +sdk\compute\azure-mgmt-avs\azure\mgmt\avs\_avs_client.py:179:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\_compute_management_client.py:132:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\_compute_management_client.py:3002:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2015_06_15._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2015_06_15\_compute_management_client.py:162:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.aio._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\aio\_compute_management_client.py:132:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2016_03_30._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2016_03_30\_compute_management_client.py:162:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2016_04_30_preview._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2016_04_30_preview\_compute_management_client.py:183:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2017_03_30._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2017_03_30\_compute_management_client.py:205:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2017_09_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2017_09_01\_compute_management_client.py:105:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2017_12_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2017_12_01\_compute_management_client.py:199:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2018_04_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2018_04_01\_compute_management_client.py:216:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2018_06_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2018_06_01\_compute_management_client.py:235:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2018_09_30._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2018_09_30\_compute_management_client.py:110:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2018_10_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2018_10_01\_compute_management_client.py:206:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2019_03_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2019_03_01\_compute_management_client.py:262:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2019_04_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2019_04_01\_compute_management_client.py:105:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2019_07_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2019_07_01\_compute_management_client.py:277:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2019_11_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2019_11_01\_compute_management_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2019_12_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2019_12_01\_compute_management_client.py:266:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2020_05_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2020_05_01\_compute_management_client.py:121:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2020_06_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2020_06_01\_compute_management_client.py:241:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2020_06_30._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2020_06_30\_compute_management_client.py:121:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2020_09_30._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2020_09_30\_compute_management_client.py:193:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2020_10_01_preview._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2020_10_01_preview\_compute_management_client.py:131:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2020_12_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2020_12_01\_compute_management_client.py:278:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2021_03_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2021_03_01\_compute_management_client.py:295:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2021_04_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2021_04_01\_compute_management_client.py:305:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2021_07_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2021_07_01\_compute_management_client.py:362:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2021_08_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2021_08_01\_compute_management_client.py:133:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2021_10_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2021_10_01\_compute_management_client.py:143:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2021_11_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2021_11_01\_compute_management_client.py:275:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2021_12_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2021_12_01\_compute_management_client.py:133:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2022_01_03._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_01_03\_compute_management_client.py:184:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2022_03_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_03_01\_compute_management_client.py:275:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2022_03_02._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_03_02\_compute_management_client.py:133:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2022_03_03._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_03_03\_compute_management_client.py:184:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2022_04_04._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_04_04\_compute_management_client.py:137:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2022_07_02._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_07_02\_compute_management_client.py:133:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2022_08_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_08_01\_compute_management_client.py:275:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2022_08_03._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_08_03\_compute_management_client.py:184:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2022_09_04._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_09_04\_compute_management_client.py:137:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2022_11_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_11_01\_compute_management_client.py:275:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2023_01_02._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2023_01_02\_compute_management_client.py:133:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2023_03_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2023_03_01\_compute_management_client.py:275:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2023_04_02._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2023_04_02\_compute_management_client.py:133:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2023_07_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2023_07_01\_compute_management_client.py:275:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2023_07_03._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2023_07_03\_compute_management_client.py:184:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2023_09_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2023_09_01\_compute_management_client.py:275:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2023_10_02._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2023_10_02\_compute_management_client.py:133:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2024_03_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2024_03_01\_compute_management_client.py:275:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2024_03_02._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2024_03_02\_compute_management_client.py:133:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.compute.v2024_07_01._compute_management_client +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2024_07_01\_compute_management_client.py:275:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.imagebuilder._image_builder_client +sdk\compute\azure-mgmt-imagebuilder\azure\mgmt\imagebuilder\_image_builder_client.py:111:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) + +************* Module azure.mgmt.computefleet._client +sdk\computefleet\azure-mgmt-computefleet\azure\mgmt\computefleet\_client.py:84:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\computefleet\azure-mgmt-computefleet\azure\mgmt\computefleet\_client.py:106:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.computefleet.aio._client +sdk\computefleet\azure-mgmt-computefleet\azure\mgmt\computefleet\aio\_client.py:84:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + +************* Module azure.confidentialledger._client +sdk\confidentialledger\azure-confidentialledger\azure\confidentialledger\_client.py:49:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\confidentialledger\azure-confidentialledger\azure\confidentialledger\_client.py:77:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.confidentialledger.aio._client +sdk\confidentialledger\azure-confidentialledger\azure\confidentialledger\aio\_client.py:49:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.confidentialledger.certificate._client +sdk\confidentialledger\azure-confidentialledger\azure\confidentialledger\certificate\_client.py:51:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\confidentialledger\azure-confidentialledger\azure\confidentialledger\certificate\_client.py:79:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.confidentialledger.certificate.aio._client +sdk\confidentialledger\azure-confidentialledger\azure\confidentialledger\certificate\aio\_client.py:51:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.99/10, -0.00) + +************* Module azure.mgmt.confluent._confluent_management_client +sdk\confluent\azure-mgmt-confluent\azure\mgmt\confluent\_confluent_management_client.py:107:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.24/10, +0.75) + +************* Module azure.mgmt.connectedvmware._connected_vmware_mgmt_client +sdk\connectedvmware\azure-mgmt-connectedvmware\azure\mgmt\connectedvmware\_connected_vmware_mgmt_client.py:144:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.45/10, +0.55) + +************* Module azure.mgmt.consumption._consumption_management_client +sdk\consumption\azure-mgmt-consumption\azure\mgmt\consumption\_consumption_management_client.py:162:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------ +Your code has been rated at 10.00/10 + +************* Module azure.mgmt.containerinstance._container_instance_management_client +sdk\containerinstance\azure-mgmt-containerinstance\azure\mgmt\containerinstance\_container_instance_management_client.py:107:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) + +************* Module azure.containerregistry._base_client +sdk\containerregistry\azure-containerregistry\azure\containerregistry\_base_client.py:58:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.containerregistry._exchange_client +sdk\containerregistry\azure-containerregistry\azure\containerregistry\_exchange_client.py:76:4: C5000: exchange_aad_token_for_refresh_token: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\containerregistry\azure-containerregistry\azure\containerregistry\_exchange_client.py:88:4: C5000: exchange_refresh_token_for_access_token: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\containerregistry\azure-containerregistry\azure\containerregistry\_exchange_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.containerregistry._anonymous_exchange_client +sdk\containerregistry\azure-containerregistry\azure\containerregistry\_anonymous_exchange_client.py:60:4: C5000: exchange_refresh_token_for_access_token: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\containerregistry\azure-containerregistry\azure\containerregistry\_anonymous_exchange_client.py:76:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.containerregistry._container_registry_client +sdk\containerregistry\azure-containerregistry\azure\containerregistry\_container_registry_client.py:968:4: C5000: upload_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\containerregistry\azure-containerregistry\azure\containerregistry\_container_registry_client.py:1020:4: C5000: download_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.mgmt.containerregistry._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\_container_registry_management_client.py:96:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\_container_registry_management_client.py:1093:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.aio._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\aio\_container_registry_management_client.py:96:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2017_03_01._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2017_03_01\_container_registry_management_client.py:88:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2017_10_01._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2017_10_01\_container_registry_management_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2018_02_01_preview._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2018_02_01_preview\_container_registry_management_client.py:103:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2018_09_01._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2018_09_01\_container_registry_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2019_04_01._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2019_04_01\_container_registry_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2019_05_01._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2019_05_01\_container_registry_management_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2019_05_01_preview._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2019_05_01_preview\_container_registry_management_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2019_06_01_preview._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2019_06_01_preview\_container_registry_management_client.py:106:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2019_12_01_preview._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2019_12_01_preview\_container_registry_management_client.py:136:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2020_11_01_preview._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2020_11_01_preview\_container_registry_management_client.py:156:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2021_06_01_preview._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2021_06_01_preview\_container_registry_management_client.py:156:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2021_08_01_preview._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2021_08_01_preview\_container_registry_management_client.py:156:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2021_09_01._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2021_09_01\_container_registry_management_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2021_12_01_preview._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2021_12_01_preview\_container_registry_management_client.py:156:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2022_02_01_preview._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2022_02_01_preview\_container_registry_management_client.py:156:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2022_12_01._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2022_12_01\_container_registry_management_client.py:119:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2023_01_01_preview._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2023_01_01_preview\_container_registry_management_client.py:170:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2023_06_01_preview._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2023_06_01_preview\_container_registry_management_client.py:184:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2023_07_01._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2023_07_01\_container_registry_management_client.py:132:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2023_08_01_preview._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2023_08_01_preview\_container_registry_management_client.py:184:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerregistry.v2023_11_01_preview._container_registry_management_client +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2023_11_01_preview\_container_registry_management_client.py:184:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.containerservice._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\_container_service_client.py:117:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\_container_service_client.py:2521:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.aio._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\aio\_container_service_client.py:117:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2017_07_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2017_07_01\_container_service_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2018_03_31._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2018_03_31\_container_service_client.py:111:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2018_08_01_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2018_08_01_preview\_container_service_client.py:113:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2018_09_30_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2018_09_30_preview\_container_service_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2019_02_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2019_02_01\_container_service_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2019_04_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2019_04_01\_container_service_client.py:122:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2019_04_30._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2019_04_30\_container_service_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2019_06_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2019_06_01\_container_service_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2019_08_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2019_08_01\_container_service_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2019_09_30_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2019_09_30_preview\_container_service_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2019_10_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2019_10_01\_container_service_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2019_10_27_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2019_10_27_preview\_container_service_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2019_11_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2019_11_01\_container_service_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2020_01_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2020_01_01\_container_service_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2020_02_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2020_02_01\_container_service_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2020_03_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2020_03_01\_container_service_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2020_04_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2020_04_01\_container_service_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2020_06_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2020_06_01\_container_service_client.py:127:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2020_07_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2020_07_01\_container_service_client.py:127:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2020_09_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2020_09_01\_container_service_client.py:141:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2020_11_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2020_11_01\_container_service_client.py:141:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2020_12_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2020_12_01\_container_service_client.py:148:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2021_02_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2021_02_01\_container_service_client.py:148:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2021_03_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2021_03_01\_container_service_client.py:148:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2021_05_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2021_05_01\_container_service_client.py:148:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2021_07_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2021_07_01\_container_service_client.py:148:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2021_08_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2021_08_01\_container_service_client.py:154:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2021_09_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2021_09_01\_container_service_client.py:154:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2021_10_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2021_10_01\_container_service_client.py:154:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2021_11_01_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2021_11_01_preview\_container_service_client.py:158:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_01_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_01_01\_container_service_client.py:154:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_01_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_01_02_preview\_container_service_client.py:158:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_02_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_02_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_02_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_02_02_preview\_container_service_client.py:164:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_03_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_03_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_03_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_03_02_preview\_container_service_client.py:164:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_04_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_04_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_04_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_04_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_05_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_05_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_06_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_06_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_06_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_06_02_preview\_container_service_client.py:191:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_07_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_07_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_07_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_07_02_preview\_container_service_client.py:191:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_08_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_08_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_08_03_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_08_03_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_09_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_09_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_09_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_09_02_preview\_container_service_client.py:191:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_10_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_10_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_11_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_11_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2022_11_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_11_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_01_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_01_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_01_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_01_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_02_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_02_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_02_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_02_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_03_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_03_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_03_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_03_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_04_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_04_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_04_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_04_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_05_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_05_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_05_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_05_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_06_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_06_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_06_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_06_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_07_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_07_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_07_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_07_02_preview\_container_service_client.py:185:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_08_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_08_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_08_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_08_02_preview\_container_service_client.py:185:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_09_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_09_01\_container_service_client.py:167:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_09_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_09_02_preview\_container_service_client.py:185:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_10_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_10_01\_container_service_client.py:167:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_10_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_10_02_preview\_container_service_client.py:192:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_11_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_11_01\_container_service_client.py:167:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2023_11_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_11_02_preview\_container_service_client.py:192:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2024_01_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2024_01_01\_container_service_client.py:167:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2024_01_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2024_01_02_preview\_container_service_client.py:192:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2024_02_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2024_02_01\_container_service_client.py:167:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2024_02_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2024_02_02_preview\_container_service_client.py:192:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2024_03_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2024_03_02_preview\_container_service_client.py:199:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2024_04_02_preview._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2024_04_02_preview\_container_service_client.py:199:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservice.v2024_05_01._container_service_client +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2024_05_01\_container_service_client.py:167:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservicefleet._container_service_fleet_mgmt_client +sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\_container_service_fleet_mgmt_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\_container_service_fleet_mgmt_client.py:310:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservicefleet.aio._container_service_fleet_mgmt_client +sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\aio\_container_service_fleet_mgmt_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservicefleet.v2022_06_02_preview._container_service_fleet_mgmt_client +sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\v2022_06_02_preview\_container_service_fleet_mgmt_client.py:117:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservicefleet.v2022_07_02_preview._container_service_fleet_mgmt_client +sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\v2022_07_02_preview\_container_service_fleet_mgmt_client.py:112:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservicefleet.v2022_09_02_preview._container_service_fleet_mgmt_client +sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\v2022_09_02_preview\_container_service_fleet_mgmt_client.py:112:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservicefleet.v2023_03_15_preview._container_service_fleet_mgmt_client +sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\v2023_03_15_preview\_container_service_fleet_mgmt_client.py:123:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservicefleet.v2023_06_15_preview._container_service_fleet_mgmt_client +sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\v2023_06_15_preview\_container_service_fleet_mgmt_client.py:123:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservicefleet.v2023_08_15_preview._container_service_fleet_mgmt_client +sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\v2023_08_15_preview\_container_service_fleet_mgmt_client.py:135:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservicefleet.v2023_10_15._container_service_fleet_mgmt_client +sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\v2023_10_15\_container_service_fleet_mgmt_client.py:130:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservicefleet.v2024_02_02_preview._container_service_fleet_mgmt_client +sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\v2024_02_02_preview\_container_service_fleet_mgmt_client.py:135:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.containerservicefleet.v2024_04_01._container_service_fleet_mgmt_client +sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\v2024_04_01\_container_service_fleet_mgmt_client.py:130:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.95/10, +0.05) + +************* Module azure.ai.contentsafety._client +sdk\contentsafety\azure-ai-contentsafety\azure\ai\contentsafety\_client.py:67:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\contentsafety\azure-ai-contentsafety\azure\ai\contentsafety\_client.py:93:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\contentsafety\azure-ai-contentsafety\azure\ai\contentsafety\_client.py:145:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\contentsafety\azure-ai-contentsafety\azure\ai\contentsafety\_client.py:171:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.ai.contentsafety.aio._client +sdk\contentsafety\azure-ai-contentsafety\azure\ai\contentsafety\aio\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\contentsafety\azure-ai-contentsafety\azure\ai\contentsafety\aio\_client.py:151:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------- +Your code has been rated at 9.97/10 (previous run: 10.00/10, -0.03) + +************* Module azure.servicemanagement.servicemanagementclient +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:95:4: C5000: should_use_requests: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:118:4: C5000: with_filter: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:155:4: C5001: timeout: Client is using short method names (short-client-method-name) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:158:4: C5000: perform_get: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:179:4: C5000: perform_put: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:203:4: C5000: perform_post: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:228:4: C5000: perform_delete: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:250:4: C5000: wait_for_operation_status_progress_default_callback: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:254:4: C5000: wait_for_operation_status_success_default_callback: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:258:4: C5000: wait_for_operation_status_failure_default_callback: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:264:4: C5000: wait_for_operation_status: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.servicemanagement._http.httpclient +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\_http\httpclient.py:129:4: C5000: send_request_headers: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\_http\httpclient.py:137:4: C5000: send_request_body: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\_http\httpclient.py:171:4: C5000: perform_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + +************* Module azure.cosmos.cosmos_client +sdk\cosmos\azure-cosmos\azure\cosmos\cosmos_client.py:423:4: C5000: query_databases: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.cosmos.aio._cosmos_client +sdk\cosmos\azure-cosmos\azure\cosmos\aio\_cosmos_client.py:395:4: C5000: query_databases: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.mgmt.cosmosdb._cosmos_db_management_client +sdk\cosmos\azure-mgmt-cosmosdb\azure\mgmt\cosmosdb\_cosmos_db_management_client.py:323:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.97/10, +0.03) + +************* Module azure.mgmt.cosmosdbforpostgresql._cosmosdb_for_postgresql_mgmt_client +sdk\cosmosdbforpostgresql\azure-mgmt-cosmosdbforpostgresql\azure\mgmt\cosmosdbforpostgresql\_cosmosdb_for_postgresql_mgmt_client.py:119:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.costmanagement._cost_management_client +sdk\costmanagement\azure-mgmt-costmanagement\azure\mgmt\costmanagement\_cost_management_client.py:164:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------ +Your code has been rated at 10.00/10 + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.mgmt.dashboard._dashboard_management_client +sdk\dashboard\azure-mgmt-dashboard\azure\mgmt\dashboard\_dashboard_management_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.databox.v2018_01_01._data_box_management_client +sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2018_01_01\_data_box_management_client.py:89:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databox._data_box_management_client +sdk\databox\azure-mgmt-databox\azure\mgmt\databox\_data_box_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\databox\azure-mgmt-databox\azure\mgmt\databox\_data_box_management_client.py:282:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databox.aio._data_box_management_client +sdk\databox\azure-mgmt-databox\azure\mgmt\databox\aio\_data_box_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databox.v2019_09_01._data_box_management_client +sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2019_09_01\_data_box_management_client.py:89:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databox.v2020_04_01._data_box_management_client +sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2020_04_01\_data_box_management_client.py:89:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databox.v2020_11_01._data_box_management_client +sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2020_11_01\_data_box_management_client.py:89:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databox.v2021_03_01._data_box_management_client +sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2021_03_01\_data_box_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databox.v2021_05_01._data_box_management_client +sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2021_05_01\_data_box_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databox.v2021_08_01_preview._data_box_management_client +sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2021_08_01_preview\_data_box_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databox.v2021_12_01._data_box_management_client +sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2021_12_01\_data_box_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databox.v2022_02_01._data_box_management_client +sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2022_02_01\_data_box_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databox.v2022_09_01._data_box_management_client +sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2022_09_01\_data_box_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databox.v2022_10_01._data_box_management_client +sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2022_10_01\_data_box_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databox.v2022_12_01._data_box_management_client +sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2022_12_01\_data_box_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.databoxedge.aio._data_box_edge_management_client +sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\aio\_data_box_edge_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databoxedge._data_box_edge_management_client +sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\_data_box_edge_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\_data_box_edge_management_client.py:902:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databoxedge.v2019_03_01._data_box_edge_management_client +sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2019_03_01\_data_box_edge_management_client.py:138:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databoxedge.v2019_07_01._data_box_edge_management_client +sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2019_07_01\_data_box_edge_management_client.py:142:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databoxedge.v2019_08_01._data_box_edge_management_client +sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2019_08_01\_data_box_edge_management_client.py:157:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databoxedge.v2020_05_01_preview._data_box_edge_management_client +sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2020_05_01_preview\_data_box_edge_management_client.py:162:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databoxedge.v2020_09_01._data_box_edge_management_client +sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2020_09_01\_data_box_edge_management_client.py:168:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databoxedge.v2020_09_01_preview._data_box_edge_management_client +sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2020_09_01_preview\_data_box_edge_management_client.py:169:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databoxedge.v2020_12_01._data_box_edge_management_client +sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2020_12_01\_data_box_edge_management_client.py:168:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databoxedge.v2021_02_01._data_box_edge_management_client +sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2021_02_01\_data_box_edge_management_client.py:182:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databoxedge.v2021_02_01_preview._data_box_edge_management_client +sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2021_02_01_preview\_data_box_edge_management_client.py:169:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.databoxedge.v2022_03_01._data_box_edge_management_client +sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2022_03_01\_data_box_edge_management_client.py:196:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------ +Your code has been rated at 10.00/10 + +************* Module azure.mgmt.databricks._azure_databricks_management_client +sdk\databricks\azure-mgmt-databricks\azure\mgmt\databricks\_azure_databricks_management_client.py:119:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.mgmt.datadog._microsoft_datadog_client +sdk\datadog\azure-mgmt-datadog\azure\mgmt\datadog\_microsoft_datadog_client.py:119:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.mgmt.datafactory._data_factory_management_client +sdk\datafactory\azure-mgmt-datafactory\azure\mgmt\datafactory\_data_factory_management_client.py:231:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.mgmt.datalake.analytics.account._data_lake_analytics_account_management_client +sdk\datalake\azure-mgmt-datalake-analytics\azure\mgmt\datalake\analytics\account\_data_lake_analytics_account_management_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.datalake.store._data_lake_store_account_management_client +sdk\datalake\azure-mgmt-datalake-store\azure\mgmt\datalake\store\_data_lake_store_account_management_client.py:112:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.datamigration._data_migration_management_client +sdk\datamigration\azure-mgmt-datamigration\azure\mgmt\datamigration\_data_migration_management_client.py:141:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.dataprotection._data_protection_mgmt_client +sdk\dataprotection\azure-mgmt-dataprotection\azure\mgmt\dataprotection\_data_protection_mgmt_client.py:233:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.datashare._data_share_management_client +sdk\datashare\azure-mgmt-datashare\azure\mgmt\datashare\_data_share_management_client.py:150:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.42/10, +0.58) + +************* Module azure.mgmt.defendereasm._easm_mgmt_client +sdk\defendereasm\azure-mgmt-defendereasm\azure\mgmt\defendereasm\_easm_mgmt_client.py:87:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.00) + + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) + +************* Module azure.mgmt.desktopvirtualization._desktop_virtualization_mgmt_client +sdk\desktopvirtualization\azure-mgmt-desktopvirtualization\azure\mgmt\desktopvirtualization\_desktop_virtualization_mgmt_client.py:158:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.developer.devcenter._client +sdk\devcenter\azure-developer-devcenter\azure\developer\devcenter\_client.py:65:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\devcenter\azure-developer-devcenter\azure\developer\devcenter\_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.developer.devcenter.aio._client +sdk\devcenter\azure-developer-devcenter\azure\developer\devcenter\aio\_client.py:65:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.mgmt.devcenter._dev_center_mgmt_client +sdk\devcenter\azure-mgmt-devcenter\azure\mgmt\devcenter\_dev_center_mgmt_client.py:224:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.devhub._dev_hub_mgmt_client +sdk\devhub\azure-mgmt-devhub\azure\mgmt\devhub\_dev_hub_mgmt_client.py:82:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + +************* Module azure.mgmt.deviceregistry._device_registry_mgmt_client +sdk\deviceregistry\azure-mgmt-deviceregistry\azure\mgmt\deviceregistry\_device_registry_mgmt_client.py:117:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) + +************* Module azure.iot.deviceupdate._client +sdk\deviceupdate\azure-iot-deviceupdate\azure\iot\deviceupdate\_client.py:67:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\deviceupdate\azure-iot-deviceupdate\azure\iot\deviceupdate\_client.py:93:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.iot.deviceupdate.aio._client +sdk\deviceupdate\azure-iot-deviceupdate\azure\iot\deviceupdate\aio\_client.py:67:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.mgmt.deviceupdate._device_update_mgmt_client +sdk\deviceupdate\azure-mgmt-deviceupdate\azure\mgmt\deviceupdate\_device_update_mgmt_client.py:118:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + +************* Module azure.mgmt.devopsinfrastructure._client +sdk\devopsinfrastructure\azure-mgmt-devopsinfrastructure\azure\mgmt\devopsinfrastructure\_client.py:107:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\devopsinfrastructure\azure-mgmt-devopsinfrastructure\azure\mgmt\devopsinfrastructure\_client.py:129:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.devopsinfrastructure.aio._client +sdk\devopsinfrastructure\azure-mgmt-devopsinfrastructure\azure\mgmt\devopsinfrastructure\aio\_client.py:108:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + +************* Module azure.mgmt.devtestlabs._dev_test_labs_client +sdk\devtestlabs\azure-mgmt-devtestlabs\azure\mgmt\devtestlabs\_dev_test_labs_client.py:198:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------ +Your code has been rated at 10.00/10 + +************* Module azure.digitaltwins.core._digitaltwins_client +sdk\digitaltwins\azure-digitaltwins-core\azure\digitaltwins\core\_digitaltwins_client.py:398:4: C5000: publish_telemetry: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\digitaltwins\azure-digitaltwins-core\azure\digitaltwins\core\_digitaltwins_client.py:425:4: C5000: publish_component_telemetry: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\digitaltwins\azure-digitaltwins-core\azure\digitaltwins\core\_digitaltwins_client.py:527:4: C5000: decommission_model: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\digitaltwins\azure-digitaltwins-core\azure\digitaltwins\core\_digitaltwins_client.py:637:4: C5000: query_twins: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.digitaltwins.core.aio._digitaltwins_client_async +sdk\digitaltwins\azure-digitaltwins-core\azure\digitaltwins\core\aio\_digitaltwins_client_async.py:677:4: C5000: query_twins: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.mgmt.digitaltwins._azure_digital_twins_management_client +sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\_azure_digital_twins_management_client.py:86:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\_azure_digital_twins_management_client.py:291:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.digitaltwins.aio._azure_digital_twins_management_client +sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\aio\_azure_digital_twins_management_client.py:86:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.digitaltwins.v2020_03_01_preview._azure_digital_twins_management_client +sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\v2020_03_01_preview\_azure_digital_twins_management_client.py:93:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.digitaltwins.v2020_10_31._azure_digital_twins_management_client +sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\v2020_10_31\_azure_digital_twins_management_client.py:92:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.digitaltwins.v2020_12_01._azure_digital_twins_management_client +sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\v2020_12_01\_azure_digital_twins_management_client.py:110:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.digitaltwins.v2021_06_30_preview._azure_digital_twins_management_client +sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\v2021_06_30_preview\_azure_digital_twins_management_client.py:118:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.digitaltwins.v2022_05_31._azure_digital_twins_management_client +sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\v2022_05_31\_azure_digital_twins_management_client.py:117:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.digitaltwins.v2022_10_31._azure_digital_twins_management_client +sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\v2022_10_31\_azure_digital_twins_management_client.py:117:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.digitaltwins.v2023_01_31._azure_digital_twins_management_client +sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\v2023_01_31\_azure_digital_twins_management_client.py:117:4: C5001: close: Client is using short method names (short-client-method-name) + +----------------------------------- +Your code has been rated at 9.99/10 + +************* Module azure.mgmt.dnsresolver._dns_resolver_management_client +sdk\dnsresolver\azure-mgmt-dnsresolver\azure\mgmt\dnsresolver\_dns_resolver_management_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) + +************* Module azure.ai.documentintelligence._client +sdk\documentintelligence\azure-ai-documentintelligence\azure\ai\documentintelligence\_client.py:78:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\documentintelligence\azure-ai-documentintelligence\azure\ai\documentintelligence\_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\documentintelligence\azure-ai-documentintelligence\azure\ai\documentintelligence\_client.py:162:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\documentintelligence\azure-ai-documentintelligence\azure\ai\documentintelligence\_client.py:188:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.ai.documentintelligence.aio._client +sdk\documentintelligence\azure-ai-documentintelligence\azure\ai\documentintelligence\aio\_client.py:80:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\documentintelligence\azure-ai-documentintelligence\azure\ai\documentintelligence\aio\_client.py:168:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + +************* Module azure.mgmt.dynatrace._dynatrace_observability_mgmt_client +sdk\dynatrace\azure-mgmt-dynatrace\azure\mgmt\dynatrace\_dynatrace_observability_mgmt_client.py:92:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) + +************* Module azure.defender.easm._client +sdk\easm\azure-defender-easm\azure\defender\easm\_client.py:100:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\easm\azure-defender-easm\azure\defender\easm\_client.py:126:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.defender.easm.aio._client +sdk\easm\azure-defender-easm\azure\defender\easm\aio\_client.py:100:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------- +Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.01) + + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) + +************* Module azure.mgmt.edgeorder._edge_order_management_client +sdk\edgeorder\azure-mgmt-edgeorder\azure\mgmt\edgeorder\_edge_order_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\edgeorder\azure-mgmt-edgeorder\azure\mgmt\edgeorder\_edge_order_management_client.py:175:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.edgeorder.v2020_12_01_preview._edge_order_management_client +sdk\edgeorder\azure-mgmt-edgeorder\azure\mgmt\edgeorder\v2020_12_01_preview\_edge_order_management_client.py:82:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.edgeorder.aio._edge_order_management_client +sdk\edgeorder\azure-mgmt-edgeorder\azure\mgmt\edgeorder\aio\_edge_order_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.edgeorder.v2021_12_01._edge_order_management_client +sdk\edgeorder\azure-mgmt-edgeorder\azure\mgmt\edgeorder\v2021_12_01\_edge_order_management_client.py:82:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.edgeorder.v2022_05_01_preview._edge_order_management_client +sdk\edgeorder\azure-mgmt-edgeorder\azure\mgmt\edgeorder\v2022_05_01_preview\_edge_order_management_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.47/10, +0.53) + +************* Module azure.mgmt.edgezones._client +sdk\edgezones\azure-mgmt-edgezones\azure\mgmt\edgezones\_client.py:82:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\edgezones\azure-mgmt-edgezones\azure\mgmt\edgezones\_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.edgezones.aio._client +sdk\edgezones\azure-mgmt-edgezones\azure\mgmt\edgezones\aio\_client.py:82:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------- +Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.02) + +************* Module azure.mgmt.education._education_management_client +sdk\education\azure-mgmt-education\azure\mgmt\education\_education_management_client.py:98:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.mgmt.elasticsan._elastic_san_mgmt_client +sdk\elasticsan\azure-mgmt-elasticsan\azure\mgmt\elasticsan\_elastic_san_mgmt_client.py:121:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------ +Your code has been rated at 10.00/10 + +************* Module azure.eventgrid.aio._client +sdk\eventgrid\azure-eventgrid\azure\eventgrid\aio\_client.py:71:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\eventgrid\azure-eventgrid\azure\eventgrid\aio\_client.py:155:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.eventgrid._client +sdk\eventgrid\azure-eventgrid\azure\eventgrid\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\eventgrid\azure-eventgrid\azure\eventgrid\_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\eventgrid\azure-eventgrid\azure\eventgrid\_client.py:149:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\eventgrid\azure-eventgrid\azure\eventgrid\_client.py:175:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.eventgrid._legacy._publisher_client +sdk\eventgrid\azure-eventgrid\azure\eventgrid\_legacy\_publisher_client.py:142:4: C5001: send: Client is using short method names (short-client-method-name) +sdk\eventgrid\azure-eventgrid\azure\eventgrid\_legacy\_publisher_client.py:238:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.eventgrid._event_grid_management_client +sdk\eventgrid\azure-mgmt-eventgrid\azure\mgmt\eventgrid\_event_grid_management_client.py:273:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.eventhub._consumer_client +sdk\eventhub\azure-eventhub\azure\eventhub\_consumer_client.py:474:4: C5001: receive: Client is using short method names (short-client-method-name) +sdk\eventhub\azure-eventhub\azure\eventhub\_consumer_client.py:585:4: C5000: receive_batch: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_consumer_client.py:750:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.eventhub._producer_client +sdk\eventhub\azure-eventhub\azure\eventhub\_producer_client.py:597:4: C5000: send_event: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_producer_client.py:674:4: C5000: send_batch: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_producer_client.py:893:4: C5001: flush: Client is using short method names (short-client-method-name) +sdk\eventhub\azure-eventhub\azure\eventhub\_producer_client.py:908:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.eventhub._pyamqp.client +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:299:4: C5001: open: Client is using short method names (short-client-method-name) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:353:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:386:4: C5000: auth_complete: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:398:4: C5000: client_ready: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:417:4: C5000: do_work: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:433:4: C5000: mgmt_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:703:4: C5000: send_message: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:943:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:947:4: C5000: receive_message_batch: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:983:4: C5000: receive_messages_iter: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1031:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1042:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1053:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1065:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1079:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1091:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.mgmt.eventhub.aio._event_hub_management_client +sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\aio\_event_hub_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.eventhub._event_hub_management_client +sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\_event_hub_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\_event_hub_management_client.py:495:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.eventhub.v2015_08_01._event_hub_management_client +sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\v2015_08_01\_event_hub_management_client.py:93:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.eventhub.v2017_04_01._event_hub_management_client +sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\v2017_04_01\_event_hub_management_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.eventhub.v2018_01_01_preview._event_hub_management_client +sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\v2018_01_01_preview\_event_hub_management_client.py:134:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.eventhub.v2021_01_01_preview._event_hub_management_client +sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\v2021_01_01_preview\_event_hub_management_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.eventhub.v2021_06_01_preview._event_hub_management_client +sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\v2021_06_01_preview\_event_hub_management_client.py:130:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.eventhub.v2021_11_01._event_hub_management_client +sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\v2021_11_01\_event_hub_management_client.py:132:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.eventhub.v2022_01_01_preview._event_hub_management_client +sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\v2022_01_01_preview\_event_hub_management_client.py:158:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.eventhub.v2022_10_01_preview._event_hub_management_client +sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\v2022_10_01_preview\_event_hub_management_client.py:158:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.ai.vision.face._client +sdk\face\azure-ai-vision-face\azure\ai\vision\face\_client.py:67:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\face\azure-ai-vision-face\azure\ai\vision\face\_client.py:94:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\face\azure-ai-vision-face\azure\ai\vision\face\_client.py:146:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\face\azure-ai-vision-face\azure\ai\vision\face\_client.py:173:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.ai.vision.face._patch +sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:36:4: C5000: detect_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:52:4: C5000: detect_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:68:4: C5000: detect_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:84:4: C5000: detect_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:485:4: C5001: detect: Client is using short method names (short-client-method-name) +************* Module azure.ai.vision.face.aio._client +sdk\face\azure-ai-vision-face\azure\ai\vision\face\aio\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\face\azure-ai-vision-face\azure\ai\vision\face\aio\_client.py:152:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------- +Your code has been rated at 9.96/10 (previous run: 10.00/10, -0.04) + +************* Module azure.mgmt.fluidrelay._fluid_relay_management_client +sdk\fluidrelay\azure-mgmt-fluidrelay\azure\mgmt\fluidrelay\_fluid_relay_management_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.96/10, +0.03) + +************* Module azure.ai.formrecognizer._document_analysis_client +sdk\formrecognizer\azure-ai-formrecognizer\azure\ai\formrecognizer\_document_analysis_client.py:311:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.ai.formrecognizer._form_recognizer_client +sdk\formrecognizer\azure-ai-formrecognizer\azure\ai\formrecognizer\_form_recognizer_client.py:833:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.ai.formrecognizer._form_training_client +sdk\formrecognizer\azure-ai-formrecognizer\azure\ai\formrecognizer\_form_training_client.py:460:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.ai.formrecognizer._document_model_administration_client +sdk\formrecognizer\azure-ai-formrecognizer\azure\ai\formrecognizer\_document_model_administration_client.py:821:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.99/10, -0.01) + + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) + +************* Module azure.mgmt.graphservices._graph_services_mgmt_client +sdk\graphservices\azure-mgmt-graphservices\azure\mgmt\graphservices\_graph_services_mgmt_client.py:86:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + +************* Module azure.mgmt.hanaonazure._hana_management_client +sdk\hanaonazure\azure-mgmt-hanaonazure\azure\mgmt\hanaonazure\_hana_management_client.py:92:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.99/10, +0.00) + +************* Module azure.mgmt.hardwaresecuritymodules._hardware_security_modules_mgmt_client +sdk\hardwaresecuritymodules\azure-mgmt-hardwaresecuritymodules\azure\mgmt\hardwaresecuritymodules\_hardware_security_modules_mgmt_client.py:117:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) + +************* Module azure.mgmt.hdinsight._hd_insight_management_client +sdk\hdinsight\azure-mgmt-hdinsight\azure\mgmt\hdinsight\_hd_insight_management_client.py:157:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.hdinsightcontainers._hd_insight_containers_mgmt_client +sdk\hdinsight\azure-mgmt-hdinsightcontainers\azure\mgmt\hdinsightcontainers\_hd_insight_containers_mgmt_client.py:171:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.mgmt.healthbot._health_bot_mgmt_client +sdk\healthbot\azure-mgmt-healthbot\azure\mgmt\healthbot\_health_bot_mgmt_client.py:88:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + +************* Module azure.mgmt.healthcareapis._healthcare_apis_management_client +sdk\healthcareapis\azure-mgmt-healthcareapis\azure\mgmt\healthcareapis\_healthcare_apis_management_client.py:173:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.66/10, +0.34) + +************* Module azure.health.deidentification._client +sdk\healthdataaiservices\azure-health-deidentification\azure\health\deidentification\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\healthdataaiservices\azure-health-deidentification\azure\health\deidentification\_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.health.deidentification.aio._client +sdk\healthdataaiservices\azure-health-deidentification\azure\health\deidentification\aio\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.mgmt.healthdataaiservices._client +sdk\healthdataaiservices\azure-mgmt-healthdataaiservices\azure\mgmt\healthdataaiservices\_client.py:94:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\healthdataaiservices\azure-mgmt-healthdataaiservices\azure\mgmt\healthdataaiservices\_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.healthdataaiservices.aio._client +sdk\healthdataaiservices\azure-mgmt-healthdataaiservices\azure\mgmt\healthdataaiservices\aio\_client.py:94:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.99/10, -0.01) + +************* Module azure.healthinsights.cancerprofiling.aio._client +sdk\healthinsights\azure-healthinsights-cancerprofiling\azure\healthinsights\cancerprofiling\aio\_client.py:46:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.healthinsights.cancerprofiling._client +sdk\healthinsights\azure-healthinsights-cancerprofiling\azure\healthinsights\cancerprofiling\_client.py:48:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\healthinsights\azure-healthinsights-cancerprofiling\azure\healthinsights\cancerprofiling\_client.py:74:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.healthinsights.clinicalmatching._client +sdk\healthinsights\azure-healthinsights-clinicalmatching\azure\healthinsights\clinicalmatching\_client.py:48:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\healthinsights\azure-healthinsights-clinicalmatching\azure\healthinsights\clinicalmatching\_client.py:74:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.healthinsights.clinicalmatching.aio._client +sdk\healthinsights\azure-healthinsights-clinicalmatching\azure\healthinsights\clinicalmatching\aio\_client.py:48:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.healthinsights.radiologyinsights._client +sdk\healthinsights\azure-healthinsights-radiologyinsights\azure\healthinsights\radiologyinsights\_client.py:71:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\healthinsights\azure-healthinsights-radiologyinsights\azure\healthinsights\radiologyinsights\_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.healthinsights.radiologyinsights.aio._client +sdk\healthinsights\azure-healthinsights-radiologyinsights\azure\healthinsights\radiologyinsights\aio\_client.py:73:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------ +Your code has been rated at 9.98/10 (previous run: 9.99/10, -0.00) + +************* Module azure.mgmt.hybridcompute._hybrid_compute_management_client +sdk\hybridcompute\azure-mgmt-hybridcompute\azure\mgmt\hybridcompute\_hybrid_compute_management_client.py:175:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.hybridconnectivity._hybrid_connectivity_mgmt_client +sdk\hybridconnectivity\azure-mgmt-hybridconnectivity\azure\mgmt\hybridconnectivity\_hybrid_connectivity_mgmt_client.py:82:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.98/10, +0.01) + +************* Module azure.mgmt.hybridcontainerservice._hybrid_container_service_mgmt_client +sdk\hybridcontainerservice\azure-mgmt-hybridcontainerservice\azure\mgmt\hybridcontainerservice\_hybrid_container_service_mgmt_client.py:124:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) + +************* Module azure.mgmt.hybridkubernetes._connected_kubernetes_client +sdk\hybridkubernetes\azure-mgmt-hybridkubernetes\azure\mgmt\hybridkubernetes\_connected_kubernetes_client.py:88:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + +************* Module azure.mgmt.hybridnetwork._hybrid_network_management_client +sdk\hybridnetwork\azure-mgmt-hybridnetwork\azure\mgmt\hybridnetwork\_hybrid_network_management_client.py:168:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------ +Your code has been rated at 10.00/10 + +************* Module azure.identity._internal.aad_client +sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:24:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:27:4: C5000: obtain_token_by_authorization_code: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:35:4: C5000: obtain_token_by_client_certificate: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:41:4: C5000: obtain_token_by_client_secret: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:45:4: C5000: obtain_token_by_jwt_assertion: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:49:4: C5000: obtain_token_by_refresh_token: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:53:4: C5000: obtain_token_on_behalf_of: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.identity._internal.managed_identity_client +sdk\identity\azure-identity\azure\identity\_internal\managed_identity_client.py:124:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\identity\azure-identity\azure\identity\_internal\managed_identity_client.py:127:4: C5000: request_token: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.identity._internal.msal_managed_identity_client +sdk\identity\azure-identity\azure\identity\_internal\msal_managed_identity_client.py:45:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.identity._internal.msal_client +sdk\identity\azure-identity\azure\identity\_internal\msal_client.py:75:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\identity\azure-identity\azure\identity\_internal\msal_client.py:78:4: C5001: post: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------ +Your code has been rated at 9.97/10 (previous run: 9.99/10, -0.02) + +************* Module azure.mgmt.informaticadatamanagement._informatica_data_mgmt_client +sdk\informaticadatamanagement\azure-mgmt-informaticadatamanagement\azure\mgmt\informaticadatamanagement\_informatica_data_mgmt_client.py:113:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.97/10, +0.03) + +************* Module azure.mgmt.iotfirmwaredefense._io_tfirmware_defense_mgmt_client +sdk\iotfirmwaredefense\azure-mgmt-iotfirmwaredefense\azure\mgmt\iotfirmwaredefense\_io_tfirmware_defense_mgmt_client.py:124:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.iot.deviceprovisioning._client +sdk\iothub\azure-iot-deviceprovisioning\azure\iot\deviceprovisioning\_client.py:68:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\iothub\azure-iot-deviceprovisioning\azure\iot\deviceprovisioning\_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.iot.deviceprovisioning.aio._client +sdk\iothub\azure-iot-deviceprovisioning\azure\iot\deviceprovisioning\aio\_client.py:66:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.mgmt.iotcentral._iot_central_client +sdk\iothub\azure-mgmt-iotcentral\azure\mgmt\iotcentral\_iot_central_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothub._iot_hub_client +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\_iot_hub_client.py:88:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\_iot_hub_client.py:509:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothub.aio._iot_hub_client +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\aio\_iot_hub_client.py:88:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothub.v2016_02_03._iot_hub_client +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2016_02_03\_iot_hub_client.py:83:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothub.v2017_01_19._iot_hub_client +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2017_01_19\_iot_hub_client.py:83:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothub.v2017_07_01._iot_hub_client +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2017_07_01\_iot_hub_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothub.v2018_01_22._iot_hub_client +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2018_01_22\_iot_hub_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothub.v2018_04_01._iot_hub_client +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2018_04_01\_iot_hub_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothub.v2019_03_22._iot_hub_client +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2019_03_22\_iot_hub_client.py:106:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothub.v2019_07_01_preview._iot_hub_client +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2019_07_01_preview\_iot_hub_client.py:111:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothub.v2019_11_04._iot_hub_client +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2019_11_04\_iot_hub_client.py:106:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothub.v2020_03_01._iot_hub_client +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2020_03_01\_iot_hub_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothub.v2021_03_03_preview._iot_hub_client +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2021_03_03_preview\_iot_hub_client.py:125:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothub.v2021_03_31._iot_hub_client +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2021_03_31\_iot_hub_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothub.v2021_07_01._iot_hub_client +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2021_07_01\_iot_hub_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothub.v2021_07_02._iot_hub_client +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2021_07_02\_iot_hub_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothub.v2022_04_30_preview._iot_hub_client +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2022_04_30_preview\_iot_hub_client.py:125:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothub.v2022_11_15_preview._iot_hub_client +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2022_11_15_preview\_iot_hub_client.py:125:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothub.v2023_06_30._iot_hub_client +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2023_06_30\_iot_hub_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothub.v2023_06_30_preview._iot_hub_client +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2023_06_30_preview\_iot_hub_client.py:125:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.iothubprovisioningservices._iot_dps_client +sdk\iothub\azure-mgmt-iothubprovisioningservices\azure\mgmt\iothubprovisioningservices\_iot_dps_client.py:89:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.keyvault.certificates._client +sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:274:4: C5000: purge_deleted_certificate: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:344:4: C5000: import_certificate: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:486:4: C5000: backup_certificate: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:516:4: C5000: restore_certificate_backup: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:772:4: C5000: cancel_certificate_operation: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:791:4: C5000: merge_certificate: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.keyvault.keys._client +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:492:4: C5000: purge_deleted_key: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:627:4: C5000: backup_key: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:656:4: C5000: restore_key_backup: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:689:4: C5000: import_key: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:743:4: C5000: release_key: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:819:4: C5000: rotate_key: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.keyvault.keys.crypto._client +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:250:4: C5001: encrypt: Client is using short method names (short-client-method-name) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:326:4: C5001: decrypt: Client is using short method names (short-client-method-name) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:390:4: C5000: wrap_key: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:434:4: C5000: unwrap_key: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:476:4: C5001: sign: Client is using short method names (short-client-method-name) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:520:4: C5001: verify: Client is using short method names (short-client-method-name) +************* Module azure.keyvault.secrets._client +sdk\keyvault\azure-keyvault-secrets\azure\keyvault\secrets\_client.py:255:4: C5000: backup_secret: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-secrets\azure\keyvault\secrets\_client.py:279:4: C5000: restore_secret_backup: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-secrets\azure\keyvault\secrets\_client.py:407:4: C5000: purge_deleted_secret: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.mgmt.keyvault._key_vault_management_client +sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\_key_vault_management_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\_key_vault_management_client.py:498:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.keyvault.aio._key_vault_management_client +sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\aio\_key_vault_management_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.keyvault.v2016_10_01._key_vault_management_client +sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2016_10_01\_key_vault_management_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.keyvault.v2018_02_14._key_vault_management_client +sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2018_02_14\_key_vault_management_client.py:126:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.keyvault.v2019_09_01._key_vault_management_client +sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2019_09_01\_key_vault_management_client.py:130:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.keyvault.v2020_04_01_preview._key_vault_management_client +sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2020_04_01_preview\_key_vault_management_client.py:146:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.keyvault.v2021_04_01_preview._key_vault_management_client +sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2021_04_01_preview\_key_vault_management_client.py:150:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.keyvault.v2021_06_01_preview._key_vault_management_client +sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2021_06_01_preview\_key_vault_management_client.py:160:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.keyvault.v2021_10_01._key_vault_management_client +sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2021_10_01\_key_vault_management_client.py:154:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.keyvault.v2022_07_01._key_vault_management_client +sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2022_07_01\_key_vault_management_client.py:154:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.keyvault.v2023_02_01._key_vault_management_client +sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2023_02_01\_key_vault_management_client.py:166:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.keyvault.v2023_07_01._key_vault_management_client +sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2023_07_01\_key_vault_management_client.py:166:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.79/10, +0.20) + +************* Module azure.mgmt.kubernetesconfiguration._source_control_configuration_client +sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\_source_control_configuration_client.py:95:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\_source_control_configuration_client.py:509:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.kubernetesconfiguration.aio._source_control_configuration_client +sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\aio\_source_control_configuration_client.py:95:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.kubernetesconfiguration.v2020_07_01_preview._source_control_configuration_client +sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2020_07_01_preview\_source_control_configuration_client.py:99:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.kubernetesconfiguration.v2020_10_01_preview._source_control_configuration_client +sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2020_10_01_preview\_source_control_configuration_client.py:93:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.kubernetesconfiguration.v2021_03_01._source_control_configuration_client +sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2021_03_01\_source_control_configuration_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.kubernetesconfiguration.v2021_05_01_preview._source_control_configuration_client +sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2021_05_01_preview\_source_control_configuration_client.py:137:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.kubernetesconfiguration.v2021_09_01._source_control_configuration_client +sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2021_09_01\_source_control_configuration_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.kubernetesconfiguration.v2021_11_01_preview._source_control_configuration_client +sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2021_11_01_preview\_source_control_configuration_client.py:151:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.kubernetesconfiguration.v2022_01_01_preview._source_control_configuration_client +sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2022_01_01_preview\_source_control_configuration_client.py:151:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.kubernetesconfiguration.v2022_01_15_preview._source_control_configuration_client +sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2022_01_15_preview\_source_control_configuration_client.py:107:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.kubernetesconfiguration.v2022_03_01._source_control_configuration_client +sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2022_03_01\_source_control_configuration_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.kubernetesconfiguration.v2022_04_02_preview._source_control_configuration_client +sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2022_04_02_preview\_source_control_configuration_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.kubernetesconfiguration.v2022_07_01._source_control_configuration_client +sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2022_07_01\_source_control_configuration_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.kubernetesconfiguration.v2022_11_01._source_control_configuration_client +sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2022_11_01\_source_control_configuration_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.kubernetesconfiguration.v2023_05_01._source_control_configuration_client +sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2023_05_01\_source_control_configuration_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + +************* Module azure.mgmt.kusto._kusto_management_client +sdk\kusto\azure-mgmt-kusto\azure\mgmt\kusto\_kusto_management_client.py:173:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------ +Your code has been rated at 10.00/10 + +************* Module azure.mgmt.labservices._managed_labs_client +sdk\labservices\azure-mgmt-labservices\azure\mgmt\labservices\_managed_labs_client.py:123:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------ +Your code has been rated at 10.00/10 + +************* Module azure.mgmt.largeinstance._large_instance_mgmt_client +sdk\largeinstance\azure-mgmt-largeinstance\azure\mgmt\largeinstance\_large_instance_mgmt_client.py:114:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.loadtesting._load_test_mgmt_client +sdk\loadtesting\azure-mgmt-loadtesting\azure\mgmt\loadtesting\_load_test_mgmt_client.py:87:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.developer.loadtesting._client +sdk\loadtesting\azure-developer-loadtesting\azure\developer\loadtesting\_client.py:31:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\loadtesting\azure-developer-loadtesting\azure\developer\loadtesting\_client.py:57:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.developer.loadtesting.aio._client +sdk\loadtesting\azure-developer-loadtesting\azure\developer\loadtesting\aio\_client.py:44:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------ +Your code has been rated at 9.98/10 (previous run: 9.99/10, -0.02) + +************* Module azure.loganalytics.log_analytics_data_client +sdk\loganalytics\azure-loganalytics\azure\loganalytics\log_analytics_data_client.py:69:4: C5001: query: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.loganalytics._log_analytics_management_client +sdk\loganalytics\azure-mgmt-loganalytics\azure\mgmt\loganalytics\_log_analytics_management_client.py:183:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.logic._logic_management_client +sdk\logic\azure-mgmt-logic\azure\mgmt\logic\_logic_management_client.py:265:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) + +************* Module azure.mgmt.guestconfig._guest_configuration_client +sdk\machinelearning\azure-mgmt-guestconfig\azure\mgmt\guestconfig\_guest_configuration_client.py:131:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.machinelearningcompute._machine_learning_compute_management_client +sdk\machinelearning\azure-mgmt-machinelearningcompute\azure\mgmt\machinelearningcompute\_machine_learning_compute_management_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.machinelearningservices._machine_learning_services_mgmt_client +sdk\machinelearning\azure-mgmt-machinelearningservices\azure\mgmt\machinelearningservices\_machine_learning_services_mgmt_client.py:305:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.maintenance._maintenance_management_client +sdk\maintenance\azure-mgmt-maintenance\azure\mgmt\maintenance\_maintenance_management_client.py:175:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.51/10, +0.48) + +************* Module azure.mgmt.managedapplications._managed_applications_mgmt_client +sdk\managedapplications\azure-mgmt-managedapplications\azure\mgmt\managedapplications\_managed_applications_mgmt_client.py:99:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.managednetworkfabric._managed_network_fabric_mgmt_client +sdk\managednetworkfabric\azure-mgmt-managednetworkfabric\azure\mgmt\managednetworkfabric\_managed_network_fabric_mgmt_client.py:222:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.managedservices._managed_services_client +sdk\managedservices\azure-mgmt-managedservices\azure\mgmt\managedservices\_managed_services_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.maps.render._client +sdk\maps\azure-maps-render\azure\maps\render\_client.py:87:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\maps\azure-maps-render\azure\maps\render\_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.maps.render.aio._client +sdk\maps\azure-maps-render\azure\maps\render\aio\_client.py:87:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.maps.search._client +sdk\maps\azure-maps-search\azure\maps\search\_client.py:92:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\maps\azure-maps-search\azure\maps\search\_client.py:114:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.maps.search.aio._client +sdk\maps\azure-maps-search\azure\maps\search\aio\_client.py:92:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.maps.timezone._client +sdk\maps\azure-maps-timezone\azure\maps\timezone\_client.py:82:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\maps\azure-maps-timezone\azure\maps\timezone\_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.maps.timezone.aio._client +sdk\maps\azure-maps-timezone\azure\maps\timezone\aio\_client.py:82:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.maps.weather._client +sdk\maps\azure-maps-weather\azure\maps\weather\_client.py:81:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\maps\azure-maps-weather\azure\maps\weather\_client.py:103:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.maps.weather.aio._client +sdk\maps\azure-maps-weather\azure\maps\weather\aio\_client.py:82:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.mgmt.maps._azure_maps_management_client +sdk\maps\azure-mgmt-maps\azure\mgmt\maps\_azure_maps_management_client.py:87:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.02) + + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.ai.metricsadvisor._patch +sdk\metricsadvisor\azure-ai-metricsadvisor\azure\ai\metricsadvisor\_patch.py:161:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\metricsadvisor\azure-ai-metricsadvisor\azure\ai\metricsadvisor\_patch.py:734:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\metricsadvisor\azure-ai-metricsadvisor\azure\ai\metricsadvisor\_patch.py:1159:4: C5000: refresh_data_feed_ingestion: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.ai.metricsadvisor._client +sdk\metricsadvisor\azure-ai-metricsadvisor\azure\ai\metricsadvisor\_client.py:46:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\metricsadvisor\azure-ai-metricsadvisor\azure\ai\metricsadvisor\_client.py:72:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.ai.metricsadvisor.aio._client +sdk\metricsadvisor\azure-ai-metricsadvisor\azure\ai\metricsadvisor\aio\_client.py:46:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + +************* Module azure.mgmt.migrationdiscoverysap._migration_discovery_sap_mgmt_client +sdk\migrationdiscovery\azure-mgmt-migrationdiscoverysap\azure\mgmt\migrationdiscoverysap\_migration_discovery_sap_mgmt_client.py:98:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) + +************* Module azure.mgmt.mixedreality._mixed_reality_client +sdk\mixedreality\azure-mgmt-mixedreality\azure\mgmt\mixedreality\_mixed_reality_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mixedreality.authentication._client +sdk\mixedreality\azure-mixedreality-authentication\azure\mixedreality\authentication\_client.py:102:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.00) + +************* Module azure.ai.ml.identity._internal.managed_identity_client +sdk\ml\azure-ai-ml\azure\ai\ml\identity\_internal\managed_identity_client.py:117:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\ml\azure-ai-ml\azure\ai\ml\identity\_internal\managed_identity_client.py:120:4: C5000: request_token: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.ai.ml._artifacts._blob_storage_helper +sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_blob_storage_helper.py:68:4: C5001: upload: Client is using short method names (short-client-method-name) +sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_blob_storage_helper.py:233:4: C5001: download: Client is using short method names (short-client-method-name) +sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_blob_storage_helper.py:297:4: C5001: exists: Client is using short method names (short-client-method-name) +************* Module azure.ai.ml._artifacts._fileshare_storage_helper +sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_fileshare_storage_helper.py:66:4: C5001: upload: Client is using short method names (short-client-method-name) +sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_fileshare_storage_helper.py:135:4: C5000: upload_file: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_fileshare_storage_helper.py:196:4: C5000: upload_dir: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_fileshare_storage_helper.py:254:4: C5001: exists: Client is using short method names (short-client-method-name) +sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_fileshare_storage_helper.py:290:4: C5001: download: Client is using short method names (short-client-method-name) +************* Module azure.ai.ml._artifacts._gen2_storage_helper +sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_gen2_storage_helper.py:57:4: C5001: upload: Client is using short method names (short-client-method-name) +sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_gen2_storage_helper.py:188:4: C5001: download: Client is using short method names (short-client-method-name) +sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_gen2_storage_helper.py:248:4: C5001: exists: Client is using short method names (short-client-method-name) +************* Module azure.ai.ml._local_endpoints.docker_client +sdk\ml\azure-ai-ml\azure\ai\ml\_local_endpoints\docker_client.py:317:4: C5001: logs: Client is using short method names (short-client-method-name) +************* Module azure.ai.ml._local_endpoints.vscode_debug.vscode_client +sdk\ml\azure-ai-ml\azure\ai\ml\_local_endpoints\vscode_debug\vscode_client.py:36:4: C5000: invoke_dev_container: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) + +************* Module azure.mgmt.mobilenetwork._mobile_network_management_client +sdk\mobilenetwork\azure-mgmt-mobilenetwork\azure\mgmt\mobilenetwork\_mobile_network_management_client.py:192:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------ +Your code has been rated at 10.00/10 + +************* Module azure.iot.modelsrepository._client +sdk\modelsrepository\azure-iot-modelsrepository\azure\iot\modelsrepository\_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.96/10 (previous run: 10.00/10, -0.04) + +************* Module azure.mgmt.mongocluster._client +sdk\mongocluster\azure-mgmt-mongocluster\azure\mgmt\mongocluster\_client.py:103:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\mongocluster\azure-mgmt-mongocluster\azure\mgmt\mongocluster\_client.py:125:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.mongocluster.aio._client +sdk\mongocluster\azure-mgmt-mongocluster\azure\mgmt\mongocluster\aio\_client.py:103:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.96/10, +0.03) + +************* Module azure.mgmt.monitor._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\_monitor_management_client.py:121:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\_monitor_management_client.py:916:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.aio._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\aio\_monitor_management_client.py:121:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2015_04_01._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2015_04_01\_monitor_management_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2015_07_01._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2015_07_01\_monitor_management_client.py:98:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2016_03_01._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2016_03_01\_monitor_management_client.py:101:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2016_09_01._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2016_09_01\_monitor_management_client.py:79:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2017_03_01_preview._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2017_03_01_preview\_monitor_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2017_04_01._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2017_04_01\_monitor_management_client.py:87:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2017_05_01_preview._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2017_05_01_preview\_monitor_management_client.py:111:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2017_12_01_preview._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2017_12_01_preview\_monitor_management_client.py:76:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2018_01_01._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2018_01_01\_monitor_management_client.py:79:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2018_03_01._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2018_03_01\_monitor_management_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2018_04_16._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2018_04_16\_monitor_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2018_06_01_preview._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2018_06_01_preview\_monitor_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2018_09_01._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2018_09_01\_monitor_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2018_11_27_preview._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2018_11_27_preview\_monitor_management_client.py:73:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2019_03_01._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2019_03_01\_monitor_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2019_06_01._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2019_06_01\_monitor_management_client.py:81:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2019_10_17._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2019_10_17\_monitor_management_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2019_11_01_preview._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2019_11_01_preview\_monitor_management_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2020_01_01_preview._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2020_01_01_preview\_monitor_management_client.py:77:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2020_05_01_preview._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2020_05_01_preview\_monitor_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2020_10_01._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2020_10_01\_monitor_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2021_04_01._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2021_04_01\_monitor_management_client.py:100:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2021_05_01._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2021_05_01\_monitor_management_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2021_05_01_preview._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2021_05_01_preview\_monitor_management_client.py:122:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2021_06_03_preview._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2021_06_03_preview\_monitor_management_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2021_07_01_preview._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2021_07_01_preview\_monitor_management_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2021_09_01._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2021_09_01\_monitor_management_client.py:83:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2022_02_01_preview._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2022_02_01_preview\_monitor_management_client.py:100:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2022_04_01._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2022_04_01\_monitor_management_client.py:83:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2022_06_01._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2022_06_01\_monitor_management_client.py:106:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2022_08_01_preview._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2022_08_01_preview\_monitor_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2022_10_01._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2022_10_01\_monitor_management_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2023_01_01._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2023_01_01\_monitor_management_client.py:83:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.monitor.v2023_03_01_preview._monitor_management_client +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2023_03_01_preview\_monitor_management_client.py:76:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.monitor.ingestion._client +sdk\monitor\azure-monitor-ingestion\azure\monitor\ingestion\_client.py:64:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\monitor\azure-monitor-ingestion\azure\monitor\ingestion\_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.monitor.ingestion.aio._client +sdk\monitor\azure-monitor-ingestion\azure\monitor\ingestion\aio\_client.py:64:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.monitor.query._logs_query_client +sdk\monitor\azure-monitor-query\azure\monitor\query\_logs_query_client.py:79:4: C5000: query_workspace: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\monitor\azure-monitor-query\azure\monitor\query\_logs_query_client.py:151:4: C5000: query_batch: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\monitor\azure-monitor-query\azure\monitor\query\_logs_query_client.py:197:4: C5000: query_resource: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\monitor\azure-monitor-query\azure\monitor\query\_logs_query_client.py:268:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.monitor.query._metrics_query_client +sdk\monitor\azure-monitor-query\azure\monitor\query\_metrics_query_client.py:71:4: C5000: query_resource: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\monitor\azure-monitor-query\azure\monitor\query\_metrics_query_client.py:238:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.monitor.query._metrics_client +sdk\monitor\azure-monitor-query\azure\monitor\query\_metrics_client.py:69:4: C5000: query_resources: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\monitor\azure-monitor-query\azure\monitor\query\_metrics_client.py:190:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.99/10, +0.00) + +************* Module azure.mgmt.netapp._net_app_management_client +sdk\netapp\azure-mgmt-netapp\azure\mgmt\netapp\_net_app_management_client.py:191:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) + +************* Module azure.mgmt.dns.aio._dns_management_client +sdk\network\azure-mgmt-dns\azure\mgmt\dns\aio\_dns_management_client.py:88:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.dns._dns_management_client +sdk\network\azure-mgmt-dns\azure\mgmt\dns\_dns_management_client.py:88:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\network\azure-mgmt-dns\azure\mgmt\dns\_dns_management_client.py:187:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.dns.v2016_04_01._dns_management_client +sdk\network\azure-mgmt-dns\azure\mgmt\dns\v2016_04_01\_dns_management_client.py:88:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.dns.v2018_03_01_preview._dns_management_client +sdk\network\azure-mgmt-dns\azure\mgmt\dns\v2018_03_01_preview\_dns_management_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.dns.v2018_05_01._dns_management_client +sdk\network\azure-mgmt-dns\azure\mgmt\dns\v2018_05_01\_dns_management_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.dns.v2023_07_01_preview._dns_management_client +sdk\network\azure-mgmt-dns\azure\mgmt\dns\v2023_07_01_preview\_dns_management_client.py:101:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.frontdoor._front_door_management_client +sdk\network\azure-mgmt-frontdoor\azure\mgmt\frontdoor\_front_door_management_client.py:164:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network._client +sdk\network\azure-mgmt-network\azure\mgmt\network\_client.py:2481:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2015_06_15._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2015_06_15\_network_management_client.py:220:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2017_10_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2017_10_01\_network_management_client.py:345:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2018_04_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2018_04_01\_network_management_client.py:424:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2018_11_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2018_11_01\_network_management_client.py:558:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2018_12_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2018_12_01\_network_management_client.py:573:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2019_02_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2019_02_01\_network_management_client.py:593:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2019_04_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2019_04_01\_network_management_client.py:619:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2019_06_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2019_06_01\_network_management_client.py:653:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2019_07_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2019_07_01\_network_management_client.py:666:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2019_08_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2019_08_01\_network_management_client.py:683:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2019_09_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2019_09_01\_network_management_client.py:696:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2019_11_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2019_11_01\_network_management_client.py:702:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2019_12_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2019_12_01\_network_management_client.py:709:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2020_03_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2020_03_01\_network_management_client.py:729:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2020_04_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2020_04_01\_network_management_client.py:735:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2020_05_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2020_05_01\_network_management_client.py:787:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2020_06_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2020_06_01\_network_management_client.py:808:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2020_07_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2020_07_01\_network_management_client.py:814:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2020_08_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2020_08_01\_network_management_client.py:820:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2020_11_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2020_11_01\_network_management_client.py:820:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2021_02_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2021_02_01\_network_management_client.py:827:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2021_02_01_preview._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2021_02_01_preview\_network_management_client.py:283:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2023_02_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2023_02_01\_network_management_client.py:993:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2023_04_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2023_04_01\_network_management_client.py:993:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2023_05_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2023_05_01\_network_management_client.py:993:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2023_06_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2023_06_01\_network_management_client.py:1001:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2023_09_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2023_09_01\_network_management_client.py:1001:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2023_11_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2023_11_01\_network_management_client.py:1023:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.network.v2024_01_01._network_management_client +sdk\network\azure-mgmt-network\azure\mgmt\network\v2024_01_01\_network_management_client.py:1023:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.privatedns._private_dns_management_client +sdk\network\azure-mgmt-privatedns\azure\mgmt\privatedns\_private_dns_management_client.py:92:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.mgmt.networkanalytics._network_analytics_mgmt_client +sdk\networkanalytics\azure-mgmt-networkanalytics\azure\mgmt\networkanalytics\_network_analytics_mgmt_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.networkcloud._network_cloud_mgmt_client +sdk\networkcloud\azure-mgmt-networkcloud\azure\mgmt\networkcloud\_network_cloud_mgmt_client.py:179:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.49/10, +0.51) + +************* Module azure.mgmt.networkfunction._traffic_collector_mgmt_client +sdk\networkfunction\azure-mgmt-networkfunction\azure\mgmt\networkfunction\_traffic_collector_mgmt_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.newrelicobservability._new_relic_observability_mgmt_client +sdk\newrelicobservability\azure-mgmt-newrelicobservability\azure\mgmt\newrelicobservability\_new_relic_observability_mgmt_client.py:123:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) + +************* Module azure.mgmt.nginx._nginx_management_client +sdk\nginx\azure-mgmt-nginx\azure\mgmt\nginx\_nginx_management_client.py:92:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.notificationhubs._notification_hubs_management_client +sdk\notificationhubs\azure-mgmt-notificationhubs\azure\mgmt\notificationhubs\_notification_hubs_management_client.py:122:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.mgmt.operationsmanagement._operations_management_client +sdk\operationsmanagement\azure-mgmt-operationsmanagement\azure\mgmt\operationsmanagement\_operations_management_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + +************* Module azure.mgmt.oracledatabase._oracle_database_mgmt_client +sdk\oracledatabase\azure-mgmt-oracledatabase\azure\mgmt\oracledatabase\_oracle_database_mgmt_client.py:200:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) + +************* Module azure.mgmt.paloaltonetworksngfw._palo_alto_networks_ngfw_mgmt_client +sdk\paloaltonetworks\azure-mgmt-paloaltonetworksngfw\azure\mgmt\paloaltonetworksngfw\_palo_alto_networks_ngfw_mgmt_client.py:160:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.peering._peering_management_client +sdk\peering\azure-mgmt-peering\azure\mgmt\peering\_peering_management_client.py:172:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.ai.personalizer._patch +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:76:4: C5000: export_model: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:91:4: C5000: import_model: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:105:4: C5000: reset_model: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:228:4: C5000: reset_policy: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:446:4: C5000: apply_from_evaluation: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:804:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:823:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:862:4: C5001: rank: Client is using short method names (short-client-method-name) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:936:4: C5001: reward: Client is using short method names (short-client-method-name) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:969:4: C5001: activate: Client is using short method names (short-client-method-name) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:984:4: C5000: rank_multi_slot: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:1070:4: C5000: reward_multi_slot: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:1107:4: C5000: activate_multi_slot: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:1123:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:1142:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.ai.personalizer.aio._patch +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\aio\_patch.py:819:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\aio\_patch.py:1137:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.ai.personalizer._client +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_client.py:46:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_client.py:72:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.ai.personalizer.aio._client +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\aio\_client.py:46:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------- +Your code has been rated at 9.89/10 (previous run: 10.00/10, -0.11) + +************* Module azure.mgmt.playwrighttesting._playwright_testing_mgmt_client +sdk\playwrighttesting\azure-mgmt-playwrighttesting\azure\mgmt\playwrighttesting\_playwright_testing_mgmt_client.py:89:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.89/10, +0.10) + +************* Module azure.mgmt.policyinsights._policy_insights_client +sdk\policyinsights\azure-mgmt-policyinsights\azure\mgmt\policyinsights\_policy_insights_client.py:122:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.25/10, +0.75) + + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.mgmt.powerbiembedded._power_bi_embedded_management_client +sdk\powerbiembedded\azure-mgmt-powerbiembedded\azure\mgmt\powerbiembedded\_power_bi_embedded_management_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + +************* Module azure.mgmt.purview._purview_management_client +sdk\purview\azure-mgmt-purview\azure\mgmt\purview\_purview_management_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.purview.administration.account._purview_account_client +sdk\purview\azure-purview-administration\azure\purview\administration\account\_purview_account_client.py:61:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\purview\azure-purview-administration\azure\purview\administration\account\_purview_account_client.py:92:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.purview.administration.account.aio._purview_account_client +sdk\purview\azure-purview-administration\azure\purview\administration\account\aio\_purview_account_client.py:60:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.purview.administration.metadatapolicies._purview_metadata_policies_client +sdk\purview\azure-purview-administration\azure\purview\administration\metadatapolicies\_purview_metadata_policies_client.py:59:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\purview\azure-purview-administration\azure\purview\administration\metadatapolicies\_purview_metadata_policies_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.purview.administration.metadatapolicies.aio._purview_metadata_policies_client +sdk\purview\azure-purview-administration\azure\purview\administration\metadatapolicies\aio\_purview_metadata_policies_client.py:58:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.purview.catalog._client +sdk\purview\azure-purview-catalog\azure\purview\catalog\_client.py:94:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\purview\azure-purview-catalog\azure\purview\catalog\_client.py:124:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.purview.catalog.aio._client +sdk\purview\azure-purview-catalog\azure\purview\catalog\aio\_client.py:94:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.purview.datamap._client +sdk\purview\azure-purview-datamap\azure\purview\datamap\_client.py:89:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\purview\azure-purview-datamap\azure\purview\datamap\_client.py:115:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.purview.datamap.aio._client +sdk\purview\azure-purview-datamap\azure\purview\datamap\aio\_client.py:89:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.purview.scanning._purview_scanning_client +sdk\purview\azure-purview-scanning\azure\purview\scanning\_purview_scanning_client.py:78:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\purview\azure-purview-scanning\azure\purview\scanning\_purview_scanning_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.purview.scanning.aio._purview_scanning_client +sdk\purview\azure-purview-scanning\azure\purview\scanning\aio\_purview_scanning_client.py:80:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.purview.sharing._client +sdk\purview\azure-purview-sharing\azure\purview\sharing\_client.py:57:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\purview\azure-purview-sharing\azure\purview\sharing\_client.py:83:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.purview.sharing.aio._client +sdk\purview\azure-purview-sharing\azure\purview\sharing\aio\_client.py:57:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.purview.workflow._client +sdk\purview\azure-purview-workflow\azure\purview\workflow\_client.py:105:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\purview\azure-purview-workflow\azure\purview\workflow\_client.py:131:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.purview.workflow.aio._client +sdk\purview\azure-purview-workflow\azure\purview\workflow\aio\_client.py:105:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.99/10, -0.00) + +************* Module azure.mgmt.quantum._azure_quantum_mgmt_client +sdk\quantum\azure-mgmt-quantum\azure\mgmt\quantum\_azure_quantum_mgmt_client.py:92:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.99/10, +0.00) + +************* Module azure.mgmt.qumulo._qumulo_mgmt_client +sdk\qumulo\azure-mgmt-qumulo\azure\mgmt\qumulo\_qumulo_mgmt_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.99/10, -0.00) + +************* Module azure.mgmt.quota._quota_mgmt_client +sdk\quota\azure-mgmt-quota\azure\mgmt\quota\_quota_mgmt_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) + +************* Module azure.mgmt.rdbms.mariadb._maria_db_management_client +sdk\rdbms\azure-mgmt-rdbms\azure\mgmt\rdbms\mariadb\_maria_db_management_client.py:235:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.rdbms.mysql._my_sql_management_client +sdk\rdbms\azure-mgmt-rdbms\azure\mgmt\rdbms\mysql\_my_sql_management_client.py:245:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.rdbms.mysql_flexibleservers._my_sql_management_client +sdk\rdbms\azure-mgmt-rdbms\azure\mgmt\rdbms\mysql_flexibleservers\_my_sql_management_client.py:239:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.rdbms.postgresql._postgre_sql_management_client +sdk\rdbms\azure-mgmt-rdbms\azure\mgmt\rdbms\postgresql\_postgre_sql_management_client.py:202:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.rdbms.postgresql_flexibleservers._postgre_sql_management_client +sdk\rdbms\azure-mgmt-rdbms\azure\mgmt\rdbms\postgresql_flexibleservers\_postgre_sql_management_client.py:246:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.recoveryservices._recovery_services_client +sdk\recoveryservices\azure-mgmt-recoveryservices\azure\mgmt\recoveryservices\_recovery_services_client.py:155:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.recoveryservicesbackup.activestamp._recovery_services_backup_client +sdk\recoveryservices\azure-mgmt-recoveryservicesbackup\azure\mgmt\recoveryservicesbackup\activestamp\_recovery_services_backup_client.py:443:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.recoveryservicesbackup.passivestamp._recovery_services_backup_passive_client +sdk\recoveryservices\azure-mgmt-recoveryservicesbackup\azure\mgmt\recoveryservicesbackup\passivestamp\_recovery_services_backup_passive_client.py:172:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.recoveryservicessiterecovery._site_recovery_management_client +sdk\recoveryservices\azure-mgmt-recoveryservicessiterecovery\azure\mgmt\recoveryservicessiterecovery\_site_recovery_management_client.py:287:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.mgmt.recoveryservicesdatareplication._recovery_services_data_replication_mgmt_client +sdk\recoveryservicesdatareplication\azure-mgmt-recoveryservicesdatareplication\azure\mgmt\recoveryservicesdatareplication\_recovery_services_data_replication_mgmt_client.py:186:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.redhatopenshift._azure_red_hat_open_shift_client +sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\_azure_red_hat_open_shift_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\_azure_red_hat_open_shift_client.py:322:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.redhatopenshift.aio._azure_red_hat_open_shift_client +sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\aio\_azure_red_hat_open_shift_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.redhatopenshift.v2020_04_30._azure_red_hat_open_shift4_client +sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\v2020_04_30\_azure_red_hat_open_shift4_client.py:110:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.redhatopenshift.v2021_09_01_preview._azure_red_hat_open_shift_client +sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\v2021_09_01_preview\_azure_red_hat_open_shift_client.py:112:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.redhatopenshift.v2022_04_01._azure_red_hat_open_shift_client +sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\v2022_04_01\_azure_red_hat_open_shift_client.py:110:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.redhatopenshift.v2022_09_04._azure_red_hat_open_shift_client +sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\v2022_09_04\_azure_red_hat_open_shift_client.py:144:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.redhatopenshift.v2023_04_01._azure_red_hat_open_shift_client +sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\v2023_04_01\_azure_red_hat_open_shift_client.py:144:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.redhatopenshift.v2023_09_04._azure_red_hat_open_shift_client +sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\v2023_09_04\_azure_red_hat_open_shift_client.py:144:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.redhatopenshift.v2023_11_22._azure_red_hat_open_shift_client +sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\v2023_11_22\_azure_red_hat_open_shift_client.py:144:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + +************* Module azure.mgmt.redis._redis_management_client +sdk\redis\azure-mgmt-redis\azure\mgmt\redis\_redis_management_client.py:150:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------ +Your code has been rated at 10.00/10 + +************* Module azure.mgmt.redisenterprise._redis_enterprise_management_client +sdk\redisenterprise\azure-mgmt-redisenterprise\azure\mgmt\redisenterprise\_redis_enterprise_management_client.py:135:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.21/10, +0.79) + +************* Module azure.mixedreality.remoterendering._remote_rendering_client +sdk\remoterendering\azure-mixedreality-remoterendering\azure\mixedreality\remoterendering\_remote_rendering_client.py:320:4: C5000: stop_rendering_session: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\remoterendering\azure-mixedreality-remoterendering\azure\mixedreality\remoterendering\_remote_rendering_client.py:367:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.96/10 (previous run: 10.00/10, -0.04) + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.mgmt.resourceconnector._resource_connector_mgmt_client +sdk\resourceconnector\azure-mgmt-resourceconnector\azure\mgmt\resourceconnector\_resource_connector_mgmt_client.py:83:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.96/10, +0.03) + +************* Module azure.mgmt.resourcehealth._resource_health_mgmt_client +sdk\resourcehealth\azure-mgmt-resourcehealth\azure\mgmt\resourcehealth\_resource_health_mgmt_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\resourcehealth\azure-mgmt-resourcehealth\azure\mgmt\resourcehealth\_resource_health_mgmt_client.py:306:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resourcehealth.aio._resource_health_mgmt_client +sdk\resourcehealth\azure-mgmt-resourcehealth\azure\mgmt\resourcehealth\aio\_resource_health_mgmt_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resourcehealth.v2015_01_01._resource_health_mgmt_client +sdk\resourcehealth\azure-mgmt-resourcehealth\azure\mgmt\resourcehealth\v2015_01_01\_resource_health_mgmt_client.py:105:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resourcehealth.v2018_07_01._resource_health_mgmt_client +sdk\resourcehealth\azure-mgmt-resourcehealth\azure\mgmt\resourcehealth\v2018_07_01\_resource_health_mgmt_client.py:106:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resourcehealth.v2022_10_01._resource_health_mgmt_client +sdk\resourcehealth\azure-mgmt-resourcehealth\azure\mgmt\resourcehealth\v2022_10_01\_resource_health_mgmt_client.py:138:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resourcehealth.v2023_10_01_preview._resource_health_mgmt_client +sdk\resourcehealth\azure-mgmt-resourcehealth\azure\mgmt\resourcehealth\v2023_10_01_preview\_resource_health_mgmt_client.py:146:4: C5001: close: Client is using short method names (short-client-method-name) + +----------------------------------- +Your code has been rated at 9.99/10 + + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) + +************* Module azure.mgmt.msi.aio._managed_service_identity_client +sdk\resources\azure-mgmt-msi\azure\mgmt\msi\aio\_managed_service_identity_client.py:85:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.msi._managed_service_identity_client +sdk\resources\azure-mgmt-msi\azure\mgmt\msi\_managed_service_identity_client.py:85:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-msi\azure\mgmt\msi\_managed_service_identity_client.py:193:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.msi.v2018_11_30._managed_service_identity_client +sdk\resources\azure-mgmt-msi\azure\mgmt\msi\v2018_11_30\_managed_service_identity_client.py:93:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.msi.v2021_09_30_preview._managed_service_identity_client +sdk\resources\azure-mgmt-msi\azure\mgmt\msi\v2021_09_30_preview\_managed_service_identity_client.py:93:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.msi.v2022_01_31_preview._managed_service_identity_client +sdk\resources\azure-mgmt-msi\azure\mgmt\msi\v2022_01_31_preview\_managed_service_identity_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.msi.v2023_01_31._managed_service_identity_client +sdk\resources\azure-mgmt-msi\azure\mgmt\msi\v2023_01_31\_managed_service_identity_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.changes._changes_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\changes\_changes_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\changes\_changes_client.py:131:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.changes.aio._changes_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\changes\aio\_changes_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.changes.v2022_05_01._changes_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\changes\v2022_05_01\_changes_client.py:100:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.deploymentscripts._deployment_scripts_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentscripts\_deployment_scripts_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentscripts\_deployment_scripts_client.py:146:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.deploymentscripts.v2019_10_01_preview._deployment_scripts_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentscripts\v2019_10_01_preview\_deployment_scripts_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.deploymentscripts.aio._deployment_scripts_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentscripts\aio\_deployment_scripts_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.deploymentscripts.v2020_10_01._deployment_scripts_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentscripts\v2020_10_01\_deployment_scripts_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.deploymentscripts.v2023_08_01._deployment_scripts_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentscripts\v2023_08_01\_deployment_scripts_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.deploymentstacks._deployment_stacks_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentstacks\_deployment_stacks_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentstacks\_deployment_stacks_client.py:139:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.deploymentstacks.v2022_08_01_preview._deployment_stacks_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentstacks\v2022_08_01_preview\_deployment_stacks_client.py:107:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.deploymentstacks.aio._deployment_stacks_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentstacks\aio\_deployment_stacks_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.deploymentstacks.v2024_03_01._deployment_stacks_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentstacks\v2024_03_01\_deployment_stacks_client.py:107:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.features._feature_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\features\_feature_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\features\_feature_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.features.v2015_12_01._feature_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\features\v2015_12_01\_feature_client.py:102:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.features.aio._feature_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\features\aio\_feature_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.features.v2021_07_01._feature_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\features\v2021_07_01\_feature_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.links._management_link_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\links\_management_link_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\links\_management_link_client.py:145:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.links.aio._management_link_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\links\aio\_management_link_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.links.v2016_09_01._management_link_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\links\v2016_09_01\_management_link_client.py:110:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.locks._management_lock_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\locks\_management_lock_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\locks\_management_lock_client.py:152:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.locks.aio._management_lock_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\locks\aio\_management_lock_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.locks.v2015_01_01._management_lock_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\locks\v2015_01_01\_management_lock_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.locks.v2016_09_01._management_lock_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\locks\v2016_09_01\_management_lock_client.py:111:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.managedapplications._application_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\managedapplications\_application_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\managedapplications\_application_client.py:161:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.managedapplications.v2019_07_01._application_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\managedapplications\v2019_07_01\_application_client.py:121:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.managedapplications.aio._application_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\managedapplications\aio\_application_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.policy._policy_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\_policy_client.py:110:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\_policy_client.py:358:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.policy.aio._policy_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\aio\_policy_client.py:110:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.policy.v2015_10_01_preview._policy_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2015_10_01_preview\_policy_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.policy.v2016_04_01._policy_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2016_04_01\_policy_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.policy.v2016_12_01._policy_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2016_12_01\_policy_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.policy.v2017_06_01_preview._policy_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2017_06_01_preview\_policy_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.policy.v2018_03_01._policy_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2018_03_01\_policy_client.py:115:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.policy.v2018_05_01._policy_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2018_05_01\_policy_client.py:115:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.policy.v2019_01_01._policy_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2019_01_01\_policy_client.py:115:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.policy.v2019_06_01._policy_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2019_06_01\_policy_client.py:115:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.policy.v2019_09_01._policy_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2019_09_01\_policy_client.py:115:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.policy.v2020_07_01_preview._policy_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2020_07_01_preview\_policy_client.py:103:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.policy.v2020_09_01._policy_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2020_09_01\_policy_client.py:126:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.policy.v2021_06_01._policy_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2021_06_01\_policy_client.py:115:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.policy.v2022_06_01._policy_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2022_06_01\_policy_client.py:103:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.policy.v2022_07_01_preview._policy_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2022_07_01_preview\_policy_client.py:103:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.policy.v2022_08_01_preview._policy_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2022_08_01_preview\_policy_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.privatelinks._resource_private_link_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\privatelinks\_resource_private_link_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\privatelinks\_resource_private_link_client.py:145:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.privatelinks.aio._resource_private_link_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\privatelinks\aio\_resource_private_link_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.privatelinks.v2020_05_01._resource_private_link_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\privatelinks\v2020_05_01\_resource_private_link_client.py:110:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.resources._resource_management_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\_resource_management_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\_resource_management_client.py:602:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.resources.aio._resource_management_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\aio\_resource_management_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.resources.v2016_02_01._resource_management_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2016_02_01\_resource_management_client.py:138:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.resources.v2016_09_01._resource_management_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2016_09_01\_resource_management_client.py:138:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.resources.v2017_05_10._resource_management_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2017_05_10\_resource_management_client.py:138:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.resources.v2018_02_01._resource_management_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2018_02_01\_resource_management_client.py:138:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.resources.v2018_05_01._resource_management_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2018_05_01\_resource_management_client.py:142:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.resources.v2019_03_01._resource_management_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2019_03_01\_resource_management_client.py:142:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.resources.v2019_05_01._resource_management_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2019_05_01\_resource_management_client.py:142:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.resources.v2019_05_10._resource_management_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2019_05_10\_resource_management_client.py:142:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.resources.v2019_07_01._resource_management_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2019_07_01\_resource_management_client.py:142:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.resources.v2019_08_01._resource_management_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2019_08_01\_resource_management_client.py:142:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.resources.v2019_10_01._resource_management_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2019_10_01\_resource_management_client.py:142:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.resources.v2020_06_01._resource_management_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2020_06_01\_resource_management_client.py:142:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.resources.v2020_10_01._resource_management_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2020_10_01\_resource_management_client.py:149:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.resources.v2021_01_01._resource_management_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2021_01_01\_resource_management_client.py:149:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.resources.v2021_04_01._resource_management_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2021_04_01\_resource_management_client.py:149:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.resources.v2022_09_01._resource_management_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2022_09_01\_resource_management_client.py:149:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.subscriptions._subscription_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\_subscription_client.py:105:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\_subscription_client.py:219:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.subscriptions.v2016_06_01._subscription_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\v2016_06_01\_subscription_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.subscriptions.aio._subscription_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\aio\_subscription_client.py:105:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.subscriptions.v2018_06_01._subscription_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\v2018_06_01\_subscription_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.subscriptions.v2019_06_01._subscription_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\v2019_06_01\_subscription_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.subscriptions.v2019_11_01._subscription_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\v2019_11_01\_subscription_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.subscriptions.v2021_01_01._subscription_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\v2021_01_01\_subscription_client.py:101:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.subscriptions.v2022_12_01._subscription_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\v2022_12_01\_subscription_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.templatespecs._template_specs_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\templatespecs\_template_specs_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\templatespecs\_template_specs_client.py:175:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.templatespecs.aio._template_specs_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\templatespecs\aio\_template_specs_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.templatespecs.v2019_06_01_preview._template_specs_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\templatespecs\v2019_06_01_preview\_template_specs_client.py:112:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.templatespecs.v2021_03_01_preview._template_specs_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\templatespecs\v2021_03_01_preview\_template_specs_client.py:112:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.templatespecs.v2021_05_01._template_specs_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\templatespecs\v2021_05_01\_template_specs_client.py:112:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resource.templatespecs.v2022_02_01._template_specs_client +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\templatespecs\v2022_02_01\_template_specs_client.py:112:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.resourcegraph._resource_graph_client +sdk\resources\azure-mgmt-resourcegraph\azure\mgmt\resourcegraph\_resource_graph_client.py:70:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + +************* Module azure.mgmt.scheduler._scheduler_management_client +sdk\scheduler\azure-mgmt-scheduler\azure\mgmt\scheduler\_scheduler_management_client.py:64:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.99/10, +0.00) + +************* Module azure.schemaregistry._patch +sdk\schemaregistry\azure-schemaregistry\azure\schemaregistry\_patch.py:167:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\schemaregistry\azure-schemaregistry\azure\schemaregistry\_patch.py:174:4: C5000: register_schema: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.schemaregistry._client +sdk\schemaregistry\azure-schemaregistry\azure\schemaregistry\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\schemaregistry\azure-schemaregistry\azure\schemaregistry\_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.schemaregistry.aio._client +sdk\schemaregistry\azure-schemaregistry\azure\schemaregistry\aio\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------ +Your code has been rated at 9.98/10 (previous run: 9.99/10, -0.01) + +************* Module azure.mgmt.scvmm._sc_vmm_mgmt_client +sdk\scvmm\azure-mgmt-scvmm\azure\mgmt\scvmm\_sc_vmm_mgmt_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.59/10, +0.41) + +************* Module azure.mgmt.search._search_management_client +sdk\search\azure-mgmt-search\azure\mgmt\search\_search_management_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.search.documents._search_client +sdk\search\azure-search-documents\azure\search\documents\_search_client.py:101:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\search\azure-search-documents\azure\search\documents\_search_client.py:143:4: C5001: search: Client is using short method names (short-client-method-name) +sdk\search\azure-search-documents\azure\search\documents\_search_client.py:388:4: C5001: suggest: Client is using short method names (short-client-method-name) +sdk\search\azure-search-documents\azure\search\documents\_search_client.py:476:4: C5001: autocomplete: Client is using short method names (short-client-method-name) +sdk\search\azure-search-documents\azure\search\documents\_search_client.py:555:4: C5000: upload_documents: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\search\azure-search-documents\azure\search\documents\_search_client.py:618:4: C5000: merge_documents: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\search\azure-search-documents\azure\search\documents\_search_client.py:648:4: C5000: merge_or_upload_documents: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\search\azure-search-documents\azure\search\documents\_search_client.py:669:4: C5000: index_documents: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\search\azure-search-documents\azure\search\documents\_search_client.py:718:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.search.documents.indexes._search_indexer_client +sdk\search\azure-search-documents\azure\search\documents\indexes\_search_indexer_client.py:79:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\search\azure-search-documents\azure\search\documents\indexes\_search_indexer_client.py:253:4: C5000: run_indexer: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\search\azure-search-documents\azure\search\documents\indexes\_search_indexer_client.py:272:4: C5000: reset_indexer: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\search\azure-search-documents\azure\search\documents\indexes\_search_indexer_client.py:291:4: C5000: reset_documents: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\search\azure-search-documents\azure\search\documents\indexes\_search_indexer_client.py:641:4: C5000: reset_skills: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.search.documents.indexes._search_index_client +sdk\search\azure-search-documents\azure\search\documents\indexes\_search_index_client.py:77:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\search\azure-search-documents\azure\search\documents\indexes\_search_index_client.py:287:4: C5000: analyze_text: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\search\azure-search-documents\azure\search\documents\indexes\_search_index_client.py:627:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------ +Your code has been rated at 9.97/10 (previous run: 9.98/10, -0.01) + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.19/10, +0.81) + + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.97/10, +0.03) + +************* Module azure.mgmt.selfhelp._self_help_mgmt_client +sdk\selfhelp\azure-mgmt-selfhelp\azure\mgmt\selfhelp\_self_help_mgmt_client.py:140:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.serialconsole._microsoft_serial_console_client +sdk\serialconsole\azure-mgmt-serialconsole\azure\mgmt\serialconsole\_microsoft_serial_console_client.py:86:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) + + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) + +************* Module azure.mgmt.servicebus.aio._service_bus_management_client +sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\aio\_service_bus_management_client.py:89:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.servicebus._service_bus_management_client +sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\_service_bus_management_client.py:89:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\_service_bus_management_client.py:507:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.servicebus.v2015_08_01._service_bus_management_client +sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\v2015_08_01\_service_bus_management_client.py:96:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.servicebus.v2017_04_01._service_bus_management_client +sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\v2017_04_01\_service_bus_management_client.py:135:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.servicebus.v2018_01_01_preview._service_bus_management_client +sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\v2018_01_01_preview\_service_bus_management_client.py:151:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.servicebus.v2021_01_01_preview._service_bus_management_client +sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\v2021_01_01_preview\_service_bus_management_client.py:135:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.servicebus.v2021_06_01_preview._service_bus_management_client +sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\v2021_06_01_preview\_service_bus_management_client.py:135:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.servicebus.v2021_11_01._service_bus_management_client +sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\v2021_11_01\_service_bus_management_client.py:134:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.servicebus.v2022_01_01_preview._service_bus_management_client +sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\v2022_01_01_preview\_service_bus_management_client.py:135:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.servicebus.v2022_10_01_preview._service_bus_management_client +sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\v2022_10_01_preview\_service_bus_management_client.py:135:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.servicebus._servicebus_client +sdk\servicebus\azure-servicebus\azure\servicebus\_servicebus_client.py:173:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.servicebus.management._management_client +sdk\servicebus\azure-servicebus\azure\servicebus\management\_management_client.py:1298:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.servicebus._pyamqp.client +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:296:4: C5001: open: Client is using short method names (short-client-method-name) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:349:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:382:4: C5000: auth_complete: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:394:4: C5000: client_ready: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:413:4: C5000: do_work: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:429:4: C5000: mgmt_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:702:4: C5000: send_message: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:942:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:946:4: C5000: receive_message_batch: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:982:4: C5000: receive_messages_iter: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1030:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1041:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1052:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1064:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1078:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1090:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.servicefabric._service_fabric_management_client +sdk\servicefabric\azure-mgmt-servicefabric\azure\mgmt\servicefabric\_service_fabric_management_client.py:122:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.servicefabricmanagedclusters._service_fabric_managed_clusters_management_client +sdk\servicefabricmanagedclusters\azure-mgmt-servicefabricmanagedclusters\azure\mgmt\servicefabricmanagedclusters\_service_fabric_managed_clusters_management_client.py:193:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.67/10, +0.32) + +************* Module azure.mgmt.servicelinker._service_linker_management_client +sdk\servicelinker\azure-mgmt-servicelinker\azure\mgmt\servicelinker\_service_linker_management_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.servicenetworking._service_networking_mgmt_client +sdk\servicenetworking\azure-mgmt-servicenetworking\azure\mgmt\servicenetworking\_service_networking_mgmt_client.py:106:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.signalr._signal_rmanagement_client +sdk\signalr\azure-mgmt-signalr\azure\mgmt\signalr\_signal_rmanagement_client.py:135:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.sphere._azure_sphere_mgmt_client +sdk\sphere\azure-mgmt-sphere\azure\mgmt\sphere\_azure_sphere_mgmt_client.py:133:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.68/10, +0.32) + +************* Module azure.mgmt.springappdiscovery._spring_app_discovery_mgmt_client +sdk\springappdiscovery\azure-mgmt-springappdiscovery\azure\mgmt\springappdiscovery\_spring_app_discovery_mgmt_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.sql._sql_management_client +sdk\sql\azure-mgmt-sql\azure\mgmt\sql\_sql_management_client.py:1074:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.sqlvirtualmachine._sql_virtual_machine_management_client +sdk\sql\azure-mgmt-sqlvirtualmachine\azure\mgmt\sqlvirtualmachine\_sql_virtual_machine_management_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------ +Your code has been rated at 10.00/10 + +************* Module azure.mgmt.standbypool._standby_pool_mgmt_client +sdk\standbypool\azure-mgmt-standbypool\azure\mgmt\standbypool\_standby_pool_mgmt_client.py:126:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.storage._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\_storage_management_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\_storage_management_client.py:1330:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storage.aio._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\aio\_storage_management_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storage.v2016_01_01._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2016_01_01\_storage_management_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storage.v2018_02_01._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2018_02_01\_storage_management_client.py:119:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storage.v2018_03_01_preview._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2018_03_01_preview\_storage_management_client.py:138:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storage.v2018_07_01._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2018_07_01\_storage_management_client.py:131:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storage.v2018_11_01._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2018_11_01\_storage_management_client.py:138:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storage.v2019_04_01._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2019_04_01\_storage_management_client.py:150:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storage.v2019_06_01._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2019_06_01\_storage_management_client.py:205:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storage.v2020_08_01_preview._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2020_08_01_preview\_storage_management_client.py:226:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storage.v2021_01_01._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2021_01_01\_storage_management_client.py:211:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storage.v2021_02_01._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2021_02_01\_storage_management_client.py:211:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storage.v2021_04_01._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2021_04_01\_storage_management_client.py:211:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storage.v2021_06_01._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2021_06_01\_storage_management_client.py:211:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storage.v2021_08_01._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2021_08_01\_storage_management_client.py:217:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storage.v2021_09_01._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2021_09_01\_storage_management_client.py:217:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storage.v2022_05_01._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2022_05_01\_storage_management_client.py:217:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storage.v2022_09_01._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2022_09_01\_storage_management_client.py:217:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storage.v2023_01_01._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2023_01_01\_storage_management_client.py:217:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storage.v2023_05_01._storage_management_client +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2023_05_01\_storage_management_client.py:248:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.storagecache._storage_cache_management_client +sdk\storage\azure-mgmt-storagecache\azure\mgmt\storagecache\_storage_cache_management_client.py:146:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.storage.blob._blob_service_client +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_service_client.py:474:4: C5000: find_blobs_by_tags: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_service_client.py:657:4: C5000: undelete_container: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.storage.blob._lease +sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:65:4: C5001: acquire: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:123:4: C5001: renew: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:178:4: C5001: release: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:231:4: C5001: change: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:284:4: C5000: break_lease: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.storage.blob._container_client +sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:420:4: C5000: acquire_lease: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:536:4: C5001: exists: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:881:4: C5000: walk_blobs: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:937:4: C5000: find_blobs_by_tags: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:972:4: C5000: upload_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:1196:4: C5000: download_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:1207:4: C5000: download_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:1218:4: C5000: download_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.storage.blob._blob_client +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:323:4: C5000: upload_blob_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:432:4: C5000: upload_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:602:4: C5000: download_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:612:4: C5000: download_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:622:4: C5000: download_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:745:4: C5000: query_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:926:4: C5000: undelete_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:959:4: C5001: exists: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1563:4: C5000: start_copy_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1758:4: C5000: abort_copy: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1789:4: C5000: acquire_lease: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1911:4: C5000: stage_block: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1977:4: C5000: stage_block_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:2087:4: C5000: commit_block_list: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:2634:4: C5000: resize_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:2692:4: C5000: upload_page: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:2794:4: C5000: upload_pages_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:2918:4: C5000: clear_page: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:3210:4: C5000: seal_append_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.storage.blob.aio._blob_service_client_async +sdk\storage\azure-storage-blob\azure\storage\blob\aio\_blob_service_client_async.py:477:4: C5000: find_blobs_by_tags: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.storage.blob.aio._container_client_async +sdk\storage\azure-storage-blob\azure\storage\blob\aio\_container_client_async.py:871:4: C5000: walk_blobs: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\aio\_container_client_async.py:927:4: C5000: find_blobs_by_tags: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.storage.filedatalake._data_lake_lease +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:73:4: C5001: acquire: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:114:4: C5001: renew: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:153:4: C5001: release: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:190:4: C5001: change: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:226:4: C5000: break_lease: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.storage.filedatalake._data_lake_service_client +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_service_client.py:125:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_service_client.py:348:4: C5000: undelete_file_system: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.storage.filedatalake._data_lake_directory_client +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_directory_client.py:334:4: C5001: exists: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_directory_client.py:351:4: C5000: rename_directory: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.storage.filedatalake._data_lake_file_client +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_file_client.py:426:4: C5000: upload_data: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_file_client.py:646:4: C5000: flush_data: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_file_client.py:740:4: C5000: download_file: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_file_client.py:802:4: C5001: exists: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_file_client.py:819:4: C5000: rename_file: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_file_client.py:901:4: C5000: query_file: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.storage.filedatalake._file_system_client +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_file_system_client.py:143:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_file_system_client.py:198:4: C5000: acquire_lease: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_file_system_client.py:306:4: C5001: exists: Client is using short method names (short-client-method-name) +************* Module azure.storage.filedatalake._path_client +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_path_client.py:143:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_path_client.py:1072:4: C5000: acquire_lease: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.storage.fileshare._lease +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:72:4: C5001: acquire: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:114:4: C5001: renew: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:150:4: C5001: release: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:179:4: C5001: change: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:211:4: C5000: break_lease: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.storage.fileshare._directory_client +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_directory_client.py:434:4: C5000: rename_directory: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_directory_client.py:622:4: C5000: close_handle: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_directory_client.py:663:4: C5000: close_all_handles: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_directory_client.py:773:4: C5001: exists: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_directory_client.py:935:4: C5000: upload_file: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.storage.fileshare._share_service_client +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_share_service_client.py:419:4: C5000: undelete_share: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.storage.fileshare._file_client +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:331:4: C5000: acquire_lease: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:366:4: C5001: exists: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:508:4: C5000: upload_file: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:645:4: C5000: start_copy_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:781:4: C5000: abort_copy: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:824:4: C5000: download_file: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:940:4: C5000: rename_file: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:1245:4: C5000: upload_range: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:1361:4: C5000: upload_range_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:1576:4: C5000: clear_range: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:1630:4: C5000: resize_file: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:1694:4: C5000: close_handle: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:1734:4: C5000: close_all_handles: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.storage.fileshare._share_client +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_share_client.py:304:4: C5000: acquire_lease: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.storage.queue.aio._queue_client_async +sdk\storage\azure-storage-queue\azure\storage\queue\aio\_queue_client_async.py:618:4: C5000: receive_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.storage.queue._queue_client +sdk\storage\azure-storage-queue\azure\storage\queue\_queue_client.py:440:4: C5000: send_message: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-queue\azure\storage\queue\_queue_client.py:544:4: C5000: receive_message: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-queue\azure\storage\queue\_queue_client.py:614:4: C5000: receive_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-queue\azure\storage\queue\_queue_client.py:837:4: C5000: peek_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-queue\azure\storage\queue\_queue_client.py:910:4: C5000: clear_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------- +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.storageactions._storage_actions_mgmt_client +sdk\storageactions\azure-mgmt-storageactions\azure\mgmt\storageactions\_storage_actions_mgmt_client.py:103:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.99/10, +0.00) + +************* Module azure.mgmt.storagemover._storage_mover_mgmt_client +sdk\storagemover\azure-mgmt-storagemover\azure\mgmt\storagemover\_storage_mover_mgmt_client.py:129:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) + +************* Module azure.mgmt.streamanalytics._stream_analytics_management_client +sdk\streamanalytics\azure-mgmt-streamanalytics\azure\mgmt\streamanalytics\_stream_analytics_management_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.mgmt.subscription._subscription_client +sdk\subscription\azure-mgmt-subscription\azure\mgmt\subscription\_subscription_client.py:100:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.mgmt.synapse._synapse_management_client +sdk\synapse\azure-mgmt-synapse\azure\mgmt\synapse\_synapse_management_client.py:582:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.synapse._synapse_client +sdk\synapse\azure-synapse\azure\synapse\_synapse_client.py:66:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.synapse.accesscontrol._access_control_client +sdk\synapse\azure-synapse\azure\synapse\accesscontrol\_access_control_client.py:55:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.synapse.artifacts._artifacts_client +sdk\synapse\azure-synapse\azure\synapse\artifacts\_artifacts_client.py:105:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.synapse.spark._spark_client +sdk\synapse\azure-synapse\azure\synapse\spark\_spark_client.py:66:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\synapse\azure-synapse-accesscontrol\azure\synapse\accesscontrol\_access_control_client.py:79:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\synapse\azure-synapse-artifacts\azure\synapse\artifacts\_artifacts_client.py:203:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.synapse.managedprivateendpoints._vnet_client +sdk\synapse\azure-synapse-managedprivateendpoints\azure\synapse\managedprivateendpoints\_vnet_client.py:89:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\synapse\azure-synapse-managedprivateendpoints\azure\synapse\managedprivateendpoints\_vnet_client.py:119:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.synapse.managedprivateendpoints.v2020_12_01._vnet_client +sdk\synapse\azure-synapse-managedprivateendpoints\azure\synapse\managedprivateendpoints\v2020_12_01\_vnet_client.py:74:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.synapse.managedprivateendpoints.aio._vnet_client +sdk\synapse\azure-synapse-managedprivateendpoints\azure\synapse\managedprivateendpoints\aio\_vnet_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) +************* Module azure.synapse.managedprivateendpoints.v2021_06_01_preview._vnet_client +sdk\synapse\azure-synapse-managedprivateendpoints\azure\synapse\managedprivateendpoints\v2021_06_01_preview\_vnet_client.py:74:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.synapse.monitoring._monitoring_client +sdk\synapse\azure-synapse-monitoring\azure\synapse\monitoring\_monitoring_client.py:74:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\synapse\azure-synapse-spark\azure\synapse\spark\_spark_client.py:87:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + +************* Module azure.data.tables._base_client +sdk\tables\azure-data-tables\azure\data\tables\_base_client.py:299:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.data.tables._table_service_client +sdk\tables\azure-data-tables\azure\data\tables\_table_service_client.py:243:4: C5000: query_tables: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.data.tables.aio._table_client_async +sdk\tables\azure-data-tables\azure\data\tables\aio\_table_client_async.py:642:4: C5000: query_entities: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.data.tables._table_client +sdk\tables\azure-data-tables\azure\data\tables\_table_client.py:641:4: C5000: query_entities: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\tables\azure-data-tables\azure\data\tables\_table_client.py:838:4: C5000: submit_transaction: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\tables\azure-data-tables\azure\data\tables\_table_client.py:875:4: C5000: submit_transaction: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\tables\azure-data-tables\azure\data\tables\_table_client.py:902:4: C5000: submit_transaction: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.data.tables.aio._table_service_client_async +sdk\tables\azure-data-tables\azure\data\tables\aio\_table_service_client_async.py:270:4: C5000: query_tables: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------- +Your code has been rated at 9.97/10 (previous run: 10.00/10, -0.03) + + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.97/10, +0.03) + +************* Module azure.ai.textanalytics._text_analytics_client +sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:164:4: C5000: detect_language: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:271:4: C5000: recognize_entities: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:382:4: C5000: recognize_pii_entities: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:507:4: C5000: recognize_linked_entities: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:829:4: C5000: extract_key_phrases: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:934:4: C5000: analyze_sentiment: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------- +Your code has been rated at 9.97/10 (previous run: 10.00/10, -0.03) + +************* Module azure.mgmt.timeseriesinsights._time_series_insights_client +sdk\timeseriesinsights\azure-mgmt-timeseriesinsights\azure\mgmt\timeseriesinsights\_time_series_insights_client.py:118:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.97/10, +0.03) + +************* Module azure.mgmt.trafficmanager._traffic_manager_management_client +sdk\trafficmanager\azure-mgmt-trafficmanager\azure\mgmt\trafficmanager\_traffic_manager_management_client.py:105:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + +************* Module azure.ai.translation.document._patch +sdk\translation\azure-ai-translation-document\azure\ai\translation\document\_patch.py:977:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\translation\azure-ai-translation-document\azure\ai\translation\document\_patch.py:1152:4: C5000: cancel_translation: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.ai.translation.document._client +sdk\translation\azure-ai-translation-document\azure\ai\translation\document\_client.py:71:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\translation\azure-ai-translation-document\azure\ai\translation\document\_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\translation\azure-ai-translation-document\azure\ai\translation\document\_client.py:151:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\translation\azure-ai-translation-document\azure\ai\translation\document\_client.py:177:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.ai.translation.document.aio._client +sdk\translation\azure-ai-translation-document\azure\ai\translation\document\aio\_client.py:73:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\translation\azure-ai-translation-document\azure\ai\translation\document\aio\_client.py:157:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.ai.translation.text._client +sdk\translation\azure-ai-translation-text\azure\ai\translation\text\_client.py:81:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\translation\azure-ai-translation-text\azure\ai\translation\text\_client.py:107:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.ai.translation.text.aio._client +sdk\translation\azure-ai-translation-text\azure\ai\translation\text\aio\_client.py:81:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------- +Your code has been rated at 9.97/10 (previous run: 10.00/10, -0.02) + + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.97/10, +0.03) + +************* Module azure.ai.vision.imageanalysis._client +sdk\vision\azure-ai-vision-imageanalysis\azure\ai\vision\imageanalysis\_client.py:68:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\vision\azure-ai-vision-imageanalysis\azure\ai\vision\imageanalysis\_client.py:94:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.ai.vision.imageanalysis._patch +sdk\vision\azure-ai-vision-imageanalysis\azure\ai\vision\imageanalysis\_patch.py:33:4: C5000: analyze_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\vision\azure-ai-vision-imageanalysis\azure\ai\vision\imageanalysis\_patch.py:93:4: C5001: analyze: Client is using short method names (short-client-method-name) +************* Module azure.ai.vision.imageanalysis.aio._client +sdk\vision\azure-ai-vision-imageanalysis\azure\ai\vision\imageanalysis\aio\_client.py:70:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) + +------------------------------------------------------------------- +Your code has been rated at 9.96/10 (previous run: 10.00/10, -0.04) + +************* Module azure.mgmt.voiceservices._voice_services_mgmt_client +sdk\voiceservices\azure-mgmt-voiceservices\azure\mgmt\voiceservices\_voice_services_mgmt_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.96/10, +0.04) + +************* Module azure.messaging.webpubsubclient._client +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:428:4: C5000: join_group: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:450:4: C5000: leave_group: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:469:4: C5000: send_event: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:492:4: C5000: send_event: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:516:4: C5000: send_event: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:538:4: C5000: send_event: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:578:4: C5000: send_to_group: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:600:4: C5000: send_to_group: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:622:4: C5000: send_to_group: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:644:4: C5000: send_to_group: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:781:4: C5000: is_connected: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1036:4: C5001: open: Client is using short method names (short-client-method-name) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1051:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1081:4: C5001: subscribe: Client is using short method names (short-client-method-name) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1094:4: C5001: subscribe: Client is using short method names (short-client-method-name) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1107:4: C5001: subscribe: Client is using short method names (short-client-method-name) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1120:4: C5001: subscribe: Client is using short method names (short-client-method-name) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1133:4: C5001: subscribe: Client is using short method names (short-client-method-name) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1146:4: C5001: subscribe: Client is using short method names (short-client-method-name) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1159:4: C5001: subscribe: Client is using short method names (short-client-method-name) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1177:4: C5001: unsubscribe: Client is using short method names (short-client-method-name) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1190:4: C5001: unsubscribe: Client is using short method names (short-client-method-name) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1203:4: C5001: unsubscribe: Client is using short method names (short-client-method-name) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1216:4: C5001: unsubscribe: Client is using short method names (short-client-method-name) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1229:4: C5001: unsubscribe: Client is using short method names (short-client-method-name) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1242:4: C5001: unsubscribe: Client is using short method names (short-client-method-name) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1255:4: C5001: unsubscribe: Client is using short method names (short-client-method-name) +************* Module azure.messaging.webpubsubservice._client +sdk\webpubsub\azure-messaging-webpubsubservice\azure\messaging\webpubsubservice\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubservice\azure\messaging\webpubsubservice\_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.messaging.webpubsubclient.aio._client +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\aio\_client.py:694:4: C5000: is_connected: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.messaging.webpubsubservice.aio._client +sdk\webpubsub\azure-messaging-webpubsubservice\azure\messaging\webpubsubservice\aio\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +************* Module azure.mgmt.webpubsub._web_pub_sub_management_client +sdk\webpubsub\azure-mgmt-webpubsub\azure\mgmt\webpubsub\_web_pub_sub_management_client.py:140:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 9.96/10 (previous run: 10.00/10, -0.04) + + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) + +************* Module azure.mgmt.workloads._workloads_mgmt_client +sdk\workloads\azure-mgmt-workloads\azure\mgmt\workloads\_workloads_mgmt_client.py:132:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.mgmt.workloadssapvirtualinstance._workloads_sap_virtual_instance_mgmt_client +sdk\workloads\azure-mgmt-workloadssapvirtualinstance\azure\mgmt\workloadssapvirtualinstance\_workloads_sap_virtual_instance_mgmt_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) + From 3d051d7e1223b9d9d32c6a778b9bacefc20056ef Mon Sep 17 00:00:00 2001 From: Joshua Bishop <13187637+MJoshuaB@users.noreply.github.com> Date: Thu, 29 Aug 2024 18:51:36 +1200 Subject: [PATCH 07/31] add ranked listing of reports --- .../reportcounts.txt | 216 ++++++++++++++++++ 1 file changed, 216 insertions(+) create mode 100644 tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.txt diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.txt b/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.txt new file mode 100644 index 00000000000..789f926e588 --- /dev/null +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.txt @@ -0,0 +1,216 @@ +777 close +121 send_request +74 models +12 settle_messages +10 exists +8 embed +7 unsubscribe +7 subscribe +7 download_blob +6 complete +6 acquire_lease +5 send_event +4 send_to_group +4 send_message +4 find_blobs_by_tags +4 detect_from_url +3 upload +3 renew +3 release +3 open +3 download +3 change +3 acquire +3 upload_file +3 upload_blob +3 submit_transaction +3 start_recording +3 break_lease +2 send +2 rank +2 walk_blobs +2 start_copy_from_url +2 search_operator_information +2 reset_policy +2 request_token +2 rename_file +2 rename_directory +2 receive_messages_iter +2 receive_messages +2 receive_message_batch +2 query_twins +2 query_tables +2 query_resource +2 query_entities +2 query_databases +2 mgmt_request +2 is_connected +2 exchange_refresh_token_for_access_token +2 do_work +2 download_file +2 detect_language +2 close_handle +2 close_all_handles +2 client_ready +2 auth_complete +2 abort_copy +1 verify +1 unhold +1 timeout +1 suggest +1 sign +1 sentiment +1 search +1 reward +1 receive +1 query +1 post +1 logs +1 hold +1 flush +1 entities +1 encrypt +1 detect +1 decrypt +1 autocomplete +1 analyze +1 activate +1 wrap_key +1 with_filter +1 wait_for_operation_status_success_default_callback +1 wait_for_operation_status_progress_default_callback +1 wait_for_operation_status_failure_default_callback +1 wait_for_operation_status +1 upload_range_from_url +1 upload_range +1 upload_pages_from_url +1 upload_page +1 upload_documents +1 upload_dir +1 upload_data +1 upload_blob_from_url +1 unwrap_key +1 undelete_share +1 undelete_file_system +1 undelete_container +1 undelete_blob +1 transfer_call_to_participant +1 train_custom_model +1 stop_transcription +1 stop_rendering_session +1 stop_recording +1 stop_hold_music +1 stop_continuous_dtmf_recognition +1 start_transcription +1 start_recognizing_media +1 start_hold_music +1 start_continuous_dtmf_recognition +1 stage_block_from_url +1 stage_block +1 should_use_requests +1 setup_session_after_init +1 send_typing_notification +1 send_signal_message +1 send_signal_and_wait_for_annotation +1 send_request_headers +1 send_request_body +1 send_read_receipt +1 send_message_to_al +1 send_dtmf_tones +1 send_batch +1 seal_append_blob +1 run_indexer +1 rotate_key +1 reward_multi_slot +1 revoke_tokens +1 resume_recording +1 restore_secret_backup +1 restore_key_backup +1 restore_certificate_backup +1 resize_file +1 resize_blob +1 reset_skills +1 reset_model +1 reset_indexer +1 reset_documents +1 release_key +1 reject_call +1 register_schema +1 refresh_data_feed_ingestion +1 redirect_call +1 recover_snapshot +1 reconnect_and_attempt_session_init +1 recognize_pii_entities +1 recognize_linked_entities +1 recognize_entities +1 receive_message +1 receive_batch +1 rank_multi_slot +1 query_workspace +1 query_resources +1 query_file +1 query_blob +1 query_batch +1 purge_deleted_secret +1 purge_deleted_key +1 purge_deleted_certificate +1 publish_telemetry +1 publish_component_telemetry +1 play_media_to_all +1 play_media +1 perform_request +1 perform_put +1 perform_post +1 perform_get +1 perform_delete +1 peek_messages +1 pause_recording +1 obtain_token_on_behalf_of +1 obtain_token_by_refresh_token +1 obtain_token_by_jwt_assertion +1 obtain_token_by_client_secret +1 obtain_token_by_client_certificate +1 obtain_token_by_authorization_code +1 mute_participant +1 merge_or_upload_documents +1 merge_documents +1 merge_certificate +1 leave_group +1 key_phrases +1 join_group +1 invoke_dev_container +1 index_documents +1 import_model +1 import_key +1 import_certificate +1 hang_up +1 flush_data +1 extract_key_phrases +1 export_model +1 exchange_aad_token_for_refresh_token +1 download_recording +1 decommission_model +1 commit_block_list +1 clear_range +1 clear_page +1 clear_messages +1 cancel_translation +1 cancel_certificate_operation +1 cancel_all_media_operations +1 cancel_add_participant_operation +1 build_index_on_cloud +1 bounded_chat_completion +1 backup_secret +1 backup_key +1 backup_certificate +1 attest_tpm +1 attest_sgx_enclave +1 attest_open_enclave +1 archive_snapshot +1 apply_from_evaluation +1 answer_call +1 analyze_with_custom_model +1 analyze_text +1 analyze_sentiment +1 analyze_from_url +1 activate_multi_slot From fdf6db70c4b07f288adc9682e7a9676e305a7ab4 Mon Sep 17 00:00:00 2001 From: Joshua Bishop <13187637+MJoshuaB@users.noreply.github.com> Date: Fri, 30 Aug 2024 09:25:27 +1200 Subject: [PATCH 08/31] format report as table --- .../reportcounts.md | 218 ++++++++++++++++++ .../reportcounts.txt | 216 ----------------- 2 files changed, 218 insertions(+), 216 deletions(-) create mode 100644 tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md delete mode 100644 tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.txt diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md b/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md new file mode 100644 index 00000000000..603001de12c --- /dev/null +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md @@ -0,0 +1,218 @@ +|Method|Message|Count| +|------|-------|-----| +|close|too-short|777| +|send_request|bad-prefix|121| +|models|too-short|74| +|settle_messages|bad-prefix|12| +|exists|too-short|10| +|embed|too-short|8| +|unsubscribe|too-short|7| +|subscribe|too-short|7| +|download_blob|bad-prefix|7| +|complete|too-short|6| +|acquire_lease|bad-prefix|6| +|send_event|bad-prefix|5| +|send_to_group|bad-prefix|4| +|send_message|bad-prefix|4| +|find_blobs_by_tags|bad-prefix|4| +|detect_from_url|bad-prefix|4| +|upload|too-short|3| +|renew|too-short|3| +|release|too-short|3| +|open|too-short|3| +|download|too-short|3| +|change|too-short|3| +|acquire|too-short|3| +|upload_file|bad-prefix|3| +|upload_blob|bad-prefix|3| +|submit_transaction|bad-prefix|3| +|start_recording|bad-prefix|3| +|break_lease|bad-prefix|3| +|send|too-short|2| +|rank|too-short|2| +|walk_blobs|bad-prefix|2| +|start_copy_from_url|bad-prefix|2| +|search_operator_information|bad-prefix|2| +|reset_policy|bad-prefix|2| +|request_token|bad-prefix|2| +|rename_file|bad-prefix|2| +|rename_directory|bad-prefix|2| +|receive_messages_iter|bad-prefix|2| +|receive_messages|bad-prefix|2| +|receive_message_batch|bad-prefix|2| +|query_twins|bad-prefix|2| +|query_tables|bad-prefix|2| +|query_resource|bad-prefix|2| +|query_entities|bad-prefix|2| +|query_databases|bad-prefix|2| +|mgmt_request|bad-prefix|2| +|is_connected|bad-prefix|2| +|exchange_refresh_token_for_access_token|bad-prefix|2| +|do_work|bad-prefix|2| +|download_file|bad-prefix|2| +|detect_language|bad-prefix|2| +|close_handle|bad-prefix|2| +|close_all_handles|bad-prefix|2| +|client_ready|bad-prefix|2| +|auth_complete|bad-prefix|2| +|abort_copy|bad-prefix|2| +|verify|too-short|1| +|unhold|too-short|1| +|timeout|too-short|1| +|suggest|too-short|1| +|sign|too-short|1| +|sentiment|too-short|1| +|search|too-short|1| +|reward|too-short|1| +|receive|too-short|1| +|query|too-short|1| +|post|too-short|1| +|logs|too-short|1| +|hold|too-short|1| +|flush|too-short|1| +|entities|too-short|1| +|encrypt|too-short|1| +|detect|too-short|1| +|decrypt|too-short|1| +|autocomplete|too-short|1| +|analyze|too-short|1| +|activate|too-short|1| +|wrap_key|bad-prefix|1| +|with_filter|bad-prefix|1| +|wait_for_operation_status_success_default_callback|bad-prefix|1| +|wait_for_operation_status_progress_default_callback|bad-prefix|1| +|wait_for_operation_status_failure_default_callback|bad-prefix|1| +|wait_for_operation_status|bad-prefix|1| +|upload_range_from_url|bad-prefix|1| +|upload_range|bad-prefix|1| +|upload_pages_from_url|bad-prefix|1| +|upload_page|bad-prefix|1| +|upload_documents|bad-prefix|1| +|upload_dir|bad-prefix|1| +|upload_data|bad-prefix|1| +|upload_blob_from_url|bad-prefix|1| +|unwrap_key|bad-prefix|1| +|undelete_share|bad-prefix|1| +|undelete_file_system|bad-prefix|1| +|undelete_container|bad-prefix|1| +|undelete_blob|bad-prefix|1| +|transfer_call_to_participant|bad-prefix|1| +|train_custom_model|bad-prefix|1| +|stop_transcription|bad-prefix|1| +|stop_rendering_session|bad-prefix|1| +|stop_recording|bad-prefix|1| +|stop_hold_music|bad-prefix|1| +|stop_continuous_dtmf_recognition|bad-prefix|1| +|start_transcription|bad-prefix|1| +|start_recognizing_media|bad-prefix|1| +|start_hold_music|bad-prefix|1| +|start_continuous_dtmf_recognition|bad-prefix|1| +|stage_block_from_url|bad-prefix|1| +|stage_block|bad-prefix|1| +|should_use_requests|bad-prefix|1| +|setup_session_after_init|bad-prefix|1| +|send_typing_notification|bad-prefix|1| +|send_signal_message|bad-prefix|1| +|send_signal_and_wait_for_annotation|bad-prefix|1| +|send_request_headers|bad-prefix|1| +|send_request_body|bad-prefix|1| +|send_read_receipt|bad-prefix|1| +|send_message_to_al|bad-prefix|1| +|send_dtmf_tones|bad-prefix|1| +|send_batch|bad-prefix|1| +|seal_append_blob|bad-prefix|1| +|run_indexer|bad-prefix|1| +|rotate_key|bad-prefix|1| +|reward_multi_slot|bad-prefix|1| +|revoke_tokens|bad-prefix|1| +|resume_recording|bad-prefix|1| +|restore_secret_backup|bad-prefix|1| +|restore_key_backup|bad-prefix|1| +|restore_certificate_backup|bad-prefix|1| +|resize_file|bad-prefix|1| +|resize_blob|bad-prefix|1| +|reset_skills|bad-prefix|1| +|reset_model|bad-prefix|1| +|reset_indexer|bad-prefix|1| +|reset_documents|bad-prefix|1| +|release_key|bad-prefix|1| +|reject_call|bad-prefix|1| +|register_schema|bad-prefix|1| +|refresh_data_feed_ingestion|bad-prefix|1| +|redirect_call|bad-prefix|1| +|recover_snapshot|bad-prefix|1| +|reconnect_and_attempt_session_init|bad-prefix|1| +|recognize_pii_entities|bad-prefix|1| +|recognize_linked_entities|bad-prefix|1| +|recognize_entities|bad-prefix|1| +|receive_message|bad-prefix|1| +|receive_batch|bad-prefix|1| +|rank_multi_slot|bad-prefix|1| +|query_workspace|bad-prefix|1| +|query_resources|bad-prefix|1| +|query_file|bad-prefix|1| +|query_blob|bad-prefix|1| +|query_batch|bad-prefix|1| +|purge_deleted_secret|bad-prefix|1| +|purge_deleted_key|bad-prefix|1| +|purge_deleted_certificate|bad-prefix|1| +|publish_telemetry|bad-prefix|1| +|publish_component_telemetry|bad-prefix|1| +|play_media_to_all|bad-prefix|1| +|play_media|bad-prefix|1| +|perform_request|bad-prefix|1| +|perform_put|bad-prefix|1| +|perform_post|bad-prefix|1| +|perform_get|bad-prefix|1| +|perform_delete|bad-prefix|1| +|peek_messages|bad-prefix|1| +|pause_recording|bad-prefix|1| +|obtain_token_on_behalf_of|bad-prefix|1| +|obtain_token_by_refresh_token|bad-prefix|1| +|obtain_token_by_jwt_assertion|bad-prefix|1| +|obtain_token_by_client_secret|bad-prefix|1| +|obtain_token_by_client_certificate|bad-prefix|1| +|obtain_token_by_authorization_code|bad-prefix|1| +|mute_participant|bad-prefix|1| +|merge_or_upload_documents|bad-prefix|1| +|merge_documents|bad-prefix|1| +|merge_certificate|bad-prefix|1| +|leave_group|bad-prefix|1| +|key_phrases|bad-prefix|1| +|join_group|bad-prefix|1| +|invoke_dev_container|bad-prefix|1| +|index_documents|bad-prefix|1| +|import_model|bad-prefix|1| +|import_key|bad-prefix|1| +|import_certificate|bad-prefix|1| +|hang_up|bad-prefix|1| +|flush_data|bad-prefix|1| +|extract_key_phrases|bad-prefix|1| +|export_model|bad-prefix|1| +|exchange_aad_token_for_refresh_token|bad-prefix|1| +|download_recording|bad-prefix|1| +|decommission_model|bad-prefix|1| +|commit_block_list|bad-prefix|1| +|clear_range|bad-prefix|1| +|clear_page|bad-prefix|1| +|clear_messages|bad-prefix|1| +|cancel_translation|bad-prefix|1| +|cancel_certificate_operation|bad-prefix|1| +|cancel_all_media_operations|bad-prefix|1| +|cancel_add_participant_operation|bad-prefix|1| +|build_index_on_cloud|bad-prefix|1| +|bounded_chat_completion|bad-prefix|1| +|backup_secret|bad-prefix|1| +|backup_key|bad-prefix|1| +|backup_certificate|bad-prefix|1| +|attest_tpm|bad-prefix|1| +|attest_sgx_enclave|bad-prefix|1| +|attest_open_enclave|bad-prefix|1| +|archive_snapshot|bad-prefix|1| +|apply_from_evaluation|bad-prefix|1| +|answer_call|bad-prefix|1| +|analyze_with_custom_model|bad-prefix|1| +|analyze_text|bad-prefix|1| +|analyze_sentiment|bad-prefix|1| +|analyze_from_url|bad-prefix|1| +|activate_multi_slot|bad-prefix|1| diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.txt b/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.txt deleted file mode 100644 index 789f926e588..00000000000 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.txt +++ /dev/null @@ -1,216 +0,0 @@ -777 close -121 send_request -74 models -12 settle_messages -10 exists -8 embed -7 unsubscribe -7 subscribe -7 download_blob -6 complete -6 acquire_lease -5 send_event -4 send_to_group -4 send_message -4 find_blobs_by_tags -4 detect_from_url -3 upload -3 renew -3 release -3 open -3 download -3 change -3 acquire -3 upload_file -3 upload_blob -3 submit_transaction -3 start_recording -3 break_lease -2 send -2 rank -2 walk_blobs -2 start_copy_from_url -2 search_operator_information -2 reset_policy -2 request_token -2 rename_file -2 rename_directory -2 receive_messages_iter -2 receive_messages -2 receive_message_batch -2 query_twins -2 query_tables -2 query_resource -2 query_entities -2 query_databases -2 mgmt_request -2 is_connected -2 exchange_refresh_token_for_access_token -2 do_work -2 download_file -2 detect_language -2 close_handle -2 close_all_handles -2 client_ready -2 auth_complete -2 abort_copy -1 verify -1 unhold -1 timeout -1 suggest -1 sign -1 sentiment -1 search -1 reward -1 receive -1 query -1 post -1 logs -1 hold -1 flush -1 entities -1 encrypt -1 detect -1 decrypt -1 autocomplete -1 analyze -1 activate -1 wrap_key -1 with_filter -1 wait_for_operation_status_success_default_callback -1 wait_for_operation_status_progress_default_callback -1 wait_for_operation_status_failure_default_callback -1 wait_for_operation_status -1 upload_range_from_url -1 upload_range -1 upload_pages_from_url -1 upload_page -1 upload_documents -1 upload_dir -1 upload_data -1 upload_blob_from_url -1 unwrap_key -1 undelete_share -1 undelete_file_system -1 undelete_container -1 undelete_blob -1 transfer_call_to_participant -1 train_custom_model -1 stop_transcription -1 stop_rendering_session -1 stop_recording -1 stop_hold_music -1 stop_continuous_dtmf_recognition -1 start_transcription -1 start_recognizing_media -1 start_hold_music -1 start_continuous_dtmf_recognition -1 stage_block_from_url -1 stage_block -1 should_use_requests -1 setup_session_after_init -1 send_typing_notification -1 send_signal_message -1 send_signal_and_wait_for_annotation -1 send_request_headers -1 send_request_body -1 send_read_receipt -1 send_message_to_al -1 send_dtmf_tones -1 send_batch -1 seal_append_blob -1 run_indexer -1 rotate_key -1 reward_multi_slot -1 revoke_tokens -1 resume_recording -1 restore_secret_backup -1 restore_key_backup -1 restore_certificate_backup -1 resize_file -1 resize_blob -1 reset_skills -1 reset_model -1 reset_indexer -1 reset_documents -1 release_key -1 reject_call -1 register_schema -1 refresh_data_feed_ingestion -1 redirect_call -1 recover_snapshot -1 reconnect_and_attempt_session_init -1 recognize_pii_entities -1 recognize_linked_entities -1 recognize_entities -1 receive_message -1 receive_batch -1 rank_multi_slot -1 query_workspace -1 query_resources -1 query_file -1 query_blob -1 query_batch -1 purge_deleted_secret -1 purge_deleted_key -1 purge_deleted_certificate -1 publish_telemetry -1 publish_component_telemetry -1 play_media_to_all -1 play_media -1 perform_request -1 perform_put -1 perform_post -1 perform_get -1 perform_delete -1 peek_messages -1 pause_recording -1 obtain_token_on_behalf_of -1 obtain_token_by_refresh_token -1 obtain_token_by_jwt_assertion -1 obtain_token_by_client_secret -1 obtain_token_by_client_certificate -1 obtain_token_by_authorization_code -1 mute_participant -1 merge_or_upload_documents -1 merge_documents -1 merge_certificate -1 leave_group -1 key_phrases -1 join_group -1 invoke_dev_container -1 index_documents -1 import_model -1 import_key -1 import_certificate -1 hang_up -1 flush_data -1 extract_key_phrases -1 export_model -1 exchange_aad_token_for_refresh_token -1 download_recording -1 decommission_model -1 commit_block_list -1 clear_range -1 clear_page -1 clear_messages -1 cancel_translation -1 cancel_certificate_operation -1 cancel_all_media_operations -1 cancel_add_participant_operation -1 build_index_on_cloud -1 bounded_chat_completion -1 backup_secret -1 backup_key -1 backup_certificate -1 attest_tpm -1 attest_sgx_enclave -1 attest_open_enclave -1 archive_snapshot -1 apply_from_evaluation -1 answer_call -1 analyze_with_custom_model -1 analyze_text -1 analyze_sentiment -1 analyze_from_url -1 activate_multi_slot From fb160d5d921c6c022d919515296174c60562a9e7 Mon Sep 17 00:00:00 2001 From: Joshua Bishop <13187637+MJoshuaB@users.noreply.github.com> Date: Mon, 2 Sep 2024 11:31:24 +1200 Subject: [PATCH 09/31] add new verbs --- .../pylint_guidelines_checker.py | 35 ++++++------ .../tests/test_pylint_custom_plugins.py | 55 ++++++------------- 2 files changed, 35 insertions(+), 55 deletions(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index 51d61c75683..9a72dbd0546 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -239,16 +239,10 @@ class ClientHasApprovedMethodNamePrefix(BaseChecker): priority = -1 msgs = { "C5000": ( - "%s: Client is not using an approved method name prefix. See details:" - " https://azure.github.io/azure-sdk/python_design.html#service-operations", + "%s", "unapproved-client-method-name-prefix", "All clients should use the preferred verbs for method names.", ), - "C5001": ( - "%s: Client is using short method names", - "short-client-method-name", - "Client method names should be descriptive.", - ) } ignore_clients = [ @@ -271,6 +265,15 @@ class ClientHasApprovedMethodNamePrefix(BaseChecker): "delete", "remove", "begin", + "upload", + "download", + "close", + "cancel", + "clear", + "subscribe", + "send", + "query", + "analyze", ] def __init__(self, linter=None): @@ -285,6 +288,13 @@ def _is_property(self, node): return True return False + def _get_namespace(self, node): + path = node.root().file.split("/") + if len(path) == 1: + return self.process_class.name + namespace = ".".join(path[path.index("azure"):-1]) + "." + self.process_class.name + return namespace + def visit_classdef(self, node): if node.name.endswith("Client") and node.name not in self.ignore_clients: self.process_class = node @@ -302,17 +312,10 @@ def visit_functiondef(self, node): # check for approved prefix parts = node.name.split("_") - if len(parts) < 2 and parts[0].lower() not in self.approved_prefixes: - self.add_message( - msgid="short-client-method-name", - args=node.name, - node=node, - confidence=None, - ) - elif parts[0].lower() not in self.approved_prefixes: + if parts[0].lower() not in self.approved_prefixes: self.add_message( msgid="unapproved-client-method-name-prefix", - args=node.name, + args=self._get_namespace(node) + "::" + node.name, node=node, confidence=None, ) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py index 145085f144a..443a242b882 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py @@ -680,7 +680,7 @@ def removes_thing(self): #@ with self.assertAddsMessages( pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", - args=func_node_a.name, + args="SomeClient::" + func_node_a.name, line=4, node=func_node_a, col_offset=4, @@ -689,7 +689,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", - args=func_node_b.name, + args="SomeClient::" + func_node_b.name, line=6, node=func_node_b, col_offset=4, @@ -698,7 +698,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", - args=func_node_c.name, + args="SomeClient::" + func_node_c.name, line=8, node=func_node_c, col_offset=4, @@ -707,7 +707,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", - args=func_node_d.name, + args="SomeClient::" + func_node_d.name, line=10, node=func_node_d, col_offset=4, @@ -716,7 +716,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", - args=func_node_e.name, + args="SomeClient::" + func_node_e.name, line=12, node=func_node_e, col_offset=4, @@ -725,7 +725,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", - args=func_node_f.name, + args="SomeClient::" + func_node_f.name, line=14, node=func_node_f, col_offset=4, @@ -734,7 +734,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", - args=func_node_g.name, + args="SomeClient::" + func_node_g.name, line=16, node=func_node_g, col_offset=4, @@ -743,7 +743,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", - args=func_node_h.name, + args="SomeClient::" + func_node_h.name, line=18, node=func_node_h, col_offset=4, @@ -752,7 +752,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", - args=func_node_i.name, + args="SomeClient::" + func_node_i.name, line=20, node=func_node_i, col_offset=4, @@ -761,7 +761,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", - args=func_node_j.name, + args="SomeClient::" + func_node_j.name, line=22, node=func_node_j, col_offset=4, @@ -770,7 +770,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", - args=func_node_k.name, + args="SomeClient::" + func_node_k.name, line=24, node=func_node_k, col_offset=4, @@ -779,7 +779,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", - args=func_node_l.name, + args="SomeClient::" + func_node_l.name, line=26, node=func_node_l, col_offset=4, @@ -788,7 +788,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", - args=func_node_m.name, + args="SomeClient::" + func_node_m.name, line=28, node=func_node_m, col_offset=4, @@ -797,7 +797,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", - args=func_node_n.name, + args="SomeClient::" + func_node_n.name, line=30, node=func_node_n, col_offset=4, @@ -806,7 +806,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", - args=func_node_o.name, + args="SomeClient::" + func_node_o.name, line=32, node=func_node_o, col_offset=4, @@ -815,7 +815,7 @@ def removes_thing(self): #@ ), pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", - args=func_node_p.name, + args="SomeClient::" + func_node_p.name, line=34, node=func_node_p, col_offset=4, @@ -859,29 +859,6 @@ def thing(self): #@ self.checker.visit_classdef(class_node) self.checker.visit_functiondef(property_node) - def test_finds_short_name(self): - class_node, func_node = astroid.extract_node( - """ - class SomeClient(): #@ - def close(self): #@ - pass - """ - ) - - with self.assertAddsMessages( - pylint.testutils.MessageTest( - msg_id="short-client-method-name", - args=func_node.name, - line=3, - node=func_node, - col_offset=4, - end_line=3, - end_col_offset=13, - ) - ): - self.checker.visit_classdef(class_node) - self.checker.visit_functiondef(func_node) - def test_guidelines_link_active(self): url = "https://azure.github.io/azure-sdk/python_design.html#service-operations" config = Configuration() From f06c915fabbd0de598ba9983d87df97615ba44e9 Mon Sep 17 00:00:00 2001 From: Joshua Bishop <13187637+MJoshuaB@users.noreply.github.com> Date: Mon, 2 Sep 2024 14:45:12 +1200 Subject: [PATCH 10/31] update report --- .../pylintreport.txt | 3044 ++++------------- 1 file changed, 647 insertions(+), 2397 deletions(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylintreport.txt b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylintreport.txt index 20819964a6e..2aa243fd734 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylintreport.txt +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylintreport.txt @@ -1,384 +1,165 @@ -************* Module azure.mgmt.advisor._advisor_management_client -sdk\advisor\azure-mgmt-advisor\azure\mgmt\advisor\_advisor_management_client.py:102:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.99/10, +0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.agrifood.farming._client -sdk\agrifood\azure-agrifood-farming\azure\agrifood\farming\_client.py:222:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\agrifood\azure-agrifood-farming\azure\agrifood\farming\_client.py:244:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.agrifood.farming.aio._client -sdk\agrifood\azure-agrifood-farming\azure\agrifood\farming\aio\_client.py:224:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.mgmt.agrifood._agri_food_mgmt_client -sdk\agrifood\azure-mgmt-agrifood\azure\mgmt\agrifood\_agri_food_mgmt_client.py:132:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ************* Module azure.ai.generative.evaluate._client.openai_client -sdk\ai\azure-ai-generative\azure\ai\generative\evaluate\_client\openai_client.py:43:4: C5000: bounded_chat_completion: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-generative\azure\ai\generative\evaluate\_client\openai_client.py:43:4: C5000: AzureOpenAIClient::bounded_chat_completion (unapproved-client-method-name-prefix) ************* Module azure.ai.generative.synthetic.simulator._conversation.augloop_client -sdk\ai\azure-ai-generative\azure\ai\generative\synthetic\simulator\_conversation\augloop_client.py:115:4: C5000: send_signal_and_wait_for_annotation: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-generative\azure\ai\generative\synthetic\simulator\_conversation\augloop_client.py:191:4: C5000: send_message_to_al: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-generative\azure\ai\generative\synthetic\simulator\_conversation\augloop_client.py:208:4: C5000: send_signal_message: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-generative\azure\ai\generative\synthetic\simulator\_conversation\augloop_client.py:217:4: C5000: reconnect_and_attempt_session_init: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-generative\azure\ai\generative\synthetic\simulator\_conversation\augloop_client.py:265:4: C5000: setup_session_after_init: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.ai.inference._client -sdk\ai\azure-ai-inference\azure\ai\inference\_client.py:76:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-inference\azure\ai\inference\_client.py:102:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\ai\azure-ai-inference\azure\ai\inference\_client.py:154:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-inference\azure\ai\inference\_client.py:180:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\ai\azure-ai-inference\azure\ai\inference\_client.py:232:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-inference\azure\ai\inference\_client.py:258:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\ai\azure-ai-generative\azure\ai\generative\synthetic\simulator\_conversation\augloop_client.py:217:4: C5000: AugLoopClient::reconnect_and_attempt_session_init (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-generative\azure\ai\generative\synthetic\simulator\_conversation\augloop_client.py:265:4: C5000: AugLoopClient::setup_session_after_init (unapproved-client-method-name-prefix) ************* Module azure.ai.inference._patch -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:255:4: C5001: complete: Client is using short method names (short-client-method-name) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:278:4: C5001: complete: Client is using short method names (short-client-method-name) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:301:4: C5001: complete: Client is using short method names (short-client-method-name) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:412:4: C5001: complete: Client is using short method names (short-client-method-name) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:436:4: C5001: complete: Client is using short method names (short-client-method-name) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:460:4: C5001: complete: Client is using short method names (short-client-method-name) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:733:4: C5001: embed: Client is using short method names (short-client-method-name) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:775:4: C5001: embed: Client is using short method names (short-client-method-name) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:797:4: C5001: embed: Client is using short method names (short-client-method-name) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:818:4: C5001: embed: Client is using short method names (short-client-method-name) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:1017:4: C5001: embed: Client is using short method names (short-client-method-name) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:1059:4: C5001: embed: Client is using short method names (short-client-method-name) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:1081:4: C5001: embed: Client is using short method names (short-client-method-name) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:1102:4: C5001: embed: Client is using short method names (short-client-method-name) -************* Module azure.ai.inference.aio._client -sdk\ai\azure-ai-inference\azure\ai\inference\aio\_client.py:78:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-inference\azure\ai\inference\aio\_client.py:160:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-inference\azure\ai\inference\aio\_client.py:242:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:255:4: C5000: ChatCompletionsClient::complete (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:278:4: C5000: ChatCompletionsClient::complete (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:301:4: C5000: ChatCompletionsClient::complete (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:412:4: C5000: ChatCompletionsClient::complete (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:436:4: C5000: ChatCompletionsClient::complete (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:460:4: C5000: ChatCompletionsClient::complete (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:733:4: C5000: EmbeddingsClient::embed (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:775:4: C5000: EmbeddingsClient::embed (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:797:4: C5000: EmbeddingsClient::embed (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:818:4: C5000: EmbeddingsClient::embed (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:1017:4: C5000: ImageEmbeddingsClient::embed (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:1059:4: C5000: ImageEmbeddingsClient::embed (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:1081:4: C5000: ImageEmbeddingsClient::embed (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:1102:4: C5000: ImageEmbeddingsClient::embed (unapproved-client-method-name-prefix) ************* Module azure.ai.resources.client._ai_client -sdk\ai\azure-ai-resources\azure\ai\resources\client\_ai_client.py:334:4: C5000: build_index_on_cloud: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\ai\azure-ai-resources\azure\ai\resources\client\_ai_client.py:334:4: C5000: AIClient::build_index_on_cloud (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.97/10 (previous run: 10.00/10, -0.02) +Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.02) -************* Module azure.mgmt.devspaces._dev_spaces_management_client -sdk\aks\azure-mgmt-devspaces\azure\mgmt\devspaces\_dev_spaces_management_client.py:92:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.97/10, +0.02) +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) -************* Module azure.mgmt.alertsmanagement._alerts_management_client -sdk\alertsmanagement\azure-mgmt-alertsmanagement\azure\mgmt\alertsmanagement\_alerts_management_client.py:102:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) +------------------------------------ +Your code has been rated at 10.00/10 -************* Module azure.ai.anomalydetector._client -sdk\anomalydetector\azure-ai-anomalydetector\azure\ai\anomalydetector\_client.py:58:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\anomalydetector\azure-ai-anomalydetector\azure\ai\anomalydetector\_client.py:87:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.ai.anomalydetector.aio._client -sdk\anomalydetector\azure-ai-anomalydetector\azure\ai\anomalydetector\aio\_client.py:58:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.apicenter._api_center_mgmt_client -sdk\apicenter\azure-mgmt-apicenter\azure\mgmt\apicenter\_api_center_mgmt_client.py:119:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.apimanagement._api_management_client -sdk\apimanagement\azure-mgmt-apimanagement\azure\mgmt\apimanagement\_api_management_client.py:541:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.app._container_apps_api_client -sdk\app\azure-mgmt-app\azure\mgmt\app\_container_apps_api_client.py:115:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.appcomplianceautomation._app_compliance_automation_mgmt_client -sdk\appcomplianceautomation\azure-mgmt-appcomplianceautomation\azure\mgmt\appcomplianceautomation\_app_compliance_automation_mgmt_client.py:127:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ************* Module azure.appconfiguration._azure_appconfiguration_client -sdk\appconfiguration\azure-appconfiguration\azure\appconfiguration\_azure_appconfiguration_client.py:126:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\appconfiguration\azure-appconfiguration\azure\appconfiguration\_azure_appconfiguration_client.py:689:4: C5000: archive_snapshot: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\appconfiguration\azure-appconfiguration\azure\appconfiguration\_azure_appconfiguration_client.py:730:4: C5000: recover_snapshot: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\appconfiguration\azure-appconfiguration\azure\appconfiguration\_azure_appconfiguration_client.py:832:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\appconfiguration\azure-appconfiguration\azure\appconfiguration\_azure_appconfiguration_client.py:689:4: C5000: AzureAppConfigurationClient::archive_snapshot (unapproved-client-method-name-prefix) +sdk\appconfiguration\azure-appconfiguration\azure\appconfiguration\_azure_appconfiguration_client.py:730:4: C5000: AzureAppConfigurationClient::recover_snapshot (unapproved-client-method-name-prefix) ************* Module azure.mgmt.appconfiguration._app_configuration_management_client -sdk\appconfiguration\azure-mgmt-appconfiguration\azure\mgmt\appconfiguration\_app_configuration_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\appconfiguration\azure-mgmt-appconfiguration\azure\mgmt\appconfiguration\_app_configuration_management_client.py:259:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\appconfiguration\azure-mgmt-appconfiguration\azure\mgmt\appconfiguration\_app_configuration_management_client.py:87:4: C5000: AppConfigurationManagementClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.appconfiguration.aio._app_configuration_management_client -sdk\appconfiguration\azure-mgmt-appconfiguration\azure\mgmt\appconfiguration\aio\_app_configuration_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appconfiguration.v2022_03_01_preview._app_configuration_management_client -sdk\appconfiguration\azure-mgmt-appconfiguration\azure\mgmt\appconfiguration\v2022_03_01_preview\_app_configuration_management_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appconfiguration.v2022_05_01._app_configuration_management_client -sdk\appconfiguration\azure-mgmt-appconfiguration\azure\mgmt\appconfiguration\v2022_05_01\_app_configuration_management_client.py:110:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appconfiguration.v2023_03_01._app_configuration_management_client -sdk\appconfiguration\azure-mgmt-appconfiguration\azure\mgmt\appconfiguration\v2023_03_01\_app_configuration_management_client.py:114:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\appconfiguration\azure-mgmt-appconfiguration\azure\mgmt\appconfiguration\aio\_app_configuration_management_client.py:87:4: C5000: AppConfigurationManagementClient::models (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) -************* Module azure.mgmt.appcontainers._container_apps_api_client -sdk\appcontainers\azure-mgmt-appcontainers\azure\mgmt\appcontainers\_container_apps_api_client.py:255:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------ Your code has been rated at 10.00/10 ************* Module azure.mgmt.applicationinsights._application_insights_management_client -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\_application_insights_management_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\_application_insights_management_client.py:555:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\_application_insights_management_client.py:108:4: C5000: ApplicationInsightsManagementClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.applicationinsights.aio._application_insights_management_client -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\aio\_application_insights_management_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.applicationinsights.v2015_05_01._application_insights_management_client -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2015_05_01\_application_insights_management_client.py:174:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.applicationinsights.v2017_10_01._application_insights_management_client -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2017_10_01\_application_insights_management_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.applicationinsights.v2018_05_01_preview._application_insights_management_client -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2018_05_01_preview\_application_insights_management_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.applicationinsights.v2018_06_17_preview._application_insights_management_client -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2018_06_17_preview\_application_insights_management_client.py:85:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.applicationinsights.v2019_10_17_preview._application_insights_management_client -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2019_10_17_preview\_application_insights_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.applicationinsights.v2020_02_02._application_insights_management_client -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2020_02_02\_application_insights_management_client.py:81:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.applicationinsights.v2020_02_02_preview._application_insights_management_client -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2020_02_02_preview\_application_insights_management_client.py:82:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.applicationinsights.v2020_03_01_preview._application_insights_management_client -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2020_03_01_preview\_application_insights_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.applicationinsights.v2020_06_02_preview._application_insights_management_client -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2020_06_02_preview\_application_insights_management_client.py:77:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.applicationinsights.v2020_11_20._application_insights_management_client -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2020_11_20\_application_insights_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.applicationinsights.v2021_03_08._application_insights_management_client -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2021_03_08\_application_insights_management_client.py:82:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.applicationinsights.v2021_08_01._application_insights_management_client -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2021_08_01\_application_insights_management_client.py:81:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.applicationinsights.v2021_10._application_insights_management_client -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2021_10\_application_insights_management_client.py:73:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.applicationinsights.v2022_04_01._application_insights_management_client -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2022_04_01\_application_insights_management_client.py:81:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.applicationinsights.v2022_06_15._application_insights_management_client -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\v2022_06_15\_application_insights_management_client.py:81:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\aio\_application_insights_management_client.py:108:4: C5000: ApplicationInsightsManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) ************* Module azure.mgmt.appplatform._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\_app_platform_management_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\_app_platform_management_client.py:2026:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\_app_platform_management_client.py:109:4: C5000: AppPlatformManagementClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.appplatform.aio._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\aio\_app_platform_management_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2020_07_01._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2020_07_01\_app_platform_management_client.py:161:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2020_11_01_preview._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2020_11_01_preview\_app_platform_management_client.py:171:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2021_06_01_preview._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2021_06_01_preview\_app_platform_management_client.py:171:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2021_09_01_preview._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2021_09_01_preview\_app_platform_management_client.py:177:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2022_01_01_preview._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2022_01_01_preview\_app_platform_management_client.py:253:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2022_03_01_preview._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2022_03_01_preview\_app_platform_management_client.py:253:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2022_04_01._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2022_04_01\_app_platform_management_client.py:202:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2022_05_01_preview._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2022_05_01_preview\_app_platform_management_client.py:253:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2022_09_01_preview._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2022_09_01_preview\_app_platform_management_client.py:253:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2022_11_01_preview._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2022_11_01_preview\_app_platform_management_client.py:288:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2022_12_01._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2022_12_01\_app_platform_management_client.py:237:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2023_01_01_preview._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2023_01_01_preview\_app_platform_management_client.py:288:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2023_03_01_preview._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2023_03_01_preview\_app_platform_management_client.py:295:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2023_05_01_preview._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2023_05_01_preview\_app_platform_management_client.py:306:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2023_07_01_preview._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2023_07_01_preview\_app_platform_management_client.py:306:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2023_09_01_preview._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2023_09_01_preview\_app_platform_management_client.py:306:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2023_11_01_preview._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2023_11_01_preview\_app_platform_management_client.py:306:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2023_12_01._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2023_12_01\_app_platform_management_client.py:283:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2024_01_01_preview._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2024_01_01_preview\_app_platform_management_client.py:306:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.appplatform.v2024_05_01_preview._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\v2024_05_01_preview\_app_platform_management_client.py:328:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\aio\_app_platform_management_client.py:109:4: C5000: AppPlatformManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) ************* Module azure.mgmt.web._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\_web_site_management_client.py:112:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\appservice\azure-mgmt-web\azure\mgmt\web\_web_site_management_client.py:1238:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.web.v2015_04_01._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2015_04_01\_web_site_management_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.web.v2015_08_01._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2015_08_01\_web_site_management_client.py:114:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\appservice\azure-mgmt-web\azure\mgmt\web\_web_site_management_client.py:112:4: C5000: WebSiteManagementClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.web.aio._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\aio\_web_site_management_client.py:112:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.web.v2016_03_01._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2016_03_01\_web_site_management_client.py:145:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.web.v2016_08_01._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2016_08_01\_web_site_management_client.py:105:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.web.v2016_09_01._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2016_09_01\_web_site_management_client.py:113:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.web.v2018_02_01._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2018_02_01\_web_site_management_client.py:189:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.web.v2018_11_01._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2018_11_01\_web_site_management_client.py:105:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.web.v2019_08_01._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2019_08_01\_web_site_management_client.py:195:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.web.v2020_06_01._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2020_06_01\_web_site_management_client.py:195:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.web.v2020_09_01._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2020_09_01\_web_site_management_client.py:195:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.web.v2020_12_01._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2020_12_01\_web_site_management_client.py:208:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.web.v2021_01_01._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2021_01_01\_web_site_management_client.py:214:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.web.v2021_01_15._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2021_01_15\_web_site_management_client.py:214:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.web.v2021_03_01._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2021_03_01\_web_site_management_client.py:227:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.web.v2022_09_01._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2022_09_01\_web_site_management_client.py:288:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.web.v2023_01_01._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2023_01_01\_web_site_management_client.py:295:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.web.v2023_12_01._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\v2023_12_01\_web_site_management_client.py:295:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\appservice\azure-mgmt-web\azure\mgmt\web\aio\_web_site_management_client.py:112:4: C5000: WebSiteManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.astro._astro_mgmt_client -sdk\astro\azure-mgmt-astro\azure\mgmt\astro\_astro_mgmt_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.attestation._attestation_management_client -sdk\attestation\azure-mgmt-attestation\azure\mgmt\attestation\_attestation_management_client.py:94:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.security.attestation._client -sdk\attestation\azure-security-attestation\azure\security\attestation\_client.py:114:4: C5000: attest_sgx_enclave: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\attestation\azure-security-attestation\azure\security\attestation\_client.py:232:4: C5000: attest_open_enclave: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\attestation\azure-security-attestation\azure\security\attestation\_client.py:357:4: C5000: attest_tpm: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\attestation\azure-security-attestation\azure\security\attestation\_client.py:387:4: C5001: close: Client is using short method names (short-client-method-name) ************* Module azure.security.attestation._administration_client -sdk\attestation\azure-security-attestation\azure\security\attestation\_administration_client.py:290:4: C5000: reset_policy: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\attestation\azure-security-attestation\azure\security\attestation\_administration_client.py:689:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\attestation\azure-security-attestation\azure\security\attestation\_administration_client.py:290:4: C5000: AttestationAdministrationClient::reset_policy (unapproved-client-method-name-prefix) +************* Module azure.security.attestation._client +sdk\attestation\azure-security-attestation\azure\security\attestation\_client.py:114:4: C5000: AttestationClient::attest_sgx_enclave (unapproved-client-method-name-prefix) +sdk\attestation\azure-security-attestation\azure\security\attestation\_client.py:232:4: C5000: AttestationClient::attest_open_enclave (unapproved-client-method-name-prefix) +sdk\attestation\azure-security-attestation\azure\security\attestation\_client.py:357:4: C5000: AttestationClient::attest_tpm (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.97/10 (previous run: 9.99/10, -0.02) +------------------------------------------------------------------- +Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.02) ************* Module azure.mgmt.authorization._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\_authorization_management_client.py:131:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\_authorization_management_client.py:1119:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\_authorization_management_client.py:131:4: C5000: AuthorizationManagementClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.authorization.aio._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\aio\_authorization_management_client.py:131:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.authorization.v2015_06_01._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2015_06_01\_authorization_management_client.py:87:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.authorization.v2015_07_01._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2015_07_01\_authorization_management_client.py:123:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.authorization.v2018_01_01_preview._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2018_01_01_preview\_authorization_management_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.authorization.v2018_05_01_preview._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2018_05_01_preview\_authorization_management_client.py:146:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.authorization.v2018_07_01_preview._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2018_07_01_preview\_authorization_management_client.py:87:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.authorization.v2018_09_01_preview._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2018_09_01_preview\_authorization_management_client.py:86:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.authorization.v2019_08_01_preview._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2019_08_01_preview\_authorization_management_client.py:86:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.authorization.v2020_04_01_preview._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2020_04_01_preview\_authorization_management_client.py:86:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.authorization.v2020_10_01._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2020_10_01\_authorization_management_client.py:137:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.authorization.v2020_10_01_preview._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2020_10_01_preview\_authorization_management_client.py:152:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.authorization.v2021_01_01_preview._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2021_01_01_preview\_authorization_management_client.py:121:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.authorization.v2021_03_01_preview._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2021_03_01_preview\_authorization_management_client.py:146:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.authorization.v2021_07_01_preview._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2021_07_01_preview\_authorization_management_client.py:164:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.authorization.v2021_12_01_preview._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2021_12_01_preview\_authorization_management_client.py:272:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.authorization.v2022_04_01._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2022_04_01\_authorization_management_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.authorization.v2022_04_01_preview._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2022_04_01_preview\_authorization_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.authorization.v2022_05_01_preview._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2022_05_01_preview\_authorization_management_client.py:92:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.authorization.v2022_08_01_preview._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\v2022_08_01_preview\_authorization_management_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) - ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.40/10, +0.59) - -************* Module azure.mgmt.automanage._automanage_client -sdk\automanage\azure-mgmt-automanage\azure\mgmt\automanage\_automanage_client.py:147:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\aio\_authorization_management_client.py:131:4: C5000: AuthorizationManagementClient::models (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.97/10, +0.03) +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) -************* Module azure.mgmt.automation._automation_client -sdk\automation\azure-mgmt-automation\azure\mgmt\automation\_automation_client.py:317:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.35/10, +0.65) +Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) -************* Module azure.mgmt.azurearcdata._azure_arc_data_management_client -sdk\azurearcdata\azure-mgmt-azurearcdata\azure\mgmt\azurearcdata\_azure_arc_data_management_client.py:118:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.azurelargeinstance._large_instance_mgmt_client -sdk\azurelargeinstance\azure-mgmt-azurelargeinstance\azure\mgmt\azurelargeinstance\_large_instance_mgmt_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.azurestack._azure_stack_management_client -sdk\azurestack\azure-mgmt-azurestack\azure\mgmt\azurestack\_azure_stack_management_client.py:111:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.azurestackhci._azure_stack_hci_client -sdk\azurestackhci\azure-mgmt-azurestackhci\azure\mgmt\azurestackhci\_azure_stack_hci_client.py:160:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------- -Your code has been rated at 10.00/10 +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.baremetalinfrastructure._bare_metal_infrastructure_client -sdk\baremetalinfrastructure\azure-mgmt-baremetalinfrastructure\azure\mgmt\baremetalinfrastructure\_bare_metal_infrastructure_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.batch._batch_management_client -sdk\batch\azure-mgmt-batch\azure\mgmt\batch\_batch_management_client.py:125:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.billing._billing_management_client -sdk\billing\azure-mgmt-billing\azure\mgmt\billing\_billing_management_client.py:184:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + + +------------------------------------ +Your code has been rated at 10.00/10 -------------------------------------------------------------------- @@ -388,1358 +169,536 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.cdn._cdn_management_client -sdk\cdn\azure-mgmt-cdn\azure\mgmt\cdn\_cdn_management_client.py:196:4: C5001: close: Client is using short method names (short-client-method-name) --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +------------------------------------ +Your code has been rated at 10.00/10 -************* Module azure.mgmt.changeanalysis._azure_change_analysis_management_client -sdk\changeanalysis\azure-mgmt-changeanalysis\azure\mgmt\changeanalysis\_azure_change_analysis_management_client.py:68:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.chaos._chaos_management_client -sdk\chaos\azure-mgmt-chaos\azure\mgmt\chaos\_chaos_management_client.py:113:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.ai.language.conversations.aio._client -sdk\cognitivelanguage\azure-ai-language-conversations\azure\ai\language\conversations\aio\_client.py:70:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.ai.language.conversations._client -sdk\cognitivelanguage\azure-ai-language-conversations\azure\ai\language\conversations\_client.py:70:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\cognitivelanguage\azure-ai-language-conversations\azure\ai\language\conversations\_client.py:96:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.ai.language.conversations.authoring._client -sdk\cognitivelanguage\azure-ai-language-conversations\azure\ai\language\conversations\authoring\_client.py:70:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\cognitivelanguage\azure-ai-language-conversations\azure\ai\language\conversations\authoring\_client.py:96:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.ai.language.conversations.authoring.aio._client -sdk\cognitivelanguage\azure-ai-language-conversations\azure\ai\language\conversations\authoring\aio\_client.py:70:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.ai.language.questionanswering._client -sdk\cognitivelanguage\azure-ai-language-questionanswering\azure\ai\language\questionanswering\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\cognitivelanguage\azure-ai-language-questionanswering\azure\ai\language\questionanswering\_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.ai.language.questionanswering.aio._client -sdk\cognitivelanguage\azure-ai-language-questionanswering\azure\ai\language\questionanswering\aio\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.ai.language.questionanswering.authoring._client -sdk\cognitivelanguage\azure-ai-language-questionanswering\azure\ai\language\questionanswering\authoring\_client.py:67:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\cognitivelanguage\azure-ai-language-questionanswering\azure\ai\language\questionanswering\authoring\_client.py:93:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.ai.language.questionanswering.authoring.aio._client -sdk\cognitivelanguage\azure-ai-language-questionanswering\azure\ai\language\questionanswering\authoring\aio\_client.py:67:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.02) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ************* Module azure.cognitiveservices.formrecognizer.form_recognizer_client -sdk\cognitiveservices\azure-cognitiveservices-formrecognizer\azure\cognitiveservices\formrecognizer\form_recognizer_client.py:75:4: C5000: train_custom_model: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\cognitiveservices\azure-cognitiveservices-formrecognizer\azure\cognitiveservices\formrecognizer\form_recognizer_client.py:356:4: C5000: analyze_with_custom_model: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\cognitiveservices\azure-cognitiveservices-formrecognizer\azure\cognitiveservices\formrecognizer\form_recognizer_client.py:75:4: C5000: FormRecognizerClient::train_custom_model (unapproved-client-method-name-prefix) ************* Module azure.cognitiveservices.language.textanalytics.text_analytics_client -sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:76:4: C5000: detect_language: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:150:4: C5001: entities: Client is using short method names (short-client-method-name) -sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:226:4: C5000: key_phrases: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:302:4: C5001: sentiment: Client is using short method names (short-client-method-name) +sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:76:4: C5000: TextAnalyticsClient::detect_language (unapproved-client-method-name-prefix) +sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:150:4: C5000: TextAnalyticsClient::entities (unapproved-client-method-name-prefix) +sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:226:4: C5000: TextAnalyticsClient::key_phrases (unapproved-client-method-name-prefix) +sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:302:4: C5000: TextAnalyticsClient::sentiment (unapproved-client-method-name-prefix) ************* Module azure.cognitiveservices.personalizer.personalizer_client -sdk\cognitiveservices\azure-cognitiveservices-personalizer\azure\cognitiveservices\personalizer\personalizer_client.py:80:4: C5001: rank: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.cognitiveservices._cognitive_services_management_client -sdk\cognitiveservices\azure-mgmt-cognitiveservices\azure\mgmt\cognitiveservices\_cognitive_services_management_client.py:140:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\cognitiveservices\azure-cognitiveservices-personalizer\azure\cognitiveservices\personalizer\personalizer_client.py:80:4: C5000: PersonalizerClient::rank (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) -************* Module azure.mgmt.commerce._usage_management_client -sdk\commerce\azure-mgmt-commerce\azure\mgmt\commerce\_usage_management_client.py:87:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ************* Module azure.communication.callautomation._call_automation_client -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:310:4: C5000: answer_call: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:370:4: C5000: redirect_call: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:416:4: C5000: reject_call: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:446:4: C5000: start_recording: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:499:4: C5000: start_recording: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:552:4: C5000: start_recording: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:586:4: C5000: stop_recording: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:602:4: C5000: pause_recording: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:618:4: C5000: resume_recording: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:654:4: C5000: download_recording: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:707:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.communication.chat._chat_client -sdk\communication\azure-communication-chat\azure\communication\chat\_chat_client.py:248:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.communication.chat._chat_thread_client -sdk\communication\azure-communication-chat\azure\communication\chat\_chat_thread_client.py:176:4: C5000: send_read_receipt: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-chat\azure\communication\chat\_chat_thread_client.py:242:4: C5000: send_typing_notification: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-chat\azure\communication\chat\_chat_thread_client.py:273:4: C5000: send_message: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-chat\azure\communication\chat\_chat_thread_client.py:584:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:310:4: C5000: CallAutomationClient::answer_call (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:370:4: C5000: CallAutomationClient::redirect_call (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:416:4: C5000: CallAutomationClient::reject_call (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:446:4: C5000: CallAutomationClient::start_recording (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:499:4: C5000: CallAutomationClient::start_recording (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:552:4: C5000: CallAutomationClient::start_recording (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:586:4: C5000: CallAutomationClient::stop_recording (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:602:4: C5000: CallAutomationClient::pause_recording (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:618:4: C5000: CallAutomationClient::resume_recording (unapproved-client-method-name-prefix) ************* Module azure.communication.callautomation._call_connection_client -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:192:4: C5000: hang_up: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:249:4: C5000: transfer_call_to_participant: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:415:4: C5000: play_media: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:513:4: C5000: play_media_to_all: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:559:4: C5000: start_recognizing_media: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:682:4: C5000: cancel_all_media_operations: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:692:4: C5000: start_continuous_dtmf_recognition: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:727:4: C5000: stop_continuous_dtmf_recognition: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:762:4: C5000: send_dtmf_tones: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:804:4: C5000: mute_participant: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:834:4: C5000: cancel_add_participant_operation: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:871:4: C5000: start_hold_music: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:911:4: C5000: stop_hold_music: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:938:4: C5000: start_transcription: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:965:4: C5000: stop_transcription: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:1008:4: C5001: hold: Client is using short method names (short-client-method-name) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:1056:4: C5001: unhold: Client is using short method names (short-client-method-name) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:192:4: C5000: CallConnectionClient::hang_up (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:249:4: C5000: CallConnectionClient::transfer_call_to_participant (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:415:4: C5000: CallConnectionClient::play_media (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:513:4: C5000: CallConnectionClient::play_media_to_all (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:559:4: C5000: CallConnectionClient::start_recognizing_media (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:692:4: C5000: CallConnectionClient::start_continuous_dtmf_recognition (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:727:4: C5000: CallConnectionClient::stop_continuous_dtmf_recognition (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:804:4: C5000: CallConnectionClient::mute_participant (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:871:4: C5000: CallConnectionClient::start_hold_music (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:911:4: C5000: CallConnectionClient::stop_hold_music (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:938:4: C5000: CallConnectionClient::start_transcription (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:965:4: C5000: CallConnectionClient::stop_transcription (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:1008:4: C5000: CallConnectionClient::hold (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:1056:4: C5000: CallConnectionClient::unhold (unapproved-client-method-name-prefix) ************* Module azure.communication.identity._communication_identity_client -sdk\communication\azure-communication-identity\azure\communication\identity\_communication_identity_client.py:188:4: C5000: revoke_tokens: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.communication.jobrouter._client -sdk\communication\azure-communication-jobrouter\azure\communication\jobrouter\_client.py:62:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-jobrouter\azure\communication\jobrouter\_client.py:88:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\communication\azure-communication-jobrouter\azure\communication\jobrouter\_client.py:138:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-jobrouter\azure\communication\jobrouter\_client.py:164:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.communication.jobrouter.aio._client -sdk\communication\azure-communication-jobrouter\azure\communication\jobrouter\aio\_client.py:62:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-jobrouter\azure\communication\jobrouter\aio\_client.py:140:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.communication.messages._client -sdk\communication\azure-communication-messages\azure\communication\messages\_client.py:67:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-messages\azure\communication\messages\_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\communication\azure-communication-messages\azure\communication\messages\_client.py:145:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-messages\azure\communication\messages\_client.py:175:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.communication.messages.aio._client -sdk\communication\azure-communication-messages\azure\communication\messages\aio\_client.py:66:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-messages\azure\communication\messages\aio\_client.py:146:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-identity\azure\communication\identity\_communication_identity_client.py:188:4: C5000: CommunicationIdentityClient::revoke_tokens (unapproved-client-method-name-prefix) ************* Module azure.communication.phonenumbers._phone_numbers_client -sdk\communication\azure-communication-phonenumbers\azure\communication\phonenumbers\_phone_numbers_client.py:425:4: C5000: search_operator_information: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\communication\azure-communication-phonenumbers\azure\communication\phonenumbers\_phone_numbers_client.py:425:4: C5000: PhoneNumbersClient::search_operator_information (unapproved-client-method-name-prefix) ************* Module azure.communication.phonenumbers.aio._phone_numbers_client_async -sdk\communication\azure-communication-phonenumbers\azure\communication\phonenumbers\aio\_phone_numbers_client_async.py:421:4: C5000: search_operator_information: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.communication.phonenumbers.siprouting._sip_routing_client -sdk\communication\azure-communication-phonenumbers\azure\communication\phonenumbers\siprouting\_sip_routing_client.py:277:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.communication.rooms._rooms_client -sdk\communication\azure-communication-rooms\azure\communication\rooms\_rooms_client.py:302:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.communication.sms._sms_client -sdk\communication\azure-communication-sms\azure\communication\sms\_sms_client.py:84:4: C5001: send: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.communication._communication_service_management_client -sdk\communication\azure-mgmt-communication\azure\mgmt\communication\_communication_service_management_client.py:106:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\communication\azure-communication-phonenumbers\azure\communication\phonenumbers\aio\_phone_numbers_client_async.py:421:4: C5000: PhoneNumbersClient::search_operator_information (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.97/10 (previous run: 10.00/10, -0.03) +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) -************* Module azure.mgmt.avs._avs_client -sdk\compute\azure-mgmt-avs\azure\mgmt\avs\_avs_client.py:179:4: C5001: close: Client is using short method names (short-client-method-name) ************* Module azure.mgmt.compute._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\_compute_management_client.py:132:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\_compute_management_client.py:3002:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2015_06_15._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2015_06_15\_compute_management_client.py:162:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\_compute_management_client.py:132:4: C5000: ComputeManagementClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.compute.aio._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\aio\_compute_management_client.py:132:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2016_03_30._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2016_03_30\_compute_management_client.py:162:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2016_04_30_preview._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2016_04_30_preview\_compute_management_client.py:183:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2017_03_30._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2017_03_30\_compute_management_client.py:205:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2017_09_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2017_09_01\_compute_management_client.py:105:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2017_12_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2017_12_01\_compute_management_client.py:199:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2018_04_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2018_04_01\_compute_management_client.py:216:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2018_06_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2018_06_01\_compute_management_client.py:235:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2018_09_30._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2018_09_30\_compute_management_client.py:110:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2018_10_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2018_10_01\_compute_management_client.py:206:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2019_03_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2019_03_01\_compute_management_client.py:262:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2019_04_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2019_04_01\_compute_management_client.py:105:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2019_07_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2019_07_01\_compute_management_client.py:277:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2019_11_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2019_11_01\_compute_management_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2019_12_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2019_12_01\_compute_management_client.py:266:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2020_05_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2020_05_01\_compute_management_client.py:121:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2020_06_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2020_06_01\_compute_management_client.py:241:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2020_06_30._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2020_06_30\_compute_management_client.py:121:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2020_09_30._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2020_09_30\_compute_management_client.py:193:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2020_10_01_preview._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2020_10_01_preview\_compute_management_client.py:131:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2020_12_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2020_12_01\_compute_management_client.py:278:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2021_03_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2021_03_01\_compute_management_client.py:295:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2021_04_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2021_04_01\_compute_management_client.py:305:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2021_07_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2021_07_01\_compute_management_client.py:362:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2021_08_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2021_08_01\_compute_management_client.py:133:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2021_10_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2021_10_01\_compute_management_client.py:143:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2021_11_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2021_11_01\_compute_management_client.py:275:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2021_12_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2021_12_01\_compute_management_client.py:133:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2022_01_03._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_01_03\_compute_management_client.py:184:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2022_03_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_03_01\_compute_management_client.py:275:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2022_03_02._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_03_02\_compute_management_client.py:133:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2022_03_03._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_03_03\_compute_management_client.py:184:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2022_04_04._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_04_04\_compute_management_client.py:137:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2022_07_02._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_07_02\_compute_management_client.py:133:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2022_08_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_08_01\_compute_management_client.py:275:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2022_08_03._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_08_03\_compute_management_client.py:184:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2022_09_04._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_09_04\_compute_management_client.py:137:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2022_11_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2022_11_01\_compute_management_client.py:275:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2023_01_02._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2023_01_02\_compute_management_client.py:133:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2023_03_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2023_03_01\_compute_management_client.py:275:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2023_04_02._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2023_04_02\_compute_management_client.py:133:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2023_07_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2023_07_01\_compute_management_client.py:275:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2023_07_03._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2023_07_03\_compute_management_client.py:184:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2023_09_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2023_09_01\_compute_management_client.py:275:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2023_10_02._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2023_10_02\_compute_management_client.py:133:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2024_03_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2024_03_01\_compute_management_client.py:275:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2024_03_02._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2024_03_02\_compute_management_client.py:133:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.compute.v2024_07_01._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\v2024_07_01\_compute_management_client.py:275:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.imagebuilder._image_builder_client -sdk\compute\azure-mgmt-imagebuilder\azure\mgmt\imagebuilder\_image_builder_client.py:111:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\compute\azure-mgmt-compute\azure\mgmt\compute\aio\_compute_management_client.py:132:4: C5000: ComputeManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) -************* Module azure.mgmt.computefleet._client -sdk\computefleet\azure-mgmt-computefleet\azure\mgmt\computefleet\_client.py:84:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\computefleet\azure-mgmt-computefleet\azure\mgmt\computefleet\_client.py:106:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.computefleet.aio._client -sdk\computefleet\azure-mgmt-computefleet\azure\mgmt\computefleet\aio\_client.py:84:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.confidentialledger._client -sdk\confidentialledger\azure-confidentialledger\azure\confidentialledger\_client.py:49:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\confidentialledger\azure-confidentialledger\azure\confidentialledger\_client.py:77:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.confidentialledger.aio._client -sdk\confidentialledger\azure-confidentialledger\azure\confidentialledger\aio\_client.py:49:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.confidentialledger.certificate._client -sdk\confidentialledger\azure-confidentialledger\azure\confidentialledger\certificate\_client.py:51:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\confidentialledger\azure-confidentialledger\azure\confidentialledger\certificate\_client.py:79:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.confidentialledger.certificate.aio._client -sdk\confidentialledger\azure-confidentialledger\azure\confidentialledger\certificate\aio\_client.py:51:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.99/10, -0.00) +------------------------------------ +Your code has been rated at 10.00/10 -************* Module azure.mgmt.confluent._confluent_management_client -sdk\confluent\azure-mgmt-confluent\azure\mgmt\confluent\_confluent_management_client.py:107:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.24/10, +0.75) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.connectedvmware._connected_vmware_mgmt_client -sdk\connectedvmware\azure-mgmt-connectedvmware\azure\mgmt\connectedvmware\_connected_vmware_mgmt_client.py:144:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.45/10, +0.55) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.consumption._consumption_management_client -sdk\consumption\azure-mgmt-consumption\azure\mgmt\consumption\_consumption_management_client.py:162:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------- -Your code has been rated at 10.00/10 +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.containerinstance._container_instance_management_client -sdk\containerinstance\azure-mgmt-containerinstance\azure\mgmt\containerinstance\_container_instance_management_client.py:107:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.containerregistry._base_client -sdk\containerregistry\azure-containerregistry\azure\containerregistry\_base_client.py:58:4: C5001: close: Client is using short method names (short-client-method-name) ************* Module azure.containerregistry._exchange_client -sdk\containerregistry\azure-containerregistry\azure\containerregistry\_exchange_client.py:76:4: C5000: exchange_aad_token_for_refresh_token: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\containerregistry\azure-containerregistry\azure\containerregistry\_exchange_client.py:88:4: C5000: exchange_refresh_token_for_access_token: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\containerregistry\azure-containerregistry\azure\containerregistry\_exchange_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\containerregistry\azure-containerregistry\azure\containerregistry\_exchange_client.py:76:4: C5000: ACRExchangeClient::exchange_aad_token_for_refresh_token (unapproved-client-method-name-prefix) +sdk\containerregistry\azure-containerregistry\azure\containerregistry\_exchange_client.py:88:4: C5000: ACRExchangeClient::exchange_refresh_token_for_access_token (unapproved-client-method-name-prefix) ************* Module azure.containerregistry._anonymous_exchange_client -sdk\containerregistry\azure-containerregistry\azure\containerregistry\_anonymous_exchange_client.py:60:4: C5000: exchange_refresh_token_for_access_token: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\containerregistry\azure-containerregistry\azure\containerregistry\_anonymous_exchange_client.py:76:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.containerregistry._container_registry_client -sdk\containerregistry\azure-containerregistry\azure\containerregistry\_container_registry_client.py:968:4: C5000: upload_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\containerregistry\azure-containerregistry\azure\containerregistry\_container_registry_client.py:1020:4: C5000: download_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\containerregistry\azure-containerregistry\azure\containerregistry\_anonymous_exchange_client.py:60:4: C5000: AnonymousACRExchangeClient::exchange_refresh_token_for_access_token (unapproved-client-method-name-prefix) ************* Module azure.mgmt.containerregistry._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\_container_registry_management_client.py:96:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\_container_registry_management_client.py:1093:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\_container_registry_management_client.py:96:4: C5000: ContainerRegistryManagementClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.containerregistry.aio._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\aio\_container_registry_management_client.py:96:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2017_03_01._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2017_03_01\_container_registry_management_client.py:88:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2017_10_01._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2017_10_01\_container_registry_management_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2018_02_01_preview._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2018_02_01_preview\_container_registry_management_client.py:103:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2018_09_01._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2018_09_01\_container_registry_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2019_04_01._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2019_04_01\_container_registry_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2019_05_01._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2019_05_01\_container_registry_management_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2019_05_01_preview._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2019_05_01_preview\_container_registry_management_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2019_06_01_preview._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2019_06_01_preview\_container_registry_management_client.py:106:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2019_12_01_preview._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2019_12_01_preview\_container_registry_management_client.py:136:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2020_11_01_preview._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2020_11_01_preview\_container_registry_management_client.py:156:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2021_06_01_preview._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2021_06_01_preview\_container_registry_management_client.py:156:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2021_08_01_preview._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2021_08_01_preview\_container_registry_management_client.py:156:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2021_09_01._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2021_09_01\_container_registry_management_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2021_12_01_preview._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2021_12_01_preview\_container_registry_management_client.py:156:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2022_02_01_preview._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2022_02_01_preview\_container_registry_management_client.py:156:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2022_12_01._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2022_12_01\_container_registry_management_client.py:119:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2023_01_01_preview._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2023_01_01_preview\_container_registry_management_client.py:170:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2023_06_01_preview._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2023_06_01_preview\_container_registry_management_client.py:184:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2023_07_01._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2023_07_01\_container_registry_management_client.py:132:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2023_08_01_preview._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2023_08_01_preview\_container_registry_management_client.py:184:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerregistry.v2023_11_01_preview._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\v2023_11_01_preview\_container_registry_management_client.py:184:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\aio\_container_registry_management_client.py:96:4: C5000: ContainerRegistryManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ************* Module azure.mgmt.containerservice._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\_container_service_client.py:117:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\_container_service_client.py:2521:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\_container_service_client.py:117:4: C5000: ContainerServiceClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.containerservice.aio._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\aio\_container_service_client.py:117:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2017_07_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2017_07_01\_container_service_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2018_03_31._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2018_03_31\_container_service_client.py:111:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2018_08_01_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2018_08_01_preview\_container_service_client.py:113:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2018_09_30_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2018_09_30_preview\_container_service_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2019_02_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2019_02_01\_container_service_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2019_04_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2019_04_01\_container_service_client.py:122:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2019_04_30._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2019_04_30\_container_service_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2019_06_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2019_06_01\_container_service_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2019_08_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2019_08_01\_container_service_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2019_09_30_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2019_09_30_preview\_container_service_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2019_10_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2019_10_01\_container_service_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2019_10_27_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2019_10_27_preview\_container_service_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2019_11_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2019_11_01\_container_service_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2020_01_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2020_01_01\_container_service_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2020_02_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2020_02_01\_container_service_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2020_03_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2020_03_01\_container_service_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2020_04_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2020_04_01\_container_service_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2020_06_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2020_06_01\_container_service_client.py:127:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2020_07_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2020_07_01\_container_service_client.py:127:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2020_09_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2020_09_01\_container_service_client.py:141:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2020_11_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2020_11_01\_container_service_client.py:141:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2020_12_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2020_12_01\_container_service_client.py:148:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2021_02_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2021_02_01\_container_service_client.py:148:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2021_03_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2021_03_01\_container_service_client.py:148:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2021_05_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2021_05_01\_container_service_client.py:148:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2021_07_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2021_07_01\_container_service_client.py:148:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2021_08_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2021_08_01\_container_service_client.py:154:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2021_09_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2021_09_01\_container_service_client.py:154:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2021_10_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2021_10_01\_container_service_client.py:154:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2021_11_01_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2021_11_01_preview\_container_service_client.py:158:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_01_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_01_01\_container_service_client.py:154:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_01_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_01_02_preview\_container_service_client.py:158:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_02_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_02_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_02_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_02_02_preview\_container_service_client.py:164:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_03_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_03_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_03_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_03_02_preview\_container_service_client.py:164:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_04_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_04_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_04_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_04_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_05_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_05_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_06_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_06_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_06_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_06_02_preview\_container_service_client.py:191:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_07_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_07_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_07_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_07_02_preview\_container_service_client.py:191:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_08_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_08_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_08_03_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_08_03_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_09_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_09_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_09_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_09_02_preview\_container_service_client.py:191:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_10_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_10_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_11_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_11_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2022_11_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2022_11_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_01_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_01_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_01_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_01_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_02_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_02_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_02_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_02_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_03_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_03_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_03_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_03_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_04_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_04_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_04_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_04_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_05_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_05_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_05_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_05_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_06_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_06_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_06_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_06_02_preview\_container_service_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_07_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_07_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_07_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_07_02_preview\_container_service_client.py:185:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_08_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_08_01\_container_service_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_08_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_08_02_preview\_container_service_client.py:185:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_09_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_09_01\_container_service_client.py:167:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_09_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_09_02_preview\_container_service_client.py:185:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_10_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_10_01\_container_service_client.py:167:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_10_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_10_02_preview\_container_service_client.py:192:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_11_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_11_01\_container_service_client.py:167:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2023_11_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2023_11_02_preview\_container_service_client.py:192:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2024_01_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2024_01_01\_container_service_client.py:167:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2024_01_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2024_01_02_preview\_container_service_client.py:192:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2024_02_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2024_02_01\_container_service_client.py:167:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2024_02_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2024_02_02_preview\_container_service_client.py:192:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2024_03_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2024_03_02_preview\_container_service_client.py:199:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2024_04_02_preview._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2024_04_02_preview\_container_service_client.py:199:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservice.v2024_05_01._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\v2024_05_01\_container_service_client.py:167:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\aio\_container_service_client.py:117:4: C5000: ContainerServiceClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.containerservicefleet._container_service_fleet_mgmt_client -sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\_container_service_fleet_mgmt_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\_container_service_fleet_mgmt_client.py:310:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\_container_service_fleet_mgmt_client.py:108:4: C5000: ContainerServiceFleetMgmtClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.containerservicefleet.aio._container_service_fleet_mgmt_client -sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\aio\_container_service_fleet_mgmt_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservicefleet.v2022_06_02_preview._container_service_fleet_mgmt_client -sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\v2022_06_02_preview\_container_service_fleet_mgmt_client.py:117:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservicefleet.v2022_07_02_preview._container_service_fleet_mgmt_client -sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\v2022_07_02_preview\_container_service_fleet_mgmt_client.py:112:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservicefleet.v2022_09_02_preview._container_service_fleet_mgmt_client -sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\v2022_09_02_preview\_container_service_fleet_mgmt_client.py:112:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservicefleet.v2023_03_15_preview._container_service_fleet_mgmt_client -sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\v2023_03_15_preview\_container_service_fleet_mgmt_client.py:123:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservicefleet.v2023_06_15_preview._container_service_fleet_mgmt_client -sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\v2023_06_15_preview\_container_service_fleet_mgmt_client.py:123:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservicefleet.v2023_08_15_preview._container_service_fleet_mgmt_client -sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\v2023_08_15_preview\_container_service_fleet_mgmt_client.py:135:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservicefleet.v2023_10_15._container_service_fleet_mgmt_client -sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\v2023_10_15\_container_service_fleet_mgmt_client.py:130:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservicefleet.v2024_02_02_preview._container_service_fleet_mgmt_client -sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\v2024_02_02_preview\_container_service_fleet_mgmt_client.py:135:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.containerservicefleet.v2024_04_01._container_service_fleet_mgmt_client -sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\v2024_04_01\_container_service_fleet_mgmt_client.py:130:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\aio\_container_service_fleet_mgmt_client.py:108:4: C5000: ContainerServiceFleetMgmtClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.95/10, +0.05) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.ai.contentsafety._client -sdk\contentsafety\azure-ai-contentsafety\azure\ai\contentsafety\_client.py:67:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\contentsafety\azure-ai-contentsafety\azure\ai\contentsafety\_client.py:93:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\contentsafety\azure-ai-contentsafety\azure\ai\contentsafety\_client.py:145:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\contentsafety\azure-ai-contentsafety\azure\ai\contentsafety\_client.py:171:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.ai.contentsafety.aio._client -sdk\contentsafety\azure-ai-contentsafety\azure\ai\contentsafety\aio\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\contentsafety\azure-ai-contentsafety\azure\ai\contentsafety\aio\_client.py:151:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.97/10 (previous run: 10.00/10, -0.03) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.servicemanagement.servicemanagementclient -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:95:4: C5000: should_use_requests: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:118:4: C5000: with_filter: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:155:4: C5001: timeout: Client is using short method names (short-client-method-name) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:158:4: C5000: perform_get: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:179:4: C5000: perform_put: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:203:4: C5000: perform_post: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:228:4: C5000: perform_delete: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:250:4: C5000: wait_for_operation_status_progress_default_callback: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:254:4: C5000: wait_for_operation_status_success_default_callback: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:258:4: C5000: wait_for_operation_status_failure_default_callback: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:264:4: C5000: wait_for_operation_status: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) ************* Module azure.servicemanagement._http.httpclient -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\_http\httpclient.py:129:4: C5000: send_request_headers: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\_http\httpclient.py:137:4: C5000: send_request_body: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\_http\httpclient.py:171:4: C5000: perform_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\_http\httpclient.py:171:4: C5000: _HTTPClient::perform_request (unapproved-client-method-name-prefix) +************* Module azure.servicemanagement.servicemanagementclient +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:95:4: C5000: _ServiceManagementClient::should_use_requests (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:118:4: C5000: _ServiceManagementClient::with_filter (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:155:4: C5000: _ServiceManagementClient::timeout (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:158:4: C5000: _ServiceManagementClient::perform_get (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:179:4: C5000: _ServiceManagementClient::perform_put (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:203:4: C5000: _ServiceManagementClient::perform_post (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:228:4: C5000: _ServiceManagementClient::perform_delete (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:250:4: C5000: _ServiceManagementClient::wait_for_operation_status_progress_default_callback (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:254:4: C5000: _ServiceManagementClient::wait_for_operation_status_success_default_callback (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:258:4: C5000: _ServiceManagementClient::wait_for_operation_status_failure_default_callback (unapproved-client-method-name-prefix) +sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:264:4: C5000: _ServiceManagementClient::wait_for_operation_status (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.99/10, +0.00) -************* Module azure.cosmos.cosmos_client -sdk\cosmos\azure-cosmos\azure\cosmos\cosmos_client.py:423:4: C5000: query_databases: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.cosmos.aio._cosmos_client -sdk\cosmos\azure-cosmos\azure\cosmos\aio\_cosmos_client.py:395:4: C5000: query_databases: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.mgmt.cosmosdb._cosmos_db_management_client -sdk\cosmos\azure-mgmt-cosmosdb\azure\mgmt\cosmosdb\_cosmos_db_management_client.py:323:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.97/10, +0.03) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.cosmosdbforpostgresql._cosmosdb_for_postgresql_mgmt_client -sdk\cosmosdbforpostgresql\azure-mgmt-cosmosdbforpostgresql\azure\mgmt\cosmosdbforpostgresql\_cosmosdb_for_postgresql_mgmt_client.py:119:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.costmanagement._cost_management_client -sdk\costmanagement\azure-mgmt-costmanagement\azure\mgmt\costmanagement\_cost_management_client.py:164:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------- -Your code has been rated at 10.00/10 +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.dashboard._dashboard_management_client -sdk\dashboard\azure-mgmt-dashboard\azure\mgmt\dashboard\_dashboard_management_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.databox.v2018_01_01._data_box_management_client -sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2018_01_01\_data_box_management_client.py:89:4: C5001: close: Client is using short method names (short-client-method-name) ************* Module azure.mgmt.databox._data_box_management_client -sdk\databox\azure-mgmt-databox\azure\mgmt\databox\_data_box_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\databox\azure-mgmt-databox\azure\mgmt\databox\_data_box_management_client.py:282:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\databox\azure-mgmt-databox\azure\mgmt\databox\_data_box_management_client.py:87:4: C5000: DataBoxManagementClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.databox.aio._data_box_management_client -sdk\databox\azure-mgmt-databox\azure\mgmt\databox\aio\_data_box_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databox.v2019_09_01._data_box_management_client -sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2019_09_01\_data_box_management_client.py:89:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databox.v2020_04_01._data_box_management_client -sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2020_04_01\_data_box_management_client.py:89:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databox.v2020_11_01._data_box_management_client -sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2020_11_01\_data_box_management_client.py:89:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databox.v2021_03_01._data_box_management_client -sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2021_03_01\_data_box_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databox.v2021_05_01._data_box_management_client -sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2021_05_01\_data_box_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databox.v2021_08_01_preview._data_box_management_client -sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2021_08_01_preview\_data_box_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databox.v2021_12_01._data_box_management_client -sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2021_12_01\_data_box_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databox.v2022_02_01._data_box_management_client -sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2022_02_01\_data_box_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databox.v2022_09_01._data_box_management_client -sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2022_09_01\_data_box_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databox.v2022_10_01._data_box_management_client -sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2022_10_01\_data_box_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databox.v2022_12_01._data_box_management_client -sdk\databox\azure-mgmt-databox\azure\mgmt\databox\v2022_12_01\_data_box_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\databox\azure-mgmt-databox\azure\mgmt\databox\aio\_data_box_management_client.py:87:4: C5000: DataBoxManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) -************* Module azure.mgmt.databoxedge.aio._data_box_edge_management_client -sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\aio\_data_box_edge_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) ************* Module azure.mgmt.databoxedge._data_box_edge_management_client -sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\_data_box_edge_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\_data_box_edge_management_client.py:902:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databoxedge.v2019_03_01._data_box_edge_management_client -sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2019_03_01\_data_box_edge_management_client.py:138:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databoxedge.v2019_07_01._data_box_edge_management_client -sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2019_07_01\_data_box_edge_management_client.py:142:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databoxedge.v2019_08_01._data_box_edge_management_client -sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2019_08_01\_data_box_edge_management_client.py:157:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databoxedge.v2020_05_01_preview._data_box_edge_management_client -sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2020_05_01_preview\_data_box_edge_management_client.py:162:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databoxedge.v2020_09_01._data_box_edge_management_client -sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2020_09_01\_data_box_edge_management_client.py:168:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databoxedge.v2020_09_01_preview._data_box_edge_management_client -sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2020_09_01_preview\_data_box_edge_management_client.py:169:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databoxedge.v2020_12_01._data_box_edge_management_client -sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2020_12_01\_data_box_edge_management_client.py:168:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databoxedge.v2021_02_01._data_box_edge_management_client -sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2021_02_01\_data_box_edge_management_client.py:182:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databoxedge.v2021_02_01_preview._data_box_edge_management_client -sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2021_02_01_preview\_data_box_edge_management_client.py:169:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.databoxedge.v2022_03_01._data_box_edge_management_client -sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\v2022_03_01\_data_box_edge_management_client.py:196:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\_data_box_edge_management_client.py:87:4: C5000: DataBoxEdgeManagementClient::models (unapproved-client-method-name-prefix) +************* Module azure.mgmt.databoxedge.aio._data_box_edge_management_client +sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\aio\_data_box_edge_management_client.py:87:4: C5000: DataBoxEdgeManagementClient::models (unapproved-client-method-name-prefix) ------------------------------------- -Your code has been rated at 10.00/10 +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.50/10, +0.50) -************* Module azure.mgmt.databricks._azure_databricks_management_client -sdk\databricks\azure-mgmt-databricks\azure\mgmt\databricks\_azure_databricks_management_client.py:119:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.datadog._microsoft_datadog_client -sdk\datadog\azure-mgmt-datadog\azure\mgmt\datadog\_microsoft_datadog_client.py:119:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.datafactory._data_factory_management_client -sdk\datafactory\azure-mgmt-datafactory\azure\mgmt\datafactory\_data_factory_management_client.py:231:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.datalake.analytics.account._data_lake_analytics_account_management_client -sdk\datalake\azure-mgmt-datalake-analytics\azure\mgmt\datalake\analytics\account\_data_lake_analytics_account_management_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.datalake.store._data_lake_store_account_management_client -sdk\datalake\azure-mgmt-datalake-store\azure\mgmt\datalake\store\_data_lake_store_account_management_client.py:112:4: C5001: close: Client is using short method names (short-client-method-name) --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +------------------------------------ +Your code has been rated at 10.00/10 -************* Module azure.mgmt.datamigration._data_migration_management_client -sdk\datamigration\azure-mgmt-datamigration\azure\mgmt\datamigration\_data_migration_management_client.py:141:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.dataprotection._data_protection_mgmt_client -sdk\dataprotection\azure-mgmt-dataprotection\azure\mgmt\dataprotection\_data_protection_mgmt_client.py:233:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.datashare._data_share_management_client -sdk\datashare\azure-mgmt-datashare\azure\mgmt\datashare\_data_share_management_client.py:150:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.42/10, +0.58) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.defendereasm._easm_mgmt_client -sdk\defendereasm\azure-mgmt-defendereasm\azure\mgmt\defendereasm\_easm_mgmt_client.py:87:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.desktopvirtualization._desktop_virtualization_mgmt_client -sdk\desktopvirtualization\azure-mgmt-desktopvirtualization\azure\mgmt\desktopvirtualization\_desktop_virtualization_mgmt_client.py:158:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.developer.devcenter._client -sdk\devcenter\azure-developer-devcenter\azure\developer\devcenter\_client.py:65:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\devcenter\azure-developer-devcenter\azure\developer\devcenter\_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.developer.devcenter.aio._client -sdk\devcenter\azure-developer-devcenter\azure\developer\devcenter\aio\_client.py:65:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.mgmt.devcenter._dev_center_mgmt_client -sdk\devcenter\azure-mgmt-devcenter\azure\mgmt\devcenter\_dev_center_mgmt_client.py:224:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.devhub._dev_hub_mgmt_client -sdk\devhub\azure-mgmt-devhub\azure\mgmt\devhub\_dev_hub_mgmt_client.py:82:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.deviceregistry._device_registry_mgmt_client -sdk\deviceregistry\azure-mgmt-deviceregistry\azure\mgmt\deviceregistry\_device_registry_mgmt_client.py:117:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.iot.deviceupdate._client -sdk\deviceupdate\azure-iot-deviceupdate\azure\iot\deviceupdate\_client.py:67:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\deviceupdate\azure-iot-deviceupdate\azure\iot\deviceupdate\_client.py:93:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.iot.deviceupdate.aio._client -sdk\deviceupdate\azure-iot-deviceupdate\azure\iot\deviceupdate\aio\_client.py:67:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.mgmt.deviceupdate._device_update_mgmt_client -sdk\deviceupdate\azure-mgmt-deviceupdate\azure\mgmt\deviceupdate\_device_update_mgmt_client.py:118:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.devopsinfrastructure._client -sdk\devopsinfrastructure\azure-mgmt-devopsinfrastructure\azure\mgmt\devopsinfrastructure\_client.py:107:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\devopsinfrastructure\azure-mgmt-devopsinfrastructure\azure\mgmt\devopsinfrastructure\_client.py:129:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.devopsinfrastructure.aio._client -sdk\devopsinfrastructure\azure-mgmt-devopsinfrastructure\azure\mgmt\devopsinfrastructure\aio\_client.py:108:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.devtestlabs._dev_test_labs_client -sdk\devtestlabs\azure-mgmt-devtestlabs\azure\mgmt\devtestlabs\_dev_test_labs_client.py:198:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------- -Your code has been rated at 10.00/10 +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ************* Module azure.digitaltwins.core._digitaltwins_client -sdk\digitaltwins\azure-digitaltwins-core\azure\digitaltwins\core\_digitaltwins_client.py:398:4: C5000: publish_telemetry: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\digitaltwins\azure-digitaltwins-core\azure\digitaltwins\core\_digitaltwins_client.py:425:4: C5000: publish_component_telemetry: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\digitaltwins\azure-digitaltwins-core\azure\digitaltwins\core\_digitaltwins_client.py:527:4: C5000: decommission_model: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\digitaltwins\azure-digitaltwins-core\azure\digitaltwins\core\_digitaltwins_client.py:637:4: C5000: query_twins: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.digitaltwins.core.aio._digitaltwins_client_async -sdk\digitaltwins\azure-digitaltwins-core\azure\digitaltwins\core\aio\_digitaltwins_client_async.py:677:4: C5000: query_twins: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\digitaltwins\azure-digitaltwins-core\azure\digitaltwins\core\_digitaltwins_client.py:398:4: C5000: DigitalTwinsClient::publish_telemetry (unapproved-client-method-name-prefix) +sdk\digitaltwins\azure-digitaltwins-core\azure\digitaltwins\core\_digitaltwins_client.py:425:4: C5000: DigitalTwinsClient::publish_component_telemetry (unapproved-client-method-name-prefix) +sdk\digitaltwins\azure-digitaltwins-core\azure\digitaltwins\core\_digitaltwins_client.py:527:4: C5000: DigitalTwinsClient::decommission_model (unapproved-client-method-name-prefix) ************* Module azure.mgmt.digitaltwins._azure_digital_twins_management_client -sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\_azure_digital_twins_management_client.py:86:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\_azure_digital_twins_management_client.py:291:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\_azure_digital_twins_management_client.py:86:4: C5000: AzureDigitalTwinsManagementClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.digitaltwins.aio._azure_digital_twins_management_client -sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\aio\_azure_digital_twins_management_client.py:86:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.digitaltwins.v2020_03_01_preview._azure_digital_twins_management_client -sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\v2020_03_01_preview\_azure_digital_twins_management_client.py:93:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.digitaltwins.v2020_10_31._azure_digital_twins_management_client -sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\v2020_10_31\_azure_digital_twins_management_client.py:92:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.digitaltwins.v2020_12_01._azure_digital_twins_management_client -sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\v2020_12_01\_azure_digital_twins_management_client.py:110:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.digitaltwins.v2021_06_30_preview._azure_digital_twins_management_client -sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\v2021_06_30_preview\_azure_digital_twins_management_client.py:118:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.digitaltwins.v2022_05_31._azure_digital_twins_management_client -sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\v2022_05_31\_azure_digital_twins_management_client.py:117:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.digitaltwins.v2022_10_31._azure_digital_twins_management_client -sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\v2022_10_31\_azure_digital_twins_management_client.py:117:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.digitaltwins.v2023_01_31._azure_digital_twins_management_client -sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\v2023_01_31\_azure_digital_twins_management_client.py:117:4: C5001: close: Client is using short method names (short-client-method-name) - ------------------------------------ -Your code has been rated at 9.99/10 - -************* Module azure.mgmt.dnsresolver._dns_resolver_management_client -sdk\dnsresolver\azure-mgmt-dnsresolver\azure\mgmt\dnsresolver\_dns_resolver_management_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\aio\_azure_digital_twins_management_client.py:86:4: C5000: AzureDigitalTwinsManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) -************* Module azure.ai.documentintelligence._client -sdk\documentintelligence\azure-ai-documentintelligence\azure\ai\documentintelligence\_client.py:78:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\documentintelligence\azure-ai-documentintelligence\azure\ai\documentintelligence\_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\documentintelligence\azure-ai-documentintelligence\azure\ai\documentintelligence\_client.py:162:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\documentintelligence\azure-ai-documentintelligence\azure\ai\documentintelligence\_client.py:188:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.ai.documentintelligence.aio._client -sdk\documentintelligence\azure-ai-documentintelligence\azure\ai\documentintelligence\aio\_client.py:80:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\documentintelligence\azure-ai-documentintelligence\azure\ai\documentintelligence\aio\_client.py:168:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.dynatrace._dynatrace_observability_mgmt_client -sdk\dynatrace\azure-mgmt-dynatrace\azure\mgmt\dynatrace\_dynatrace_observability_mgmt_client.py:92:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.defender.easm._client -sdk\easm\azure-defender-easm\azure\defender\easm\_client.py:100:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\easm\azure-defender-easm\azure\defender\easm\_client.py:126:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.defender.easm.aio._client -sdk\easm\azure-defender-easm\azure\defender\easm\aio\_client.py:100:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.01) +Your code has been rated at 10.00/10 (previous run: 9.29/10, +0.71) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ************* Module azure.mgmt.edgeorder._edge_order_management_client -sdk\edgeorder\azure-mgmt-edgeorder\azure\mgmt\edgeorder\_edge_order_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\edgeorder\azure-mgmt-edgeorder\azure\mgmt\edgeorder\_edge_order_management_client.py:175:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.edgeorder.v2020_12_01_preview._edge_order_management_client -sdk\edgeorder\azure-mgmt-edgeorder\azure\mgmt\edgeorder\v2020_12_01_preview\_edge_order_management_client.py:82:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\edgeorder\azure-mgmt-edgeorder\azure\mgmt\edgeorder\_edge_order_management_client.py:87:4: C5000: EdgeOrderManagementClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.edgeorder.aio._edge_order_management_client -sdk\edgeorder\azure-mgmt-edgeorder\azure\mgmt\edgeorder\aio\_edge_order_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.edgeorder.v2021_12_01._edge_order_management_client -sdk\edgeorder\azure-mgmt-edgeorder\azure\mgmt\edgeorder\v2021_12_01\_edge_order_management_client.py:82:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.edgeorder.v2022_05_01_preview._edge_order_management_client -sdk\edgeorder\azure-mgmt-edgeorder\azure\mgmt\edgeorder\v2022_05_01_preview\_edge_order_management_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\edgeorder\azure-mgmt-edgeorder\azure\mgmt\edgeorder\aio\_edge_order_management_client.py:87:4: C5000: EdgeOrderManagementClient::models (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.47/10, +0.53) +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) -************* Module azure.mgmt.edgezones._client -sdk\edgezones\azure-mgmt-edgezones\azure\mgmt\edgezones\_client.py:82:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\edgezones\azure-mgmt-edgezones\azure\mgmt\edgezones\_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.edgezones.aio._client -sdk\edgezones\azure-mgmt-edgezones\azure\mgmt\edgezones\aio\_client.py:82:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.02) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.education._education_management_client -sdk\education\azure-mgmt-education\azure\mgmt\education\_education_management_client.py:98:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.elasticsan._elastic_san_mgmt_client -sdk\elasticsan\azure-mgmt-elasticsan\azure\mgmt\elasticsan\_elastic_san_mgmt_client.py:121:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------- -Your code has been rated at 10.00/10 +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.eventgrid.aio._client -sdk\eventgrid\azure-eventgrid\azure\eventgrid\aio\_client.py:71:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\eventgrid\azure-eventgrid\azure\eventgrid\aio\_client.py:155:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.eventgrid._client -sdk\eventgrid\azure-eventgrid\azure\eventgrid\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\eventgrid\azure-eventgrid\azure\eventgrid\_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\eventgrid\azure-eventgrid\azure\eventgrid\_client.py:149:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\eventgrid\azure-eventgrid\azure\eventgrid\_client.py:175:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.eventgrid._legacy._publisher_client -sdk\eventgrid\azure-eventgrid\azure\eventgrid\_legacy\_publisher_client.py:142:4: C5001: send: Client is using short method names (short-client-method-name) -sdk\eventgrid\azure-eventgrid\azure\eventgrid\_legacy\_publisher_client.py:238:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.eventgrid._event_grid_management_client -sdk\eventgrid\azure-mgmt-eventgrid\azure\mgmt\eventgrid\_event_grid_management_client.py:273:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ************* Module azure.eventhub._consumer_client -sdk\eventhub\azure-eventhub\azure\eventhub\_consumer_client.py:474:4: C5001: receive: Client is using short method names (short-client-method-name) -sdk\eventhub\azure-eventhub\azure\eventhub\_consumer_client.py:585:4: C5000: receive_batch: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_consumer_client.py:750:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\eventhub\azure-eventhub\azure\eventhub\_consumer_client.py:474:4: C5000: EventHubConsumerClient::receive (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_consumer_client.py:585:4: C5000: EventHubConsumerClient::receive_batch (unapproved-client-method-name-prefix) ************* Module azure.eventhub._producer_client -sdk\eventhub\azure-eventhub\azure\eventhub\_producer_client.py:597:4: C5000: send_event: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_producer_client.py:674:4: C5000: send_batch: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_producer_client.py:893:4: C5001: flush: Client is using short method names (short-client-method-name) -sdk\eventhub\azure-eventhub\azure\eventhub\_producer_client.py:908:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\eventhub\azure-eventhub\azure\eventhub\_producer_client.py:893:4: C5000: EventHubProducerClient::flush (unapproved-client-method-name-prefix) ************* Module azure.eventhub._pyamqp.client -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:299:4: C5001: open: Client is using short method names (short-client-method-name) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:353:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:386:4: C5000: auth_complete: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:398:4: C5000: client_ready: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:417:4: C5000: do_work: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:433:4: C5000: mgmt_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:703:4: C5000: send_message: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:943:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:947:4: C5000: receive_message_batch: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:983:4: C5000: receive_messages_iter: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1031:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1042:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1053:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1065:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1079:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1091:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.mgmt.eventhub.aio._event_hub_management_client -sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\aio\_event_hub_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:299:4: C5000: AMQPClient::open (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:386:4: C5000: AMQPClient::auth_complete (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:398:4: C5000: AMQPClient::client_ready (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:417:4: C5000: AMQPClient::do_work (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:433:4: C5000: AMQPClient::mgmt_request (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:947:4: C5000: ReceiveClient::receive_message_batch (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:983:4: C5000: ReceiveClient::receive_messages_iter (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1031:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1042:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1053:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1065:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1079:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) +sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1091:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) ************* Module azure.mgmt.eventhub._event_hub_management_client -sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\_event_hub_management_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\_event_hub_management_client.py:495:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.eventhub.v2015_08_01._event_hub_management_client -sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\v2015_08_01\_event_hub_management_client.py:93:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.eventhub.v2017_04_01._event_hub_management_client -sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\v2017_04_01\_event_hub_management_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.eventhub.v2018_01_01_preview._event_hub_management_client -sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\v2018_01_01_preview\_event_hub_management_client.py:134:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.eventhub.v2021_01_01_preview._event_hub_management_client -sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\v2021_01_01_preview\_event_hub_management_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.eventhub.v2021_06_01_preview._event_hub_management_client -sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\v2021_06_01_preview\_event_hub_management_client.py:130:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.eventhub.v2021_11_01._event_hub_management_client -sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\v2021_11_01\_event_hub_management_client.py:132:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.eventhub.v2022_01_01_preview._event_hub_management_client -sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\v2022_01_01_preview\_event_hub_management_client.py:158:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.eventhub.v2022_10_01_preview._event_hub_management_client -sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\v2022_10_01_preview\_event_hub_management_client.py:158:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\_event_hub_management_client.py:87:4: C5000: EventHubManagementClient::models (unapproved-client-method-name-prefix) +************* Module azure.mgmt.eventhub.aio._event_hub_management_client +sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\aio\_event_hub_management_client.py:87:4: C5000: EventHubManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +------------------------------------ +Your code has been rated at 10.00/10 -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.ai.vision.face._client -sdk\face\azure-ai-vision-face\azure\ai\vision\face\_client.py:67:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\face\azure-ai-vision-face\azure\ai\vision\face\_client.py:94:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\face\azure-ai-vision-face\azure\ai\vision\face\_client.py:146:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\face\azure-ai-vision-face\azure\ai\vision\face\_client.py:173:4: C5001: close: Client is using short method names (short-client-method-name) ************* Module azure.ai.vision.face._patch -sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:36:4: C5000: detect_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:52:4: C5000: detect_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:68:4: C5000: detect_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:84:4: C5000: detect_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:485:4: C5001: detect: Client is using short method names (short-client-method-name) -************* Module azure.ai.vision.face.aio._client -sdk\face\azure-ai-vision-face\azure\ai\vision\face\aio\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\face\azure-ai-vision-face\azure\ai\vision\face\aio\_client.py:152:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:36:4: C5000: FaceClient::detect_from_url (unapproved-client-method-name-prefix) +sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:52:4: C5000: FaceClient::detect_from_url (unapproved-client-method-name-prefix) +sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:68:4: C5000: FaceClient::detect_from_url (unapproved-client-method-name-prefix) +sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:84:4: C5000: FaceClient::detect_from_url (unapproved-client-method-name-prefix) +sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:485:4: C5000: FaceClient::detect (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.96/10 (previous run: 10.00/10, -0.04) +Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.02) -************* Module azure.mgmt.fluidrelay._fluid_relay_management_client -sdk\fluidrelay\azure-mgmt-fluidrelay\azure\mgmt\fluidrelay\_fluid_relay_management_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.96/10, +0.03) +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) -************* Module azure.ai.formrecognizer._document_analysis_client -sdk\formrecognizer\azure-ai-formrecognizer\azure\ai\formrecognizer\_document_analysis_client.py:311:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.ai.formrecognizer._form_recognizer_client -sdk\formrecognizer\azure-ai-formrecognizer\azure\ai\formrecognizer\_form_recognizer_client.py:833:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.ai.formrecognizer._form_training_client -sdk\formrecognizer\azure-ai-formrecognizer\azure\ai\formrecognizer\_form_training_client.py:460:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.ai.formrecognizer._document_model_administration_client -sdk\formrecognizer\azure-ai-formrecognizer\azure\ai\formrecognizer\_document_model_administration_client.py:821:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.99/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.graphservices._graph_services_mgmt_client -sdk\graphservices\azure-mgmt-graphservices\azure\mgmt\graphservices\_graph_services_mgmt_client.py:86:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.hanaonazure._hana_management_client -sdk\hanaonazure\azure-mgmt-hanaonazure\azure\mgmt\hanaonazure\_hana_management_client.py:92:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.99/10, +0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.hardwaresecuritymodules._hardware_security_modules_mgmt_client -sdk\hardwaresecuritymodules\azure-mgmt-hardwaresecuritymodules\azure\mgmt\hardwaresecuritymodules\_hardware_security_modules_mgmt_client.py:117:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.hdinsight._hd_insight_management_client -sdk\hdinsight\azure-mgmt-hdinsight\azure\mgmt\hdinsight\_hd_insight_management_client.py:157:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.hdinsightcontainers._hd_insight_containers_mgmt_client -sdk\hdinsight\azure-mgmt-hdinsightcontainers\azure\mgmt\hdinsightcontainers\_hd_insight_containers_mgmt_client.py:171:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.healthbot._health_bot_mgmt_client -sdk\healthbot\azure-mgmt-healthbot\azure\mgmt\healthbot\_health_bot_mgmt_client.py:88:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.healthcareapis._healthcare_apis_management_client -sdk\healthcareapis\azure-mgmt-healthcareapis\azure\mgmt\healthcareapis\_healthcare_apis_management_client.py:173:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.66/10, +0.34) - -************* Module azure.health.deidentification._client -sdk\healthdataaiservices\azure-health-deidentification\azure\health\deidentification\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\healthdataaiservices\azure-health-deidentification\azure\health\deidentification\_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.health.deidentification.aio._client -sdk\healthdataaiservices\azure-health-deidentification\azure\health\deidentification\aio\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.mgmt.healthdataaiservices._client -sdk\healthdataaiservices\azure-mgmt-healthdataaiservices\azure\mgmt\healthdataaiservices\_client.py:94:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\healthdataaiservices\azure-mgmt-healthdataaiservices\azure\mgmt\healthdataaiservices\_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.healthdataaiservices.aio._client -sdk\healthdataaiservices\azure-mgmt-healthdataaiservices\azure\mgmt\healthdataaiservices\aio\_client.py:94:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.99/10, -0.01) - -************* Module azure.healthinsights.cancerprofiling.aio._client -sdk\healthinsights\azure-healthinsights-cancerprofiling\azure\healthinsights\cancerprofiling\aio\_client.py:46:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.healthinsights.cancerprofiling._client -sdk\healthinsights\azure-healthinsights-cancerprofiling\azure\healthinsights\cancerprofiling\_client.py:48:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\healthinsights\azure-healthinsights-cancerprofiling\azure\healthinsights\cancerprofiling\_client.py:74:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.healthinsights.clinicalmatching._client -sdk\healthinsights\azure-healthinsights-clinicalmatching\azure\healthinsights\clinicalmatching\_client.py:48:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\healthinsights\azure-healthinsights-clinicalmatching\azure\healthinsights\clinicalmatching\_client.py:74:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.healthinsights.clinicalmatching.aio._client -sdk\healthinsights\azure-healthinsights-clinicalmatching\azure\healthinsights\clinicalmatching\aio\_client.py:48:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.healthinsights.radiologyinsights._client -sdk\healthinsights\azure-healthinsights-radiologyinsights\azure\healthinsights\radiologyinsights\_client.py:71:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\healthinsights\azure-healthinsights-radiologyinsights\azure\healthinsights\radiologyinsights\_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.healthinsights.radiologyinsights.aio._client -sdk\healthinsights\azure-healthinsights-radiologyinsights\azure\healthinsights\radiologyinsights\aio\_client.py:73:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.98/10 (previous run: 9.99/10, -0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.hybridcompute._hybrid_compute_management_client -sdk\hybridcompute\azure-mgmt-hybridcompute\azure\mgmt\hybridcompute\_hybrid_compute_management_client.py:175:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.hybridconnectivity._hybrid_connectivity_mgmt_client -sdk\hybridconnectivity\azure-mgmt-hybridconnectivity\azure\mgmt\hybridconnectivity\_hybrid_connectivity_mgmt_client.py:82:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.98/10, +0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.hybridcontainerservice._hybrid_container_service_mgmt_client -sdk\hybridcontainerservice\azure-mgmt-hybridcontainerservice\azure\mgmt\hybridcontainerservice\_hybrid_container_service_mgmt_client.py:124:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.hybridkubernetes._connected_kubernetes_client -sdk\hybridkubernetes\azure-mgmt-hybridkubernetes\azure\mgmt\hybridkubernetes\_connected_kubernetes_client.py:88:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.hybridnetwork._hybrid_network_management_client -sdk\hybridnetwork\azure-mgmt-hybridnetwork\azure\mgmt\hybridnetwork\_hybrid_network_management_client.py:168:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------- -Your code has been rated at 10.00/10 +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ************* Module azure.identity._internal.aad_client -sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:24:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:27:4: C5000: obtain_token_by_authorization_code: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:35:4: C5000: obtain_token_by_client_certificate: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:41:4: C5000: obtain_token_by_client_secret: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:45:4: C5000: obtain_token_by_jwt_assertion: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:49:4: C5000: obtain_token_by_refresh_token: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:53:4: C5000: obtain_token_on_behalf_of: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:27:4: C5000: AadClient::obtain_token_by_authorization_code (unapproved-client-method-name-prefix) +sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:35:4: C5000: AadClient::obtain_token_by_client_certificate (unapproved-client-method-name-prefix) +sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:41:4: C5000: AadClient::obtain_token_by_client_secret (unapproved-client-method-name-prefix) +sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:45:4: C5000: AadClient::obtain_token_by_jwt_assertion (unapproved-client-method-name-prefix) +sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:49:4: C5000: AadClient::obtain_token_by_refresh_token (unapproved-client-method-name-prefix) +sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:53:4: C5000: AadClient::obtain_token_on_behalf_of (unapproved-client-method-name-prefix) ************* Module azure.identity._internal.managed_identity_client -sdk\identity\azure-identity\azure\identity\_internal\managed_identity_client.py:124:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\identity\azure-identity\azure\identity\_internal\managed_identity_client.py:127:4: C5000: request_token: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.identity._internal.msal_managed_identity_client -sdk\identity\azure-identity\azure\identity\_internal\msal_managed_identity_client.py:45:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\identity\azure-identity\azure\identity\_internal\managed_identity_client.py:127:4: C5000: ManagedIdentityClient::request_token (unapproved-client-method-name-prefix) ************* Module azure.identity._internal.msal_client -sdk\identity\azure-identity\azure\identity\_internal\msal_client.py:75:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\identity\azure-identity\azure\identity\_internal\msal_client.py:78:4: C5001: post: Client is using short method names (short-client-method-name) - ------------------------------------------------------------------- -Your code has been rated at 9.97/10 (previous run: 9.99/10, -0.02) - -************* Module azure.mgmt.informaticadatamanagement._informatica_data_mgmt_client -sdk\informaticadatamanagement\azure-mgmt-informaticadatamanagement\azure\mgmt\informaticadatamanagement\_informatica_data_mgmt_client.py:113:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\identity\azure-identity\azure\identity\_internal\msal_client.py:78:4: C5000: MsalClient::post (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.97/10, +0.03) +Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.02) -************* Module azure.mgmt.iotfirmwaredefense._io_tfirmware_defense_mgmt_client -sdk\iotfirmwaredefense\azure-mgmt-iotfirmwaredefense\azure\mgmt\iotfirmwaredefense\_io_tfirmware_defense_mgmt_client.py:124:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.iot.deviceprovisioning._client -sdk\iothub\azure-iot-deviceprovisioning\azure\iot\deviceprovisioning\_client.py:68:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\iothub\azure-iot-deviceprovisioning\azure\iot\deviceprovisioning\_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.iot.deviceprovisioning.aio._client -sdk\iothub\azure-iot-deviceprovisioning\azure\iot\deviceprovisioning\aio\_client.py:66:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.mgmt.iotcentral._iot_central_client -sdk\iothub\azure-mgmt-iotcentral\azure\mgmt\iotcentral\_iot_central_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) + +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) + ************* Module azure.mgmt.iothub._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\_iot_hub_client.py:88:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\_iot_hub_client.py:509:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\_iot_hub_client.py:88:4: C5000: IotHubClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.iothub.aio._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\aio\_iot_hub_client.py:88:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.iothub.v2016_02_03._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2016_02_03\_iot_hub_client.py:83:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.iothub.v2017_01_19._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2017_01_19\_iot_hub_client.py:83:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.iothub.v2017_07_01._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2017_07_01\_iot_hub_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.iothub.v2018_01_22._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2018_01_22\_iot_hub_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.iothub.v2018_04_01._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2018_04_01\_iot_hub_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.iothub.v2019_03_22._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2019_03_22\_iot_hub_client.py:106:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.iothub.v2019_07_01_preview._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2019_07_01_preview\_iot_hub_client.py:111:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.iothub.v2019_11_04._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2019_11_04\_iot_hub_client.py:106:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.iothub.v2020_03_01._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2020_03_01\_iot_hub_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.iothub.v2021_03_03_preview._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2021_03_03_preview\_iot_hub_client.py:125:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.iothub.v2021_03_31._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2021_03_31\_iot_hub_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.iothub.v2021_07_01._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2021_07_01\_iot_hub_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.iothub.v2021_07_02._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2021_07_02\_iot_hub_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.iothub.v2022_04_30_preview._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2022_04_30_preview\_iot_hub_client.py:125:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.iothub.v2022_11_15_preview._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2022_11_15_preview\_iot_hub_client.py:125:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.iothub.v2023_06_30._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2023_06_30\_iot_hub_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.iothub.v2023_06_30_preview._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\v2023_06_30_preview\_iot_hub_client.py:125:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.iothubprovisioningservices._iot_dps_client -sdk\iothub\azure-mgmt-iothubprovisioningservices\azure\mgmt\iothubprovisioningservices\_iot_dps_client.py:89:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\aio\_iot_hub_client.py:88:4: C5000: IotHubClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) ************* Module azure.keyvault.certificates._client -sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:274:4: C5000: purge_deleted_certificate: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:344:4: C5000: import_certificate: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:486:4: C5000: backup_certificate: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:516:4: C5000: restore_certificate_backup: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:772:4: C5000: cancel_certificate_operation: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:791:4: C5000: merge_certificate: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:274:4: C5000: CertificateClient::purge_deleted_certificate (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:344:4: C5000: CertificateClient::import_certificate (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:486:4: C5000: CertificateClient::backup_certificate (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:516:4: C5000: CertificateClient::restore_certificate_backup (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:791:4: C5000: CertificateClient::merge_certificate (unapproved-client-method-name-prefix) ************* Module azure.keyvault.keys._client -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:492:4: C5000: purge_deleted_key: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:627:4: C5000: backup_key: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:656:4: C5000: restore_key_backup: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:689:4: C5000: import_key: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:743:4: C5000: release_key: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:819:4: C5000: rotate_key: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:492:4: C5000: KeyClient::purge_deleted_key (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:627:4: C5000: KeyClient::backup_key (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:656:4: C5000: KeyClient::restore_key_backup (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:689:4: C5000: KeyClient::import_key (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:743:4: C5000: KeyClient::release_key (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:819:4: C5000: KeyClient::rotate_key (unapproved-client-method-name-prefix) ************* Module azure.keyvault.keys.crypto._client -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:250:4: C5001: encrypt: Client is using short method names (short-client-method-name) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:326:4: C5001: decrypt: Client is using short method names (short-client-method-name) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:390:4: C5000: wrap_key: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:434:4: C5000: unwrap_key: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:476:4: C5001: sign: Client is using short method names (short-client-method-name) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:520:4: C5001: verify: Client is using short method names (short-client-method-name) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:250:4: C5000: CryptographyClient::encrypt (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:326:4: C5000: CryptographyClient::decrypt (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:390:4: C5000: CryptographyClient::wrap_key (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:434:4: C5000: CryptographyClient::unwrap_key (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:476:4: C5000: CryptographyClient::sign (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:520:4: C5000: CryptographyClient::verify (unapproved-client-method-name-prefix) ************* Module azure.keyvault.secrets._client -sdk\keyvault\azure-keyvault-secrets\azure\keyvault\secrets\_client.py:255:4: C5000: backup_secret: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-secrets\azure\keyvault\secrets\_client.py:279:4: C5000: restore_secret_backup: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-secrets\azure\keyvault\secrets\_client.py:407:4: C5000: purge_deleted_secret: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-secrets\azure\keyvault\secrets\_client.py:255:4: C5000: SecretClient::backup_secret (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-secrets\azure\keyvault\secrets\_client.py:279:4: C5000: SecretClient::restore_secret_backup (unapproved-client-method-name-prefix) +sdk\keyvault\azure-keyvault-secrets\azure\keyvault\secrets\_client.py:407:4: C5000: SecretClient::purge_deleted_secret (unapproved-client-method-name-prefix) ************* Module azure.mgmt.keyvault._key_vault_management_client -sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\_key_vault_management_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\_key_vault_management_client.py:498:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\_key_vault_management_client.py:109:4: C5000: KeyVaultManagementClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.keyvault.aio._key_vault_management_client -sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\aio\_key_vault_management_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.keyvault.v2016_10_01._key_vault_management_client -sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2016_10_01\_key_vault_management_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.keyvault.v2018_02_14._key_vault_management_client -sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2018_02_14\_key_vault_management_client.py:126:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.keyvault.v2019_09_01._key_vault_management_client -sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2019_09_01\_key_vault_management_client.py:130:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.keyvault.v2020_04_01_preview._key_vault_management_client -sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2020_04_01_preview\_key_vault_management_client.py:146:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.keyvault.v2021_04_01_preview._key_vault_management_client -sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2021_04_01_preview\_key_vault_management_client.py:150:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.keyvault.v2021_06_01_preview._key_vault_management_client -sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2021_06_01_preview\_key_vault_management_client.py:160:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.keyvault.v2021_10_01._key_vault_management_client -sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2021_10_01\_key_vault_management_client.py:154:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.keyvault.v2022_07_01._key_vault_management_client -sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2022_07_01\_key_vault_management_client.py:154:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.keyvault.v2023_02_01._key_vault_management_client -sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2023_02_01\_key_vault_management_client.py:166:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.keyvault.v2023_07_01._key_vault_management_client -sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\v2023_07_01\_key_vault_management_client.py:166:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\aio\_key_vault_management_client.py:109:4: C5000: KeyVaultManagementClient::models (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.79/10, +0.20) +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) ************* Module azure.mgmt.kubernetesconfiguration._source_control_configuration_client -sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\_source_control_configuration_client.py:95:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\_source_control_configuration_client.py:509:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\_source_control_configuration_client.py:95:4: C5000: SourceControlConfigurationClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.kubernetesconfiguration.aio._source_control_configuration_client -sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\aio\_source_control_configuration_client.py:95:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.kubernetesconfiguration.v2020_07_01_preview._source_control_configuration_client -sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2020_07_01_preview\_source_control_configuration_client.py:99:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.kubernetesconfiguration.v2020_10_01_preview._source_control_configuration_client -sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2020_10_01_preview\_source_control_configuration_client.py:93:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.kubernetesconfiguration.v2021_03_01._source_control_configuration_client -sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2021_03_01\_source_control_configuration_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.kubernetesconfiguration.v2021_05_01_preview._source_control_configuration_client -sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2021_05_01_preview\_source_control_configuration_client.py:137:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.kubernetesconfiguration.v2021_09_01._source_control_configuration_client -sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2021_09_01\_source_control_configuration_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.kubernetesconfiguration.v2021_11_01_preview._source_control_configuration_client -sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2021_11_01_preview\_source_control_configuration_client.py:151:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.kubernetesconfiguration.v2022_01_01_preview._source_control_configuration_client -sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2022_01_01_preview\_source_control_configuration_client.py:151:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.kubernetesconfiguration.v2022_01_15_preview._source_control_configuration_client -sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2022_01_15_preview\_source_control_configuration_client.py:107:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.kubernetesconfiguration.v2022_03_01._source_control_configuration_client -sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2022_03_01\_source_control_configuration_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.kubernetesconfiguration.v2022_04_02_preview._source_control_configuration_client -sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2022_04_02_preview\_source_control_configuration_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.kubernetesconfiguration.v2022_07_01._source_control_configuration_client -sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2022_07_01\_source_control_configuration_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.kubernetesconfiguration.v2022_11_01._source_control_configuration_client -sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2022_11_01\_source_control_configuration_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.kubernetesconfiguration.v2023_05_01._source_control_configuration_client -sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\v2023_05_01\_source_control_configuration_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\aio\_source_control_configuration_client.py:95:4: C5000: SourceControlConfigurationClient::models (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) -************* Module azure.mgmt.kusto._kusto_management_client -sdk\kusto\azure-mgmt-kusto\azure\mgmt\kusto\_kusto_management_client.py:173:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------- -Your code has been rated at 10.00/10 +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.41/10, +0.59) -************* Module azure.mgmt.labservices._managed_labs_client -sdk\labservices\azure-mgmt-labservices\azure\mgmt\labservices\_managed_labs_client.py:123:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------- -Your code has been rated at 10.00/10 +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.largeinstance._large_instance_mgmt_client -sdk\largeinstance\azure-mgmt-largeinstance\azure\mgmt\largeinstance\_large_instance_mgmt_client.py:114:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.loadtesting._load_test_mgmt_client -sdk\loadtesting\azure-mgmt-loadtesting\azure\mgmt\loadtesting\_load_test_mgmt_client.py:87:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.developer.loadtesting._client -sdk\loadtesting\azure-developer-loadtesting\azure\developer\loadtesting\_client.py:31:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\loadtesting\azure-developer-loadtesting\azure\developer\loadtesting\_client.py:57:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.developer.loadtesting.aio._client -sdk\loadtesting\azure-developer-loadtesting\azure\developer\loadtesting\aio\_client.py:44:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.98/10 (previous run: 9.99/10, -0.02) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.loganalytics.log_analytics_data_client -sdk\loganalytics\azure-loganalytics\azure\loganalytics\log_analytics_data_client.py:69:4: C5001: query: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.loganalytics._log_analytics_management_client -sdk\loganalytics\azure-mgmt-loganalytics\azure\mgmt\loganalytics\_log_analytics_management_client.py:183:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.logic._logic_management_client -sdk\logic\azure-mgmt-logic\azure\mgmt\logic\_logic_management_client.py:265:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.guestconfig._guest_configuration_client -sdk\machinelearning\azure-mgmt-guestconfig\azure\mgmt\guestconfig\_guest_configuration_client.py:131:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.machinelearningcompute._machine_learning_compute_management_client -sdk\machinelearning\azure-mgmt-machinelearningcompute\azure\mgmt\machinelearningcompute\_machine_learning_compute_management_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.machinelearningservices._machine_learning_services_mgmt_client -sdk\machinelearning\azure-mgmt-machinelearningservices\azure\mgmt\machinelearningservices\_machine_learning_services_mgmt_client.py:305:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.maintenance._maintenance_management_client -sdk\maintenance\azure-mgmt-maintenance\azure\mgmt\maintenance\_maintenance_management_client.py:175:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.51/10, +0.48) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.managedapplications._managed_applications_mgmt_client -sdk\managedapplications\azure-mgmt-managedapplications\azure\mgmt\managedapplications\_managed_applications_mgmt_client.py:99:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.managednetworkfabric._managed_network_fabric_mgmt_client -sdk\managednetworkfabric\azure-mgmt-managednetworkfabric\azure\mgmt\managednetworkfabric\_managed_network_fabric_mgmt_client.py:222:4: C5001: close: Client is using short method names (short-client-method-name) --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +------------------------------------ +Your code has been rated at 10.00/10 -************* Module azure.mgmt.managedservices._managed_services_client -sdk\managedservices\azure-mgmt-managedservices\azure\mgmt\managedservices\_managed_services_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- @@ -1749,325 +708,96 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.maps.render._client -sdk\maps\azure-maps-render\azure\maps\render\_client.py:87:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\maps\azure-maps-render\azure\maps\render\_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.maps.render.aio._client -sdk\maps\azure-maps-render\azure\maps\render\aio\_client.py:87:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.maps.search._client -sdk\maps\azure-maps-search\azure\maps\search\_client.py:92:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\maps\azure-maps-search\azure\maps\search\_client.py:114:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.maps.search.aio._client -sdk\maps\azure-maps-search\azure\maps\search\aio\_client.py:92:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.maps.timezone._client -sdk\maps\azure-maps-timezone\azure\maps\timezone\_client.py:82:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\maps\azure-maps-timezone\azure\maps\timezone\_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.maps.timezone.aio._client -sdk\maps\azure-maps-timezone\azure\maps\timezone\aio\_client.py:82:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.maps.weather._client -sdk\maps\azure-maps-weather\azure\maps\weather\_client.py:81:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\maps\azure-maps-weather\azure\maps\weather\_client.py:103:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.maps.weather.aio._client -sdk\maps\azure-maps-weather\azure\maps\weather\aio\_client.py:82:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.mgmt.maps._azure_maps_management_client -sdk\maps\azure-mgmt-maps\azure\mgmt\maps\_azure_maps_management_client.py:87:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.02) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ************* Module azure.ai.metricsadvisor._patch -sdk\metricsadvisor\azure-ai-metricsadvisor\azure\ai\metricsadvisor\_patch.py:161:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\metricsadvisor\azure-ai-metricsadvisor\azure\ai\metricsadvisor\_patch.py:734:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\metricsadvisor\azure-ai-metricsadvisor\azure\ai\metricsadvisor\_patch.py:1159:4: C5000: refresh_data_feed_ingestion: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.ai.metricsadvisor._client -sdk\metricsadvisor\azure-ai-metricsadvisor\azure\ai\metricsadvisor\_client.py:46:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\metricsadvisor\azure-ai-metricsadvisor\azure\ai\metricsadvisor\_client.py:72:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.ai.metricsadvisor.aio._client -sdk\metricsadvisor\azure-ai-metricsadvisor\azure\ai\metricsadvisor\aio\_client.py:46:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\metricsadvisor\azure-ai-metricsadvisor\azure\ai\metricsadvisor\_patch.py:1159:4: C5000: MetricsAdvisorAdministrationClient::refresh_data_feed_ingestion (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) -************* Module azure.mgmt.migrationdiscoverysap._migration_discovery_sap_mgmt_client -sdk\migrationdiscovery\azure-mgmt-migrationdiscoverysap\azure\mgmt\migrationdiscoverysap\_migration_discovery_sap_mgmt_client.py:98:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.mixedreality._mixed_reality_client -sdk\mixedreality\azure-mgmt-mixedreality\azure\mgmt\mixedreality\_mixed_reality_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mixedreality.authentication._client -sdk\mixedreality\azure-mixedreality-authentication\azure\mixedreality\authentication\_client.py:102:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ************* Module azure.ai.ml.identity._internal.managed_identity_client -sdk\ml\azure-ai-ml\azure\ai\ml\identity\_internal\managed_identity_client.py:117:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\ml\azure-ai-ml\azure\ai\ml\identity\_internal\managed_identity_client.py:120:4: C5000: request_token: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\ml\azure-ai-ml\azure\ai\ml\identity\_internal\managed_identity_client.py:120:4: C5000: ManagedIdentityClient::request_token (unapproved-client-method-name-prefix) ************* Module azure.ai.ml._artifacts._blob_storage_helper -sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_blob_storage_helper.py:68:4: C5001: upload: Client is using short method names (short-client-method-name) -sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_blob_storage_helper.py:233:4: C5001: download: Client is using short method names (short-client-method-name) -sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_blob_storage_helper.py:297:4: C5001: exists: Client is using short method names (short-client-method-name) -************* Module azure.ai.ml._artifacts._fileshare_storage_helper -sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_fileshare_storage_helper.py:66:4: C5001: upload: Client is using short method names (short-client-method-name) -sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_fileshare_storage_helper.py:135:4: C5000: upload_file: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_fileshare_storage_helper.py:196:4: C5000: upload_dir: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_fileshare_storage_helper.py:254:4: C5001: exists: Client is using short method names (short-client-method-name) -sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_fileshare_storage_helper.py:290:4: C5001: download: Client is using short method names (short-client-method-name) +sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_blob_storage_helper.py:297:4: C5000: BlobStorageClient::exists (unapproved-client-method-name-prefix) ************* Module azure.ai.ml._artifacts._gen2_storage_helper -sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_gen2_storage_helper.py:57:4: C5001: upload: Client is using short method names (short-client-method-name) -sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_gen2_storage_helper.py:188:4: C5001: download: Client is using short method names (short-client-method-name) -sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_gen2_storage_helper.py:248:4: C5001: exists: Client is using short method names (short-client-method-name) +sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_gen2_storage_helper.py:248:4: C5000: Gen2StorageClient::exists (unapproved-client-method-name-prefix) +************* Module azure.ai.ml._artifacts._fileshare_storage_helper +sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_fileshare_storage_helper.py:254:4: C5000: FileStorageClient::exists (unapproved-client-method-name-prefix) ************* Module azure.ai.ml._local_endpoints.docker_client -sdk\ml\azure-ai-ml\azure\ai\ml\_local_endpoints\docker_client.py:317:4: C5001: logs: Client is using short method names (short-client-method-name) +sdk\ml\azure-ai-ml\azure\ai\ml\_local_endpoints\docker_client.py:317:4: C5000: DockerClient::logs (unapproved-client-method-name-prefix) ************* Module azure.ai.ml._local_endpoints.vscode_debug.vscode_client -sdk\ml\azure-ai-ml\azure\ai\ml\_local_endpoints\vscode_debug\vscode_client.py:36:4: C5000: invoke_dev_container: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\ml\azure-ai-ml\azure\ai\ml\_local_endpoints\vscode_debug\vscode_client.py:36:4: C5000: VSCodeClient::invoke_dev_container (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) -************* Module azure.mgmt.mobilenetwork._mobile_network_management_client -sdk\mobilenetwork\azure-mgmt-mobilenetwork\azure\mgmt\mobilenetwork\_mobile_network_management_client.py:192:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------- -Your code has been rated at 10.00/10 +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.iot.modelsrepository._client -sdk\modelsrepository\azure-iot-modelsrepository\azure\iot\modelsrepository\_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 9.96/10 (previous run: 10.00/10, -0.04) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.mongocluster._client -sdk\mongocluster\azure-mgmt-mongocluster\azure\mgmt\mongocluster\_client.py:103:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\mongocluster\azure-mgmt-mongocluster\azure\mgmt\mongocluster\_client.py:125:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.mongocluster.aio._client -sdk\mongocluster\azure-mgmt-mongocluster\azure\mgmt\mongocluster\aio\_client.py:103:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.96/10, +0.03) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ************* Module azure.mgmt.monitor._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\_monitor_management_client.py:121:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\_monitor_management_client.py:916:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\_monitor_management_client.py:121:4: C5000: MonitorManagementClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.monitor.aio._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\aio\_monitor_management_client.py:121:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2015_04_01._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2015_04_01\_monitor_management_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2015_07_01._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2015_07_01\_monitor_management_client.py:98:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2016_03_01._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2016_03_01\_monitor_management_client.py:101:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2016_09_01._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2016_09_01\_monitor_management_client.py:79:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2017_03_01_preview._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2017_03_01_preview\_monitor_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2017_04_01._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2017_04_01\_monitor_management_client.py:87:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2017_05_01_preview._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2017_05_01_preview\_monitor_management_client.py:111:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2017_12_01_preview._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2017_12_01_preview\_monitor_management_client.py:76:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2018_01_01._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2018_01_01\_monitor_management_client.py:79:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2018_03_01._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2018_03_01\_monitor_management_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2018_04_16._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2018_04_16\_monitor_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2018_06_01_preview._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2018_06_01_preview\_monitor_management_client.py:91:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2018_09_01._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2018_09_01\_monitor_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2018_11_27_preview._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2018_11_27_preview\_monitor_management_client.py:73:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2019_03_01._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2019_03_01\_monitor_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2019_06_01._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2019_06_01\_monitor_management_client.py:81:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2019_10_17._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2019_10_17\_monitor_management_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2019_11_01_preview._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2019_11_01_preview\_monitor_management_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2020_01_01_preview._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2020_01_01_preview\_monitor_management_client.py:77:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2020_05_01_preview._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2020_05_01_preview\_monitor_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2020_10_01._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2020_10_01\_monitor_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2021_04_01._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2021_04_01\_monitor_management_client.py:100:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2021_05_01._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2021_05_01\_monitor_management_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2021_05_01_preview._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2021_05_01_preview\_monitor_management_client.py:122:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2021_06_03_preview._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2021_06_03_preview\_monitor_management_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2021_07_01_preview._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2021_07_01_preview\_monitor_management_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2021_09_01._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2021_09_01\_monitor_management_client.py:83:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2022_02_01_preview._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2022_02_01_preview\_monitor_management_client.py:100:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2022_04_01._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2022_04_01\_monitor_management_client.py:83:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2022_06_01._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2022_06_01\_monitor_management_client.py:106:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2022_08_01_preview._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2022_08_01_preview\_monitor_management_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2022_10_01._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2022_10_01\_monitor_management_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2023_01_01._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2023_01_01\_monitor_management_client.py:83:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.monitor.v2023_03_01_preview._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\v2023_03_01_preview\_monitor_management_client.py:76:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.monitor.ingestion._client -sdk\monitor\azure-monitor-ingestion\azure\monitor\ingestion\_client.py:64:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\monitor\azure-monitor-ingestion\azure\monitor\ingestion\_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.monitor.ingestion.aio._client -sdk\monitor\azure-monitor-ingestion\azure\monitor\ingestion\aio\_client.py:64:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.monitor.query._logs_query_client -sdk\monitor\azure-monitor-query\azure\monitor\query\_logs_query_client.py:79:4: C5000: query_workspace: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\monitor\azure-monitor-query\azure\monitor\query\_logs_query_client.py:151:4: C5000: query_batch: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\monitor\azure-monitor-query\azure\monitor\query\_logs_query_client.py:197:4: C5000: query_resource: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\monitor\azure-monitor-query\azure\monitor\query\_logs_query_client.py:268:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.monitor.query._metrics_query_client -sdk\monitor\azure-monitor-query\azure\monitor\query\_metrics_query_client.py:71:4: C5000: query_resource: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\monitor\azure-monitor-query\azure\monitor\query\_metrics_query_client.py:238:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.monitor.query._metrics_client -sdk\monitor\azure-monitor-query\azure\monitor\query\_metrics_client.py:69:4: C5000: query_resources: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\monitor\azure-monitor-query\azure\monitor\query\_metrics_client.py:190:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\aio\_monitor_management_client.py:121:4: C5000: MonitorManagementClient::models (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.99/10, +0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) -************* Module azure.mgmt.netapp._net_app_management_client -sdk\netapp\azure-mgmt-netapp\azure\mgmt\netapp\_net_app_management_client.py:191:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.dns.aio._dns_management_client -sdk\network\azure-mgmt-dns\azure\mgmt\dns\aio\_dns_management_client.py:88:4: C5001: models: Client is using short method names (short-client-method-name) ************* Module azure.mgmt.dns._dns_management_client -sdk\network\azure-mgmt-dns\azure\mgmt\dns\_dns_management_client.py:88:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\network\azure-mgmt-dns\azure\mgmt\dns\_dns_management_client.py:187:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.dns.v2016_04_01._dns_management_client -sdk\network\azure-mgmt-dns\azure\mgmt\dns\v2016_04_01\_dns_management_client.py:88:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.dns.v2018_03_01_preview._dns_management_client -sdk\network\azure-mgmt-dns\azure\mgmt\dns\v2018_03_01_preview\_dns_management_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.dns.v2018_05_01._dns_management_client -sdk\network\azure-mgmt-dns\azure\mgmt\dns\v2018_05_01\_dns_management_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.dns.v2023_07_01_preview._dns_management_client -sdk\network\azure-mgmt-dns\azure\mgmt\dns\v2023_07_01_preview\_dns_management_client.py:101:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.frontdoor._front_door_management_client -sdk\network\azure-mgmt-frontdoor\azure\mgmt\frontdoor\_front_door_management_client.py:164:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network._client -sdk\network\azure-mgmt-network\azure\mgmt\network\_client.py:2481:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2015_06_15._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2015_06_15\_network_management_client.py:220:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2017_10_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2017_10_01\_network_management_client.py:345:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2018_04_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2018_04_01\_network_management_client.py:424:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2018_11_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2018_11_01\_network_management_client.py:558:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2018_12_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2018_12_01\_network_management_client.py:573:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2019_02_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2019_02_01\_network_management_client.py:593:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2019_04_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2019_04_01\_network_management_client.py:619:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2019_06_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2019_06_01\_network_management_client.py:653:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2019_07_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2019_07_01\_network_management_client.py:666:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2019_08_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2019_08_01\_network_management_client.py:683:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2019_09_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2019_09_01\_network_management_client.py:696:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2019_11_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2019_11_01\_network_management_client.py:702:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2019_12_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2019_12_01\_network_management_client.py:709:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2020_03_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2020_03_01\_network_management_client.py:729:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2020_04_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2020_04_01\_network_management_client.py:735:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2020_05_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2020_05_01\_network_management_client.py:787:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2020_06_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2020_06_01\_network_management_client.py:808:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2020_07_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2020_07_01\_network_management_client.py:814:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2020_08_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2020_08_01\_network_management_client.py:820:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2020_11_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2020_11_01\_network_management_client.py:820:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2021_02_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2021_02_01\_network_management_client.py:827:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2021_02_01_preview._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2021_02_01_preview\_network_management_client.py:283:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2023_02_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2023_02_01\_network_management_client.py:993:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2023_04_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2023_04_01\_network_management_client.py:993:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2023_05_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2023_05_01\_network_management_client.py:993:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2023_06_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2023_06_01\_network_management_client.py:1001:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2023_09_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2023_09_01\_network_management_client.py:1001:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2023_11_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2023_11_01\_network_management_client.py:1023:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.network.v2024_01_01._network_management_client -sdk\network\azure-mgmt-network\azure\mgmt\network\v2024_01_01\_network_management_client.py:1023:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.privatedns._private_dns_management_client -sdk\network\azure-mgmt-privatedns\azure\mgmt\privatedns\_private_dns_management_client.py:92:4: C5001: close: Client is using short method names (short-client-method-name) - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - -************* Module azure.mgmt.networkanalytics._network_analytics_mgmt_client -sdk\networkanalytics\azure-mgmt-networkanalytics\azure\mgmt\networkanalytics\_network_analytics_mgmt_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\network\azure-mgmt-dns\azure\mgmt\dns\_dns_management_client.py:88:4: C5000: DnsManagementClient::models (unapproved-client-method-name-prefix) +************* Module azure.mgmt.dns.aio._dns_management_client +sdk\network\azure-mgmt-dns\azure\mgmt\dns\aio\_dns_management_client.py:88:4: C5000: DnsManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) -************* Module azure.mgmt.networkcloud._network_cloud_mgmt_client -sdk\networkcloud\azure-mgmt-networkcloud\azure\mgmt\networkcloud\_network_cloud_mgmt_client.py:179:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.49/10, +0.51) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.networkfunction._traffic_collector_mgmt_client -sdk\networkfunction\azure-mgmt-networkfunction\azure\mgmt\networkfunction\_traffic_collector_mgmt_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.newrelicobservability._new_relic_observability_mgmt_client -sdk\newrelicobservability\azure-mgmt-newrelicobservability\azure\mgmt\newrelicobservability\_new_relic_observability_mgmt_client.py:123:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.nginx._nginx_management_client -sdk\nginx\azure-mgmt-nginx\azure\mgmt\nginx\_nginx_management_client.py:92:4: C5001: close: Client is using short method names (short-client-method-name) --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +------------------------------------ +Your code has been rated at 10.00/10 -************* Module azure.mgmt.notificationhubs._notification_hubs_management_client -sdk\notificationhubs\azure-mgmt-notificationhubs\azure\mgmt\notificationhubs\_notification_hubs_management_client.py:122:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) @@ -2084,977 +814,497 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.operationsmanagement._operations_management_client -sdk\operationsmanagement\azure-mgmt-operationsmanagement\azure\mgmt\operationsmanagement\_operations_management_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) - -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) - -************* Module azure.mgmt.oracledatabase._oracle_database_mgmt_client -sdk\oracledatabase\azure-mgmt-oracledatabase\azure\mgmt\oracledatabase\_oracle_database_mgmt_client.py:200:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.paloaltonetworksngfw._palo_alto_networks_ngfw_mgmt_client -sdk\paloaltonetworks\azure-mgmt-paloaltonetworksngfw\azure\mgmt\paloaltonetworksngfw\_palo_alto_networks_ngfw_mgmt_client.py:160:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.peering._peering_management_client -sdk\peering\azure-mgmt-peering\azure\mgmt\peering\_peering_management_client.py:172:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.ai.personalizer._patch -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:76:4: C5000: export_model: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:91:4: C5000: import_model: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:105:4: C5000: reset_model: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:228:4: C5000: reset_policy: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:446:4: C5000: apply_from_evaluation: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:804:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:823:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:862:4: C5001: rank: Client is using short method names (short-client-method-name) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:936:4: C5001: reward: Client is using short method names (short-client-method-name) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:969:4: C5001: activate: Client is using short method names (short-client-method-name) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:984:4: C5000: rank_multi_slot: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:1070:4: C5000: reward_multi_slot: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:1107:4: C5000: activate_multi_slot: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:1123:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:1142:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.ai.personalizer.aio._patch -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\aio\_patch.py:819:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\aio\_patch.py:1137:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.ai.personalizer._client -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_client.py:46:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_client.py:72:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.ai.personalizer.aio._client -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\aio\_client.py:46:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.89/10 (previous run: 10.00/10, -0.11) +------------------------------------ +Your code has been rated at 10.00/10 -************* Module azure.mgmt.playwrighttesting._playwright_testing_mgmt_client -sdk\playwrighttesting\azure-mgmt-playwrighttesting\azure\mgmt\playwrighttesting\_playwright_testing_mgmt_client.py:89:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.89/10, +0.10) +------------------------------------ +Your code has been rated at 10.00/10 -************* Module azure.mgmt.policyinsights._policy_insights_client -sdk\policyinsights\azure-mgmt-policyinsights\azure\mgmt\policyinsights\_policy_insights_client.py:122:4: C5001: close: Client is using short method names (short-client-method-name) +************* Module azure.ai.personalizer._patch +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:76:4: C5000: PersonalizerAdministrationClient::export_model (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:91:4: C5000: PersonalizerAdministrationClient::import_model (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:105:4: C5000: PersonalizerAdministrationClient::reset_model (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:228:4: C5000: PersonalizerAdministrationClient::reset_policy (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:446:4: C5000: PersonalizerAdministrationClient::apply_from_evaluation (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:862:4: C5000: PersonalizerClient::rank (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:936:4: C5000: PersonalizerClient::reward (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:969:4: C5000: PersonalizerClient::activate (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:984:4: C5000: PersonalizerClient::rank_multi_slot (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:1070:4: C5000: PersonalizerClient::reward_multi_slot (unapproved-client-method-name-prefix) +sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:1107:4: C5000: PersonalizerClient::activate_multi_slot (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.25/10, +0.75) +Your code has been rated at 9.94/10 (previous run: 10.00/10, -0.06) ------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) +Your code has been rated at 10.00/10 (previous run: 9.94/10, +0.06) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.powerbiembedded._power_bi_embedded_management_client -sdk\powerbiembedded\azure-mgmt-powerbiembedded\azure\mgmt\powerbiembedded\_power_bi_embedded_management_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.purview._purview_management_client -sdk\purview\azure-mgmt-purview\azure\mgmt\purview\_purview_management_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.purview.administration.account._purview_account_client -sdk\purview\azure-purview-administration\azure\purview\administration\account\_purview_account_client.py:61:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\purview\azure-purview-administration\azure\purview\administration\account\_purview_account_client.py:92:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.purview.administration.account.aio._purview_account_client -sdk\purview\azure-purview-administration\azure\purview\administration\account\aio\_purview_account_client.py:60:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.purview.administration.metadatapolicies._purview_metadata_policies_client -sdk\purview\azure-purview-administration\azure\purview\administration\metadatapolicies\_purview_metadata_policies_client.py:59:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\purview\azure-purview-administration\azure\purview\administration\metadatapolicies\_purview_metadata_policies_client.py:90:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.purview.administration.metadatapolicies.aio._purview_metadata_policies_client -sdk\purview\azure-purview-administration\azure\purview\administration\metadatapolicies\aio\_purview_metadata_policies_client.py:58:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.purview.catalog._client -sdk\purview\azure-purview-catalog\azure\purview\catalog\_client.py:94:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\purview\azure-purview-catalog\azure\purview\catalog\_client.py:124:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.purview.catalog.aio._client -sdk\purview\azure-purview-catalog\azure\purview\catalog\aio\_client.py:94:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.purview.datamap._client -sdk\purview\azure-purview-datamap\azure\purview\datamap\_client.py:89:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\purview\azure-purview-datamap\azure\purview\datamap\_client.py:115:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.purview.datamap.aio._client -sdk\purview\azure-purview-datamap\azure\purview\datamap\aio\_client.py:89:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.purview.scanning._purview_scanning_client -sdk\purview\azure-purview-scanning\azure\purview\scanning\_purview_scanning_client.py:78:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\purview\azure-purview-scanning\azure\purview\scanning\_purview_scanning_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.purview.scanning.aio._purview_scanning_client -sdk\purview\azure-purview-scanning\azure\purview\scanning\aio\_purview_scanning_client.py:80:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.purview.sharing._client -sdk\purview\azure-purview-sharing\azure\purview\sharing\_client.py:57:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\purview\azure-purview-sharing\azure\purview\sharing\_client.py:83:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.purview.sharing.aio._client -sdk\purview\azure-purview-sharing\azure\purview\sharing\aio\_client.py:57:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.purview.workflow._client -sdk\purview\azure-purview-workflow\azure\purview\workflow\_client.py:105:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\purview\azure-purview-workflow\azure\purview\workflow\_client.py:131:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.purview.workflow.aio._client -sdk\purview\azure-purview-workflow\azure\purview\workflow\aio\_client.py:105:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.99/10, -0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.quantum._azure_quantum_mgmt_client -sdk\quantum\azure-mgmt-quantum\azure\mgmt\quantum\_azure_quantum_mgmt_client.py:92:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.99/10, +0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.qumulo._qumulo_mgmt_client -sdk\qumulo\azure-mgmt-qumulo\azure\mgmt\qumulo\_qumulo_mgmt_client.py:84:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.99/10, -0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.quota._quota_mgmt_client -sdk\quota\azure-mgmt-quota\azure\mgmt\quota\_quota_mgmt_client.py:178:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.rdbms.mariadb._maria_db_management_client -sdk\rdbms\azure-mgmt-rdbms\azure\mgmt\rdbms\mariadb\_maria_db_management_client.py:235:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.rdbms.mysql._my_sql_management_client -sdk\rdbms\azure-mgmt-rdbms\azure\mgmt\rdbms\mysql\_my_sql_management_client.py:245:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.rdbms.mysql_flexibleservers._my_sql_management_client -sdk\rdbms\azure-mgmt-rdbms\azure\mgmt\rdbms\mysql_flexibleservers\_my_sql_management_client.py:239:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.rdbms.postgresql._postgre_sql_management_client -sdk\rdbms\azure-mgmt-rdbms\azure\mgmt\rdbms\postgresql\_postgre_sql_management_client.py:202:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.rdbms.postgresql_flexibleservers._postgre_sql_management_client -sdk\rdbms\azure-mgmt-rdbms\azure\mgmt\rdbms\postgresql_flexibleservers\_postgre_sql_management_client.py:246:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.recoveryservices._recovery_services_client -sdk\recoveryservices\azure-mgmt-recoveryservices\azure\mgmt\recoveryservices\_recovery_services_client.py:155:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.recoveryservicesbackup.activestamp._recovery_services_backup_client -sdk\recoveryservices\azure-mgmt-recoveryservicesbackup\azure\mgmt\recoveryservicesbackup\activestamp\_recovery_services_backup_client.py:443:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.recoveryservicesbackup.passivestamp._recovery_services_backup_passive_client -sdk\recoveryservices\azure-mgmt-recoveryservicesbackup\azure\mgmt\recoveryservicesbackup\passivestamp\_recovery_services_backup_passive_client.py:172:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.recoveryservicessiterecovery._site_recovery_management_client -sdk\recoveryservices\azure-mgmt-recoveryservicessiterecovery\azure\mgmt\recoveryservicessiterecovery\_site_recovery_management_client.py:287:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.recoveryservicesdatareplication._recovery_services_data_replication_mgmt_client -sdk\recoveryservicesdatareplication\azure-mgmt-recoveryservicesdatareplication\azure\mgmt\recoveryservicesdatareplication\_recovery_services_data_replication_mgmt_client.py:186:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + + +------------------------------------ +Your code has been rated at 10.00/10 ************* Module azure.mgmt.redhatopenshift._azure_red_hat_open_shift_client -sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\_azure_red_hat_open_shift_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\_azure_red_hat_open_shift_client.py:322:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\_azure_red_hat_open_shift_client.py:109:4: C5000: AzureRedHatOpenShiftClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.redhatopenshift.aio._azure_red_hat_open_shift_client -sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\aio\_azure_red_hat_open_shift_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.redhatopenshift.v2020_04_30._azure_red_hat_open_shift4_client -sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\v2020_04_30\_azure_red_hat_open_shift4_client.py:110:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.redhatopenshift.v2021_09_01_preview._azure_red_hat_open_shift_client -sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\v2021_09_01_preview\_azure_red_hat_open_shift_client.py:112:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.redhatopenshift.v2022_04_01._azure_red_hat_open_shift_client -sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\v2022_04_01\_azure_red_hat_open_shift_client.py:110:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.redhatopenshift.v2022_09_04._azure_red_hat_open_shift_client -sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\v2022_09_04\_azure_red_hat_open_shift_client.py:144:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.redhatopenshift.v2023_04_01._azure_red_hat_open_shift_client -sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\v2023_04_01\_azure_red_hat_open_shift_client.py:144:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.redhatopenshift.v2023_09_04._azure_red_hat_open_shift_client -sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\v2023_09_04\_azure_red_hat_open_shift_client.py:144:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.redhatopenshift.v2023_11_22._azure_red_hat_open_shift_client -sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\v2023_11_22\_azure_red_hat_open_shift_client.py:144:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\aio\_azure_red_hat_open_shift_client.py:109:4: C5000: AzureRedHatOpenShiftClient::models (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) -************* Module azure.mgmt.redis._redis_management_client -sdk\redis\azure-mgmt-redis\azure\mgmt\redis\_redis_management_client.py:150:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------- -Your code has been rated at 10.00/10 +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.redisenterprise._redis_enterprise_management_client -sdk\redisenterprise\azure-mgmt-redisenterprise\azure\mgmt\redisenterprise\_redis_enterprise_management_client.py:135:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.21/10, +0.79) +------------------------------------ +Your code has been rated at 10.00/10 ************* Module azure.mixedreality.remoterendering._remote_rendering_client -sdk\remoterendering\azure-mixedreality-remoterendering\azure\mixedreality\remoterendering\_remote_rendering_client.py:320:4: C5000: stop_rendering_session: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\remoterendering\azure-mixedreality-remoterendering\azure\mixedreality\remoterendering\_remote_rendering_client.py:367:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\remoterendering\azure-mixedreality-remoterendering\azure\mixedreality\remoterendering\_remote_rendering_client.py:320:4: C5000: RemoteRenderingClient::stop_rendering_session (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.96/10 (previous run: 10.00/10, -0.04) +Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.02) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.resourceconnector._resource_connector_mgmt_client -sdk\resourceconnector\azure-mgmt-resourceconnector\azure\mgmt\resourceconnector\_resource_connector_mgmt_client.py:83:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.96/10, +0.03) +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) ************* Module azure.mgmt.resourcehealth._resource_health_mgmt_client -sdk\resourcehealth\azure-mgmt-resourcehealth\azure\mgmt\resourcehealth\_resource_health_mgmt_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\resourcehealth\azure-mgmt-resourcehealth\azure\mgmt\resourcehealth\_resource_health_mgmt_client.py:306:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resourcehealth\azure-mgmt-resourcehealth\azure\mgmt\resourcehealth\_resource_health_mgmt_client.py:87:4: C5000: ResourceHealthMgmtClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resourcehealth.aio._resource_health_mgmt_client -sdk\resourcehealth\azure-mgmt-resourcehealth\azure\mgmt\resourcehealth\aio\_resource_health_mgmt_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resourcehealth.v2015_01_01._resource_health_mgmt_client -sdk\resourcehealth\azure-mgmt-resourcehealth\azure\mgmt\resourcehealth\v2015_01_01\_resource_health_mgmt_client.py:105:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resourcehealth.v2018_07_01._resource_health_mgmt_client -sdk\resourcehealth\azure-mgmt-resourcehealth\azure\mgmt\resourcehealth\v2018_07_01\_resource_health_mgmt_client.py:106:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resourcehealth.v2022_10_01._resource_health_mgmt_client -sdk\resourcehealth\azure-mgmt-resourcehealth\azure\mgmt\resourcehealth\v2022_10_01\_resource_health_mgmt_client.py:138:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resourcehealth.v2023_10_01_preview._resource_health_mgmt_client -sdk\resourcehealth\azure-mgmt-resourcehealth\azure\mgmt\resourcehealth\v2023_10_01_preview\_resource_health_mgmt_client.py:146:4: C5001: close: Client is using short method names (short-client-method-name) - ------------------------------------ -Your code has been rated at 9.99/10 - +sdk\resourcehealth\azure-mgmt-resourcehealth\azure\mgmt\resourcehealth\aio\_resource_health_mgmt_client.py:87:4: C5000: ResourceHealthMgmtClient::models (unapproved-client-method-name-prefix) ------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) + +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) + ************* Module azure.mgmt.msi.aio._managed_service_identity_client -sdk\resources\azure-mgmt-msi\azure\mgmt\msi\aio\_managed_service_identity_client.py:85:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-msi\azure\mgmt\msi\aio\_managed_service_identity_client.py:85:4: C5000: ManagedServiceIdentityClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.msi._managed_service_identity_client -sdk\resources\azure-mgmt-msi\azure\mgmt\msi\_managed_service_identity_client.py:85:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\resources\azure-mgmt-msi\azure\mgmt\msi\_managed_service_identity_client.py:193:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.msi.v2018_11_30._managed_service_identity_client -sdk\resources\azure-mgmt-msi\azure\mgmt\msi\v2018_11_30\_managed_service_identity_client.py:93:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.msi.v2021_09_30_preview._managed_service_identity_client -sdk\resources\azure-mgmt-msi\azure\mgmt\msi\v2021_09_30_preview\_managed_service_identity_client.py:93:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.msi.v2022_01_31_preview._managed_service_identity_client -sdk\resources\azure-mgmt-msi\azure\mgmt\msi\v2022_01_31_preview\_managed_service_identity_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.msi.v2023_01_31._managed_service_identity_client -sdk\resources\azure-mgmt-msi\azure\mgmt\msi\v2023_01_31\_managed_service_identity_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-msi\azure\mgmt\msi\_managed_service_identity_client.py:85:4: C5000: ManagedServiceIdentityClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.changes._changes_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\changes\_changes_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\changes\_changes_client.py:131:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\changes\_changes_client.py:107:4: C5000: ChangesClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.changes.aio._changes_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\changes\aio\_changes_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.changes.v2022_05_01._changes_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\changes\v2022_05_01\_changes_client.py:100:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\changes\aio\_changes_client.py:107:4: C5000: ChangesClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.deploymentscripts._deployment_scripts_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentscripts\_deployment_scripts_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentscripts\_deployment_scripts_client.py:146:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.deploymentscripts.v2019_10_01_preview._deployment_scripts_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentscripts\v2019_10_01_preview\_deployment_scripts_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentscripts\_deployment_scripts_client.py:108:4: C5000: DeploymentScriptsClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.deploymentscripts.aio._deployment_scripts_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentscripts\aio\_deployment_scripts_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.deploymentscripts.v2020_10_01._deployment_scripts_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentscripts\v2020_10_01\_deployment_scripts_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.deploymentscripts.v2023_08_01._deployment_scripts_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentscripts\v2023_08_01\_deployment_scripts_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentscripts\aio\_deployment_scripts_client.py:108:4: C5000: DeploymentScriptsClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.deploymentstacks._deployment_stacks_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentstacks\_deployment_stacks_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentstacks\_deployment_stacks_client.py:139:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.deploymentstacks.v2022_08_01_preview._deployment_stacks_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentstacks\v2022_08_01_preview\_deployment_stacks_client.py:107:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentstacks\_deployment_stacks_client.py:108:4: C5000: DeploymentStacksClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.deploymentstacks.aio._deployment_stacks_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentstacks\aio\_deployment_stacks_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.deploymentstacks.v2024_03_01._deployment_stacks_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentstacks\v2024_03_01\_deployment_stacks_client.py:107:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentstacks\aio\_deployment_stacks_client.py:108:4: C5000: DeploymentStacksClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.features._feature_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\features\_feature_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\features\_feature_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.features.v2015_12_01._feature_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\features\v2015_12_01\_feature_client.py:102:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\features\_feature_client.py:108:4: C5000: FeatureClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.features.aio._feature_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\features\aio\_feature_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.features.v2021_07_01._feature_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\features\v2021_07_01\_feature_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\features\aio\_feature_client.py:108:4: C5000: FeatureClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.links._management_link_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\links\_management_link_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\links\_management_link_client.py:145:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\links\_management_link_client.py:107:4: C5000: ManagementLinkClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.links.aio._management_link_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\links\aio\_management_link_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.links.v2016_09_01._management_link_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\links\v2016_09_01\_management_link_client.py:110:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\links\aio\_management_link_client.py:107:4: C5000: ManagementLinkClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.locks._management_lock_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\locks\_management_lock_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\locks\_management_lock_client.py:152:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\locks\_management_lock_client.py:107:4: C5000: ManagementLockClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.locks.aio._management_lock_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\locks\aio\_management_lock_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.locks.v2015_01_01._management_lock_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\locks\v2015_01_01\_management_lock_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.locks.v2016_09_01._management_lock_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\locks\v2016_09_01\_management_lock_client.py:111:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\locks\aio\_management_lock_client.py:107:4: C5000: ManagementLockClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.managedapplications._application_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\managedapplications\_application_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\managedapplications\_application_client.py:161:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.managedapplications.v2019_07_01._application_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\managedapplications\v2019_07_01\_application_client.py:121:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\managedapplications\_application_client.py:109:4: C5000: ApplicationClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.managedapplications.aio._application_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\managedapplications\aio\_application_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\managedapplications\aio\_application_client.py:109:4: C5000: ApplicationClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.policy._policy_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\_policy_client.py:110:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\_policy_client.py:358:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\_policy_client.py:110:4: C5000: PolicyClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.policy.aio._policy_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\aio\_policy_client.py:110:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.policy.v2015_10_01_preview._policy_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2015_10_01_preview\_policy_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.policy.v2016_04_01._policy_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2016_04_01\_policy_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.policy.v2016_12_01._policy_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2016_12_01\_policy_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.policy.v2017_06_01_preview._policy_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2017_06_01_preview\_policy_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.policy.v2018_03_01._policy_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2018_03_01\_policy_client.py:115:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.policy.v2018_05_01._policy_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2018_05_01\_policy_client.py:115:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.policy.v2019_01_01._policy_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2019_01_01\_policy_client.py:115:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.policy.v2019_06_01._policy_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2019_06_01\_policy_client.py:115:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.policy.v2019_09_01._policy_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2019_09_01\_policy_client.py:115:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.policy.v2020_07_01_preview._policy_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2020_07_01_preview\_policy_client.py:103:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.policy.v2020_09_01._policy_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2020_09_01\_policy_client.py:126:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.policy.v2021_06_01._policy_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2021_06_01\_policy_client.py:115:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.policy.v2022_06_01._policy_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2022_06_01\_policy_client.py:103:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.policy.v2022_07_01_preview._policy_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2022_07_01_preview\_policy_client.py:103:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.policy.v2022_08_01_preview._policy_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\v2022_08_01_preview\_policy_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\aio\_policy_client.py:110:4: C5000: PolicyClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.privatelinks._resource_private_link_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\privatelinks\_resource_private_link_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\privatelinks\_resource_private_link_client.py:145:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\privatelinks\_resource_private_link_client.py:107:4: C5000: ResourcePrivateLinkClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.privatelinks.aio._resource_private_link_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\privatelinks\aio\_resource_private_link_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.privatelinks.v2020_05_01._resource_private_link_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\privatelinks\v2020_05_01\_resource_private_link_client.py:110:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\privatelinks\aio\_resource_private_link_client.py:107:4: C5000: ResourcePrivateLinkClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.resources._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\_resource_management_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\_resource_management_client.py:602:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\_resource_management_client.py:108:4: C5000: ResourceManagementClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.resources.aio._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\aio\_resource_management_client.py:108:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.resources.v2016_02_01._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2016_02_01\_resource_management_client.py:138:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.resources.v2016_09_01._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2016_09_01\_resource_management_client.py:138:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.resources.v2017_05_10._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2017_05_10\_resource_management_client.py:138:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.resources.v2018_02_01._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2018_02_01\_resource_management_client.py:138:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.resources.v2018_05_01._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2018_05_01\_resource_management_client.py:142:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.resources.v2019_03_01._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2019_03_01\_resource_management_client.py:142:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.resources.v2019_05_01._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2019_05_01\_resource_management_client.py:142:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.resources.v2019_05_10._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2019_05_10\_resource_management_client.py:142:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.resources.v2019_07_01._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2019_07_01\_resource_management_client.py:142:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.resources.v2019_08_01._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2019_08_01\_resource_management_client.py:142:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.resources.v2019_10_01._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2019_10_01\_resource_management_client.py:142:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.resources.v2020_06_01._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2020_06_01\_resource_management_client.py:142:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.resources.v2020_10_01._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2020_10_01\_resource_management_client.py:149:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.resources.v2021_01_01._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2021_01_01\_resource_management_client.py:149:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.resources.v2021_04_01._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2021_04_01\_resource_management_client.py:149:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.resources.v2022_09_01._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\v2022_09_01\_resource_management_client.py:149:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\aio\_resource_management_client.py:108:4: C5000: ResourceManagementClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.subscriptions._subscription_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\_subscription_client.py:105:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\_subscription_client.py:219:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.subscriptions.v2016_06_01._subscription_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\v2016_06_01\_subscription_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\_subscription_client.py:105:4: C5000: SubscriptionClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.subscriptions.aio._subscription_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\aio\_subscription_client.py:105:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.subscriptions.v2018_06_01._subscription_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\v2018_06_01\_subscription_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.subscriptions.v2019_06_01._subscription_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\v2019_06_01\_subscription_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.subscriptions.v2019_11_01._subscription_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\v2019_11_01\_subscription_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.subscriptions.v2021_01_01._subscription_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\v2021_01_01\_subscription_client.py:101:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.subscriptions.v2022_12_01._subscription_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\v2022_12_01\_subscription_client.py:104:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\aio\_subscription_client.py:105:4: C5000: SubscriptionClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.templatespecs._template_specs_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\templatespecs\_template_specs_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\templatespecs\_template_specs_client.py:175:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\templatespecs\_template_specs_client.py:107:4: C5000: TemplateSpecsClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.resource.templatespecs.aio._template_specs_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\templatespecs\aio\_template_specs_client.py:107:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.templatespecs.v2019_06_01_preview._template_specs_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\templatespecs\v2019_06_01_preview\_template_specs_client.py:112:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.templatespecs.v2021_03_01_preview._template_specs_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\templatespecs\v2021_03_01_preview\_template_specs_client.py:112:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.templatespecs.v2021_05_01._template_specs_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\templatespecs\v2021_05_01\_template_specs_client.py:112:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resource.templatespecs.v2022_02_01._template_specs_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\templatespecs\v2022_02_01\_template_specs_client.py:112:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.resourcegraph._resource_graph_client -sdk\resources\azure-mgmt-resourcegraph\azure\mgmt\resourcegraph\_resource_graph_client.py:70:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\resources\azure-mgmt-resource\azure\mgmt\resource\templatespecs\aio\_template_specs_client.py:107:4: C5000: TemplateSpecsClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) -************* Module azure.mgmt.scheduler._scheduler_management_client -sdk\scheduler\azure-mgmt-scheduler\azure\mgmt\scheduler\_scheduler_management_client.py:64:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.99/10, +0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ************* Module azure.schemaregistry._patch -sdk\schemaregistry\azure-schemaregistry\azure\schemaregistry\_patch.py:167:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\schemaregistry\azure-schemaregistry\azure\schemaregistry\_patch.py:174:4: C5000: register_schema: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.schemaregistry._client -sdk\schemaregistry\azure-schemaregistry\azure\schemaregistry\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\schemaregistry\azure-schemaregistry\azure\schemaregistry\_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.schemaregistry.aio._client -sdk\schemaregistry\azure-schemaregistry\azure\schemaregistry\aio\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\schemaregistry\azure-schemaregistry\azure\schemaregistry\_patch.py:174:4: C5000: SchemaRegistryClient::register_schema (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.98/10 (previous run: 9.99/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) -************* Module azure.mgmt.scvmm._sc_vmm_mgmt_client -sdk\scvmm\azure-mgmt-scvmm\azure\mgmt\scvmm\_sc_vmm_mgmt_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.59/10, +0.41) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.search._search_management_client -sdk\search\azure-mgmt-search\azure\mgmt\search\_search_management_client.py:153:4: C5001: close: Client is using short method names (short-client-method-name) ************* Module azure.search.documents._search_client -sdk\search\azure-search-documents\azure\search\documents\_search_client.py:101:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\search\azure-search-documents\azure\search\documents\_search_client.py:143:4: C5001: search: Client is using short method names (short-client-method-name) -sdk\search\azure-search-documents\azure\search\documents\_search_client.py:388:4: C5001: suggest: Client is using short method names (short-client-method-name) -sdk\search\azure-search-documents\azure\search\documents\_search_client.py:476:4: C5001: autocomplete: Client is using short method names (short-client-method-name) -sdk\search\azure-search-documents\azure\search\documents\_search_client.py:555:4: C5000: upload_documents: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\search\azure-search-documents\azure\search\documents\_search_client.py:618:4: C5000: merge_documents: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\search\azure-search-documents\azure\search\documents\_search_client.py:648:4: C5000: merge_or_upload_documents: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\search\azure-search-documents\azure\search\documents\_search_client.py:669:4: C5000: index_documents: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\search\azure-search-documents\azure\search\documents\_search_client.py:718:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\search\azure-search-documents\azure\search\documents\_search_client.py:143:4: C5000: SearchClient::search (unapproved-client-method-name-prefix) +sdk\search\azure-search-documents\azure\search\documents\_search_client.py:388:4: C5000: SearchClient::suggest (unapproved-client-method-name-prefix) +sdk\search\azure-search-documents\azure\search\documents\_search_client.py:476:4: C5000: SearchClient::autocomplete (unapproved-client-method-name-prefix) +sdk\search\azure-search-documents\azure\search\documents\_search_client.py:618:4: C5000: SearchClient::merge_documents (unapproved-client-method-name-prefix) +sdk\search\azure-search-documents\azure\search\documents\_search_client.py:648:4: C5000: SearchClient::merge_or_upload_documents (unapproved-client-method-name-prefix) +sdk\search\azure-search-documents\azure\search\documents\_search_client.py:669:4: C5000: SearchClient::index_documents (unapproved-client-method-name-prefix) ************* Module azure.search.documents.indexes._search_indexer_client -sdk\search\azure-search-documents\azure\search\documents\indexes\_search_indexer_client.py:79:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\search\azure-search-documents\azure\search\documents\indexes\_search_indexer_client.py:253:4: C5000: run_indexer: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\search\azure-search-documents\azure\search\documents\indexes\_search_indexer_client.py:272:4: C5000: reset_indexer: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\search\azure-search-documents\azure\search\documents\indexes\_search_indexer_client.py:291:4: C5000: reset_documents: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\search\azure-search-documents\azure\search\documents\indexes\_search_indexer_client.py:641:4: C5000: reset_skills: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.search.documents.indexes._search_index_client -sdk\search\azure-search-documents\azure\search\documents\indexes\_search_index_client.py:77:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\search\azure-search-documents\azure\search\documents\indexes\_search_index_client.py:287:4: C5000: analyze_text: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\search\azure-search-documents\azure\search\documents\indexes\_search_index_client.py:627:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\search\azure-search-documents\azure\search\documents\indexes\_search_indexer_client.py:253:4: C5000: SearchIndexerClient::run_indexer (unapproved-client-method-name-prefix) +sdk\search\azure-search-documents\azure\search\documents\indexes\_search_indexer_client.py:272:4: C5000: SearchIndexerClient::reset_indexer (unapproved-client-method-name-prefix) +sdk\search\azure-search-documents\azure\search\documents\indexes\_search_indexer_client.py:291:4: C5000: SearchIndexerClient::reset_documents (unapproved-client-method-name-prefix) +sdk\search\azure-search-documents\azure\search\documents\indexes\_search_indexer_client.py:641:4: C5000: SearchIndexerClient::reset_skills (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.97/10 (previous run: 9.98/10, -0.01) +------------------------------------------------------------------- +Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.01) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.19/10, +0.81) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.97/10, +0.03) +Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) -************* Module azure.mgmt.selfhelp._self_help_mgmt_client -sdk\selfhelp\azure-mgmt-selfhelp\azure\mgmt\selfhelp\_self_help_mgmt_client.py:140:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.serialconsole._microsoft_serial_console_client -sdk\serialconsole\azure-mgmt-serialconsole\azure\mgmt\serialconsole\_microsoft_serial_console_client.py:86:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.servicebus.aio._service_bus_management_client -sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\aio\_service_bus_management_client.py:89:4: C5001: models: Client is using short method names (short-client-method-name) ************* Module azure.mgmt.servicebus._service_bus_management_client -sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\_service_bus_management_client.py:89:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\_service_bus_management_client.py:507:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.servicebus.v2015_08_01._service_bus_management_client -sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\v2015_08_01\_service_bus_management_client.py:96:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.servicebus.v2017_04_01._service_bus_management_client -sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\v2017_04_01\_service_bus_management_client.py:135:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.servicebus.v2018_01_01_preview._service_bus_management_client -sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\v2018_01_01_preview\_service_bus_management_client.py:151:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.servicebus.v2021_01_01_preview._service_bus_management_client -sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\v2021_01_01_preview\_service_bus_management_client.py:135:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.servicebus.v2021_06_01_preview._service_bus_management_client -sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\v2021_06_01_preview\_service_bus_management_client.py:135:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.servicebus.v2021_11_01._service_bus_management_client -sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\v2021_11_01\_service_bus_management_client.py:134:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.servicebus.v2022_01_01_preview._service_bus_management_client -sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\v2022_01_01_preview\_service_bus_management_client.py:135:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.servicebus.v2022_10_01_preview._service_bus_management_client -sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\v2022_10_01_preview\_service_bus_management_client.py:135:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.servicebus._servicebus_client -sdk\servicebus\azure-servicebus\azure\servicebus\_servicebus_client.py:173:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.servicebus.management._management_client -sdk\servicebus\azure-servicebus\azure\servicebus\management\_management_client.py:1298:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\_service_bus_management_client.py:89:4: C5000: ServiceBusManagementClient::models (unapproved-client-method-name-prefix) +************* Module azure.mgmt.servicebus.aio._service_bus_management_client +sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\aio\_service_bus_management_client.py:89:4: C5000: ServiceBusManagementClient::models (unapproved-client-method-name-prefix) ************* Module azure.servicebus._pyamqp.client -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:296:4: C5001: open: Client is using short method names (short-client-method-name) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:349:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:382:4: C5000: auth_complete: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:394:4: C5000: client_ready: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:413:4: C5000: do_work: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:429:4: C5000: mgmt_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:702:4: C5000: send_message: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:942:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:946:4: C5000: receive_message_batch: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:982:4: C5000: receive_messages_iter: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1030:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1041:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1052:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1064:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1078:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1090:4: C5000: settle_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:296:4: C5000: AMQPClient::open (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:382:4: C5000: AMQPClient::auth_complete (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:394:4: C5000: AMQPClient::client_ready (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:413:4: C5000: AMQPClient::do_work (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:429:4: C5000: AMQPClient::mgmt_request (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:946:4: C5000: ReceiveClient::receive_message_batch (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:982:4: C5000: ReceiveClient::receive_messages_iter (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1030:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1041:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1052:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1064:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1078:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) +sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1090:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) -************* Module azure.mgmt.servicefabric._service_fabric_management_client -sdk\servicefabric\azure-mgmt-servicefabric\azure\mgmt\servicefabric\_service_fabric_management_client.py:122:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.servicefabricmanagedclusters._service_fabric_managed_clusters_management_client -sdk\servicefabricmanagedclusters\azure-mgmt-servicefabricmanagedclusters\azure\mgmt\servicefabricmanagedclusters\_service_fabric_managed_clusters_management_client.py:193:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.67/10, +0.32) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.servicelinker._service_linker_management_client -sdk\servicelinker\azure-mgmt-servicelinker\azure\mgmt\servicelinker\_service_linker_management_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.servicenetworking._service_networking_mgmt_client -sdk\servicenetworking\azure-mgmt-servicenetworking\azure\mgmt\servicenetworking\_service_networking_mgmt_client.py:106:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.signalr._signal_rmanagement_client -sdk\signalr\azure-mgmt-signalr\azure\mgmt\signalr\_signal_rmanagement_client.py:135:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.sphere._azure_sphere_mgmt_client -sdk\sphere\azure-mgmt-sphere\azure\mgmt\sphere\_azure_sphere_mgmt_client.py:133:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.68/10, +0.32) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.springappdiscovery._spring_app_discovery_mgmt_client -sdk\springappdiscovery\azure-mgmt-springappdiscovery\azure\mgmt\springappdiscovery\_spring_app_discovery_mgmt_client.py:108:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.sql._sql_management_client -sdk\sql\azure-mgmt-sql\azure\mgmt\sql\_sql_management_client.py:1074:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.sqlvirtualmachine._sql_virtual_machine_management_client -sdk\sql\azure-mgmt-sqlvirtualmachine\azure\mgmt\sqlvirtualmachine\_sql_virtual_machine_management_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------- -Your code has been rated at 10.00/10 +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.standbypool._standby_pool_mgmt_client -sdk\standbypool\azure-mgmt-standbypool\azure\mgmt\standbypool\_standby_pool_mgmt_client.py:126:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ************* Module azure.mgmt.storage._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\_storage_management_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\_storage_management_client.py:1330:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\_storage_management_client.py:109:4: C5000: StorageManagementClient::models (unapproved-client-method-name-prefix) ************* Module azure.mgmt.storage.aio._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\aio\_storage_management_client.py:109:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.storage.v2016_01_01._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2016_01_01\_storage_management_client.py:109:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.storage.v2018_02_01._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2018_02_01\_storage_management_client.py:119:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.storage.v2018_03_01_preview._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2018_03_01_preview\_storage_management_client.py:138:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.storage.v2018_07_01._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2018_07_01\_storage_management_client.py:131:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.storage.v2018_11_01._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2018_11_01\_storage_management_client.py:138:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.storage.v2019_04_01._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2019_04_01\_storage_management_client.py:150:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.storage.v2019_06_01._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2019_06_01\_storage_management_client.py:205:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.storage.v2020_08_01_preview._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2020_08_01_preview\_storage_management_client.py:226:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.storage.v2021_01_01._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2021_01_01\_storage_management_client.py:211:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.storage.v2021_02_01._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2021_02_01\_storage_management_client.py:211:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.storage.v2021_04_01._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2021_04_01\_storage_management_client.py:211:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.storage.v2021_06_01._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2021_06_01\_storage_management_client.py:211:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.storage.v2021_08_01._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2021_08_01\_storage_management_client.py:217:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.storage.v2021_09_01._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2021_09_01\_storage_management_client.py:217:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.storage.v2022_05_01._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2022_05_01\_storage_management_client.py:217:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.storage.v2022_09_01._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2022_09_01\_storage_management_client.py:217:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.storage.v2023_01_01._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2023_01_01\_storage_management_client.py:217:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.storage.v2023_05_01._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\v2023_05_01\_storage_management_client.py:248:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.storagecache._storage_cache_management_client -sdk\storage\azure-mgmt-storagecache\azure\mgmt\storagecache\_storage_cache_management_client.py:146:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\storage\azure-mgmt-storage\azure\mgmt\storage\aio\_storage_management_client.py:109:4: C5000: StorageManagementClient::models (unapproved-client-method-name-prefix) ************* Module azure.storage.blob._blob_service_client -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_service_client.py:474:4: C5000: find_blobs_by_tags: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_service_client.py:657:4: C5000: undelete_container: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.storage.blob._lease -sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:65:4: C5001: acquire: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:123:4: C5001: renew: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:178:4: C5001: release: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:231:4: C5001: change: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:284:4: C5000: break_lease: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_service_client.py:474:4: C5000: BlobServiceClient::find_blobs_by_tags (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_service_client.py:657:4: C5000: BlobServiceClient::undelete_container (unapproved-client-method-name-prefix) ************* Module azure.storage.blob._container_client -sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:420:4: C5000: acquire_lease: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:536:4: C5001: exists: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:881:4: C5000: walk_blobs: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:937:4: C5000: find_blobs_by_tags: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:972:4: C5000: upload_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:1196:4: C5000: download_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:1207:4: C5000: download_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:1218:4: C5000: download_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:420:4: C5000: ContainerClient::acquire_lease (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:536:4: C5000: ContainerClient::exists (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:881:4: C5000: ContainerClient::walk_blobs (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:937:4: C5000: ContainerClient::find_blobs_by_tags (unapproved-client-method-name-prefix) +************* Module azure.storage.blob._lease +sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:65:4: C5000: BlobLeaseClient::acquire (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:123:4: C5000: BlobLeaseClient::renew (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:178:4: C5000: BlobLeaseClient::release (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:231:4: C5000: BlobLeaseClient::change (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:284:4: C5000: BlobLeaseClient::break_lease (unapproved-client-method-name-prefix) ************* Module azure.storage.blob._blob_client -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:323:4: C5000: upload_blob_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:432:4: C5000: upload_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:602:4: C5000: download_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:612:4: C5000: download_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:622:4: C5000: download_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:745:4: C5000: query_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:926:4: C5000: undelete_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:959:4: C5001: exists: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1563:4: C5000: start_copy_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1758:4: C5000: abort_copy: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1789:4: C5000: acquire_lease: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1911:4: C5000: stage_block: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1977:4: C5000: stage_block_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:2087:4: C5000: commit_block_list: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:2634:4: C5000: resize_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:2692:4: C5000: upload_page: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:2794:4: C5000: upload_pages_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:2918:4: C5000: clear_page: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:3210:4: C5000: seal_append_blob: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:926:4: C5000: BlobClient::undelete_blob (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:959:4: C5000: BlobClient::exists (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1563:4: C5000: BlobClient::start_copy_from_url (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1758:4: C5000: BlobClient::abort_copy (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1789:4: C5000: BlobClient::acquire_lease (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1911:4: C5000: BlobClient::stage_block (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1977:4: C5000: BlobClient::stage_block_from_url (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:2087:4: C5000: BlobClient::commit_block_list (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:2634:4: C5000: BlobClient::resize_blob (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:3210:4: C5000: BlobClient::seal_append_blob (unapproved-client-method-name-prefix) ************* Module azure.storage.blob.aio._blob_service_client_async -sdk\storage\azure-storage-blob\azure\storage\blob\aio\_blob_service_client_async.py:477:4: C5000: find_blobs_by_tags: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\aio\_blob_service_client_async.py:477:4: C5000: BlobServiceClient::find_blobs_by_tags (unapproved-client-method-name-prefix) ************* Module azure.storage.blob.aio._container_client_async -sdk\storage\azure-storage-blob\azure\storage\blob\aio\_container_client_async.py:871:4: C5000: walk_blobs: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\aio\_container_client_async.py:927:4: C5000: find_blobs_by_tags: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\aio\_container_client_async.py:871:4: C5000: ContainerClient::walk_blobs (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-blob\azure\storage\blob\aio\_container_client_async.py:927:4: C5000: ContainerClient::find_blobs_by_tags (unapproved-client-method-name-prefix) ************* Module azure.storage.filedatalake._data_lake_lease -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:73:4: C5001: acquire: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:114:4: C5001: renew: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:153:4: C5001: release: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:190:4: C5001: change: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:226:4: C5000: break_lease: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:73:4: C5000: DataLakeLeaseClient::acquire (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:114:4: C5000: DataLakeLeaseClient::renew (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:153:4: C5000: DataLakeLeaseClient::release (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:190:4: C5000: DataLakeLeaseClient::change (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:226:4: C5000: DataLakeLeaseClient::break_lease (unapproved-client-method-name-prefix) +************* Module azure.storage.filedatalake._data_lake_file_client +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_file_client.py:646:4: C5000: DataLakeFileClient::flush_data (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_file_client.py:802:4: C5000: DataLakeFileClient::exists (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_file_client.py:819:4: C5000: DataLakeFileClient::rename_file (unapproved-client-method-name-prefix) ************* Module azure.storage.filedatalake._data_lake_service_client -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_service_client.py:125:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_service_client.py:348:4: C5000: undelete_file_system: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_service_client.py:348:4: C5000: DataLakeServiceClient::undelete_file_system (unapproved-client-method-name-prefix) ************* Module azure.storage.filedatalake._data_lake_directory_client -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_directory_client.py:334:4: C5001: exists: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_directory_client.py:351:4: C5000: rename_directory: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.storage.filedatalake._data_lake_file_client -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_file_client.py:426:4: C5000: upload_data: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_file_client.py:646:4: C5000: flush_data: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_file_client.py:740:4: C5000: download_file: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_file_client.py:802:4: C5001: exists: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_file_client.py:819:4: C5000: rename_file: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_file_client.py:901:4: C5000: query_file: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.storage.filedatalake._file_system_client -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_file_system_client.py:143:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_file_system_client.py:198:4: C5000: acquire_lease: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_file_system_client.py:306:4: C5001: exists: Client is using short method names (short-client-method-name) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_directory_client.py:334:4: C5000: DataLakeDirectoryClient::exists (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_directory_client.py:351:4: C5000: DataLakeDirectoryClient::rename_directory (unapproved-client-method-name-prefix) ************* Module azure.storage.filedatalake._path_client -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_path_client.py:143:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_path_client.py:1072:4: C5000: acquire_lease: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_path_client.py:1072:4: C5000: PathClient::acquire_lease (unapproved-client-method-name-prefix) +************* Module azure.storage.filedatalake._file_system_client +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_file_system_client.py:198:4: C5000: FileSystemClient::acquire_lease (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_file_system_client.py:306:4: C5000: FileSystemClient::exists (unapproved-client-method-name-prefix) ************* Module azure.storage.fileshare._lease -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:72:4: C5001: acquire: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:114:4: C5001: renew: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:150:4: C5001: release: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:179:4: C5001: change: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:211:4: C5000: break_lease: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:72:4: C5000: ShareLeaseClient::acquire (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:114:4: C5000: ShareLeaseClient::renew (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:150:4: C5000: ShareLeaseClient::release (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:179:4: C5000: ShareLeaseClient::change (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:211:4: C5000: ShareLeaseClient::break_lease (unapproved-client-method-name-prefix) ************* Module azure.storage.fileshare._directory_client -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_directory_client.py:434:4: C5000: rename_directory: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_directory_client.py:622:4: C5000: close_handle: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_directory_client.py:663:4: C5000: close_all_handles: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_directory_client.py:773:4: C5001: exists: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_directory_client.py:935:4: C5000: upload_file: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.storage.fileshare._share_service_client -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_share_service_client.py:419:4: C5000: undelete_share: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_directory_client.py:434:4: C5000: ShareDirectoryClient::rename_directory (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_directory_client.py:773:4: C5000: ShareDirectoryClient::exists (unapproved-client-method-name-prefix) ************* Module azure.storage.fileshare._file_client -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:331:4: C5000: acquire_lease: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:366:4: C5001: exists: Client is using short method names (short-client-method-name) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:508:4: C5000: upload_file: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:645:4: C5000: start_copy_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:781:4: C5000: abort_copy: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:824:4: C5000: download_file: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:940:4: C5000: rename_file: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:1245:4: C5000: upload_range: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:1361:4: C5000: upload_range_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:1576:4: C5000: clear_range: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:1630:4: C5000: resize_file: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:1694:4: C5000: close_handle: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:1734:4: C5000: close_all_handles: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:331:4: C5000: ShareFileClient::acquire_lease (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:366:4: C5000: ShareFileClient::exists (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:645:4: C5000: ShareFileClient::start_copy_from_url (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:781:4: C5000: ShareFileClient::abort_copy (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:940:4: C5000: ShareFileClient::rename_file (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:1630:4: C5000: ShareFileClient::resize_file (unapproved-client-method-name-prefix) +************* Module azure.storage.fileshare._share_service_client +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_share_service_client.py:419:4: C5000: ShareServiceClient::undelete_share (unapproved-client-method-name-prefix) ************* Module azure.storage.fileshare._share_client -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_share_client.py:304:4: C5000: acquire_lease: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.storage.queue.aio._queue_client_async -sdk\storage\azure-storage-queue\azure\storage\queue\aio\_queue_client_async.py:618:4: C5000: receive_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-file-share\azure\storage\fileshare\_share_client.py:304:4: C5000: ShareClient::acquire_lease (unapproved-client-method-name-prefix) ************* Module azure.storage.queue._queue_client -sdk\storage\azure-storage-queue\azure\storage\queue\_queue_client.py:440:4: C5000: send_message: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-queue\azure\storage\queue\_queue_client.py:544:4: C5000: receive_message: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-queue\azure\storage\queue\_queue_client.py:614:4: C5000: receive_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-queue\azure\storage\queue\_queue_client.py:837:4: C5000: peek_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-queue\azure\storage\queue\_queue_client.py:910:4: C5000: clear_messages: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-queue\azure\storage\queue\_queue_client.py:544:4: C5000: QueueClient::receive_message (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-queue\azure\storage\queue\_queue_client.py:614:4: C5000: QueueClient::receive_messages (unapproved-client-method-name-prefix) +sdk\storage\azure-storage-queue\azure\storage\queue\_queue_client.py:837:4: C5000: QueueClient::peek_messages (unapproved-client-method-name-prefix) +************* Module azure.storage.queue.aio._queue_client_async +sdk\storage\azure-storage-queue\azure\storage\queue\aio\_queue_client_async.py:618:4: C5000: QueueClient::receive_messages (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) -************* Module azure.mgmt.storageactions._storage_actions_mgmt_client -sdk\storageactions\azure-mgmt-storageactions\azure\mgmt\storageactions\_storage_actions_mgmt_client.py:103:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.99/10, +0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.storagemover._storage_mover_mgmt_client -sdk\storagemover\azure-mgmt-storagemover\azure\mgmt\storagemover\_storage_mover_mgmt_client.py:129:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.streamanalytics._stream_analytics_management_client -sdk\streamanalytics\azure-mgmt-streamanalytics\azure\mgmt\streamanalytics\_stream_analytics_management_client.py:120:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.subscription._subscription_client -sdk\subscription\azure-mgmt-subscription\azure\mgmt\subscription\_subscription_client.py:100:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.synapse._synapse_management_client -sdk\synapse\azure-mgmt-synapse\azure\mgmt\synapse\_synapse_management_client.py:582:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.synapse._synapse_client -sdk\synapse\azure-synapse\azure\synapse\_synapse_client.py:66:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.synapse.accesscontrol._access_control_client -sdk\synapse\azure-synapse\azure\synapse\accesscontrol\_access_control_client.py:55:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.synapse.artifacts._artifacts_client -sdk\synapse\azure-synapse\azure\synapse\artifacts\_artifacts_client.py:105:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.synapse.spark._spark_client -sdk\synapse\azure-synapse\azure\synapse\spark\_spark_client.py:66:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\synapse\azure-synapse-accesscontrol\azure\synapse\accesscontrol\_access_control_client.py:79:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\synapse\azure-synapse-artifacts\azure\synapse\artifacts\_artifacts_client.py:203:4: C5001: close: Client is using short method names (short-client-method-name) ************* Module azure.synapse.managedprivateendpoints._vnet_client -sdk\synapse\azure-synapse-managedprivateendpoints\azure\synapse\managedprivateendpoints\_vnet_client.py:89:4: C5001: models: Client is using short method names (short-client-method-name) -sdk\synapse\azure-synapse-managedprivateendpoints\azure\synapse\managedprivateendpoints\_vnet_client.py:119:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.synapse.managedprivateendpoints.v2020_12_01._vnet_client -sdk\synapse\azure-synapse-managedprivateendpoints\azure\synapse\managedprivateendpoints\v2020_12_01\_vnet_client.py:74:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\synapse\azure-synapse-managedprivateendpoints\azure\synapse\managedprivateendpoints\_vnet_client.py:89:4: C5000: VnetClient::models (unapproved-client-method-name-prefix) ************* Module azure.synapse.managedprivateendpoints.aio._vnet_client -sdk\synapse\azure-synapse-managedprivateendpoints\azure\synapse\managedprivateendpoints\aio\_vnet_client.py:87:4: C5001: models: Client is using short method names (short-client-method-name) -************* Module azure.synapse.managedprivateendpoints.v2021_06_01_preview._vnet_client -sdk\synapse\azure-synapse-managedprivateendpoints\azure\synapse\managedprivateendpoints\v2021_06_01_preview\_vnet_client.py:74:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.synapse.monitoring._monitoring_client -sdk\synapse\azure-synapse-monitoring\azure\synapse\monitoring\_monitoring_client.py:74:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\synapse\azure-synapse-spark\azure\synapse\spark\_spark_client.py:87:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\synapse\azure-synapse-managedprivateendpoints\azure\synapse\managedprivateendpoints\aio\_vnet_client.py:87:4: C5000: VnetClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) -************* Module azure.data.tables._base_client -sdk\tables\azure-data-tables\azure\data\tables\_base_client.py:299:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.data.tables._table_service_client -sdk\tables\azure-data-tables\azure\data\tables\_table_service_client.py:243:4: C5000: query_tables: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.data.tables.aio._table_client_async -sdk\tables\azure-data-tables\azure\data\tables\aio\_table_client_async.py:642:4: C5000: query_entities: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) ************* Module azure.data.tables._table_client -sdk\tables\azure-data-tables\azure\data\tables\_table_client.py:641:4: C5000: query_entities: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\tables\azure-data-tables\azure\data\tables\_table_client.py:838:4: C5000: submit_transaction: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\tables\azure-data-tables\azure\data\tables\_table_client.py:875:4: C5000: submit_transaction: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\tables\azure-data-tables\azure\data\tables\_table_client.py:902:4: C5000: submit_transaction: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.data.tables.aio._table_service_client_async -sdk\tables\azure-data-tables\azure\data\tables\aio\_table_service_client_async.py:270:4: C5000: query_tables: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\tables\azure-data-tables\azure\data\tables\_table_client.py:838:4: C5000: TableClient::submit_transaction (unapproved-client-method-name-prefix) +sdk\tables\azure-data-tables\azure\data\tables\_table_client.py:875:4: C5000: TableClient::submit_transaction (unapproved-client-method-name-prefix) +sdk\tables\azure-data-tables\azure\data\tables\_table_client.py:902:4: C5000: TableClient::submit_transaction (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.97/10 (previous run: 10.00/10, -0.03) +Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) ------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.97/10, +0.03) +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) ************* Module azure.ai.textanalytics._text_analytics_client -sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:164:4: C5000: detect_language: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:271:4: C5000: recognize_entities: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:382:4: C5000: recognize_pii_entities: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:507:4: C5000: recognize_linked_entities: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:829:4: C5000: extract_key_phrases: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:934:4: C5000: analyze_sentiment: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) +sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:164:4: C5000: TextAnalyticsClient::detect_language (unapproved-client-method-name-prefix) +sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:271:4: C5000: TextAnalyticsClient::recognize_entities (unapproved-client-method-name-prefix) +sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:382:4: C5000: TextAnalyticsClient::recognize_pii_entities (unapproved-client-method-name-prefix) +sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:507:4: C5000: TextAnalyticsClient::recognize_linked_entities (unapproved-client-method-name-prefix) +sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:829:4: C5000: TextAnalyticsClient::extract_key_phrases (unapproved-client-method-name-prefix) ------------------------------------------------------------------- Your code has been rated at 9.97/10 (previous run: 10.00/10, -0.03) -************* Module azure.mgmt.timeseriesinsights._time_series_insights_client -sdk\timeseriesinsights\azure-mgmt-timeseriesinsights\azure\mgmt\timeseriesinsights\_time_series_insights_client.py:118:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 9.97/10, +0.03) -************* Module azure.mgmt.trafficmanager._traffic_manager_management_client -sdk\trafficmanager\azure-mgmt-trafficmanager\azure\mgmt\trafficmanager\_traffic_manager_management_client.py:105:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.ai.translation.document._patch -sdk\translation\azure-ai-translation-document\azure\ai\translation\document\_patch.py:977:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\translation\azure-ai-translation-document\azure\ai\translation\document\_patch.py:1152:4: C5000: cancel_translation: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.ai.translation.document._client -sdk\translation\azure-ai-translation-document\azure\ai\translation\document\_client.py:71:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\translation\azure-ai-translation-document\azure\ai\translation\document\_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\translation\azure-ai-translation-document\azure\ai\translation\document\_client.py:151:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\translation\azure-ai-translation-document\azure\ai\translation\document\_client.py:177:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.ai.translation.document.aio._client -sdk\translation\azure-ai-translation-document\azure\ai\translation\document\aio\_client.py:73:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\translation\azure-ai-translation-document\azure\ai\translation\document\aio\_client.py:157:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.ai.translation.text._client -sdk\translation\azure-ai-translation-text\azure\ai\translation\text\_client.py:81:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\translation\azure-ai-translation-text\azure\ai\translation\text\_client.py:107:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.ai.translation.text.aio._client -sdk\translation\azure-ai-translation-text\azure\ai\translation\text\aio\_client.py:81:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.97/10 (previous run: 10.00/10, -0.02) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.97/10, +0.03) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.ai.vision.imageanalysis._client -sdk\vision\azure-ai-vision-imageanalysis\azure\ai\vision\imageanalysis\_client.py:68:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\vision\azure-ai-vision-imageanalysis\azure\ai\vision\imageanalysis\_client.py:94:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.ai.vision.imageanalysis._patch -sdk\vision\azure-ai-vision-imageanalysis\azure\ai\vision\imageanalysis\_patch.py:33:4: C5000: analyze_from_url: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\vision\azure-ai-vision-imageanalysis\azure\ai\vision\imageanalysis\_patch.py:93:4: C5001: analyze: Client is using short method names (short-client-method-name) -************* Module azure.ai.vision.imageanalysis.aio._client -sdk\vision\azure-ai-vision-imageanalysis\azure\ai\vision\imageanalysis\aio\_client.py:70:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.96/10 (previous run: 10.00/10, -0.04) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.voiceservices._voice_services_mgmt_client -sdk\voiceservices\azure-mgmt-voiceservices\azure\mgmt\voiceservices\_voice_services_mgmt_client.py:97:4: C5001: close: Client is using short method names (short-client-method-name) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.96/10, +0.04) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ************* Module azure.messaging.webpubsubclient._client -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:428:4: C5000: join_group: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:450:4: C5000: leave_group: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:469:4: C5000: send_event: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:492:4: C5000: send_event: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:516:4: C5000: send_event: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:538:4: C5000: send_event: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:578:4: C5000: send_to_group: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:600:4: C5000: send_to_group: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:622:4: C5000: send_to_group: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:644:4: C5000: send_to_group: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:781:4: C5000: is_connected: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1036:4: C5001: open: Client is using short method names (short-client-method-name) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1051:4: C5001: close: Client is using short method names (short-client-method-name) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1081:4: C5001: subscribe: Client is using short method names (short-client-method-name) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1094:4: C5001: subscribe: Client is using short method names (short-client-method-name) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1107:4: C5001: subscribe: Client is using short method names (short-client-method-name) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1120:4: C5001: subscribe: Client is using short method names (short-client-method-name) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1133:4: C5001: subscribe: Client is using short method names (short-client-method-name) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1146:4: C5001: subscribe: Client is using short method names (short-client-method-name) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1159:4: C5001: subscribe: Client is using short method names (short-client-method-name) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1177:4: C5001: unsubscribe: Client is using short method names (short-client-method-name) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1190:4: C5001: unsubscribe: Client is using short method names (short-client-method-name) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1203:4: C5001: unsubscribe: Client is using short method names (short-client-method-name) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1216:4: C5001: unsubscribe: Client is using short method names (short-client-method-name) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1229:4: C5001: unsubscribe: Client is using short method names (short-client-method-name) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1242:4: C5001: unsubscribe: Client is using short method names (short-client-method-name) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1255:4: C5001: unsubscribe: Client is using short method names (short-client-method-name) -************* Module azure.messaging.webpubsubservice._client -sdk\webpubsub\azure-messaging-webpubsubservice\azure\messaging\webpubsubservice\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubservice\azure\messaging\webpubsubservice\_client.py:95:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:428:4: C5000: WebPubSubClient::join_group (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:450:4: C5000: WebPubSubClient::leave_group (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:781:4: C5000: WebPubSubClient::is_connected (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1036:4: C5000: WebPubSubClient::open (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1177:4: C5000: WebPubSubClient::unsubscribe (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1190:4: C5000: WebPubSubClient::unsubscribe (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1203:4: C5000: WebPubSubClient::unsubscribe (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1216:4: C5000: WebPubSubClient::unsubscribe (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1229:4: C5000: WebPubSubClient::unsubscribe (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1242:4: C5000: WebPubSubClient::unsubscribe (unapproved-client-method-name-prefix) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1255:4: C5000: WebPubSubClient::unsubscribe (unapproved-client-method-name-prefix) ************* Module azure.messaging.webpubsubclient.aio._client -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\aio\_client.py:694:4: C5000: is_connected: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.messaging.webpubsubservice.aio._client -sdk\webpubsub\azure-messaging-webpubsubservice\azure\messaging\webpubsubservice\aio\_client.py:69:4: C5000: send_request: Client is not using an approved method name prefix. See details: https://azure.github.io/azure-sdk/python_design.html#service-operations (unapproved-client-method-name-prefix) -************* Module azure.mgmt.webpubsub._web_pub_sub_management_client -sdk\webpubsub\azure-mgmt-webpubsub\azure\mgmt\webpubsub\_web_pub_sub_management_client.py:140:4: C5001: close: Client is using short method names (short-client-method-name) +sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\aio\_client.py:694:4: C5000: WebPubSubClient::is_connected (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.96/10 (previous run: 10.00/10, -0.04) +------------------------------------------------------------------ +Your code has been rated at 9.99/10 (previous run: 9.96/10, +0.02) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.workloads._workloads_mgmt_client -sdk\workloads\azure-mgmt-workloads\azure\mgmt\workloads\_workloads_mgmt_client.py:132:4: C5001: close: Client is using short method names (short-client-method-name) -************* Module azure.mgmt.workloadssapvirtualinstance._workloads_sap_virtual_instance_mgmt_client -sdk\workloads\azure-mgmt-workloadssapvirtualinstance\azure\mgmt\workloadssapvirtualinstance\_workloads_sap_virtual_instance_mgmt_client.py:116:4: C5001: close: Client is using short method names (short-client-method-name) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) From db697b2e9d5e3338b76357029582de0b76916a3b Mon Sep 17 00:00:00 2001 From: Joshua Bishop <13187637+MJoshuaB@users.noreply.github.com> Date: Mon, 2 Sep 2024 14:53:43 +1200 Subject: [PATCH 11/31] update reportcounts.md --- .../reportcounts.md | 447 +++++++++--------- 1 file changed, 229 insertions(+), 218 deletions(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md b/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md index 603001de12c..ecd0dd5b964 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md @@ -1,218 +1,229 @@ -|Method|Message|Count| -|------|-------|-----| -|close|too-short|777| -|send_request|bad-prefix|121| -|models|too-short|74| -|settle_messages|bad-prefix|12| -|exists|too-short|10| -|embed|too-short|8| -|unsubscribe|too-short|7| -|subscribe|too-short|7| -|download_blob|bad-prefix|7| -|complete|too-short|6| -|acquire_lease|bad-prefix|6| -|send_event|bad-prefix|5| -|send_to_group|bad-prefix|4| -|send_message|bad-prefix|4| -|find_blobs_by_tags|bad-prefix|4| -|detect_from_url|bad-prefix|4| -|upload|too-short|3| -|renew|too-short|3| -|release|too-short|3| -|open|too-short|3| -|download|too-short|3| -|change|too-short|3| -|acquire|too-short|3| -|upload_file|bad-prefix|3| -|upload_blob|bad-prefix|3| -|submit_transaction|bad-prefix|3| -|start_recording|bad-prefix|3| -|break_lease|bad-prefix|3| -|send|too-short|2| -|rank|too-short|2| -|walk_blobs|bad-prefix|2| -|start_copy_from_url|bad-prefix|2| -|search_operator_information|bad-prefix|2| -|reset_policy|bad-prefix|2| -|request_token|bad-prefix|2| -|rename_file|bad-prefix|2| -|rename_directory|bad-prefix|2| -|receive_messages_iter|bad-prefix|2| -|receive_messages|bad-prefix|2| -|receive_message_batch|bad-prefix|2| -|query_twins|bad-prefix|2| -|query_tables|bad-prefix|2| -|query_resource|bad-prefix|2| -|query_entities|bad-prefix|2| -|query_databases|bad-prefix|2| -|mgmt_request|bad-prefix|2| -|is_connected|bad-prefix|2| -|exchange_refresh_token_for_access_token|bad-prefix|2| -|do_work|bad-prefix|2| -|download_file|bad-prefix|2| -|detect_language|bad-prefix|2| -|close_handle|bad-prefix|2| -|close_all_handles|bad-prefix|2| -|client_ready|bad-prefix|2| -|auth_complete|bad-prefix|2| -|abort_copy|bad-prefix|2| -|verify|too-short|1| -|unhold|too-short|1| -|timeout|too-short|1| -|suggest|too-short|1| -|sign|too-short|1| -|sentiment|too-short|1| -|search|too-short|1| -|reward|too-short|1| -|receive|too-short|1| -|query|too-short|1| -|post|too-short|1| -|logs|too-short|1| -|hold|too-short|1| -|flush|too-short|1| -|entities|too-short|1| -|encrypt|too-short|1| -|detect|too-short|1| -|decrypt|too-short|1| -|autocomplete|too-short|1| -|analyze|too-short|1| -|activate|too-short|1| -|wrap_key|bad-prefix|1| -|with_filter|bad-prefix|1| -|wait_for_operation_status_success_default_callback|bad-prefix|1| -|wait_for_operation_status_progress_default_callback|bad-prefix|1| -|wait_for_operation_status_failure_default_callback|bad-prefix|1| -|wait_for_operation_status|bad-prefix|1| -|upload_range_from_url|bad-prefix|1| -|upload_range|bad-prefix|1| -|upload_pages_from_url|bad-prefix|1| -|upload_page|bad-prefix|1| -|upload_documents|bad-prefix|1| -|upload_dir|bad-prefix|1| -|upload_data|bad-prefix|1| -|upload_blob_from_url|bad-prefix|1| -|unwrap_key|bad-prefix|1| -|undelete_share|bad-prefix|1| -|undelete_file_system|bad-prefix|1| -|undelete_container|bad-prefix|1| -|undelete_blob|bad-prefix|1| -|transfer_call_to_participant|bad-prefix|1| -|train_custom_model|bad-prefix|1| -|stop_transcription|bad-prefix|1| -|stop_rendering_session|bad-prefix|1| -|stop_recording|bad-prefix|1| -|stop_hold_music|bad-prefix|1| -|stop_continuous_dtmf_recognition|bad-prefix|1| -|start_transcription|bad-prefix|1| -|start_recognizing_media|bad-prefix|1| -|start_hold_music|bad-prefix|1| -|start_continuous_dtmf_recognition|bad-prefix|1| -|stage_block_from_url|bad-prefix|1| -|stage_block|bad-prefix|1| -|should_use_requests|bad-prefix|1| -|setup_session_after_init|bad-prefix|1| -|send_typing_notification|bad-prefix|1| -|send_signal_message|bad-prefix|1| -|send_signal_and_wait_for_annotation|bad-prefix|1| -|send_request_headers|bad-prefix|1| -|send_request_body|bad-prefix|1| -|send_read_receipt|bad-prefix|1| -|send_message_to_al|bad-prefix|1| -|send_dtmf_tones|bad-prefix|1| -|send_batch|bad-prefix|1| -|seal_append_blob|bad-prefix|1| -|run_indexer|bad-prefix|1| -|rotate_key|bad-prefix|1| -|reward_multi_slot|bad-prefix|1| -|revoke_tokens|bad-prefix|1| -|resume_recording|bad-prefix|1| -|restore_secret_backup|bad-prefix|1| -|restore_key_backup|bad-prefix|1| -|restore_certificate_backup|bad-prefix|1| -|resize_file|bad-prefix|1| -|resize_blob|bad-prefix|1| -|reset_skills|bad-prefix|1| -|reset_model|bad-prefix|1| -|reset_indexer|bad-prefix|1| -|reset_documents|bad-prefix|1| -|release_key|bad-prefix|1| -|reject_call|bad-prefix|1| -|register_schema|bad-prefix|1| -|refresh_data_feed_ingestion|bad-prefix|1| -|redirect_call|bad-prefix|1| -|recover_snapshot|bad-prefix|1| -|reconnect_and_attempt_session_init|bad-prefix|1| -|recognize_pii_entities|bad-prefix|1| -|recognize_linked_entities|bad-prefix|1| -|recognize_entities|bad-prefix|1| -|receive_message|bad-prefix|1| -|receive_batch|bad-prefix|1| -|rank_multi_slot|bad-prefix|1| -|query_workspace|bad-prefix|1| -|query_resources|bad-prefix|1| -|query_file|bad-prefix|1| -|query_blob|bad-prefix|1| -|query_batch|bad-prefix|1| -|purge_deleted_secret|bad-prefix|1| -|purge_deleted_key|bad-prefix|1| -|purge_deleted_certificate|bad-prefix|1| -|publish_telemetry|bad-prefix|1| -|publish_component_telemetry|bad-prefix|1| -|play_media_to_all|bad-prefix|1| -|play_media|bad-prefix|1| -|perform_request|bad-prefix|1| -|perform_put|bad-prefix|1| -|perform_post|bad-prefix|1| -|perform_get|bad-prefix|1| -|perform_delete|bad-prefix|1| -|peek_messages|bad-prefix|1| -|pause_recording|bad-prefix|1| -|obtain_token_on_behalf_of|bad-prefix|1| -|obtain_token_by_refresh_token|bad-prefix|1| -|obtain_token_by_jwt_assertion|bad-prefix|1| -|obtain_token_by_client_secret|bad-prefix|1| -|obtain_token_by_client_certificate|bad-prefix|1| -|obtain_token_by_authorization_code|bad-prefix|1| -|mute_participant|bad-prefix|1| -|merge_or_upload_documents|bad-prefix|1| -|merge_documents|bad-prefix|1| -|merge_certificate|bad-prefix|1| -|leave_group|bad-prefix|1| -|key_phrases|bad-prefix|1| -|join_group|bad-prefix|1| -|invoke_dev_container|bad-prefix|1| -|index_documents|bad-prefix|1| -|import_model|bad-prefix|1| -|import_key|bad-prefix|1| -|import_certificate|bad-prefix|1| -|hang_up|bad-prefix|1| -|flush_data|bad-prefix|1| -|extract_key_phrases|bad-prefix|1| -|export_model|bad-prefix|1| -|exchange_aad_token_for_refresh_token|bad-prefix|1| -|download_recording|bad-prefix|1| -|decommission_model|bad-prefix|1| -|commit_block_list|bad-prefix|1| -|clear_range|bad-prefix|1| -|clear_page|bad-prefix|1| -|clear_messages|bad-prefix|1| -|cancel_translation|bad-prefix|1| -|cancel_certificate_operation|bad-prefix|1| -|cancel_all_media_operations|bad-prefix|1| -|cancel_add_participant_operation|bad-prefix|1| -|build_index_on_cloud|bad-prefix|1| -|bounded_chat_completion|bad-prefix|1| -|backup_secret|bad-prefix|1| -|backup_key|bad-prefix|1| -|backup_certificate|bad-prefix|1| -|attest_tpm|bad-prefix|1| -|attest_sgx_enclave|bad-prefix|1| -|attest_open_enclave|bad-prefix|1| -|archive_snapshot|bad-prefix|1| -|apply_from_evaluation|bad-prefix|1| -|answer_call|bad-prefix|1| -|analyze_with_custom_model|bad-prefix|1| -|analyze_text|bad-prefix|1| -|analyze_sentiment|bad-prefix|1| -|analyze_from_url|bad-prefix|1| -|activate_multi_slot|bad-prefix|1| +| ReceiveClient::settle_messages | 12 | +| WebPubSubClient::unsubscribe | 7 | +| ChatCompletionsClient::complete | 6 | +| ImageEmbeddingsClient::embed | 4 | +| FaceClient::detect_from_url | 4 | +| EmbeddingsClient::embed | 4 | +| TableClient::submit_transaction | 3 | +| CallAutomationClient::start_recording | 3 | +| WebSiteManagementClient::models | 2 | +| WebPubSubClient::is_connected | 2 | +| VnetClient::models | 2 | +| TextAnalyticsClient::detect_language | 2 | +| TemplateSpecsClient::models | 2 | +| SubscriptionClient::models | 2 | +| StorageManagementClient::models | 2 | +| SourceControlConfigurationClient::models | 2 | +| ServiceBusManagementClient::models | 2 | +| ResourcePrivateLinkClient::models | 2 | +| ResourceManagementClient::models | 2 | +| ResourceHealthMgmtClient::models | 2 | +| ReceiveClient::receive_messages_iter | 2 | +| ReceiveClient::receive_message_batch | 2 | +| QueueClient::receive_messages | 2 | +| PolicyClient::models | 2 | +| PhoneNumbersClient::search_operator_information | 2 | +| PersonalizerClient::rank | 2 | +| MonitorManagementClient::models | 2 | +| ManagementLockClient::models | 2 | +| ManagementLinkClient::models | 2 | +| ManagedServiceIdentityClient::models | 2 | +| ManagedIdentityClient::request_token | 2 | +| KeyVaultManagementClient::models | 2 | +| IotHubClient::models | 2 | +| FeatureClient::models | 2 | +| EventHubManagementClient::models | 2 | +| EdgeOrderManagementClient::models | 2 | +| DnsManagementClient::models | 2 | +| DeploymentStacksClient::models | 2 | +| DeploymentScriptsClient::models | 2 | +| DataBoxManagementClient::models | 2 | +| DataBoxEdgeManagementClient::models | 2 | +| ContainerServiceFleetMgmtClient::models | 2 | +| ContainerServiceClient::models | 2 | +| ContainerRegistryManagementClient::models | 2 | +| ContainerClient::walk_blobs | 2 | +| ContainerClient::find_blobs_by_tags | 2 | +| ComputeManagementClient::models | 2 | +| ChangesClient::models | 2 | +| BlobServiceClient::find_blobs_by_tags | 2 | +| AzureRedHatOpenShiftClient::models | 2 | +| AzureDigitalTwinsManagementClient::models | 2 | +| AuthorizationManagementClient::models | 2 | +| AppPlatformManagementClient::models | 2 | +| ApplicationInsightsManagementClient::models | 2 | +| ApplicationClient::models | 2 | +| AppConfigurationManagementClient::models | 2 | +| AMQPClient::open | 2 | +| AMQPClient::mgmt_request | 2 | +| AMQPClient::do_work | 2 | +| AMQPClient::client_ready | 2 | +| AMQPClient::auth_complete | 2 | +| WebPubSubClient::open | 1 | +| WebPubSubClient::leave_group | 1 | +| WebPubSubClient::join_group | 1 | +| VSCodeClient::invoke_dev_container | 1 | +| TextAnalyticsClient::sentiment | 1 | +| TextAnalyticsClient::recognize_pii_entities | 1 | +| TextAnalyticsClient::recognize_linked_entities | 1 | +| TextAnalyticsClient::recognize_entities | 1 | +| TextAnalyticsClient::key_phrases | 1 | +| TextAnalyticsClient::extract_key_phrases | 1 | +| TextAnalyticsClient::entities | 1 | +| StorageClient::exists | 1 | +| ShareServiceClient::undelete_share | 1 | +| ShareLeaseClient::renew | 1 | +| ShareLeaseClient::release | 1 | +| ShareLeaseClient::change | 1 | +| ShareLeaseClient::break_lease | 1 | +| ShareLeaseClient::acquire | 1 | +| ShareFileClient::start_copy_from_url | 1 | +| ShareFileClient::resize_file | 1 | +| ShareFileClient::rename_file | 1 | +| ShareFileClient::exists | 1 | +| ShareFileClient::acquire_lease | 1 | +| ShareFileClient::abort_copy | 1 | +| ShareDirectoryClient::rename_directory | 1 | +| ShareDirectoryClient::exists | 1 | +| ShareClient::acquire_lease | 1 | +| ServiceManagementClient::with_filter | 1 | +| ServiceManagementClient::wait_for_operation_status_success_default_callback | 1 | +| ServiceManagementClient::wait_for_operation_status_progress_default_callback | 1 | +| ServiceManagementClient::wait_for_operation_status_failure_default_callback | 1 | +| ServiceManagementClient::wait_for_operation_status | 1 | +| ServiceManagementClient::timeout | 1 | +| ServiceManagementClient::should_use_requests | 1 | +| ServiceManagementClient::perform_put | 1 | +| ServiceManagementClient::perform_post | 1 | +| ServiceManagementClient::perform_get | 1 | +| ServiceManagementClient::perform_delete | 1 | +| SecretClient::restore_secret_backup | 1 | +| SecretClient::purge_deleted_secret | 1 | +| SecretClient::backup_secret | 1 | +| SearchIndexerClient::run_indexer | 1 | +| SearchIndexerClient::reset_skills | 1 | +| SearchIndexerClient::reset_indexer | 1 | +| SearchIndexerClient::reset_documents | 1 | +| SearchClient::suggest | 1 | +| SearchClient::search | 1 | +| SearchClient::merge_or_upload_documents | 1 | +| SearchClient::merge_documents | 1 | +| SearchClient::index_documents | 1 | +| SearchClient::autocomplete | 1 | +| SchemaRegistryClient::register_schema | 1 | +| RemoteRenderingClient::stop_rendering_session | 1 | +| QueueClient::receive_message | 1 | +| QueueClient::peek_messages | 1 | +| PersonalizerClient::reward_multi_slot | 1 | +| PersonalizerClient::reward | 1 | +| PersonalizerClient::rank_multi_slot | 1 | +| PersonalizerClient::activate_multi_slot | 1 | +| PersonalizerClient::activate | 1 | +| PersonalizerAdministrationClient::reset_policy | 1 | +| PersonalizerAdministrationClient::reset_model | 1 | +| PersonalizerAdministrationClient::import_model | 1 | +| PersonalizerAdministrationClient::export_model | 1 | +| PersonalizerAdministrationClient::apply_from_evaluation | 1 | +| PathClient::acquire_lease | 1 | +| MsalClient::post | 1 | +| MetricsAdvisorAdministrationClient::refresh_data_feed_ingestion | 1 | +| KeyClient::rotate_key | 1 | +| KeyClient::restore_key_backup | 1 | +| KeyClient::release_key | 1 | +| KeyClient::purge_deleted_key | 1 | +| KeyClient::import_key | 1 | +| KeyClient::backup_key | 1 | +| HTTPClient::perform_request | 1 | +| FormRecognizerClient::train_custom_model | 1 | +| FileSystemClient::exists | 1 | +| FileSystemClient::acquire_lease | 1 | +| FileStorageClient::exists | 1 | +| FaceClient::detect | 1 | +| EventHubProducerClient::flush | 1 | +| EventHubConsumerClient::receive_batch | 1 | +| EventHubConsumerClient::receive | 1 | +| DockerClient::logs | 1 | +| DigitalTwinsClient::publish_telemetry | 1 | +| DigitalTwinsClient::publish_component_telemetry | 1 | +| DigitalTwinsClient::decommission_model | 1 | +| DataLakeServiceClient::undelete_file_system | 1 | +| DataLakeLeaseClient::renew | 1 | +| DataLakeLeaseClient::release | 1 | +| DataLakeLeaseClient::change | 1 | +| DataLakeLeaseClient::break_lease | 1 | +| DataLakeLeaseClient::acquire | 1 | +| DataLakeFileClient::rename_file | 1 | +| DataLakeFileClient::flush_data | 1 | +| DataLakeFileClient::exists | 1 | +| DataLakeDirectoryClient::rename_directory | 1 | +| DataLakeDirectoryClient::exists | 1 | +| CryptographyClient::wrap_key | 1 | +| CryptographyClient::verify | 1 | +| CryptographyClient::unwrap_key | 1 | +| CryptographyClient::sign | 1 | +| CryptographyClient::encrypt | 1 | +| CryptographyClient::decrypt | 1 | +| ContainerClient::exists | 1 | +| ContainerClient::acquire_lease | 1 | +| CommunicationIdentityClient::revoke_tokens | 1 | +| CertificateClient::restore_certificate_backup | 1 | +| CertificateClient::purge_deleted_certificate | 1 | +| CertificateClient::merge_certificate | 1 | +| CertificateClient::import_certificate | 1 | +| CertificateClient::backup_certificate | 1 | +| CallConnectionClient::unhold | 1 | +| CallConnectionClient::transfer_call_to_participant | 1 | +| CallConnectionClient::stop_transcription | 1 | +| CallConnectionClient::stop_hold_music | 1 | +| CallConnectionClient::stop_continuous_dtmf_recognition | 1 | +| CallConnectionClient::start_transcription | 1 | +| CallConnectionClient::start_recognizing_media | 1 | +| CallConnectionClient::start_hold_music | 1 | +| CallConnectionClient::start_continuous_dtmf_recognition | 1 | +| CallConnectionClient::play_media_to_all | 1 | +| CallConnectionClient::play_media | 1 | +| CallConnectionClient::mute_participant | 1 | +| CallConnectionClient::hold | 1 | +| CallConnectionClient::hang_up | 1 | +| CallAutomationClient::stop_recording | 1 | +| CallAutomationClient::resume_recording | 1 | +| CallAutomationClient::reject_call | 1 | +| CallAutomationClient::redirect_call | 1 | +| CallAutomationClient::pause_recording | 1 | +| CallAutomationClient::answer_call | 1 | +| BlobStorageClient::exists | 1 | +| BlobServiceClient::undelete_container | 1 | +| BlobLeaseClient::renew | 1 | +| BlobLeaseClient::release | 1 | +| BlobLeaseClient::change | 1 | +| BlobLeaseClient::break_lease | 1 | +| BlobLeaseClient::acquire | 1 | +| BlobClient::undelete_blob | 1 | +| BlobClient::start_copy_from_url | 1 | +| BlobClient::stage_block_from_url | 1 | +| BlobClient::stage_block | 1 | +| BlobClient::seal_append_blob | 1 | +| BlobClient::resize_blob | 1 | +| BlobClient::exists | 1 | +| BlobClient::commit_block_list | 1 | +| BlobClient::acquire_lease | 1 | +| BlobClient::abort_copy | 1 | +| AzureOpenAIClient::bounded_chat_completion | 1 | +| AzureAppConfigurationClient::recover_snapshot | 1 | +| AzureAppConfigurationClient::archive_snapshot | 1 | +| AugLoopClient::setup_session_after_init | 1 | +| AugLoopClient::reconnect_and_attempt_session_init | 1 | +| AttestationClient::attest_tpm | 1 | +| AttestationClient::attest_sgx_enclave | 1 | +| AttestationClient::attest_open_enclave | 1 | +| AttestationAdministrationClient::reset_policy | 1 | +| AnonymousACRExchangeClient::exchange_refresh_token_for_access_token | 1 | +| AIClient::build_index_on_cloud | 1 | +| ACRExchangeClient::exchange_refresh_token_for_access_token | 1 | +| ACRExchangeClient::exchange_aad_token_for_refresh_token | 1 | +| AadClient::obtain_token_on_behalf_of | 1 | +| AadClient::obtain_token_by_refresh_token | 1 | +| AadClient::obtain_token_by_jwt_assertion | 1 | +| AadClient::obtain_token_by_client_secret | 1 | +| AadClient::obtain_token_by_client_certificate | 1 | +| AadClient::obtain_token_by_authorization_code | 1 | From ae66d2c3493567cf79f82e6a26fdc1437e714e96 Mon Sep 17 00:00:00 2001 From: Joshua Bishop <13187637+MJoshuaB@users.noreply.github.com> Date: Mon, 2 Sep 2024 14:56:47 +1200 Subject: [PATCH 12/31] fix formatting for reportcounts.md --- .../reportcounts.md | 460 +++++++++--------- 1 file changed, 231 insertions(+), 229 deletions(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md b/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md index ecd0dd5b964..762e36c49f5 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md @@ -1,229 +1,231 @@ -| ReceiveClient::settle_messages | 12 | -| WebPubSubClient::unsubscribe | 7 | -| ChatCompletionsClient::complete | 6 | -| ImageEmbeddingsClient::embed | 4 | -| FaceClient::detect_from_url | 4 | -| EmbeddingsClient::embed | 4 | -| TableClient::submit_transaction | 3 | -| CallAutomationClient::start_recording | 3 | -| WebSiteManagementClient::models | 2 | -| WebPubSubClient::is_connected | 2 | -| VnetClient::models | 2 | -| TextAnalyticsClient::detect_language | 2 | -| TemplateSpecsClient::models | 2 | -| SubscriptionClient::models | 2 | -| StorageManagementClient::models | 2 | -| SourceControlConfigurationClient::models | 2 | -| ServiceBusManagementClient::models | 2 | -| ResourcePrivateLinkClient::models | 2 | -| ResourceManagementClient::models | 2 | -| ResourceHealthMgmtClient::models | 2 | -| ReceiveClient::receive_messages_iter | 2 | -| ReceiveClient::receive_message_batch | 2 | -| QueueClient::receive_messages | 2 | -| PolicyClient::models | 2 | -| PhoneNumbersClient::search_operator_information | 2 | -| PersonalizerClient::rank | 2 | -| MonitorManagementClient::models | 2 | -| ManagementLockClient::models | 2 | -| ManagementLinkClient::models | 2 | -| ManagedServiceIdentityClient::models | 2 | -| ManagedIdentityClient::request_token | 2 | -| KeyVaultManagementClient::models | 2 | -| IotHubClient::models | 2 | -| FeatureClient::models | 2 | -| EventHubManagementClient::models | 2 | -| EdgeOrderManagementClient::models | 2 | -| DnsManagementClient::models | 2 | -| DeploymentStacksClient::models | 2 | -| DeploymentScriptsClient::models | 2 | -| DataBoxManagementClient::models | 2 | -| DataBoxEdgeManagementClient::models | 2 | -| ContainerServiceFleetMgmtClient::models | 2 | -| ContainerServiceClient::models | 2 | -| ContainerRegistryManagementClient::models | 2 | -| ContainerClient::walk_blobs | 2 | -| ContainerClient::find_blobs_by_tags | 2 | -| ComputeManagementClient::models | 2 | -| ChangesClient::models | 2 | -| BlobServiceClient::find_blobs_by_tags | 2 | -| AzureRedHatOpenShiftClient::models | 2 | -| AzureDigitalTwinsManagementClient::models | 2 | -| AuthorizationManagementClient::models | 2 | -| AppPlatformManagementClient::models | 2 | -| ApplicationInsightsManagementClient::models | 2 | -| ApplicationClient::models | 2 | -| AppConfigurationManagementClient::models | 2 | -| AMQPClient::open | 2 | -| AMQPClient::mgmt_request | 2 | -| AMQPClient::do_work | 2 | -| AMQPClient::client_ready | 2 | -| AMQPClient::auth_complete | 2 | -| WebPubSubClient::open | 1 | -| WebPubSubClient::leave_group | 1 | -| WebPubSubClient::join_group | 1 | -| VSCodeClient::invoke_dev_container | 1 | -| TextAnalyticsClient::sentiment | 1 | -| TextAnalyticsClient::recognize_pii_entities | 1 | -| TextAnalyticsClient::recognize_linked_entities | 1 | -| TextAnalyticsClient::recognize_entities | 1 | -| TextAnalyticsClient::key_phrases | 1 | -| TextAnalyticsClient::extract_key_phrases | 1 | -| TextAnalyticsClient::entities | 1 | -| StorageClient::exists | 1 | -| ShareServiceClient::undelete_share | 1 | -| ShareLeaseClient::renew | 1 | -| ShareLeaseClient::release | 1 | -| ShareLeaseClient::change | 1 | -| ShareLeaseClient::break_lease | 1 | -| ShareLeaseClient::acquire | 1 | -| ShareFileClient::start_copy_from_url | 1 | -| ShareFileClient::resize_file | 1 | -| ShareFileClient::rename_file | 1 | -| ShareFileClient::exists | 1 | -| ShareFileClient::acquire_lease | 1 | -| ShareFileClient::abort_copy | 1 | -| ShareDirectoryClient::rename_directory | 1 | -| ShareDirectoryClient::exists | 1 | -| ShareClient::acquire_lease | 1 | -| ServiceManagementClient::with_filter | 1 | -| ServiceManagementClient::wait_for_operation_status_success_default_callback | 1 | -| ServiceManagementClient::wait_for_operation_status_progress_default_callback | 1 | -| ServiceManagementClient::wait_for_operation_status_failure_default_callback | 1 | -| ServiceManagementClient::wait_for_operation_status | 1 | -| ServiceManagementClient::timeout | 1 | -| ServiceManagementClient::should_use_requests | 1 | -| ServiceManagementClient::perform_put | 1 | -| ServiceManagementClient::perform_post | 1 | -| ServiceManagementClient::perform_get | 1 | -| ServiceManagementClient::perform_delete | 1 | -| SecretClient::restore_secret_backup | 1 | -| SecretClient::purge_deleted_secret | 1 | -| SecretClient::backup_secret | 1 | -| SearchIndexerClient::run_indexer | 1 | -| SearchIndexerClient::reset_skills | 1 | -| SearchIndexerClient::reset_indexer | 1 | -| SearchIndexerClient::reset_documents | 1 | -| SearchClient::suggest | 1 | -| SearchClient::search | 1 | -| SearchClient::merge_or_upload_documents | 1 | -| SearchClient::merge_documents | 1 | -| SearchClient::index_documents | 1 | -| SearchClient::autocomplete | 1 | -| SchemaRegistryClient::register_schema | 1 | -| RemoteRenderingClient::stop_rendering_session | 1 | -| QueueClient::receive_message | 1 | -| QueueClient::peek_messages | 1 | -| PersonalizerClient::reward_multi_slot | 1 | -| PersonalizerClient::reward | 1 | -| PersonalizerClient::rank_multi_slot | 1 | -| PersonalizerClient::activate_multi_slot | 1 | -| PersonalizerClient::activate | 1 | -| PersonalizerAdministrationClient::reset_policy | 1 | -| PersonalizerAdministrationClient::reset_model | 1 | -| PersonalizerAdministrationClient::import_model | 1 | -| PersonalizerAdministrationClient::export_model | 1 | -| PersonalizerAdministrationClient::apply_from_evaluation | 1 | -| PathClient::acquire_lease | 1 | -| MsalClient::post | 1 | -| MetricsAdvisorAdministrationClient::refresh_data_feed_ingestion | 1 | -| KeyClient::rotate_key | 1 | -| KeyClient::restore_key_backup | 1 | -| KeyClient::release_key | 1 | -| KeyClient::purge_deleted_key | 1 | -| KeyClient::import_key | 1 | -| KeyClient::backup_key | 1 | -| HTTPClient::perform_request | 1 | -| FormRecognizerClient::train_custom_model | 1 | -| FileSystemClient::exists | 1 | -| FileSystemClient::acquire_lease | 1 | -| FileStorageClient::exists | 1 | -| FaceClient::detect | 1 | -| EventHubProducerClient::flush | 1 | -| EventHubConsumerClient::receive_batch | 1 | -| EventHubConsumerClient::receive | 1 | -| DockerClient::logs | 1 | -| DigitalTwinsClient::publish_telemetry | 1 | -| DigitalTwinsClient::publish_component_telemetry | 1 | -| DigitalTwinsClient::decommission_model | 1 | -| DataLakeServiceClient::undelete_file_system | 1 | -| DataLakeLeaseClient::renew | 1 | -| DataLakeLeaseClient::release | 1 | -| DataLakeLeaseClient::change | 1 | -| DataLakeLeaseClient::break_lease | 1 | -| DataLakeLeaseClient::acquire | 1 | -| DataLakeFileClient::rename_file | 1 | -| DataLakeFileClient::flush_data | 1 | -| DataLakeFileClient::exists | 1 | -| DataLakeDirectoryClient::rename_directory | 1 | -| DataLakeDirectoryClient::exists | 1 | -| CryptographyClient::wrap_key | 1 | -| CryptographyClient::verify | 1 | -| CryptographyClient::unwrap_key | 1 | -| CryptographyClient::sign | 1 | -| CryptographyClient::encrypt | 1 | -| CryptographyClient::decrypt | 1 | -| ContainerClient::exists | 1 | -| ContainerClient::acquire_lease | 1 | -| CommunicationIdentityClient::revoke_tokens | 1 | -| CertificateClient::restore_certificate_backup | 1 | -| CertificateClient::purge_deleted_certificate | 1 | -| CertificateClient::merge_certificate | 1 | -| CertificateClient::import_certificate | 1 | -| CertificateClient::backup_certificate | 1 | -| CallConnectionClient::unhold | 1 | -| CallConnectionClient::transfer_call_to_participant | 1 | -| CallConnectionClient::stop_transcription | 1 | -| CallConnectionClient::stop_hold_music | 1 | -| CallConnectionClient::stop_continuous_dtmf_recognition | 1 | -| CallConnectionClient::start_transcription | 1 | -| CallConnectionClient::start_recognizing_media | 1 | -| CallConnectionClient::start_hold_music | 1 | -| CallConnectionClient::start_continuous_dtmf_recognition | 1 | -| CallConnectionClient::play_media_to_all | 1 | -| CallConnectionClient::play_media | 1 | -| CallConnectionClient::mute_participant | 1 | -| CallConnectionClient::hold | 1 | -| CallConnectionClient::hang_up | 1 | -| CallAutomationClient::stop_recording | 1 | -| CallAutomationClient::resume_recording | 1 | -| CallAutomationClient::reject_call | 1 | -| CallAutomationClient::redirect_call | 1 | -| CallAutomationClient::pause_recording | 1 | -| CallAutomationClient::answer_call | 1 | -| BlobStorageClient::exists | 1 | -| BlobServiceClient::undelete_container | 1 | -| BlobLeaseClient::renew | 1 | -| BlobLeaseClient::release | 1 | -| BlobLeaseClient::change | 1 | -| BlobLeaseClient::break_lease | 1 | -| BlobLeaseClient::acquire | 1 | -| BlobClient::undelete_blob | 1 | -| BlobClient::start_copy_from_url | 1 | -| BlobClient::stage_block_from_url | 1 | -| BlobClient::stage_block | 1 | -| BlobClient::seal_append_blob | 1 | -| BlobClient::resize_blob | 1 | -| BlobClient::exists | 1 | -| BlobClient::commit_block_list | 1 | -| BlobClient::acquire_lease | 1 | -| BlobClient::abort_copy | 1 | -| AzureOpenAIClient::bounded_chat_completion | 1 | -| AzureAppConfigurationClient::recover_snapshot | 1 | -| AzureAppConfigurationClient::archive_snapshot | 1 | -| AugLoopClient::setup_session_after_init | 1 | -| AugLoopClient::reconnect_and_attempt_session_init | 1 | -| AttestationClient::attest_tpm | 1 | -| AttestationClient::attest_sgx_enclave | 1 | -| AttestationClient::attest_open_enclave | 1 | -| AttestationAdministrationClient::reset_policy | 1 | -| AnonymousACRExchangeClient::exchange_refresh_token_for_access_token | 1 | -| AIClient::build_index_on_cloud | 1 | -| ACRExchangeClient::exchange_refresh_token_for_access_token | 1 | -| ACRExchangeClient::exchange_aad_token_for_refresh_token | 1 | -| AadClient::obtain_token_on_behalf_of | 1 | -| AadClient::obtain_token_by_refresh_token | 1 | -| AadClient::obtain_token_by_jwt_assertion | 1 | -| AadClient::obtain_token_by_client_secret | 1 | -| AadClient::obtain_token_by_client_certificate | 1 | -| AadClient::obtain_token_by_authorization_code | 1 | +| Namespace | Method | Count | +|---|---|---| +| ReceiveClient | settle_messages | 12 | +| WebPubSubClient | unsubscribe | 7 | +| ChatCompletionsClient | complete | 6 | +| ImageEmbeddingsClient | embed | 4 | +| FaceClient | detect_from_url | 4 | +| EmbeddingsClient | embed | 4 | +| TableClient | submit_transaction | 3 | +| CallAutomationClient | start_recording | 3 | +| WebSiteManagementClient | models | 2 | +| WebPubSubClient | is_connected | 2 | +| VnetClient | models | 2 | +| TextAnalyticsClient | detect_language | 2 | +| TemplateSpecsClient | models | 2 | +| SubscriptionClient | models | 2 | +| StorageManagementClient | models | 2 | +| SourceControlConfigurationClient | models | 2 | +| ServiceBusManagementClient | models | 2 | +| ResourcePrivateLinkClient | models | 2 | +| ResourceManagementClient | models | 2 | +| ResourceHealthMgmtClient | models | 2 | +| ReceiveClient | receive_messages_iter | 2 | +| ReceiveClient | receive_message_batch | 2 | +| QueueClient | receive_messages | 2 | +| PolicyClient | models | 2 | +| PhoneNumbersClient | search_operator_information | 2 | +| PersonalizerClient | rank | 2 | +| MonitorManagementClient | models | 2 | +| ManagementLockClient | models | 2 | +| ManagementLinkClient | models | 2 | +| ManagedServiceIdentityClient | models | 2 | +| ManagedIdentityClient | request_token | 2 | +| KeyVaultManagementClient | models | 2 | +| IotHubClient | models | 2 | +| FeatureClient | models | 2 | +| EventHubManagementClient | models | 2 | +| EdgeOrderManagementClient | models | 2 | +| DnsManagementClient | models | 2 | +| DeploymentStacksClient | models | 2 | +| DeploymentScriptsClient | models | 2 | +| DataBoxManagementClient | models | 2 | +| DataBoxEdgeManagementClient | models | 2 | +| ContainerServiceFleetMgmtClient | models | 2 | +| ContainerServiceClient | models | 2 | +| ContainerRegistryManagementClient | models | 2 | +| ContainerClient | walk_blobs | 2 | +| ContainerClient | find_blobs_by_tags | 2 | +| ComputeManagementClient | models | 2 | +| ChangesClient | models | 2 | +| BlobServiceClient | find_blobs_by_tags | 2 | +| AzureRedHatOpenShiftClient | models | 2 | +| AzureDigitalTwinsManagementClient | models | 2 | +| AuthorizationManagementClient | models | 2 | +| AppPlatformManagementClient | models | 2 | +| ApplicationInsightsManagementClient | models | 2 | +| ApplicationClient | models | 2 | +| AppConfigurationManagementClient | models | 2 | +| AMQPClient | open | 2 | +| AMQPClient | mgmt_request | 2 | +| AMQPClient | do_work | 2 | +| AMQPClient | client_ready | 2 | +| AMQPClient | auth_complete | 2 | +| WebPubSubClient | open | 1 | +| WebPubSubClient | leave_group | 1 | +| WebPubSubClient | join_group | 1 | +| VSCodeClient | invoke_dev_container | 1 | +| TextAnalyticsClient | sentiment | 1 | +| TextAnalyticsClient | recognize_pii_entities | 1 | +| TextAnalyticsClient | recognize_linked_entities | 1 | +| TextAnalyticsClient | recognize_entities | 1 | +| TextAnalyticsClient | key_phrases | 1 | +| TextAnalyticsClient | extract_key_phrases | 1 | +| TextAnalyticsClient | entities | 1 | +| StorageClient | exists | 1 | +| ShareServiceClient | undelete_share | 1 | +| ShareLeaseClient | renew | 1 | +| ShareLeaseClient | release | 1 | +| ShareLeaseClient | change | 1 | +| ShareLeaseClient | break_lease | 1 | +| ShareLeaseClient | acquire | 1 | +| ShareFileClient | start_copy_from_url | 1 | +| ShareFileClient | resize_file | 1 | +| ShareFileClient | rename_file | 1 | +| ShareFileClient | exists | 1 | +| ShareFileClient | acquire_lease | 1 | +| ShareFileClient | abort_copy | 1 | +| ShareDirectoryClient | rename_directory | 1 | +| ShareDirectoryClient | exists | 1 | +| ShareClient | acquire_lease | 1 | +| ServiceManagementClient | with_filter | 1 | +| ServiceManagementClient | wait_for_operation_status_success_default_callback | 1 | +| ServiceManagementClient | wait_for_operation_status_progress_default_callback | 1 | +| ServiceManagementClient | wait_for_operation_status_failure_default_callback | 1 | +| ServiceManagementClient | wait_for_operation_status | 1 | +| ServiceManagementClient | timeout | 1 | +| ServiceManagementClient | should_use_requests | 1 | +| ServiceManagementClient | perform_put | 1 | +| ServiceManagementClient | perform_post | 1 | +| ServiceManagementClient | perform_get | 1 | +| ServiceManagementClient | perform_delete | 1 | +| SecretClient | restore_secret_backup | 1 | +| SecretClient | purge_deleted_secret | 1 | +| SecretClient | backup_secret | 1 | +| SearchIndexerClient | run_indexer | 1 | +| SearchIndexerClient | reset_skills | 1 | +| SearchIndexerClient | reset_indexer | 1 | +| SearchIndexerClient | reset_documents | 1 | +| SearchClient | suggest | 1 | +| SearchClient | search | 1 | +| SearchClient | merge_or_upload_documents | 1 | +| SearchClient | merge_documents | 1 | +| SearchClient | index_documents | 1 | +| SearchClient | autocomplete | 1 | +| SchemaRegistryClient | register_schema | 1 | +| RemoteRenderingClient | stop_rendering_session | 1 | +| QueueClient | receive_message | 1 | +| QueueClient | peek_messages | 1 | +| PersonalizerClient | reward_multi_slot | 1 | +| PersonalizerClient | reward | 1 | +| PersonalizerClient | rank_multi_slot | 1 | +| PersonalizerClient | activate_multi_slot | 1 | +| PersonalizerClient | activate | 1 | +| PersonalizerAdministrationClient | reset_policy | 1 | +| PersonalizerAdministrationClient | reset_model | 1 | +| PersonalizerAdministrationClient | import_model | 1 | +| PersonalizerAdministrationClient | export_model | 1 | +| PersonalizerAdministrationClient | apply_from_evaluation | 1 | +| PathClient | acquire_lease | 1 | +| MsalClient | post | 1 | +| MetricsAdvisorAdministrationClient | refresh_data_feed_ingestion | 1 | +| KeyClient | rotate_key | 1 | +| KeyClient | restore_key_backup | 1 | +| KeyClient | release_key | 1 | +| KeyClient | purge_deleted_key | 1 | +| KeyClient | import_key | 1 | +| KeyClient | backup_key | 1 | +| HTTPClient | perform_request | 1 | +| FormRecognizerClient | train_custom_model | 1 | +| FileSystemClient | exists | 1 | +| FileSystemClient | acquire_lease | 1 | +| FileStorageClient | exists | 1 | +| FaceClient | detect | 1 | +| EventHubProducerClient | flush | 1 | +| EventHubConsumerClient | receive_batch | 1 | +| EventHubConsumerClient | receive | 1 | +| DockerClient | logs | 1 | +| DigitalTwinsClient | publish_telemetry | 1 | +| DigitalTwinsClient | publish_component_telemetry | 1 | +| DigitalTwinsClient | decommission_model | 1 | +| DataLakeServiceClient | undelete_file_system | 1 | +| DataLakeLeaseClient | renew | 1 | +| DataLakeLeaseClient | release | 1 | +| DataLakeLeaseClient | change | 1 | +| DataLakeLeaseClient | break_lease | 1 | +| DataLakeLeaseClient | acquire | 1 | +| DataLakeFileClient | rename_file | 1 | +| DataLakeFileClient | flush_data | 1 | +| DataLakeFileClient | exists | 1 | +| DataLakeDirectoryClient | rename_directory | 1 | +| DataLakeDirectoryClient | exists | 1 | +| CryptographyClient | wrap_key | 1 | +| CryptographyClient | verify | 1 | +| CryptographyClient | unwrap_key | 1 | +| CryptographyClient | sign | 1 | +| CryptographyClient | encrypt | 1 | +| CryptographyClient | decrypt | 1 | +| ContainerClient | exists | 1 | +| ContainerClient | acquire_lease | 1 | +| CommunicationIdentityClient | revoke_tokens | 1 | +| CertificateClient | restore_certificate_backup | 1 | +| CertificateClient | purge_deleted_certificate | 1 | +| CertificateClient | merge_certificate | 1 | +| CertificateClient | import_certificate | 1 | +| CertificateClient | backup_certificate | 1 | +| CallConnectionClient | unhold | 1 | +| CallConnectionClient | transfer_call_to_participant | 1 | +| CallConnectionClient | stop_transcription | 1 | +| CallConnectionClient | stop_hold_music | 1 | +| CallConnectionClient | stop_continuous_dtmf_recognition | 1 | +| CallConnectionClient | start_transcription | 1 | +| CallConnectionClient | start_recognizing_media | 1 | +| CallConnectionClient | start_hold_music | 1 | +| CallConnectionClient | start_continuous_dtmf_recognition | 1 | +| CallConnectionClient | play_media_to_all | 1 | +| CallConnectionClient | play_media | 1 | +| CallConnectionClient | mute_participant | 1 | +| CallConnectionClient | hold | 1 | +| CallConnectionClient | hang_up | 1 | +| CallAutomationClient | stop_recording | 1 | +| CallAutomationClient | resume_recording | 1 | +| CallAutomationClient | reject_call | 1 | +| CallAutomationClient | redirect_call | 1 | +| CallAutomationClient | pause_recording | 1 | +| CallAutomationClient | answer_call | 1 | +| BlobStorageClient | exists | 1 | +| BlobServiceClient | undelete_container | 1 | +| BlobLeaseClient | renew | 1 | +| BlobLeaseClient | release | 1 | +| BlobLeaseClient | change | 1 | +| BlobLeaseClient | break_lease | 1 | +| BlobLeaseClient | acquire | 1 | +| BlobClient | undelete_blob | 1 | +| BlobClient | start_copy_from_url | 1 | +| BlobClient | stage_block_from_url | 1 | +| BlobClient | stage_block | 1 | +| BlobClient | seal_append_blob | 1 | +| BlobClient | resize_blob | 1 | +| BlobClient | exists | 1 | +| BlobClient | commit_block_list | 1 | +| BlobClient | acquire_lease | 1 | +| BlobClient | abort_copy | 1 | +| AzureOpenAIClient | bounded_chat_completion | 1 | +| AzureAppConfigurationClient | recover_snapshot | 1 | +| AzureAppConfigurationClient | archive_snapshot | 1 | +| AugLoopClient | setup_session_after_init | 1 | +| AugLoopClient | reconnect_and_attempt_session_init | 1 | +| AttestationClient | attest_tpm | 1 | +| AttestationClient | attest_sgx_enclave | 1 | +| AttestationClient | attest_open_enclave | 1 | +| AttestationAdministrationClient | reset_policy | 1 | +| AnonymousACRExchangeClient | exchange_refresh_token_for_access_token | 1 | +| AIClient | build_index_on_cloud | 1 | +| ACRExchangeClient | exchange_refresh_token_for_access_token | 1 | +| ACRExchangeClient | exchange_aad_token_for_refresh_token | 1 | +| AadClient | obtain_token_on_behalf_of | 1 | +| AadClient | obtain_token_by_refresh_token | 1 | +| AadClient | obtain_token_by_jwt_assertion | 1 | +| AadClient | obtain_token_by_client_secret | 1 | +| AadClient | obtain_token_by_client_certificate | 1 | +| AadClient | obtain_token_by_authorization_code | 1 | From 233f5360d5ca4cce398b2e3bd48d0f1702b90df5 Mon Sep 17 00:00:00 2001 From: Joshua Bishop <13187637+MJoshuaB@users.noreply.github.com> Date: Tue, 3 Sep 2024 09:43:04 +1200 Subject: [PATCH 13/31] update reportcounts.md --- .../reportcounts.md | 550 ++++++++++-------- 1 file changed, 319 insertions(+), 231 deletions(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md b/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md index 762e36c49f5..83076854a6e 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md @@ -1,231 +1,319 @@ -| Namespace | Method | Count | -|---|---|---| -| ReceiveClient | settle_messages | 12 | -| WebPubSubClient | unsubscribe | 7 | -| ChatCompletionsClient | complete | 6 | -| ImageEmbeddingsClient | embed | 4 | -| FaceClient | detect_from_url | 4 | -| EmbeddingsClient | embed | 4 | -| TableClient | submit_transaction | 3 | -| CallAutomationClient | start_recording | 3 | -| WebSiteManagementClient | models | 2 | -| WebPubSubClient | is_connected | 2 | -| VnetClient | models | 2 | -| TextAnalyticsClient | detect_language | 2 | -| TemplateSpecsClient | models | 2 | -| SubscriptionClient | models | 2 | -| StorageManagementClient | models | 2 | -| SourceControlConfigurationClient | models | 2 | -| ServiceBusManagementClient | models | 2 | -| ResourcePrivateLinkClient | models | 2 | -| ResourceManagementClient | models | 2 | -| ResourceHealthMgmtClient | models | 2 | -| ReceiveClient | receive_messages_iter | 2 | -| ReceiveClient | receive_message_batch | 2 | -| QueueClient | receive_messages | 2 | -| PolicyClient | models | 2 | -| PhoneNumbersClient | search_operator_information | 2 | -| PersonalizerClient | rank | 2 | -| MonitorManagementClient | models | 2 | -| ManagementLockClient | models | 2 | -| ManagementLinkClient | models | 2 | -| ManagedServiceIdentityClient | models | 2 | -| ManagedIdentityClient | request_token | 2 | -| KeyVaultManagementClient | models | 2 | -| IotHubClient | models | 2 | -| FeatureClient | models | 2 | -| EventHubManagementClient | models | 2 | -| EdgeOrderManagementClient | models | 2 | -| DnsManagementClient | models | 2 | -| DeploymentStacksClient | models | 2 | -| DeploymentScriptsClient | models | 2 | -| DataBoxManagementClient | models | 2 | -| DataBoxEdgeManagementClient | models | 2 | -| ContainerServiceFleetMgmtClient | models | 2 | -| ContainerServiceClient | models | 2 | -| ContainerRegistryManagementClient | models | 2 | -| ContainerClient | walk_blobs | 2 | -| ContainerClient | find_blobs_by_tags | 2 | -| ComputeManagementClient | models | 2 | -| ChangesClient | models | 2 | -| BlobServiceClient | find_blobs_by_tags | 2 | -| AzureRedHatOpenShiftClient | models | 2 | -| AzureDigitalTwinsManagementClient | models | 2 | -| AuthorizationManagementClient | models | 2 | -| AppPlatformManagementClient | models | 2 | -| ApplicationInsightsManagementClient | models | 2 | -| ApplicationClient | models | 2 | -| AppConfigurationManagementClient | models | 2 | -| AMQPClient | open | 2 | -| AMQPClient | mgmt_request | 2 | -| AMQPClient | do_work | 2 | -| AMQPClient | client_ready | 2 | -| AMQPClient | auth_complete | 2 | -| WebPubSubClient | open | 1 | -| WebPubSubClient | leave_group | 1 | -| WebPubSubClient | join_group | 1 | -| VSCodeClient | invoke_dev_container | 1 | -| TextAnalyticsClient | sentiment | 1 | -| TextAnalyticsClient | recognize_pii_entities | 1 | -| TextAnalyticsClient | recognize_linked_entities | 1 | -| TextAnalyticsClient | recognize_entities | 1 | -| TextAnalyticsClient | key_phrases | 1 | -| TextAnalyticsClient | extract_key_phrases | 1 | -| TextAnalyticsClient | entities | 1 | -| StorageClient | exists | 1 | -| ShareServiceClient | undelete_share | 1 | -| ShareLeaseClient | renew | 1 | -| ShareLeaseClient | release | 1 | -| ShareLeaseClient | change | 1 | -| ShareLeaseClient | break_lease | 1 | -| ShareLeaseClient | acquire | 1 | -| ShareFileClient | start_copy_from_url | 1 | -| ShareFileClient | resize_file | 1 | -| ShareFileClient | rename_file | 1 | -| ShareFileClient | exists | 1 | -| ShareFileClient | acquire_lease | 1 | -| ShareFileClient | abort_copy | 1 | -| ShareDirectoryClient | rename_directory | 1 | -| ShareDirectoryClient | exists | 1 | -| ShareClient | acquire_lease | 1 | -| ServiceManagementClient | with_filter | 1 | -| ServiceManagementClient | wait_for_operation_status_success_default_callback | 1 | -| ServiceManagementClient | wait_for_operation_status_progress_default_callback | 1 | -| ServiceManagementClient | wait_for_operation_status_failure_default_callback | 1 | -| ServiceManagementClient | wait_for_operation_status | 1 | -| ServiceManagementClient | timeout | 1 | -| ServiceManagementClient | should_use_requests | 1 | -| ServiceManagementClient | perform_put | 1 | -| ServiceManagementClient | perform_post | 1 | -| ServiceManagementClient | perform_get | 1 | -| ServiceManagementClient | perform_delete | 1 | -| SecretClient | restore_secret_backup | 1 | -| SecretClient | purge_deleted_secret | 1 | -| SecretClient | backup_secret | 1 | -| SearchIndexerClient | run_indexer | 1 | -| SearchIndexerClient | reset_skills | 1 | -| SearchIndexerClient | reset_indexer | 1 | -| SearchIndexerClient | reset_documents | 1 | -| SearchClient | suggest | 1 | -| SearchClient | search | 1 | -| SearchClient | merge_or_upload_documents | 1 | -| SearchClient | merge_documents | 1 | -| SearchClient | index_documents | 1 | -| SearchClient | autocomplete | 1 | -| SchemaRegistryClient | register_schema | 1 | -| RemoteRenderingClient | stop_rendering_session | 1 | -| QueueClient | receive_message | 1 | -| QueueClient | peek_messages | 1 | -| PersonalizerClient | reward_multi_slot | 1 | -| PersonalizerClient | reward | 1 | -| PersonalizerClient | rank_multi_slot | 1 | -| PersonalizerClient | activate_multi_slot | 1 | -| PersonalizerClient | activate | 1 | -| PersonalizerAdministrationClient | reset_policy | 1 | -| PersonalizerAdministrationClient | reset_model | 1 | -| PersonalizerAdministrationClient | import_model | 1 | -| PersonalizerAdministrationClient | export_model | 1 | -| PersonalizerAdministrationClient | apply_from_evaluation | 1 | -| PathClient | acquire_lease | 1 | -| MsalClient | post | 1 | -| MetricsAdvisorAdministrationClient | refresh_data_feed_ingestion | 1 | -| KeyClient | rotate_key | 1 | -| KeyClient | restore_key_backup | 1 | -| KeyClient | release_key | 1 | -| KeyClient | purge_deleted_key | 1 | -| KeyClient | import_key | 1 | -| KeyClient | backup_key | 1 | -| HTTPClient | perform_request | 1 | -| FormRecognizerClient | train_custom_model | 1 | -| FileSystemClient | exists | 1 | -| FileSystemClient | acquire_lease | 1 | -| FileStorageClient | exists | 1 | -| FaceClient | detect | 1 | -| EventHubProducerClient | flush | 1 | -| EventHubConsumerClient | receive_batch | 1 | -| EventHubConsumerClient | receive | 1 | -| DockerClient | logs | 1 | -| DigitalTwinsClient | publish_telemetry | 1 | -| DigitalTwinsClient | publish_component_telemetry | 1 | -| DigitalTwinsClient | decommission_model | 1 | -| DataLakeServiceClient | undelete_file_system | 1 | -| DataLakeLeaseClient | renew | 1 | -| DataLakeLeaseClient | release | 1 | -| DataLakeLeaseClient | change | 1 | -| DataLakeLeaseClient | break_lease | 1 | -| DataLakeLeaseClient | acquire | 1 | -| DataLakeFileClient | rename_file | 1 | -| DataLakeFileClient | flush_data | 1 | -| DataLakeFileClient | exists | 1 | -| DataLakeDirectoryClient | rename_directory | 1 | -| DataLakeDirectoryClient | exists | 1 | -| CryptographyClient | wrap_key | 1 | -| CryptographyClient | verify | 1 | -| CryptographyClient | unwrap_key | 1 | -| CryptographyClient | sign | 1 | -| CryptographyClient | encrypt | 1 | -| CryptographyClient | decrypt | 1 | -| ContainerClient | exists | 1 | -| ContainerClient | acquire_lease | 1 | -| CommunicationIdentityClient | revoke_tokens | 1 | -| CertificateClient | restore_certificate_backup | 1 | -| CertificateClient | purge_deleted_certificate | 1 | -| CertificateClient | merge_certificate | 1 | -| CertificateClient | import_certificate | 1 | -| CertificateClient | backup_certificate | 1 | -| CallConnectionClient | unhold | 1 | -| CallConnectionClient | transfer_call_to_participant | 1 | -| CallConnectionClient | stop_transcription | 1 | -| CallConnectionClient | stop_hold_music | 1 | -| CallConnectionClient | stop_continuous_dtmf_recognition | 1 | -| CallConnectionClient | start_transcription | 1 | -| CallConnectionClient | start_recognizing_media | 1 | -| CallConnectionClient | start_hold_music | 1 | -| CallConnectionClient | start_continuous_dtmf_recognition | 1 | -| CallConnectionClient | play_media_to_all | 1 | -| CallConnectionClient | play_media | 1 | -| CallConnectionClient | mute_participant | 1 | -| CallConnectionClient | hold | 1 | -| CallConnectionClient | hang_up | 1 | -| CallAutomationClient | stop_recording | 1 | -| CallAutomationClient | resume_recording | 1 | -| CallAutomationClient | reject_call | 1 | -| CallAutomationClient | redirect_call | 1 | -| CallAutomationClient | pause_recording | 1 | -| CallAutomationClient | answer_call | 1 | -| BlobStorageClient | exists | 1 | -| BlobServiceClient | undelete_container | 1 | -| BlobLeaseClient | renew | 1 | -| BlobLeaseClient | release | 1 | -| BlobLeaseClient | change | 1 | -| BlobLeaseClient | break_lease | 1 | -| BlobLeaseClient | acquire | 1 | -| BlobClient | undelete_blob | 1 | -| BlobClient | start_copy_from_url | 1 | -| BlobClient | stage_block_from_url | 1 | -| BlobClient | stage_block | 1 | -| BlobClient | seal_append_blob | 1 | -| BlobClient | resize_blob | 1 | -| BlobClient | exists | 1 | -| BlobClient | commit_block_list | 1 | -| BlobClient | acquire_lease | 1 | -| BlobClient | abort_copy | 1 | -| AzureOpenAIClient | bounded_chat_completion | 1 | -| AzureAppConfigurationClient | recover_snapshot | 1 | -| AzureAppConfigurationClient | archive_snapshot | 1 | -| AugLoopClient | setup_session_after_init | 1 | -| AugLoopClient | reconnect_and_attempt_session_init | 1 | -| AttestationClient | attest_tpm | 1 | -| AttestationClient | attest_sgx_enclave | 1 | -| AttestationClient | attest_open_enclave | 1 | -| AttestationAdministrationClient | reset_policy | 1 | -| AnonymousACRExchangeClient | exchange_refresh_token_for_access_token | 1 | -| AIClient | build_index_on_cloud | 1 | -| ACRExchangeClient | exchange_refresh_token_for_access_token | 1 | -| ACRExchangeClient | exchange_aad_token_for_refresh_token | 1 | -| AadClient | obtain_token_on_behalf_of | 1 | -| AadClient | obtain_token_by_refresh_token | 1 | -| AadClient | obtain_token_by_jwt_assertion | 1 | -| AadClient | obtain_token_by_client_secret | 1 | -| AadClient | obtain_token_by_client_certificate | 1 | -| AadClient | obtain_token_by_authorization_code | 1 | +| Namespace | Method | +|---|---| +| azure.ai.generative.evaluate._client.AzureOpenAIClient | bounded_chat_completion | +| azure.ai.generative.synthetic.simulator._conversation.AugLoopClient | reconnect_and_attempt_session_init | +| azure.ai.generative.synthetic.simulator._conversation.AugLoopClient | setup_session_after_init | +| azure.ai.inference.ChatCompletionsClient | complete | +| azure.ai.inference.ChatCompletionsClient | complete | +| azure.ai.inference.ChatCompletionsClient | complete | +| azure.ai.inference.ChatCompletionsClient | complete | +| azure.ai.inference.ChatCompletionsClient | complete | +| azure.ai.inference.ChatCompletionsClient | complete | +| azure.ai.inference.EmbeddingsClient | embed | +| azure.ai.inference.EmbeddingsClient | embed | +| azure.ai.inference.EmbeddingsClient | embed | +| azure.ai.inference.EmbeddingsClient | embed | +| azure.ai.inference.ImageEmbeddingsClient | embed | +| azure.ai.inference.ImageEmbeddingsClient | embed | +| azure.ai.inference.ImageEmbeddingsClient | embed | +| azure.ai.inference.ImageEmbeddingsClient | embed | +| azure.ai.resources.client.AIClient | build_index_on_cloud | +| azure.appconfiguration.AzureAppConfigurationClient | archive_snapshot | +| azure.appconfiguration.AzureAppConfigurationClient | recover_snapshot | +| azure.mgmt.appconfiguration.AppConfigurationManagementClient | models | +| azure.mgmt.appconfiguration.aio.AppConfigurationManagementClient | models | +| azure.mgmt.applicationinsights.ApplicationInsightsManagementClient | models | +| azure.mgmt.applicationinsights.aio.ApplicationInsightsManagementClient | models | +| azure.mgmt.appplatform.AppPlatformManagementClient | models | +| azure.mgmt.appplatform.aio.AppPlatformManagementClient | models | +| azure.mgmt.web.WebSiteManagementClient | models | +| azure.mgmt.web.aio.WebSiteManagementClient | models | +| azure.security.attestation.AttestationAdministrationClient | reset_policy | +| azure.security.attestation.AttestationClient | attest_sgx_enclave | +| azure.security.attestation.AttestationClient | attest_open_enclave | +| azure.security.attestation.AttestationClient | attest_tpm | +| azure.mgmt.authorization.AuthorizationManagementClient | models | +| azure.mgmt.authorization.aio.AuthorizationManagementClient | models | +| azure.cognitiveservices.formrecognizer.FormRecognizerClient | train_custom_model | +| azure.cognitiveservices.language.textanalytics.TextAnalyticsClient | detect_language | +| azure.cognitiveservices.language.textanalytics.TextAnalyticsClient | entities | +| azure.cognitiveservices.language.textanalytics.TextAnalyticsClient | key_phrases | +| azure.cognitiveservices.language.textanalytics.TextAnalyticsClient | sentiment | +| azure.cognitiveservices.personalizer.PersonalizerClient | rank | +| azure.communication.callautomation.CallAutomationClient | answer_call | +| azure.communication.callautomation.CallAutomationClient | redirect_call | +| azure.communication.callautomation.CallAutomationClient | reject_call | +| azure.communication.callautomation.CallAutomationClient | start_recording | +| azure.communication.callautomation.CallAutomationClient | start_recording | +| azure.communication.callautomation.CallAutomationClient | start_recording | +| azure.communication.callautomation.CallAutomationClient | stop_recording | +| azure.communication.callautomation.CallAutomationClient | pause_recording | +| azure.communication.callautomation.CallAutomationClient | resume_recording | +| azure.communication.callautomation.CallConnectionClient | hang_up | +| azure.communication.callautomation.CallConnectionClient | transfer_call_to_participant | +| azure.communication.callautomation.CallConnectionClient | play_media | +| azure.communication.callautomation.CallConnectionClient | play_media_to_all | +| azure.communication.callautomation.CallConnectionClient | start_recognizing_media | +| azure.communication.callautomation.CallConnectionClient | start_continuous_dtmf_recognition | +| azure.communication.callautomation.CallConnectionClient | stop_continuous_dtmf_recognition | +| azure.communication.callautomation.CallConnectionClient | mute_participant | +| azure.communication.callautomation.CallConnectionClient | start_hold_music | +| azure.communication.callautomation.CallConnectionClient | stop_hold_music | +| azure.communication.callautomation.CallConnectionClient | start_transcription | +| azure.communication.callautomation.CallConnectionClient | stop_transcription | +| azure.communication.callautomation.CallConnectionClient | hold | +| azure.communication.callautomation.CallConnectionClient | unhold | +| azure.communication.identity.CommunicationIdentityClient | revoke_tokens | +| azure.communication.phonenumbers.PhoneNumbersClient | search_operator_information | +| azure.communication.phonenumbers.aio.PhoneNumbersClient | search_operator_information | +| azure.mgmt.compute.ComputeManagementClient | models | +| azure.mgmt.compute.aio.ComputeManagementClient | models | +| azure.containerregistry.ACRExchangeClient | exchange_aad_token_for_refresh_token | +| azure.containerregistry.ACRExchangeClient | exchange_refresh_token_for_access_token | +| azure.containerregistry.AnonymousACRExchangeClient | exchange_refresh_token_for_access_token | +| azure.mgmt.containerregistry.ContainerRegistryManagementClient | models | +| azure.mgmt.containerregistry.aio.ContainerRegistryManagementClient | models | +| azure.mgmt.containerservice.ContainerServiceClient | models | +| azure.mgmt.containerservice.aio.ContainerServiceClient | models | +| azure.mgmt.containerservicefleet.ContainerServiceFleetMgmtClient | models | +| azure.mgmt.containerservicefleet.aio.ContainerServiceFleetMgmtClient | models | +| azure.servicemanagement._http._HTTPClient | perform_request | +| azure.servicemanagement._ServiceManagementClient | should_use_requests | +| azure.servicemanagement._ServiceManagementClient | with_filter | +| azure.servicemanagement._ServiceManagementClient | timeout | +| azure.servicemanagement._ServiceManagementClient | perform_get | +| azure.servicemanagement._ServiceManagementClient | perform_put | +| azure.servicemanagement._ServiceManagementClient | perform_post | +| azure.servicemanagement._ServiceManagementClient | perform_delete | +| azure.servicemanagement._ServiceManagementClient | wait_for_operation_status_progress_default_callback | +| azure.servicemanagement._ServiceManagementClient | wait_for_operation_status_success_default_callback | +| azure.servicemanagement._ServiceManagementClient | wait_for_operation_status_failure_default_callback | +| azure.servicemanagement._ServiceManagementClient | wait_for_operation_status | +| azure.mgmt.databox.DataBoxManagementClient | models | +| azure.mgmt.databox.aio.DataBoxManagementClient | models | +| azure.mgmt.databoxedge.DataBoxEdgeManagementClient | models | +| azure.mgmt.databoxedge.aio.DataBoxEdgeManagementClient | models | +| azure.digitaltwins.core.DigitalTwinsClient | publish_telemetry | +| azure.digitaltwins.core.DigitalTwinsClient | publish_component_telemetry | +| azure.digitaltwins.core.DigitalTwinsClient | decommission_model | +| azure.mgmt.digitaltwins.AzureDigitalTwinsManagementClient | models | +| azure.mgmt.digitaltwins.aio.AzureDigitalTwinsManagementClient | models | +| azure.mgmt.edgeorder.EdgeOrderManagementClient | models | +| azure.mgmt.edgeorder.aio.EdgeOrderManagementClient | models | +| azure.eventhub.EventHubConsumerClient | receive | +| azure.eventhub.EventHubConsumerClient | receive_batch | +| azure.eventhub.EventHubProducerClient | flush | +| azure.eventhub._pyamqp.AMQPClient | open | +| azure.eventhub._pyamqp.AMQPClient | auth_complete | +| azure.eventhub._pyamqp.AMQPClient | client_ready | +| azure.eventhub._pyamqp.AMQPClient | do_work | +| azure.eventhub._pyamqp.AMQPClient | mgmt_request | +| azure.eventhub._pyamqp.ReceiveClient | receive_message_batch | +| azure.eventhub._pyamqp.ReceiveClient | receive_messages_iter | +| azure.eventhub._pyamqp.ReceiveClient | settle_messages | +| azure.eventhub._pyamqp.ReceiveClient | settle_messages | +| azure.eventhub._pyamqp.ReceiveClient | settle_messages | +| azure.eventhub._pyamqp.ReceiveClient | settle_messages | +| azure.eventhub._pyamqp.ReceiveClient | settle_messages | +| azure.eventhub._pyamqp.ReceiveClient | settle_messages | +| azure.mgmt.eventhub.EventHubManagementClient | models | +| azure.mgmt.eventhub.aio.EventHubManagementClient | models | +| azure.ai.vision.face.FaceClient | detect_from_url | +| azure.ai.vision.face.FaceClient | detect_from_url | +| azure.ai.vision.face.FaceClient | detect_from_url | +| azure.ai.vision.face.FaceClient | detect_from_url | +| azure.ai.vision.face.FaceClient | detect | +| azure.identity._internal.AadClient | obtain_token_by_authorization_code | +| azure.identity._internal.AadClient | obtain_token_by_client_certificate | +| azure.identity._internal.AadClient | obtain_token_by_client_secret | +| azure.identity._internal.AadClient | obtain_token_by_jwt_assertion | +| azure.identity._internal.AadClient | obtain_token_by_refresh_token | +| azure.identity._internal.AadClient | obtain_token_on_behalf_of | +| azure.identity._internal.ManagedIdentityClient | request_token | +| azure.identity._internal.MsalClient | post | +| azure.mgmt.iothub.IotHubClient | models | +| azure.mgmt.iothub.aio.IotHubClient | models | +| azure.keyvault.certificates.CertificateClient | purge_deleted_certificate | +| azure.keyvault.certificates.CertificateClient | import_certificate | +| azure.keyvault.certificates.CertificateClient | backup_certificate | +| azure.keyvault.certificates.CertificateClient | restore_certificate_backup | +| azure.keyvault.certificates.CertificateClient | merge_certificate | +| azure.keyvault.keys.KeyClient | purge_deleted_key | +| azure.keyvault.keys.KeyClient | backup_key | +| azure.keyvault.keys.KeyClient | restore_key_backup | +| azure.keyvault.keys.KeyClient | import_key | +| azure.keyvault.keys.KeyClient | release_key | +| azure.keyvault.keys.KeyClient | rotate_key | +| azure.keyvault.keys.crypto.CryptographyClient | encrypt | +| azure.keyvault.keys.crypto.CryptographyClient | decrypt | +| azure.keyvault.keys.crypto.CryptographyClient | wrap_key | +| azure.keyvault.keys.crypto.CryptographyClient | unwrap_key | +| azure.keyvault.keys.crypto.CryptographyClient | sign | +| azure.keyvault.keys.crypto.CryptographyClient | verify | +| azure.keyvault.secrets.SecretClient | backup_secret | +| azure.keyvault.secrets.SecretClient | restore_secret_backup | +| azure.keyvault.secrets.SecretClient | purge_deleted_secret | +| azure.mgmt.keyvault.KeyVaultManagementClient | models | +| azure.mgmt.keyvault.aio.KeyVaultManagementClient | models | +| azure.mgmt.kubernetesconfiguration.SourceControlConfigurationClient | models | +| azure.mgmt.kubernetesconfiguration.aio.SourceControlConfigurationClient | models | +| azure.ai.metricsadvisor.MetricsAdvisorAdministrationClient | refresh_data_feed_ingestion | +| azure.ai.ml.identity._internal.ManagedIdentityClient | request_token | +| azure.ai.ml._artifacts.BlobStorageClient | exists | +| azure.ai.ml._artifacts._gen2_storage_helper.py.Gen2StorageClient | exists | +| azure.ai.ml._artifacts.FileStorageClient | exists | +| azure.ai.ml._local_endpoints.DockerClient | logs | +| azure.ai.ml._local_endpoints.vscode_debug.VSCodeClient | invoke_dev_container | +| azure.mgmt.monitor.MonitorManagementClient | models | +| azure.mgmt.monitor.aio.MonitorManagementClient | models | +| azure.mgmt.dns.DnsManagementClient | models | +| azure.mgmt.dns.aio.DnsManagementClient | models | +| azure.ai.personalizer.PersonalizerAdministrationClient | export_model | +| azure.ai.personalizer.PersonalizerAdministrationClient | import_model | +| azure.ai.personalizer.PersonalizerAdministrationClient | reset_model | +| azure.ai.personalizer.PersonalizerAdministrationClient | reset_policy | +| azure.ai.personalizer.PersonalizerAdministrationClient | apply_from_evaluation | +| azure.ai.personalizer.PersonalizerClient | rank | +| azure.ai.personalizer.PersonalizerClient | reward | +| azure.ai.personalizer.PersonalizerClient | activate | +| azure.ai.personalizer.PersonalizerClient | rank_multi_slot | +| azure.ai.personalizer.PersonalizerClient | reward_multi_slot | +| azure.ai.personalizer.PersonalizerClient | activate_multi_slot | +| azure.mgmt.redhatopenshift.AzureRedHatOpenShiftClient | models | +| azure.mgmt.redhatopenshift.aio.AzureRedHatOpenShiftClient | models | +| azure.mixedreality.remoterendering.RemoteRenderingClient | stop_rendering_session | +| azure.mgmt.resourcehealth.ResourceHealthMgmtClient | models | +| azure.mgmt.resourcehealth.aio.ResourceHealthMgmtClient | models | +| azure.mgmt.msi.aio.ManagedServiceIdentityClient | models | +| azure.mgmt.msi.ManagedServiceIdentityClient | models | +| azure.mgmt.resource.changes.ChangesClient | models | +| azure.mgmt.resource.changes.aio.ChangesClient | models | +| azure.mgmt.resource.deploymentscripts.DeploymentScriptsClient | models | +| azure.mgmt.resource.deploymentscripts.aio.DeploymentScriptsClient | models | +| azure.mgmt.resource.deploymentstacks.DeploymentStacksClient | models | +| azure.mgmt.resource.deploymentstacks.aio.DeploymentStacksClient | models | +| azure.mgmt.resource.features.FeatureClient | models | +| azure.mgmt.resource.features.aio.FeatureClient | models | +| azure.mgmt.resource.links.ManagementLinkClient | models | +| azure.mgmt.resource.links.aio.ManagementLinkClient | models | +| azure.mgmt.resource.locks.ManagementLockClient | models | +| azure.mgmt.resource.locks.aio.ManagementLockClient | models | +| azure.mgmt.resource.managedapplications.ApplicationClient | models | +| azure.mgmt.resource.managedapplications.aio.ApplicationClient | models | +| azure.mgmt.resource.policy.PolicyClient | models | +| azure.mgmt.resource.policy.aio.PolicyClient | models | +| azure.mgmt.resource.privatelinks.ResourcePrivateLinkClient | models | +| azure.mgmt.resource.privatelinks.aio.ResourcePrivateLinkClient | models | +| azure.mgmt.resource.resources.ResourceManagementClient | models | +| azure.mgmt.resource.resources.aio.ResourceManagementClient | models | +| azure.mgmt.resource.subscriptions.SubscriptionClient | models | +| azure.mgmt.resource.subscriptions.aio.SubscriptionClient | models | +| azure.mgmt.resource.templatespecs.TemplateSpecsClient | models | +| azure.mgmt.resource.templatespecs.aio.TemplateSpecsClient | models | +| azure.schemaregistry.SchemaRegistryClient | register_schema | +| azure.search.documents.SearchClient | search | +| azure.search.documents.SearchClient | suggest | +| azure.search.documents.SearchClient | autocomplete | +| azure.search.documents.SearchClient | merge_documents | +| azure.search.documents.SearchClient | merge_or_upload_documents | +| azure.search.documents.SearchClient | index_documents | +| azure.search.documents.indexes.SearchIndexerClient | run_indexer | +| azure.search.documents.indexes.SearchIndexerClient | reset_indexer | +| azure.search.documents.indexes.SearchIndexerClient | reset_documents | +| azure.search.documents.indexes.SearchIndexerClient | reset_skills | +| azure.mgmt.servicebus.ServiceBusManagementClient | models | +| azure.mgmt.servicebus.aio.ServiceBusManagementClient | models | +| azure.servicebus._pyamqp.AMQPClient | open | +| azure.servicebus._pyamqp.AMQPClient | auth_complete | +| azure.servicebus._pyamqp.AMQPClient | client_ready | +| azure.servicebus._pyamqp.AMQPClient | do_work | +| azure.servicebus._pyamqp.AMQPClient | mgmt_request | +| azure.servicebus._pyamqp.ReceiveClient | receive_message_batch | +| azure.servicebus._pyamqp.ReceiveClient | receive_messages_iter | +| azure.servicebus._pyamqp.ReceiveClient | settle_messages | +| azure.servicebus._pyamqp.ReceiveClient | settle_messages | +| azure.servicebus._pyamqp.ReceiveClient | settle_messages | +| azure.servicebus._pyamqp.ReceiveClient | settle_messages | +| azure.servicebus._pyamqp.ReceiveClient | settle_messages | +| azure.servicebus._pyamqp.ReceiveClient | settle_messages | +| azure.mgmt.storage.StorageManagementClient | models | +| azure.mgmt.storage.aio.StorageManagementClient | models | +| azure.storage.blob.BlobServiceClient | find_blobs_by_tags | +| azure.storage.blob.BlobServiceClient | undelete_container | +| azure.storage.blob.ContainerClient | acquire_lease | +| azure.storage.blob.ContainerClient | exists | +| azure.storage.blob.ContainerClient | walk_blobs | +| azure.storage.blob.ContainerClient | find_blobs_by_tags | +| azure.storage.blob.BlobLeaseClient | acquire | +| azure.storage.blob.BlobLeaseClient | renew | +| azure.storage.blob.BlobLeaseClient | release | +| azure.storage.blob.BlobLeaseClient | change | +| azure.storage.blob.BlobLeaseClient | break_lease | +| azure.storage.blob.BlobClient | undelete_blob | +| azure.storage.blob.BlobClient | exists | +| azure.storage.blob.BlobClient | start_copy_from_url | +| azure.storage.blob.BlobClient | abort_copy | +| azure.storage.blob.BlobClient | acquire_lease | +| azure.storage.blob.BlobClient | stage_block | +| azure.storage.blob.BlobClient | stage_block_from_url | +| azure.storage.blob.BlobClient | commit_block_list | +| azure.storage.blob.BlobClient | resize_blob | +| azure.storage.blob.BlobClient | seal_append_blob | +| azure.storage.blob.aio.BlobServiceClient | find_blobs_by_tags | +| azure.storage.blob.aio.ContainerClient | walk_blobs | +| azure.storage.blob.aio.ContainerClient | find_blobs_by_tags | +| azure.storage.filedatalake.DataLakeLeaseClient | acquire | +| azure.storage.filedatalake.DataLakeLeaseClient | renew | +| azure.storage.filedatalake.DataLakeLeaseClient | release | +| azure.storage.filedatalake.DataLakeLeaseClient | change | +| azure.storage.filedatalake.DataLakeLeaseClient | break_lease | +| azure.storage.filedatalake.DataLakeFileClient | flush_data | +| azure.storage.filedatalake.DataLakeFileClient | exists | +| azure.storage.filedatalake.DataLakeFileClient | rename_file | +| azure.storage.filedatalake.DataLakeServiceClient | undelete_file_system | +| azure.storage.filedatalake.DataLakeDirectoryClient | exists | +| azure.storage.filedatalake.DataLakeDirectoryClient | rename_directory | +| azure.storage.filedatalake.PathClient | acquire_lease | +| azure.storage.filedatalake.FileSystemClient | acquire_lease | +| azure.storage.filedatalake.FileSystemClient | exists | +| azure.storage.fileshare.ShareLeaseClient | acquire | +| azure.storage.fileshare.ShareLeaseClient | renew | +| azure.storage.fileshare.ShareLeaseClient | release | +| azure.storage.fileshare.ShareLeaseClient | change | +| azure.storage.fileshare.ShareLeaseClient | break_lease | +| azure.storage.fileshare.ShareDirectoryClient | rename_directory | +| azure.storage.fileshare.ShareDirectoryClient | exists | +| azure.storage.fileshare.ShareFileClient | acquire_lease | +| azure.storage.fileshare.ShareFileClient | exists | +| azure.storage.fileshare.ShareFileClient | start_copy_from_url | +| azure.storage.fileshare.ShareFileClient | abort_copy | +| azure.storage.fileshare.ShareFileClient | rename_file | +| azure.storage.fileshare.ShareFileClient | resize_file | +| azure.storage.fileshare.ShareServiceClient | undelete_share | +| azure.storage.fileshare.ShareClient | acquire_lease | +| azure.storage.queue.QueueClient | receive_message | +| azure.storage.queue.QueueClient | receive_messages | +| azure.storage.queue.QueueClient | peek_messages | +| azure.storage.queue.aio.QueueClient | receive_messages | +| azure.synapse.managedprivateendpoints.VnetClient | models | +| azure.synapse.managedprivateendpoints.aio.VnetClient | models | +| azure.data.tables.TableClient | submit_transaction | +| azure.data.tables.TableClient | submit_transaction | +| azure.data.tables.TableClient | submit_transaction | +| azure.ai.textanalytics.TextAnalyticsClient | detect_language | +| azure.ai.textanalytics.TextAnalyticsClient | recognize_entities | +| azure.ai.textanalytics.TextAnalyticsClient | recognize_pii_entities | +| azure.ai.textanalytics.TextAnalyticsClient | recognize_linked_entities | +| azure.ai.textanalytics.TextAnalyticsClient | extract_key_phrases | +| azure.messaging.webpubsubclient.WebPubSubClient | join_group | +| azure.messaging.webpubsubclient.WebPubSubClient | leave_group | +| azure.messaging.webpubsubclient.WebPubSubClient | is_connected | +| azure.messaging.webpubsubclient.WebPubSubClient | open | +| azure.messaging.webpubsubclient.WebPubSubClient | unsubscribe | +| azure.messaging.webpubsubclient.WebPubSubClient | unsubscribe | +| azure.messaging.webpubsubclient.WebPubSubClient | unsubscribe | +| azure.messaging.webpubsubclient.WebPubSubClient | unsubscribe | +| azure.messaging.webpubsubclient.WebPubSubClient | unsubscribe | +| azure.messaging.webpubsubclient.WebPubSubClient | unsubscribe | +| azure.messaging.webpubsubclient.WebPubSubClient | unsubscribe | +| azure.messaging.webpubsubclient.aio.WebPubSubClient | is_connected | From 27edb8037510092641761a67bb9337b3948c0c19 Mon Sep 17 00:00:00 2001 From: Alirose Burrell <16234397@massey.ac.nz> Date: Tue, 3 Sep 2024 13:52:54 +1200 Subject: [PATCH 14/31] minimal tests added --- .../pylint_guidelines_checker.py | 71 ++++++++++--------- .../invalid_use_of_overload_acceptable.py | 31 ++++++++ .../invalid_use_of_overload_violation.py | 17 +++++ .../tests/test_pylint_custom_plugins.py | 43 ++++++++++- 4 files changed, 129 insertions(+), 33 deletions(-) create mode 100644 tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_acceptable.py create mode 100644 tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation.py diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index 33aabf845e9..62f9de76d4b 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -2751,7 +2751,6 @@ def visit_import(self, node): pass -# [Pylint] custom linter check for invalid use of @overload #3229 class InvalidUseOfOverload(BaseChecker): """Rule to check that use of the @overload decorator matches the async/sync nature of the underlying function""" @@ -2766,48 +2765,56 @@ class InvalidUseOfOverload(BaseChecker): } def visit_call(self, node): - klass = node.parent.parent.parent - functions = [] + """Check that use of the @overload decorator matches the async/sync nature of the underlying function""" + try: + klass = node.parent.parent.parent + except: #For testing purposes + klass = node # Obtain a list of all functions and function names - for item in klass.body: - if hasattr(item, 'name'): - functions.append(item) - - # Count up overloaded functions - overloadedfunctions = {} - for item in functions: - if item.name in overloadedfunctions: - overloadedfunctions[item.name].append(item) - else: - overloadedfunctions[item.name] = [item] - - # Loop through the overloaded functions and check they are the same type - for funct in overloadedfunctions.values(): - functionIsAsync = None - - for item in funct: - if functionIsAsync is None: - functionIsAsync = self.is_function_async(item) + functions = [] + if klass is not None: + for item in klass.body: + if hasattr(item, 'name'): + functions.append(item) + + # Dictionary of lists of all functions by name + overloadedfunctions = {} + for item in functions: + if item.name in overloadedfunctions: + overloadedfunctions[item.name].append(item) else: - if functionIsAsync != self.is_function_async(item): - self.add_message( - msgid=f"invalid-use-of-overload", - node=node, - confidence=None, - ) + overloadedfunctions[item.name] = [item] + + # Loop through the overloaded functions and check they are the same type + for funct in overloadedfunctions.values(): + if len(funct) > 1: # only need to check if there is more than 1 function with the same name + function_is_async = None + + for item in funct: + if function_is_async is None: + function_is_async = self.is_function_async(item) + else: + if function_is_async != self.is_function_async(item): + self.add_message( + msgid=f"invalid-use-of-overload", + node=node, + confidence=None, + ) def is_function_async(self, node): + """Check if a function is async""" if node.__class__ == astroid.nodes.AsyncFunctionDef: return True - elif node.__class__ == astroid.nodes.FunctionDef: + if node.__class__ == astroid.nodes.FunctionDef: if node.returns is None: return False - else: + try: if node.returns.value.name == "Awaitable": return True - else: - return False + except: + return False + diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_acceptable.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_acceptable.py new file mode 100644 index 00000000000..cf7c8aedb08 --- /dev/null +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_acceptable.py @@ -0,0 +1,31 @@ +# Test file for InvalidUseOfOverload checker + +from typing import Awaitable, overload, Union + + +@overload +def double(a: str) -> Awaitable[int]: + ... + +@overload +def double(a: int) -> Awaitable[int]: + ... + +async def double(a: Union[str, int]) -> int: + if isinstance(a, str): + return len(a)*2 + return a * 2 + + +@overload +def single(a: str): + ... + +@overload +def single(a: int): + ... + +def single(a: Union[str, int]) -> int: + if isinstance(a, str): + return len(a) + return a \ No newline at end of file diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation.py new file mode 100644 index 00000000000..7e62c19aa64 --- /dev/null +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation.py @@ -0,0 +1,17 @@ +# Test file for InvalidUseOfOverload checker + +from typing import Awaitable, overload, Union + + +@overload +def double(a: str) -> Awaitable[int]: + ... + +@overload +def double(a: int): + ... + +async def double(a: Union[str, int]) -> int: + if isinstance(a, str): + return len(a)*2 + return a * 2 \ No newline at end of file diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py index c1816783d2d..3fe190137ee 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py @@ -4831,7 +4831,48 @@ def test_allowed_import_else(self): self.checker.visit_import(imc) self.checker.visit_importfrom(imd) -# [Pylint] custom linter check for invalid use of @overload #3229 + +class TestInvalidUseOfOverload(pylint.testutils.CheckerTestCase): + """Test that use of the @overload decorator matches the async/sync nature of the underlying function""" + + CHECKER_CLASS = checker.InvalidUseOfOverload + + + def test_valid_use_overload(self): + file = open( + os.path.join( + TEST_FOLDER, "test_files", "invalid_use_of_overload_acceptable.py" + ) + ) + node = astroid.parse(file.read()) + file.close() + with self.assertNoMessages(): + self.checker.visit_call(node) + + + def test_invalid_use_overload(self): + file = open( + os.path.join( + TEST_FOLDER, "test_files", "invalid_use_of_overload_violation.py" + ) + ) + node = astroid.parse(file.read()) + file.close() + with self.assertAddsMessages( + pylint.testutils.MessageTest( + msg_id="invalid-use-of-overload", + line=0, + node=node, + col_offset=0, + ) + ): + self.checker.visit_call(node) + + + + + + # [Pylint] Custom Linter check for Exception Logging #3227 # [Pylint] Address Commented out Pylint Custom Plugin Checkers #3228 # [Pylint] Add a check for connection_verify hardcoded settings #35355 \ No newline at end of file From 6e53b162fecd06f65d07804903dba11b17b7ce15 Mon Sep 17 00:00:00 2001 From: Alirose Burrell <16234397@massey.ac.nz> Date: Wed, 18 Sep 2024 11:41:18 +1200 Subject: [PATCH 15/31] Final Refactor --- .../pylint_guidelines_checker.py | 8 ++-- ...=> invalid_use_of_overload_violation_1.py} | 4 +- .../invalid_use_of_overload_violation_2.py | 16 ++++++++ .../tests/test_pylint_custom_plugins.py | 37 +++++++++---------- 4 files changed, 41 insertions(+), 24 deletions(-) rename tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/{invalid_use_of_overload_violation.py => invalid_use_of_overload_violation_1.py} (71%) create mode 100644 tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation_2.py diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index 62f9de76d4b..0f8384b6131 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -2773,7 +2773,8 @@ def visit_call(self, node): # Obtain a list of all functions and function names functions = [] - if klass is not None: + try: + klass.body for item in klass.body: if hasattr(item, 'name'): functions.append(item) @@ -2801,6 +2802,9 @@ def visit_call(self, node): node=node, confidence=None, ) + except: + pass + def is_function_async(self, node): """Check if a function is async""" @@ -2816,8 +2820,6 @@ def is_function_async(self, node): return False - - # [Pylint] Custom Linter check for Exception Logging #3227 # [Pylint] Address Commented out Pylint Custom Plugin Checkers #3228 # [Pylint] Add a check for connection_verify hardcoded settings #35355 diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation_1.py similarity index 71% rename from tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation.py rename to tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation_1.py index 7e62c19aa64..7af24aabb58 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation_1.py @@ -1,4 +1,4 @@ -# Test file for InvalidUseOfOverload checker +# Test file for InvalidUseOfOverload checker - testing what mypy doesn't pick up from typing import Awaitable, overload, Union @@ -14,4 +14,4 @@ def double(a: int): async def double(a: Union[str, int]) -> int: if isinstance(a, str): return len(a)*2 - return a * 2 \ No newline at end of file + return a * 2 diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation_2.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation_2.py new file mode 100644 index 00000000000..e35195f5366 --- /dev/null +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation_2.py @@ -0,0 +1,16 @@ +# Test file for InvalidUseOfOverload checker - testing what mypy doesn't pick up + +from typing import Awaitable, overload, Union + +@overload +def double(a: str): + ... + +@overload +def double(a: int): + ... + +async def double(a: Union[str, int]) -> int: + if isinstance(a, str): + return len(a)*2 + return a * 2 \ No newline at end of file diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py index 3fe190137ee..2ece848f576 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py @@ -4851,26 +4851,25 @@ def test_valid_use_overload(self): def test_invalid_use_overload(self): - file = open( - os.path.join( - TEST_FOLDER, "test_files", "invalid_use_of_overload_violation.py" - ) - ) - node = astroid.parse(file.read()) - file.close() - with self.assertAddsMessages( - pylint.testutils.MessageTest( - msg_id="invalid-use-of-overload", - line=0, - node=node, - col_offset=0, - ) - ): - self.checker.visit_call(node) - - - + violation_viles = ["_1", "_2"] + for violation in violation_viles: + file = open( + os.path.join( + TEST_FOLDER, "test_files", "invalid_use_of_overload_violation"+violation+".py" + ) + ) + node = astroid.parse(file.read()) + file.close() + with self.assertAddsMessages( + pylint.testutils.MessageTest( + msg_id="invalid-use-of-overload", + line=0, + node=node, + col_offset=0, + ), + ): + self.checker.visit_call(node) # [Pylint] Custom Linter check for Exception Logging #3227 From 80657b4f56478c29367af5d710038ae6a934b637 Mon Sep 17 00:00:00 2001 From: Alirose Burrell <16234397@massey.ac.nz> Date: Thu, 19 Sep 2024 12:04:20 +1200 Subject: [PATCH 16/31] not running multiple times picking up on different function types --- .../pylint_guidelines_checker.py | 15 ++++-- ...y => invalid_use_of_overload_violation.py} | 14 ++++++ .../invalid_use_of_overload_violation_2.py | 16 ------- .../tests/test_pylint_custom_plugins.py | 47 +++++++++++-------- 4 files changed, 51 insertions(+), 41 deletions(-) rename tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/{invalid_use_of_overload_violation_1.py => invalid_use_of_overload_violation.py} (62%) delete mode 100644 tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation_2.py diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index 0f8384b6131..4070003a69d 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -2764,7 +2764,7 @@ class InvalidUseOfOverload(BaseChecker): ), } - def visit_call(self, node): + def visit_module(self, node): """Check that use of the @overload decorator matches the async/sync nature of the underlying function""" try: klass = node.parent.parent.parent @@ -2787,6 +2787,7 @@ def visit_call(self, node): else: overloadedfunctions[item.name] = [item] + # Loop through the overloaded functions and check they are the same type for funct in overloadedfunctions.values(): if len(funct) > 1: # only need to check if there is more than 1 function with the same name @@ -2795,11 +2796,12 @@ def visit_call(self, node): for item in funct: if function_is_async is None: function_is_async = self.is_function_async(item) + else: if function_is_async != self.is_function_async(item): self.add_message( msgid=f"invalid-use-of-overload", - node=node, + node=item, confidence=None, ) except: @@ -2807,19 +2809,22 @@ def visit_call(self, node): def is_function_async(self, node): - """Check if a function is async""" - if node.__class__ == astroid.nodes.AsyncFunctionDef: + try: + str(node.__class__).index("Async") return True - if node.__class__ == astroid.nodes.FunctionDef: + except: if node.returns is None: return False try: if node.returns.value.name == "Awaitable": return True + else: + return False except: return False + # [Pylint] Custom Linter check for Exception Logging #3227 # [Pylint] Address Commented out Pylint Custom Plugin Checkers #3228 # [Pylint] Add a check for connection_verify hardcoded settings #35355 diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation_1.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation.py similarity index 62% rename from tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation_1.py rename to tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation.py index 7af24aabb58..9398e2acfe3 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation_1.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation.py @@ -15,3 +15,17 @@ async def double(a: Union[str, int]) -> int: if isinstance(a, str): return len(a)*2 return a * 2 + + +@overload +def doubleAgain(a: str): + ... + +@overload +def doubleAgain(a: int): + ... + +async def doubleAgain(a: Union[str, int]) -> int: + if isinstance(a, str): + return len(a)*2 + return a * 2 \ No newline at end of file diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation_2.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation_2.py deleted file mode 100644 index e35195f5366..00000000000 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation_2.py +++ /dev/null @@ -1,16 +0,0 @@ -# Test file for InvalidUseOfOverload checker - testing what mypy doesn't pick up - -from typing import Awaitable, overload, Union - -@overload -def double(a: str): - ... - -@overload -def double(a: int): - ... - -async def double(a: Union[str, int]) -> int: - if isinstance(a, str): - return len(a)*2 - return a * 2 \ No newline at end of file diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py index 2ece848f576..b1694b295eb 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py @@ -4837,7 +4837,6 @@ class TestInvalidUseOfOverload(pylint.testutils.CheckerTestCase): CHECKER_CLASS = checker.InvalidUseOfOverload - def test_valid_use_overload(self): file = open( os.path.join( @@ -4847,29 +4846,37 @@ def test_valid_use_overload(self): node = astroid.parse(file.read()) file.close() with self.assertNoMessages(): - self.checker.visit_call(node) + self.checker.visit_module(node) def test_invalid_use_overload(self): - violation_viles = ["_1", "_2"] - for violation in violation_viles: - - file = open( - os.path.join( - TEST_FOLDER, "test_files", "invalid_use_of_overload_violation"+violation+".py" - ) + file = open( + os.path.join( + TEST_FOLDER, "test_files", "invalid_use_of_overload_violation.py" ) - node = astroid.parse(file.read()) - file.close() - with self.assertAddsMessages( - pylint.testutils.MessageTest( - msg_id="invalid-use-of-overload", - line=0, - node=node, - col_offset=0, - ), - ): - self.checker.visit_call(node) + ) + node = astroid.parse(file.read()) + file.close() + children = list(node.get_children()) + with self.assertAddsMessages( + pylint.testutils.MessageTest( + msg_id="invalid-use-of-overload", + line=11, + node=children[2], + col_offset=0, + end_line=11, + end_col_offset=10, + ), + pylint.testutils.MessageTest( + msg_id="invalid-use-of-overload", + line=28, + node=children[6], + col_offset=0, + end_line=28, + end_col_offset=21, + ), + ): + self.checker.visit_module(node) # [Pylint] Custom Linter check for Exception Logging #3227 From b10a3cd2e183f09c33fcc9a1eeae0d71dc69512e Mon Sep 17 00:00:00 2001 From: Joshua Bishop <13187637+MJoshuaB@users.noreply.github.com> Date: Sat, 21 Sep 2024 14:31:16 +1200 Subject: [PATCH 17/31] add TODOs --- .../pylint_guidelines_checker.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index 9a72dbd0546..2f4c8f1f0cb 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -296,10 +296,16 @@ def _get_namespace(self, node): return namespace def visit_classdef(self, node): + # TODO: ignore classes with leading "_" + # TODO: ignore classes in private namespaces. i.e.: + # - azure.ai.ml.identity._internal.ManagedIdentityClient + # - azure.servicebus._pyamqp.ReceiveClient if node.name.endswith("Client") and node.name not in self.ignore_clients: self.process_class = node def visit_functiondef(self, node): + # TODO: ignore "models" if it's namespace starts with "azure.mgmt" + # TODO: order the output list alphabetically by method name if any(( self.process_class is None, # not in a client class node.name.startswith("_"), # private method From a0e5c18a53fca1d18fb38968ef7dca3e7e52ceb2 Mon Sep 17 00:00:00 2001 From: Alirose Burrell <16234397@massey.ac.nz> Date: Tue, 24 Sep 2024 12:05:38 +1200 Subject: [PATCH 18/31] removed code not reached --- .../pylint_guidelines_checker.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index 4070003a69d..f1a57b4f0d2 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -2766,16 +2766,12 @@ class InvalidUseOfOverload(BaseChecker): def visit_module(self, node): """Check that use of the @overload decorator matches the async/sync nature of the underlying function""" - try: - klass = node.parent.parent.parent - except: #For testing purposes - klass = node # Obtain a list of all functions and function names functions = [] try: - klass.body - for item in klass.body: + node.body + for item in node.body: if hasattr(item, 'name'): functions.append(item) From 3ed8120800d2397bf0181bddc914ef2f4936ef59 Mon Sep 17 00:00:00 2001 From: Alirose Burrell <16234397@massey.ac.nz> Date: Tue, 24 Sep 2024 13:16:48 +1200 Subject: [PATCH 19/31] Checks at a class level --- .../pylint_guidelines_checker.py | 2 +- .../invalid_use_of_overload_acceptable.py | 41 +++++++++--------- .../invalid_use_of_overload_violation.py | 42 +++++++++---------- .../tests/test_pylint_custom_plugins.py | 22 +++++----- 4 files changed, 54 insertions(+), 53 deletions(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index 005a79e1001..9743d658c08 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -2820,7 +2820,7 @@ class InvalidUseOfOverload(BaseChecker): ), } - def visit_module(self, node): + def visit_classdef(self, node): """Check that use of the @overload decorator matches the async/sync nature of the underlying function""" # Obtain a list of all functions and function names diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_acceptable.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_acceptable.py index cf7c8aedb08..18b7642872b 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_acceptable.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_acceptable.py @@ -2,30 +2,31 @@ from typing import Awaitable, overload, Union +class testingOverload: + @overload + def double(a: str) -> Awaitable[int]: + ... -@overload -def double(a: str) -> Awaitable[int]: - ... + @overload + def double(a: int) -> Awaitable[int]: + ... -@overload -def double(a: int) -> Awaitable[int]: - ... + async def double(a: Union[str, int]) -> int: + if isinstance(a, str): + return len(a)*2 + return a * 2 -async def double(a: Union[str, int]) -> int: - if isinstance(a, str): - return len(a)*2 - return a * 2 + @overload + def single(a: str): + ... -@overload -def single(a: str): - ... + @overload + def single(a: int): + ... -@overload -def single(a: int): - ... + def single(a: Union[str, int]) -> int: + if isinstance(a, str): + return len(a) + return a -def single(a: Union[str, int]) -> int: - if isinstance(a, str): - return len(a) - return a \ No newline at end of file diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation.py index 9398e2acfe3..7a02728a84a 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/invalid_use_of_overload_violation.py @@ -2,30 +2,30 @@ from typing import Awaitable, overload, Union +class testingOverload: + @overload + def double(a: str) -> Awaitable[int]: + ... -@overload -def double(a: str) -> Awaitable[int]: - ... + @overload + def double(a: int): + ... -@overload -def double(a: int): - ... + async def double(a: Union[str, int]) -> int: + if isinstance(a, str): + return len(a)*2 + return a * 2 -async def double(a: Union[str, int]) -> int: - if isinstance(a, str): - return len(a)*2 - return a * 2 + @overload + def doubleAgain(a: str): + ... -@overload -def doubleAgain(a: str): - ... + @overload + def doubleAgain(a: int): + ... -@overload -def doubleAgain(a: int): - ... - -async def doubleAgain(a: Union[str, int]) -> int: - if isinstance(a, str): - return len(a)*2 - return a * 2 \ No newline at end of file + async def doubleAgain(a: Union[str, int]) -> int: + if isinstance(a, str): + return len(a)*2 + return a * 2 \ No newline at end of file diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py index df5947a4735..51ed2539ccf 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py @@ -4855,10 +4855,10 @@ def test_valid_use_overload(self): TEST_FOLDER, "test_files", "invalid_use_of_overload_acceptable.py" ) ) - node = astroid.parse(file.read()) + node = astroid.extract_node(file.read()) file.close() with self.assertNoMessages(): - self.checker.visit_module(node) + self.checker.visit_classdef(node) def test_invalid_use_overload(self): @@ -4867,28 +4867,28 @@ def test_invalid_use_overload(self): TEST_FOLDER, "test_files", "invalid_use_of_overload_violation.py" ) ) - node = astroid.parse(file.read()) + node = astroid.extract_node(file.read()) file.close() - children = list(node.get_children()) + with self.assertAddsMessages( pylint.testutils.MessageTest( msg_id="invalid-use-of-overload", line=11, - node=children[2], - col_offset=0, + node=node.body[1], + col_offset=4, end_line=11, - end_col_offset=10, + end_col_offset=14, ), pylint.testutils.MessageTest( msg_id="invalid-use-of-overload", line=28, - node=children[6], - col_offset=0, + node=node.body[5], + col_offset=4, end_line=28, - end_col_offset=21, + end_col_offset=25, ), ): - self.checker.visit_module(node) + self.checker.visit_classdef(node) From 4c638dffd6c8dc13ef540b7c91b48bd296f3c775 Mon Sep 17 00:00:00 2001 From: Alirose Burrell <16234397@massey.ac.nz> Date: Wed, 25 Sep 2024 14:07:19 +1200 Subject: [PATCH 20/31] Looking into different connection_verify assignments --- .../pylint_guidelines_checker.py | 51 +++++++++++++++++-- 1 file changed, 47 insertions(+), 4 deletions(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index 3520efc6f00..a08ad21b3c2 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -2835,7 +2835,6 @@ class DoNotImportAsyncio(BaseChecker): name = "do-not-import-asyncio" priority = -1 - # TODO Find message number msgs = { "C4763": ( "Do not import the asyncio package directly in your library", @@ -2867,7 +2866,52 @@ def visit_import(self, node): # [Pylint] custom linter check for invalid use of @overload #3229 # [Pylint] Custom Linter check for Exception Logging #3227 # [Pylint] Address Commented out Pylint Custom Plugin Checkers #3228 -# [Pylint] Add a check for connection_verify hardcoded settings #35355 + +class DoNotHardcodeConnectionVerify(BaseChecker): + + """Rule to check that developers do not hardcode a boolean to connection_verify.""" + + name = "do-not-hardcode-connection-verify" + priority = -1 + msgs = { + "C4767": ( + "Do not hardcode a boolean value to connection_verify", + "do-not-hardcode-connection-verify", + "Do not hardcode a boolean value to connection_verify. It's up to customers who use the code to be able to set it", + ), + } + + def visit_call(self, node): + for keyword in node.keywords: + if keyword.arg == "connection_verify": + print("found a connection verify") + if type(keyword.value.value) == bool: + print("IT IS A BOOL!!!!- Found in visit call") + self.add_message( + msgid=f"do-not-hardcode-connection-verify", + node=keyword, + confidence=None, + ) + + # def visit_assign(self, node): + # print("Assign") + # for target in node.targets: + # print("TARGET: ", target) + + + def visit_annassign(self, node): + try: + if node.target.attrname == "connection_verify": + if type(node.annotation.value) == bool: + print("Found & Bool") + print("Found not a bool") + + except: + if node.target.name == "connection_verify": + print("FOUND IT in name") + + + # [Pylint] Refactor test suite for custom pylint checkers to use files instead of docstrings #3233 # [Pylint] Investigate pylint rule around missing dependency #3231 @@ -2907,11 +2951,10 @@ def register(linter): linter.register_checker(NoImportTypingFromTypeCheck(linter)) linter.register_checker(DoNotUseLegacyTyping(linter)) linter.register_checker(DoNotLogErrorsEndUpRaising(linter)) - # [Pylint] custom linter check for invalid use of @overload #3229 # [Pylint] Custom Linter check for Exception Logging #3227 # [Pylint] Address Commented out Pylint Custom Plugin Checkers #3228 - # [Pylint] Add a check for connection_verify hardcoded settings #35355 + linter.register_checker(DoNotHardcodeConnectionVerify(linter)) # [Pylint] Refactor test suite for custom pylint checkers to use files instead of docstrings #3233 # [Pylint] Investigate pylint rule around missing dependency #3231 From ab62179ba8ac961d4e7944e5827ac0c65da55c36 Mon Sep 17 00:00:00 2001 From: 16234397 <110712668+16234397@users.noreply.github.com> Date: Thu, 26 Sep 2024 12:06:21 +1200 Subject: [PATCH 21/31] Placeholders added back --- .../pylint_guidelines_checker.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index 7d0b07dafee..b872338b2dc 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -2932,6 +2932,11 @@ def visit_import(self, node): confidence=None, ) + # [Pylint] Custom Linter check for Exception Logging #3227 + # [Pylint] Address Commented out Pylint Custom Plugin Checkers #3228 + # [Pylint] Add a check for connection_verify hardcoded settings #35355 + # [Pylint] Refactor test suite for custom pylint checkers to use files instead of docstrings #3233 + # [Pylint] Investigate pylint rule around missing dependency #3231 # if a linter is registered in this function then it will be checked with pylint From 795c861994c7fe2a90c137233c6983b861267d50 Mon Sep 17 00:00:00 2001 From: 16234397 <16234397@massey.ac.nz> Date: Thu, 26 Sep 2024 14:39:54 +1200 Subject: [PATCH 22/31] Checker base done --- .../pylint_guidelines_checker.py | 52 ++++++++++++++----- ...no_hardcode_connection_verify_violation.py | 48 +++++++++++++++++ 2 files changed, 87 insertions(+), 13 deletions(-) create mode 100644 tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/do_no_hardcode_connection_verify_violation.py diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index a08ad21b3c2..3243e422070 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -2881,34 +2881,60 @@ class DoNotHardcodeConnectionVerify(BaseChecker): ), } + def visit_call(self, node): + """Visit function calls to ensure it isn't used as a parameter""" for keyword in node.keywords: if keyword.arg == "connection_verify": - print("found a connection verify") if type(keyword.value.value) == bool: - print("IT IS A BOOL!!!!- Found in visit call") self.add_message( msgid=f"do-not-hardcode-connection-verify", node=keyword, confidence=None, ) - # def visit_assign(self, node): - # print("Assign") - # for target in node.targets: - # print("TARGET: ", target) + + def visit_assign(self, node): + """Visiting variable Assignments""" + try: # Picks up self.connection_verify = True + if node.targets[0].attrname == "connection_verify": + if type(node.value.value) == bool: + self.add_message( + msgid=f"do-not-hardcode-connection-verify", + node=node, + confidence=None, + ) + except: + try: # connection_verify = True + if node.targets[0].name == "connection_verify": + if type(node.value.value) == bool: + self.add_message( + msgid=f"do-not-hardcode-connection-verify", + node=node, + confidence=None, + ) + except: + pass def visit_annassign(self, node): - try: + """Visiting variable annotated assignments""" + try: # self.connection_verify: bool = True if node.target.attrname == "connection_verify": - if type(node.annotation.value) == bool: - print("Found & Bool") - print("Found not a bool") - - except: + if type(node.value.value) == bool: + self.add_message( + msgid=f"do-not-hardcode-connection-verify", + node=node, + confidence=None, + ) + except: # connection_verify: bool = True if node.target.name == "connection_verify": - print("FOUND IT in name") + if type(node.value.value) == bool: + self.add_message( + msgid=f"do-not-hardcode-connection-verify", + node=node, + confidence=None, + ) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/do_no_hardcode_connection_verify_violation.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/do_no_hardcode_connection_verify_violation.py new file mode 100644 index 00000000000..5c64a538cfe --- /dev/null +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/do_no_hardcode_connection_verify_violation.py @@ -0,0 +1,48 @@ +class InstanceVariableError: + def __init__(self): + self.connection_verify = True + self.self = self + + +class VariableError: + connection_verify = True + + +class FunctionArgumentsErrors: + def create(connection_verify): + pass + + client = create(connection_verify=False) + + +class FunctionArgumentsInstanceErrors: + def __init__(self): + client = self.create_client_from_credential(connection_verify=False) + + +class ReturnErrorFunctionArgument: + def send(connection_verify): + pass + + def sampleFunction(self): + return self.send(connection_verify=True) + + +class ReturnErrorDict: + def returnDict(self): + + return dict( + connection_verify=False, + ) + +class AnnotatedAssignment: + connection_verify: bool = True + + def __init__(self): + self.connection_verify: bool = True + + + + + + From 35094ba646a6c94b0ec4fb68f533b311eb828410 Mon Sep 17 00:00:00 2001 From: Joshua Bishop <13187637+MJoshuaB@users.noreply.github.com> Date: Fri, 27 Sep 2024 11:50:34 +1200 Subject: [PATCH 23/31] exclue private namespaces and classes --- .../pylint_guidelines_checker.py | 21 ++++++++++++------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index 2f4c8f1f0cb..6d81373404b 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -276,9 +276,12 @@ class ClientHasApprovedMethodNamePrefix(BaseChecker): "analyze", ] + # TODO: split itno checks for prefixes/suffixes and ignored decorators + def __init__(self, linter=None): super(ClientHasApprovedMethodNamePrefix, self).__init__(linter) self.process_class = None + self.namespace = None def _is_property(self, node): if not node.decorators: @@ -288,19 +291,21 @@ def _is_property(self, node): return True return False - def _get_namespace(self, node): - path = node.root().file.split("/") - if len(path) == 1: - return self.process_class.name - namespace = ".".join(path[path.index("azure"):-1]) + "." + self.process_class.name - return namespace + def visit_module(self, node): + self.namespace = node.name def visit_classdef(self, node): # TODO: ignore classes with leading "_" # TODO: ignore classes in private namespaces. i.e.: # - azure.ai.ml.identity._internal.ManagedIdentityClient # - azure.servicebus._pyamqp.ReceiveClient - if node.name.endswith("Client") and node.name not in self.ignore_clients: + + if all(( + node.name.endswith("Client"), + node.name not in self.ignore_clients, + not node.name.startswith("_"), + not '._' in self.namespace, + )): self.process_class = node def visit_functiondef(self, node): @@ -321,7 +326,7 @@ def visit_functiondef(self, node): if parts[0].lower() not in self.approved_prefixes: self.add_message( msgid="unapproved-client-method-name-prefix", - args=self._get_namespace(node) + "::" + node.name, + args=f"{node.name} {self.namespace}", node=node, confidence=None, ) From ed5e21127145a4a9e05e4cd587c6dac721e81713 Mon Sep 17 00:00:00 2001 From: Joshua Bishop <13187637+MJoshuaB@users.noreply.github.com> Date: Fri, 27 Sep 2024 15:47:58 +1200 Subject: [PATCH 24/31] update reports --- .../pylintreport.txt | 711 ++---------------- .../reportcounts.md | 325 +------- 2 files changed, 80 insertions(+), 956 deletions(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylintreport.txt b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylintreport.txt index 2aa243fd734..03213b3c62d 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylintreport.txt +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylintreport.txt @@ -1,44 +1,23 @@ +************* Module azure.cognitiveservices.formrecognizer.form_recognizer_client +sdk\cognitiveservices\azure-cognitiveservices-formrecognizer\azure\cognitiveservices\formrecognizer\form_recognizer_client.py:75:4: C5000: train_custom_model azure.cognitiveservices.formrecognizer.form_recognizer_client (unapproved-client-method-name-prefix) +************* Module azure.cognitiveservices.language.textanalytics.text_analytics_client +sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:76:4: C5000: detect_language azure.cognitiveservices.language.textanalytics.text_analytics_client (unapproved-client-method-name-prefix) +sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:150:4: C5000: entities azure.cognitiveservices.language.textanalytics.text_analytics_client (unapproved-client-method-name-prefix) +sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:226:4: C5000: key_phrases azure.cognitiveservices.language.textanalytics.text_analytics_client (unapproved-client-method-name-prefix) +sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:302:4: C5000: sentiment azure.cognitiveservices.language.textanalytics.text_analytics_client (unapproved-client-method-name-prefix) +************* Module azure.cognitiveservices.personalizer.personalizer_client +sdk\cognitiveservices\azure-cognitiveservices-personalizer\azure\cognitiveservices\personalizer\personalizer_client.py:80:4: C5000: rank azure.cognitiveservices.personalizer.personalizer_client (unapproved-client-method-name-prefix) --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 8.95/10, +1.04) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.ai.generative.evaluate._client.openai_client -sdk\ai\azure-ai-generative\azure\ai\generative\evaluate\_client\openai_client.py:43:4: C5000: AzureOpenAIClient::bounded_chat_completion (unapproved-client-method-name-prefix) -************* Module azure.ai.generative.synthetic.simulator._conversation.augloop_client -sdk\ai\azure-ai-generative\azure\ai\generative\synthetic\simulator\_conversation\augloop_client.py:217:4: C5000: AugLoopClient::reconnect_and_attempt_session_init (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-generative\azure\ai\generative\synthetic\simulator\_conversation\augloop_client.py:265:4: C5000: AugLoopClient::setup_session_after_init (unapproved-client-method-name-prefix) -************* Module azure.ai.inference._patch -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:255:4: C5000: ChatCompletionsClient::complete (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:278:4: C5000: ChatCompletionsClient::complete (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:301:4: C5000: ChatCompletionsClient::complete (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:412:4: C5000: ChatCompletionsClient::complete (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:436:4: C5000: ChatCompletionsClient::complete (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:460:4: C5000: ChatCompletionsClient::complete (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:733:4: C5000: EmbeddingsClient::embed (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:775:4: C5000: EmbeddingsClient::embed (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:797:4: C5000: EmbeddingsClient::embed (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:818:4: C5000: EmbeddingsClient::embed (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:1017:4: C5000: ImageEmbeddingsClient::embed (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:1059:4: C5000: ImageEmbeddingsClient::embed (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:1081:4: C5000: ImageEmbeddingsClient::embed (unapproved-client-method-name-prefix) -sdk\ai\azure-ai-inference\azure\ai\inference\_patch.py:1102:4: C5000: ImageEmbeddingsClient::embed (unapproved-client-method-name-prefix) -************* Module azure.ai.resources.client._ai_client -sdk\ai\azure-ai-resources\azure\ai\resources\client\_ai_client.py:334:4: C5000: AIClient::build_index_on_cloud (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.02) - - -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) - - ------------------------------------- -Your code has been rated at 10.00/10 +Your code has been rated at 10.00/10 (previous run: 9.97/10, +0.03) -------------------------------------------------------------------- @@ -53,48 +32,21 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.53/10, +0.47) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.appconfiguration._azure_appconfiguration_client -sdk\appconfiguration\azure-appconfiguration\azure\appconfiguration\_azure_appconfiguration_client.py:689:4: C5000: AzureAppConfigurationClient::archive_snapshot (unapproved-client-method-name-prefix) -sdk\appconfiguration\azure-appconfiguration\azure\appconfiguration\_azure_appconfiguration_client.py:730:4: C5000: AzureAppConfigurationClient::recover_snapshot (unapproved-client-method-name-prefix) -************* Module azure.mgmt.appconfiguration._app_configuration_management_client -sdk\appconfiguration\azure-mgmt-appconfiguration\azure\mgmt\appconfiguration\_app_configuration_management_client.py:87:4: C5000: AppConfigurationManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.appconfiguration.aio._app_configuration_management_client -sdk\appconfiguration\azure-mgmt-appconfiguration\azure\mgmt\appconfiguration\aio\_app_configuration_management_client.py:87:4: C5000: AppConfigurationManagementClient::models (unapproved-client-method-name-prefix) - -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) - - ------------------------------------- -Your code has been rated at 10.00/10 - -************* Module azure.mgmt.applicationinsights._application_insights_management_client -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\_application_insights_management_client.py:108:4: C5000: ApplicationInsightsManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.applicationinsights.aio._application_insights_management_client -sdk\applicationinsights\azure-mgmt-applicationinsights\azure\mgmt\applicationinsights\aio\_application_insights_management_client.py:108:4: C5000: ApplicationInsightsManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.appplatform._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\_app_platform_management_client.py:109:4: C5000: AppPlatformManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.appplatform.aio._app_platform_management_client -sdk\appplatform\azure-mgmt-appplatform\azure\mgmt\appplatform\aio\_app_platform_management_client.py:109:4: C5000: AppPlatformManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.web._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\_web_site_management_client.py:112:4: C5000: WebSiteManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.web.aio._web_site_management_client -sdk\appservice\azure-mgmt-web\azure\mgmt\web\aio\_web_site_management_client.py:112:4: C5000: WebSiteManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) @@ -103,27 +55,17 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.security.attestation._administration_client -sdk\attestation\azure-security-attestation\azure\security\attestation\_administration_client.py:290:4: C5000: AttestationAdministrationClient::reset_policy (unapproved-client-method-name-prefix) -************* Module azure.security.attestation._client -sdk\attestation\azure-security-attestation\azure\security\attestation\_client.py:114:4: C5000: AttestationClient::attest_sgx_enclave (unapproved-client-method-name-prefix) -sdk\attestation\azure-security-attestation\azure\security\attestation\_client.py:232:4: C5000: AttestationClient::attest_open_enclave (unapproved-client-method-name-prefix) -sdk\attestation\azure-security-attestation\azure\security\attestation\_client.py:357:4: C5000: AttestationClient::attest_tpm (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.02) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.authorization._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\_authorization_management_client.py:131:4: C5000: AuthorizationManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.authorization.aio._authorization_management_client -sdk\authorization\azure-mgmt-authorization\azure\mgmt\authorization\aio\_authorization_management_client.py:131:4: C5000: AuthorizationManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) -------------------------------------------------------------------- @@ -158,10 +100,6 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ------------------------------------- -Your code has been rated at 10.00/10 - - -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) @@ -170,10 +108,6 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ------------------------------------- -Your code has been rated at 10.00/10 - - -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) @@ -185,75 +119,15 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.cognitiveservices.formrecognizer.form_recognizer_client -sdk\cognitiveservices\azure-cognitiveservices-formrecognizer\azure\cognitiveservices\formrecognizer\form_recognizer_client.py:75:4: C5000: FormRecognizerClient::train_custom_model (unapproved-client-method-name-prefix) -************* Module azure.cognitiveservices.language.textanalytics.text_analytics_client -sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:76:4: C5000: TextAnalyticsClient::detect_language (unapproved-client-method-name-prefix) -sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:150:4: C5000: TextAnalyticsClient::entities (unapproved-client-method-name-prefix) -sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:226:4: C5000: TextAnalyticsClient::key_phrases (unapproved-client-method-name-prefix) -sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:302:4: C5000: TextAnalyticsClient::sentiment (unapproved-client-method-name-prefix) -************* Module azure.cognitiveservices.personalizer.personalizer_client -sdk\cognitiveservices\azure-cognitiveservices-personalizer\azure\cognitiveservices\personalizer\personalizer_client.py:80:4: C5000: PersonalizerClient::rank (unapproved-client-method-name-prefix) - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - -************* Module azure.communication.callautomation._call_automation_client -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:310:4: C5000: CallAutomationClient::answer_call (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:370:4: C5000: CallAutomationClient::redirect_call (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:416:4: C5000: CallAutomationClient::reject_call (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:446:4: C5000: CallAutomationClient::start_recording (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:499:4: C5000: CallAutomationClient::start_recording (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:552:4: C5000: CallAutomationClient::start_recording (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:586:4: C5000: CallAutomationClient::stop_recording (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:602:4: C5000: CallAutomationClient::pause_recording (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_automation_client.py:618:4: C5000: CallAutomationClient::resume_recording (unapproved-client-method-name-prefix) -************* Module azure.communication.callautomation._call_connection_client -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:192:4: C5000: CallConnectionClient::hang_up (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:249:4: C5000: CallConnectionClient::transfer_call_to_participant (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:415:4: C5000: CallConnectionClient::play_media (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:513:4: C5000: CallConnectionClient::play_media_to_all (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:559:4: C5000: CallConnectionClient::start_recognizing_media (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:692:4: C5000: CallConnectionClient::start_continuous_dtmf_recognition (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:727:4: C5000: CallConnectionClient::stop_continuous_dtmf_recognition (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:804:4: C5000: CallConnectionClient::mute_participant (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:871:4: C5000: CallConnectionClient::start_hold_music (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:911:4: C5000: CallConnectionClient::stop_hold_music (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:938:4: C5000: CallConnectionClient::start_transcription (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:965:4: C5000: CallConnectionClient::stop_transcription (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:1008:4: C5000: CallConnectionClient::hold (unapproved-client-method-name-prefix) -sdk\communication\azure-communication-callautomation\azure\communication\callautomation\_call_connection_client.py:1056:4: C5000: CallConnectionClient::unhold (unapproved-client-method-name-prefix) -************* Module azure.communication.identity._communication_identity_client -sdk\communication\azure-communication-identity\azure\communication\identity\_communication_identity_client.py:188:4: C5000: CommunicationIdentityClient::revoke_tokens (unapproved-client-method-name-prefix) -************* Module azure.communication.phonenumbers._phone_numbers_client -sdk\communication\azure-communication-phonenumbers\azure\communication\phonenumbers\_phone_numbers_client.py:425:4: C5000: PhoneNumbersClient::search_operator_information (unapproved-client-method-name-prefix) -************* Module azure.communication.phonenumbers.aio._phone_numbers_client_async -sdk\communication\azure-communication-phonenumbers\azure\communication\phonenumbers\aio\_phone_numbers_client_async.py:421:4: C5000: PhoneNumbersClient::search_operator_information (unapproved-client-method-name-prefix) - -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) - -************* Module azure.mgmt.compute._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\_compute_management_client.py:132:4: C5000: ComputeManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.compute.aio._compute_management_client -sdk\compute\azure-mgmt-compute\azure\mgmt\compute\aio\_compute_management_client.py:132:4: C5000: ComputeManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ------------------------------------- -Your code has been rated at 10.00/10 - - -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) @@ -269,27 +143,10 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.containerregistry._exchange_client -sdk\containerregistry\azure-containerregistry\azure\containerregistry\_exchange_client.py:76:4: C5000: ACRExchangeClient::exchange_aad_token_for_refresh_token (unapproved-client-method-name-prefix) -sdk\containerregistry\azure-containerregistry\azure\containerregistry\_exchange_client.py:88:4: C5000: ACRExchangeClient::exchange_refresh_token_for_access_token (unapproved-client-method-name-prefix) -************* Module azure.containerregistry._anonymous_exchange_client -sdk\containerregistry\azure-containerregistry\azure\containerregistry\_anonymous_exchange_client.py:60:4: C5000: AnonymousACRExchangeClient::exchange_refresh_token_for_access_token (unapproved-client-method-name-prefix) -************* Module azure.mgmt.containerregistry._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\_container_registry_management_client.py:96:4: C5000: ContainerRegistryManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.containerregistry.aio._container_registry_management_client -sdk\containerregistry\azure-mgmt-containerregistry\azure\mgmt\containerregistry\aio\_container_registry_management_client.py:96:4: C5000: ContainerRegistryManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.containerservice._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\_container_service_client.py:117:4: C5000: ContainerServiceClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.containerservice.aio._container_service_client -sdk\containerservice\azure-mgmt-containerservice\azure\mgmt\containerservice\aio\_container_service_client.py:117:4: C5000: ContainerServiceClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.containerservicefleet._container_service_fleet_mgmt_client -sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\_container_service_fleet_mgmt_client.py:108:4: C5000: ContainerServiceFleetMgmtClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.containerservicefleet.aio._container_service_fleet_mgmt_client -sdk\containerservice\azure-mgmt-containerservicefleet\azure\mgmt\containerservicefleet\aio\_container_service_fleet_mgmt_client.py:108:4: C5000: ContainerServiceFleetMgmtClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) @@ -298,23 +155,9 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.servicemanagement._http.httpclient -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\_http\httpclient.py:171:4: C5000: _HTTPClient::perform_request (unapproved-client-method-name-prefix) -************* Module azure.servicemanagement.servicemanagementclient -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:95:4: C5000: _ServiceManagementClient::should_use_requests (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:118:4: C5000: _ServiceManagementClient::with_filter (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:155:4: C5000: _ServiceManagementClient::timeout (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:158:4: C5000: _ServiceManagementClient::perform_get (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:179:4: C5000: _ServiceManagementClient::perform_put (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:203:4: C5000: _ServiceManagementClient::perform_post (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:228:4: C5000: _ServiceManagementClient::perform_delete (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:250:4: C5000: _ServiceManagementClient::wait_for_operation_status_progress_default_callback (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:254:4: C5000: _ServiceManagementClient::wait_for_operation_status_success_default_callback (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:258:4: C5000: _ServiceManagementClient::wait_for_operation_status_failure_default_callback (unapproved-client-method-name-prefix) -sdk\core\azure-servicemanagement-legacy\azure\servicemanagement\servicemanagementclient.py:264:4: C5000: _ServiceManagementClient::wait_for_operation_status (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.99/10, +0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- @@ -336,21 +179,13 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.databox._data_box_management_client -sdk\databox\azure-mgmt-databox\azure\mgmt\databox\_data_box_management_client.py:87:4: C5000: DataBoxManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.databox.aio._data_box_management_client -sdk\databox\azure-mgmt-databox\azure\mgmt\databox\aio\_data_box_management_client.py:87:4: C5000: DataBoxManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.databoxedge._data_box_edge_management_client -sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\_data_box_edge_management_client.py:87:4: C5000: DataBoxEdgeManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.databoxedge.aio._data_box_edge_management_client -sdk\databoxedge\azure-mgmt-databoxedge\azure\mgmt\databoxedge\aio\_data_box_edge_management_client.py:87:4: C5000: DataBoxEdgeManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.50/10, +0.50) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- @@ -377,8 +212,8 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) +------------------------------------ +Your code has been rated at 10.00/10 -------------------------------------------------------------------- @@ -416,17 +251,9 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.digitaltwins.core._digitaltwins_client -sdk\digitaltwins\azure-digitaltwins-core\azure\digitaltwins\core\_digitaltwins_client.py:398:4: C5000: DigitalTwinsClient::publish_telemetry (unapproved-client-method-name-prefix) -sdk\digitaltwins\azure-digitaltwins-core\azure\digitaltwins\core\_digitaltwins_client.py:425:4: C5000: DigitalTwinsClient::publish_component_telemetry (unapproved-client-method-name-prefix) -sdk\digitaltwins\azure-digitaltwins-core\azure\digitaltwins\core\_digitaltwins_client.py:527:4: C5000: DigitalTwinsClient::decommission_model (unapproved-client-method-name-prefix) -************* Module azure.mgmt.digitaltwins._azure_digital_twins_management_client -sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\_azure_digital_twins_management_client.py:86:4: C5000: AzureDigitalTwinsManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.digitaltwins.aio._azure_digital_twins_management_client -sdk\digitaltwins\azure-mgmt-digitaltwins\azure\mgmt\digitaltwins\aio\_azure_digital_twins_management_client.py:86:4: C5000: AzureDigitalTwinsManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- @@ -437,10 +264,6 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.29/10, +0.71) - - -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) @@ -448,14 +271,6 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.edgeorder._edge_order_management_client -sdk\edgeorder\azure-mgmt-edgeorder\azure\mgmt\edgeorder\_edge_order_management_client.py:87:4: C5000: EdgeOrderManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.edgeorder.aio._edge_order_management_client -sdk\edgeorder\azure-mgmt-edgeorder\azure\mgmt\edgeorder\aio\_edge_order_management_client.py:87:4: C5000: EdgeOrderManagementClient::models (unapproved-client-method-name-prefix) - -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) - -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) @@ -476,50 +291,17 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.eventhub._consumer_client -sdk\eventhub\azure-eventhub\azure\eventhub\_consumer_client.py:474:4: C5000: EventHubConsumerClient::receive (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_consumer_client.py:585:4: C5000: EventHubConsumerClient::receive_batch (unapproved-client-method-name-prefix) -************* Module azure.eventhub._producer_client -sdk\eventhub\azure-eventhub\azure\eventhub\_producer_client.py:893:4: C5000: EventHubProducerClient::flush (unapproved-client-method-name-prefix) -************* Module azure.eventhub._pyamqp.client -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:299:4: C5000: AMQPClient::open (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:386:4: C5000: AMQPClient::auth_complete (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:398:4: C5000: AMQPClient::client_ready (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:417:4: C5000: AMQPClient::do_work (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:433:4: C5000: AMQPClient::mgmt_request (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:947:4: C5000: ReceiveClient::receive_message_batch (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:983:4: C5000: ReceiveClient::receive_messages_iter (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1031:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1042:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1053:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1065:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1079:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) -sdk\eventhub\azure-eventhub\azure\eventhub\_pyamqp\client.py:1091:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) -************* Module azure.mgmt.eventhub._event_hub_management_client -sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\_event_hub_management_client.py:87:4: C5000: EventHubManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.eventhub.aio._event_hub_management_client -sdk\eventhub\azure-mgmt-eventhub\azure\mgmt\eventhub\aio\_event_hub_management_client.py:87:4: C5000: EventHubManagementClient::models (unapproved-client-method-name-prefix) - ------------------------------------- -Your code has been rated at 10.00/10 - -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.ai.vision.face._patch -sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:36:4: C5000: FaceClient::detect_from_url (unapproved-client-method-name-prefix) -sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:52:4: C5000: FaceClient::detect_from_url (unapproved-client-method-name-prefix) -sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:68:4: C5000: FaceClient::detect_from_url (unapproved-client-method-name-prefix) -sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:84:4: C5000: FaceClient::detect_from_url (unapproved-client-method-name-prefix) -sdk\face\azure-ai-vision-face\azure\ai\vision\face\_patch.py:485:4: C5000: FaceClient::detect (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.02) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) +Your code has been rated at 10.00/10 (previous run: 9.29/10, +0.71) -------------------------------------------------------------------- @@ -534,8 +316,8 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) +------------------------------------ +Your code has been rated at 10.00/10 -------------------------------------------------------------------- @@ -581,80 +363,21 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.identity._internal.aad_client -sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:27:4: C5000: AadClient::obtain_token_by_authorization_code (unapproved-client-method-name-prefix) -sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:35:4: C5000: AadClient::obtain_token_by_client_certificate (unapproved-client-method-name-prefix) -sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:41:4: C5000: AadClient::obtain_token_by_client_secret (unapproved-client-method-name-prefix) -sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:45:4: C5000: AadClient::obtain_token_by_jwt_assertion (unapproved-client-method-name-prefix) -sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:49:4: C5000: AadClient::obtain_token_by_refresh_token (unapproved-client-method-name-prefix) -sdk\identity\azure-identity\azure\identity\_internal\aad_client.py:53:4: C5000: AadClient::obtain_token_on_behalf_of (unapproved-client-method-name-prefix) -************* Module azure.identity._internal.managed_identity_client -sdk\identity\azure-identity\azure\identity\_internal\managed_identity_client.py:127:4: C5000: ManagedIdentityClient::request_token (unapproved-client-method-name-prefix) -************* Module azure.identity._internal.msal_client -sdk\identity\azure-identity\azure\identity\_internal\msal_client.py:78:4: C5000: MsalClient::post (unapproved-client-method-name-prefix) - -------------------------------------------------------------------- -Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.02) - -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) - -************* Module azure.mgmt.iothub._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\_iot_hub_client.py:88:4: C5000: IotHubClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.iothub.aio._iot_hub_client -sdk\iothub\azure-mgmt-iothub\azure\mgmt\iothub\aio\_iot_hub_client.py:88:4: C5000: IotHubClient::models (unapproved-client-method-name-prefix) - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) - -************* Module azure.keyvault.certificates._client -sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:274:4: C5000: CertificateClient::purge_deleted_certificate (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:344:4: C5000: CertificateClient::import_certificate (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:486:4: C5000: CertificateClient::backup_certificate (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:516:4: C5000: CertificateClient::restore_certificate_backup (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-certificates\azure\keyvault\certificates\_client.py:791:4: C5000: CertificateClient::merge_certificate (unapproved-client-method-name-prefix) -************* Module azure.keyvault.keys._client -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:492:4: C5000: KeyClient::purge_deleted_key (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:627:4: C5000: KeyClient::backup_key (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:656:4: C5000: KeyClient::restore_key_backup (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:689:4: C5000: KeyClient::import_key (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:743:4: C5000: KeyClient::release_key (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\_client.py:819:4: C5000: KeyClient::rotate_key (unapproved-client-method-name-prefix) -************* Module azure.keyvault.keys.crypto._client -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:250:4: C5000: CryptographyClient::encrypt (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:326:4: C5000: CryptographyClient::decrypt (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:390:4: C5000: CryptographyClient::wrap_key (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:434:4: C5000: CryptographyClient::unwrap_key (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:476:4: C5000: CryptographyClient::sign (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-keys\azure\keyvault\keys\crypto\_client.py:520:4: C5000: CryptographyClient::verify (unapproved-client-method-name-prefix) -************* Module azure.keyvault.secrets._client -sdk\keyvault\azure-keyvault-secrets\azure\keyvault\secrets\_client.py:255:4: C5000: SecretClient::backup_secret (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-secrets\azure\keyvault\secrets\_client.py:279:4: C5000: SecretClient::restore_secret_backup (unapproved-client-method-name-prefix) -sdk\keyvault\azure-keyvault-secrets\azure\keyvault\secrets\_client.py:407:4: C5000: SecretClient::purge_deleted_secret (unapproved-client-method-name-prefix) -************* Module azure.mgmt.keyvault._key_vault_management_client -sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\_key_vault_management_client.py:109:4: C5000: KeyVaultManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.keyvault.aio._key_vault_management_client -sdk\keyvault\azure-mgmt-keyvault\azure\mgmt\keyvault\aio\_key_vault_management_client.py:109:4: C5000: KeyVaultManagementClient::models (unapproved-client-method-name-prefix) - -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.kubernetesconfiguration._source_control_configuration_client -sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\_source_control_configuration_client.py:95:4: C5000: SourceControlConfigurationClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.kubernetesconfiguration.aio._source_control_configuration_client -sdk\kubernetesconfiguration\azure-mgmt-kubernetesconfiguration\azure\mgmt\kubernetesconfiguration\aio\_source_control_configuration_client.py:95:4: C5000: SourceControlConfigurationClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.41/10, +0.59) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- @@ -720,11 +443,9 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.ai.metricsadvisor._patch -sdk\metricsadvisor\azure-ai-metricsadvisor\azure\ai\metricsadvisor\_patch.py:1159:4: C5000: MetricsAdvisorAdministrationClient::refresh_data_feed_ingestion (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- @@ -734,21 +455,9 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.ai.ml.identity._internal.managed_identity_client -sdk\ml\azure-ai-ml\azure\ai\ml\identity\_internal\managed_identity_client.py:120:4: C5000: ManagedIdentityClient::request_token (unapproved-client-method-name-prefix) -************* Module azure.ai.ml._artifacts._blob_storage_helper -sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_blob_storage_helper.py:297:4: C5000: BlobStorageClient::exists (unapproved-client-method-name-prefix) -************* Module azure.ai.ml._artifacts._gen2_storage_helper -sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_gen2_storage_helper.py:248:4: C5000: Gen2StorageClient::exists (unapproved-client-method-name-prefix) -************* Module azure.ai.ml._artifacts._fileshare_storage_helper -sdk\ml\azure-ai-ml\azure\ai\ml\_artifacts\_fileshare_storage_helper.py:254:4: C5000: FileStorageClient::exists (unapproved-client-method-name-prefix) -************* Module azure.ai.ml._local_endpoints.docker_client -sdk\ml\azure-ai-ml\azure\ai\ml\_local_endpoints\docker_client.py:317:4: C5000: DockerClient::logs (unapproved-client-method-name-prefix) -************* Module azure.ai.ml._local_endpoints.vscode_debug.vscode_client -sdk\ml\azure-ai-ml\azure\ai\ml\_local_endpoints\vscode_debug\vscode_client.py:36:4: C5000: VSCodeClient::invoke_dev_container (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- @@ -762,25 +471,17 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.monitor._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\_monitor_management_client.py:121:4: C5000: MonitorManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.monitor.aio._monitor_management_client -sdk\monitor\azure-mgmt-monitor\azure\mgmt\monitor\aio\_monitor_management_client.py:121:4: C5000: MonitorManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.dns._dns_management_client -sdk\network\azure-mgmt-dns\azure\mgmt\dns\_dns_management_client.py:88:4: C5000: DnsManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.dns.aio._dns_management_client -sdk\network\azure-mgmt-dns\azure\mgmt\dns\aio\_dns_management_client.py:88:4: C5000: DnsManagementClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- @@ -795,10 +496,6 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ------------------------------------- -Your code has been rated at 10.00/10 - - -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) @@ -831,34 +528,6 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ------------------------------------- -Your code has been rated at 10.00/10 - - ------------------------------------- -Your code has been rated at 10.00/10 - -************* Module azure.ai.personalizer._patch -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:76:4: C5000: PersonalizerAdministrationClient::export_model (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:91:4: C5000: PersonalizerAdministrationClient::import_model (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:105:4: C5000: PersonalizerAdministrationClient::reset_model (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:228:4: C5000: PersonalizerAdministrationClient::reset_policy (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:446:4: C5000: PersonalizerAdministrationClient::apply_from_evaluation (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:862:4: C5000: PersonalizerClient::rank (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:936:4: C5000: PersonalizerClient::reward (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:969:4: C5000: PersonalizerClient::activate (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:984:4: C5000: PersonalizerClient::rank_multi_slot (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:1070:4: C5000: PersonalizerClient::reward_multi_slot (unapproved-client-method-name-prefix) -sdk\personalizer\azure-ai-personalizer\azure\ai\personalizer\_patch.py:1107:4: C5000: PersonalizerClient::activate_multi_slot (unapproved-client-method-name-prefix) - -------------------------------------------------------------------- -Your code has been rated at 9.94/10 (previous run: 10.00/10, -0.06) - - -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.94/10, +0.06) - - -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) @@ -899,16 +568,8 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ------------------------------------- -Your code has been rated at 10.00/10 - -************* Module azure.mgmt.redhatopenshift._azure_red_hat_open_shift_client -sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\_azure_red_hat_open_shift_client.py:109:4: C5000: AzureRedHatOpenShiftClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.redhatopenshift.aio._azure_red_hat_open_shift_client -sdk\redhatopenshift\azure-mgmt-redhatopenshift\azure\mgmt\redhatopenshift\aio\_azure_red_hat_open_shift_client.py:109:4: C5000: AzureRedHatOpenShiftClient::models (unapproved-client-method-name-prefix) - -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.00) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- @@ -923,120 +584,32 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ------------------------------------- -Your code has been rated at 10.00/10 +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mixedreality.remoterendering._remote_rendering_client -sdk\remoterendering\azure-mixedreality-remoterendering\azure\mixedreality\remoterendering\_remote_rendering_client.py:320:4: C5000: RemoteRenderingClient::stop_rendering_session (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.02) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.resourcehealth._resource_health_mgmt_client -sdk\resourcehealth\azure-mgmt-resourcehealth\azure\mgmt\resourcehealth\_resource_health_mgmt_client.py:87:4: C5000: ResourceHealthMgmtClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resourcehealth.aio._resource_health_mgmt_client -sdk\resourcehealth\azure-mgmt-resourcehealth\azure\mgmt\resourcehealth\aio\_resource_health_mgmt_client.py:87:4: C5000: ResourceHealthMgmtClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.msi.aio._managed_service_identity_client -sdk\resources\azure-mgmt-msi\azure\mgmt\msi\aio\_managed_service_identity_client.py:85:4: C5000: ManagedServiceIdentityClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.msi._managed_service_identity_client -sdk\resources\azure-mgmt-msi\azure\mgmt\msi\_managed_service_identity_client.py:85:4: C5000: ManagedServiceIdentityClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.changes._changes_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\changes\_changes_client.py:107:4: C5000: ChangesClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.changes.aio._changes_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\changes\aio\_changes_client.py:107:4: C5000: ChangesClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.deploymentscripts._deployment_scripts_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentscripts\_deployment_scripts_client.py:108:4: C5000: DeploymentScriptsClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.deploymentscripts.aio._deployment_scripts_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentscripts\aio\_deployment_scripts_client.py:108:4: C5000: DeploymentScriptsClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.deploymentstacks._deployment_stacks_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentstacks\_deployment_stacks_client.py:108:4: C5000: DeploymentStacksClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.deploymentstacks.aio._deployment_stacks_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\deploymentstacks\aio\_deployment_stacks_client.py:108:4: C5000: DeploymentStacksClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.features._feature_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\features\_feature_client.py:108:4: C5000: FeatureClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.features.aio._feature_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\features\aio\_feature_client.py:108:4: C5000: FeatureClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.links._management_link_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\links\_management_link_client.py:107:4: C5000: ManagementLinkClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.links.aio._management_link_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\links\aio\_management_link_client.py:107:4: C5000: ManagementLinkClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.locks._management_lock_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\locks\_management_lock_client.py:107:4: C5000: ManagementLockClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.locks.aio._management_lock_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\locks\aio\_management_lock_client.py:107:4: C5000: ManagementLockClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.managedapplications._application_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\managedapplications\_application_client.py:109:4: C5000: ApplicationClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.managedapplications.aio._application_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\managedapplications\aio\_application_client.py:109:4: C5000: ApplicationClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.policy._policy_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\_policy_client.py:110:4: C5000: PolicyClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.policy.aio._policy_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\policy\aio\_policy_client.py:110:4: C5000: PolicyClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.privatelinks._resource_private_link_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\privatelinks\_resource_private_link_client.py:107:4: C5000: ResourcePrivateLinkClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.privatelinks.aio._resource_private_link_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\privatelinks\aio\_resource_private_link_client.py:107:4: C5000: ResourcePrivateLinkClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.resources._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\_resource_management_client.py:108:4: C5000: ResourceManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.resources.aio._resource_management_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\resources\aio\_resource_management_client.py:108:4: C5000: ResourceManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.subscriptions._subscription_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\_subscription_client.py:105:4: C5000: SubscriptionClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.subscriptions.aio._subscription_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\subscriptions\aio\_subscription_client.py:105:4: C5000: SubscriptionClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.templatespecs._template_specs_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\templatespecs\_template_specs_client.py:107:4: C5000: TemplateSpecsClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.resource.templatespecs.aio._template_specs_client -sdk\resources\azure-mgmt-resource\azure\mgmt\resource\templatespecs\aio\_template_specs_client.py:107:4: C5000: TemplateSpecsClient::models (unapproved-client-method-name-prefix) - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - -************* Module azure.schemaregistry._patch -sdk\schemaregistry\azure-schemaregistry\azure\schemaregistry\_patch.py:174:4: C5000: SchemaRegistryClient::register_schema (unapproved-client-method-name-prefix) - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - -************* Module azure.search.documents._search_client -sdk\search\azure-search-documents\azure\search\documents\_search_client.py:143:4: C5000: SearchClient::search (unapproved-client-method-name-prefix) -sdk\search\azure-search-documents\azure\search\documents\_search_client.py:388:4: C5000: SearchClient::suggest (unapproved-client-method-name-prefix) -sdk\search\azure-search-documents\azure\search\documents\_search_client.py:476:4: C5000: SearchClient::autocomplete (unapproved-client-method-name-prefix) -sdk\search\azure-search-documents\azure\search\documents\_search_client.py:618:4: C5000: SearchClient::merge_documents (unapproved-client-method-name-prefix) -sdk\search\azure-search-documents\azure\search\documents\_search_client.py:648:4: C5000: SearchClient::merge_or_upload_documents (unapproved-client-method-name-prefix) -sdk\search\azure-search-documents\azure\search\documents\_search_client.py:669:4: C5000: SearchClient::index_documents (unapproved-client-method-name-prefix) -************* Module azure.search.documents.indexes._search_indexer_client -sdk\search\azure-search-documents\azure\search\documents\indexes\_search_indexer_client.py:253:4: C5000: SearchIndexerClient::run_indexer (unapproved-client-method-name-prefix) -sdk\search\azure-search-documents\azure\search\documents\indexes\_search_indexer_client.py:272:4: C5000: SearchIndexerClient::reset_indexer (unapproved-client-method-name-prefix) -sdk\search\azure-search-documents\azure\search\documents\indexes\_search_indexer_client.py:291:4: C5000: SearchIndexerClient::reset_documents (unapproved-client-method-name-prefix) -sdk\search\azure-search-documents\azure\search\documents\indexes\_search_indexer_client.py:641:4: C5000: SearchIndexerClient::reset_skills (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 9.98/10 (previous run: 10.00/10, -0.01) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- @@ -1047,8 +620,8 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.98/10, +0.02) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- @@ -1062,27 +635,9 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.servicebus._service_bus_management_client -sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\_service_bus_management_client.py:89:4: C5000: ServiceBusManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.servicebus.aio._service_bus_management_client -sdk\servicebus\azure-mgmt-servicebus\azure\mgmt\servicebus\aio\_service_bus_management_client.py:89:4: C5000: ServiceBusManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.servicebus._pyamqp.client -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:296:4: C5000: AMQPClient::open (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:382:4: C5000: AMQPClient::auth_complete (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:394:4: C5000: AMQPClient::client_ready (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:413:4: C5000: AMQPClient::do_work (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:429:4: C5000: AMQPClient::mgmt_request (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:946:4: C5000: ReceiveClient::receive_message_batch (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:982:4: C5000: ReceiveClient::receive_messages_iter (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1030:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1041:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1052:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1064:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1078:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) -sdk\servicebus\azure-servicebus\azure\servicebus\_pyamqp\client.py:1090:4: C5000: ReceiveClient::settle_messages (unapproved-client-method-name-prefix) --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.29/10, +0.71) -------------------------------------------------------------------- @@ -1093,16 +648,16 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) +------------------------------------ +Your code has been rated at 10.00/10 --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) +------------------------------------ +Your code has been rated at 10.00/10 --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) +------------------------------------ +Your code has been rated at 10.00/10 -------------------------------------------------------------------- @@ -1120,89 +675,9 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.mgmt.storage._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\_storage_management_client.py:109:4: C5000: StorageManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.mgmt.storage.aio._storage_management_client -sdk\storage\azure-mgmt-storage\azure\mgmt\storage\aio\_storage_management_client.py:109:4: C5000: StorageManagementClient::models (unapproved-client-method-name-prefix) -************* Module azure.storage.blob._blob_service_client -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_service_client.py:474:4: C5000: BlobServiceClient::find_blobs_by_tags (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_service_client.py:657:4: C5000: BlobServiceClient::undelete_container (unapproved-client-method-name-prefix) -************* Module azure.storage.blob._container_client -sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:420:4: C5000: ContainerClient::acquire_lease (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:536:4: C5000: ContainerClient::exists (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:881:4: C5000: ContainerClient::walk_blobs (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_container_client.py:937:4: C5000: ContainerClient::find_blobs_by_tags (unapproved-client-method-name-prefix) -************* Module azure.storage.blob._lease -sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:65:4: C5000: BlobLeaseClient::acquire (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:123:4: C5000: BlobLeaseClient::renew (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:178:4: C5000: BlobLeaseClient::release (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:231:4: C5000: BlobLeaseClient::change (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_lease.py:284:4: C5000: BlobLeaseClient::break_lease (unapproved-client-method-name-prefix) -************* Module azure.storage.blob._blob_client -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:926:4: C5000: BlobClient::undelete_blob (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:959:4: C5000: BlobClient::exists (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1563:4: C5000: BlobClient::start_copy_from_url (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1758:4: C5000: BlobClient::abort_copy (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1789:4: C5000: BlobClient::acquire_lease (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1911:4: C5000: BlobClient::stage_block (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:1977:4: C5000: BlobClient::stage_block_from_url (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:2087:4: C5000: BlobClient::commit_block_list (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:2634:4: C5000: BlobClient::resize_blob (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\_blob_client.py:3210:4: C5000: BlobClient::seal_append_blob (unapproved-client-method-name-prefix) -************* Module azure.storage.blob.aio._blob_service_client_async -sdk\storage\azure-storage-blob\azure\storage\blob\aio\_blob_service_client_async.py:477:4: C5000: BlobServiceClient::find_blobs_by_tags (unapproved-client-method-name-prefix) -************* Module azure.storage.blob.aio._container_client_async -sdk\storage\azure-storage-blob\azure\storage\blob\aio\_container_client_async.py:871:4: C5000: ContainerClient::walk_blobs (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-blob\azure\storage\blob\aio\_container_client_async.py:927:4: C5000: ContainerClient::find_blobs_by_tags (unapproved-client-method-name-prefix) -************* Module azure.storage.filedatalake._data_lake_lease -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:73:4: C5000: DataLakeLeaseClient::acquire (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:114:4: C5000: DataLakeLeaseClient::renew (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:153:4: C5000: DataLakeLeaseClient::release (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:190:4: C5000: DataLakeLeaseClient::change (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_lease.py:226:4: C5000: DataLakeLeaseClient::break_lease (unapproved-client-method-name-prefix) -************* Module azure.storage.filedatalake._data_lake_file_client -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_file_client.py:646:4: C5000: DataLakeFileClient::flush_data (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_file_client.py:802:4: C5000: DataLakeFileClient::exists (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_file_client.py:819:4: C5000: DataLakeFileClient::rename_file (unapproved-client-method-name-prefix) -************* Module azure.storage.filedatalake._data_lake_service_client -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_service_client.py:348:4: C5000: DataLakeServiceClient::undelete_file_system (unapproved-client-method-name-prefix) -************* Module azure.storage.filedatalake._data_lake_directory_client -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_directory_client.py:334:4: C5000: DataLakeDirectoryClient::exists (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_data_lake_directory_client.py:351:4: C5000: DataLakeDirectoryClient::rename_directory (unapproved-client-method-name-prefix) -************* Module azure.storage.filedatalake._path_client -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_path_client.py:1072:4: C5000: PathClient::acquire_lease (unapproved-client-method-name-prefix) -************* Module azure.storage.filedatalake._file_system_client -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_file_system_client.py:198:4: C5000: FileSystemClient::acquire_lease (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-datalake\azure\storage\filedatalake\_file_system_client.py:306:4: C5000: FileSystemClient::exists (unapproved-client-method-name-prefix) -************* Module azure.storage.fileshare._lease -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:72:4: C5000: ShareLeaseClient::acquire (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:114:4: C5000: ShareLeaseClient::renew (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:150:4: C5000: ShareLeaseClient::release (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:179:4: C5000: ShareLeaseClient::change (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_lease.py:211:4: C5000: ShareLeaseClient::break_lease (unapproved-client-method-name-prefix) -************* Module azure.storage.fileshare._directory_client -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_directory_client.py:434:4: C5000: ShareDirectoryClient::rename_directory (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_directory_client.py:773:4: C5000: ShareDirectoryClient::exists (unapproved-client-method-name-prefix) -************* Module azure.storage.fileshare._file_client -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:331:4: C5000: ShareFileClient::acquire_lease (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:366:4: C5000: ShareFileClient::exists (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:645:4: C5000: ShareFileClient::start_copy_from_url (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:781:4: C5000: ShareFileClient::abort_copy (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:940:4: C5000: ShareFileClient::rename_file (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_file_client.py:1630:4: C5000: ShareFileClient::resize_file (unapproved-client-method-name-prefix) -************* Module azure.storage.fileshare._share_service_client -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_share_service_client.py:419:4: C5000: ShareServiceClient::undelete_share (unapproved-client-method-name-prefix) -************* Module azure.storage.fileshare._share_client -sdk\storage\azure-storage-file-share\azure\storage\fileshare\_share_client.py:304:4: C5000: ShareClient::acquire_lease (unapproved-client-method-name-prefix) -************* Module azure.storage.queue._queue_client -sdk\storage\azure-storage-queue\azure\storage\queue\_queue_client.py:544:4: C5000: QueueClient::receive_message (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-queue\azure\storage\queue\_queue_client.py:614:4: C5000: QueueClient::receive_messages (unapproved-client-method-name-prefix) -sdk\storage\azure-storage-queue\azure\storage\queue\_queue_client.py:837:4: C5000: QueueClient::peek_messages (unapproved-client-method-name-prefix) -************* Module azure.storage.queue.aio._queue_client_async -sdk\storage\azure-storage-queue\azure\storage\queue\aio\_queue_client_async.py:618:4: C5000: QueueClient::receive_messages (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- @@ -1228,39 +703,13 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.synapse.managedprivateendpoints._vnet_client -sdk\synapse\azure-synapse-managedprivateendpoints\azure\synapse\managedprivateendpoints\_vnet_client.py:89:4: C5000: VnetClient::models (unapproved-client-method-name-prefix) -************* Module azure.synapse.managedprivateendpoints.aio._vnet_client -sdk\synapse\azure-synapse-managedprivateendpoints\azure\synapse\managedprivateendpoints\aio\_vnet_client.py:87:4: C5000: VnetClient::models (unapproved-client-method-name-prefix) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, -0.00) - -************* Module azure.data.tables._table_client -sdk\tables\azure-data-tables\azure\data\tables\_table_client.py:838:4: C5000: TableClient::submit_transaction (unapproved-client-method-name-prefix) -sdk\tables\azure-data-tables\azure\data\tables\_table_client.py:875:4: C5000: TableClient::submit_transaction (unapproved-client-method-name-prefix) -sdk\tables\azure-data-tables\azure\data\tables\_table_client.py:902:4: C5000: TableClient::submit_transaction (unapproved-client-method-name-prefix) - -------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 10.00/10, -0.01) - - -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) - -************* Module azure.ai.textanalytics._text_analytics_client -sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:164:4: C5000: TextAnalyticsClient::detect_language (unapproved-client-method-name-prefix) -sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:271:4: C5000: TextAnalyticsClient::recognize_entities (unapproved-client-method-name-prefix) -sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:382:4: C5000: TextAnalyticsClient::recognize_pii_entities (unapproved-client-method-name-prefix) -sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:507:4: C5000: TextAnalyticsClient::recognize_linked_entities (unapproved-client-method-name-prefix) -sdk\textanalytics\azure-ai-textanalytics\azure\ai\textanalytics\_text_analytics_client.py:829:4: C5000: TextAnalyticsClient::extract_key_phrases (unapproved-client-method-name-prefix) - -------------------------------------------------------------------- -Your code has been rated at 9.97/10 (previous run: 10.00/10, -0.03) +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.97/10, +0.03) +-------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- @@ -1282,23 +731,9 @@ Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) -************* Module azure.messaging.webpubsubclient._client -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:428:4: C5000: WebPubSubClient::join_group (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:450:4: C5000: WebPubSubClient::leave_group (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:781:4: C5000: WebPubSubClient::is_connected (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1036:4: C5000: WebPubSubClient::open (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1177:4: C5000: WebPubSubClient::unsubscribe (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1190:4: C5000: WebPubSubClient::unsubscribe (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1203:4: C5000: WebPubSubClient::unsubscribe (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1216:4: C5000: WebPubSubClient::unsubscribe (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1229:4: C5000: WebPubSubClient::unsubscribe (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1242:4: C5000: WebPubSubClient::unsubscribe (unapproved-client-method-name-prefix) -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\_client.py:1255:4: C5000: WebPubSubClient::unsubscribe (unapproved-client-method-name-prefix) -************* Module azure.messaging.webpubsubclient.aio._client -sdk\webpubsub\azure-messaging-webpubsubclient\azure\messaging\webpubsubclient\aio\_client.py:694:4: C5000: WebPubSubClient::is_connected (unapproved-client-method-name-prefix) ------------------------------------------------------------------- -Your code has been rated at 9.99/10 (previous run: 9.96/10, +0.02) +------------------------------------------------------------------- +Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) -------------------------------------------------------------------- diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md b/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md index 83076854a6e..92e73cbf690 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md @@ -1,319 +1,8 @@ -| Namespace | Method | +| Method | Namespace | |---|---| -| azure.ai.generative.evaluate._client.AzureOpenAIClient | bounded_chat_completion | -| azure.ai.generative.synthetic.simulator._conversation.AugLoopClient | reconnect_and_attempt_session_init | -| azure.ai.generative.synthetic.simulator._conversation.AugLoopClient | setup_session_after_init | -| azure.ai.inference.ChatCompletionsClient | complete | -| azure.ai.inference.ChatCompletionsClient | complete | -| azure.ai.inference.ChatCompletionsClient | complete | -| azure.ai.inference.ChatCompletionsClient | complete | -| azure.ai.inference.ChatCompletionsClient | complete | -| azure.ai.inference.ChatCompletionsClient | complete | -| azure.ai.inference.EmbeddingsClient | embed | -| azure.ai.inference.EmbeddingsClient | embed | -| azure.ai.inference.EmbeddingsClient | embed | -| azure.ai.inference.EmbeddingsClient | embed | -| azure.ai.inference.ImageEmbeddingsClient | embed | -| azure.ai.inference.ImageEmbeddingsClient | embed | -| azure.ai.inference.ImageEmbeddingsClient | embed | -| azure.ai.inference.ImageEmbeddingsClient | embed | -| azure.ai.resources.client.AIClient | build_index_on_cloud | -| azure.appconfiguration.AzureAppConfigurationClient | archive_snapshot | -| azure.appconfiguration.AzureAppConfigurationClient | recover_snapshot | -| azure.mgmt.appconfiguration.AppConfigurationManagementClient | models | -| azure.mgmt.appconfiguration.aio.AppConfigurationManagementClient | models | -| azure.mgmt.applicationinsights.ApplicationInsightsManagementClient | models | -| azure.mgmt.applicationinsights.aio.ApplicationInsightsManagementClient | models | -| azure.mgmt.appplatform.AppPlatformManagementClient | models | -| azure.mgmt.appplatform.aio.AppPlatformManagementClient | models | -| azure.mgmt.web.WebSiteManagementClient | models | -| azure.mgmt.web.aio.WebSiteManagementClient | models | -| azure.security.attestation.AttestationAdministrationClient | reset_policy | -| azure.security.attestation.AttestationClient | attest_sgx_enclave | -| azure.security.attestation.AttestationClient | attest_open_enclave | -| azure.security.attestation.AttestationClient | attest_tpm | -| azure.mgmt.authorization.AuthorizationManagementClient | models | -| azure.mgmt.authorization.aio.AuthorizationManagementClient | models | -| azure.cognitiveservices.formrecognizer.FormRecognizerClient | train_custom_model | -| azure.cognitiveservices.language.textanalytics.TextAnalyticsClient | detect_language | -| azure.cognitiveservices.language.textanalytics.TextAnalyticsClient | entities | -| azure.cognitiveservices.language.textanalytics.TextAnalyticsClient | key_phrases | -| azure.cognitiveservices.language.textanalytics.TextAnalyticsClient | sentiment | -| azure.cognitiveservices.personalizer.PersonalizerClient | rank | -| azure.communication.callautomation.CallAutomationClient | answer_call | -| azure.communication.callautomation.CallAutomationClient | redirect_call | -| azure.communication.callautomation.CallAutomationClient | reject_call | -| azure.communication.callautomation.CallAutomationClient | start_recording | -| azure.communication.callautomation.CallAutomationClient | start_recording | -| azure.communication.callautomation.CallAutomationClient | start_recording | -| azure.communication.callautomation.CallAutomationClient | stop_recording | -| azure.communication.callautomation.CallAutomationClient | pause_recording | -| azure.communication.callautomation.CallAutomationClient | resume_recording | -| azure.communication.callautomation.CallConnectionClient | hang_up | -| azure.communication.callautomation.CallConnectionClient | transfer_call_to_participant | -| azure.communication.callautomation.CallConnectionClient | play_media | -| azure.communication.callautomation.CallConnectionClient | play_media_to_all | -| azure.communication.callautomation.CallConnectionClient | start_recognizing_media | -| azure.communication.callautomation.CallConnectionClient | start_continuous_dtmf_recognition | -| azure.communication.callautomation.CallConnectionClient | stop_continuous_dtmf_recognition | -| azure.communication.callautomation.CallConnectionClient | mute_participant | -| azure.communication.callautomation.CallConnectionClient | start_hold_music | -| azure.communication.callautomation.CallConnectionClient | stop_hold_music | -| azure.communication.callautomation.CallConnectionClient | start_transcription | -| azure.communication.callautomation.CallConnectionClient | stop_transcription | -| azure.communication.callautomation.CallConnectionClient | hold | -| azure.communication.callautomation.CallConnectionClient | unhold | -| azure.communication.identity.CommunicationIdentityClient | revoke_tokens | -| azure.communication.phonenumbers.PhoneNumbersClient | search_operator_information | -| azure.communication.phonenumbers.aio.PhoneNumbersClient | search_operator_information | -| azure.mgmt.compute.ComputeManagementClient | models | -| azure.mgmt.compute.aio.ComputeManagementClient | models | -| azure.containerregistry.ACRExchangeClient | exchange_aad_token_for_refresh_token | -| azure.containerregistry.ACRExchangeClient | exchange_refresh_token_for_access_token | -| azure.containerregistry.AnonymousACRExchangeClient | exchange_refresh_token_for_access_token | -| azure.mgmt.containerregistry.ContainerRegistryManagementClient | models | -| azure.mgmt.containerregistry.aio.ContainerRegistryManagementClient | models | -| azure.mgmt.containerservice.ContainerServiceClient | models | -| azure.mgmt.containerservice.aio.ContainerServiceClient | models | -| azure.mgmt.containerservicefleet.ContainerServiceFleetMgmtClient | models | -| azure.mgmt.containerservicefleet.aio.ContainerServiceFleetMgmtClient | models | -| azure.servicemanagement._http._HTTPClient | perform_request | -| azure.servicemanagement._ServiceManagementClient | should_use_requests | -| azure.servicemanagement._ServiceManagementClient | with_filter | -| azure.servicemanagement._ServiceManagementClient | timeout | -| azure.servicemanagement._ServiceManagementClient | perform_get | -| azure.servicemanagement._ServiceManagementClient | perform_put | -| azure.servicemanagement._ServiceManagementClient | perform_post | -| azure.servicemanagement._ServiceManagementClient | perform_delete | -| azure.servicemanagement._ServiceManagementClient | wait_for_operation_status_progress_default_callback | -| azure.servicemanagement._ServiceManagementClient | wait_for_operation_status_success_default_callback | -| azure.servicemanagement._ServiceManagementClient | wait_for_operation_status_failure_default_callback | -| azure.servicemanagement._ServiceManagementClient | wait_for_operation_status | -| azure.mgmt.databox.DataBoxManagementClient | models | -| azure.mgmt.databox.aio.DataBoxManagementClient | models | -| azure.mgmt.databoxedge.DataBoxEdgeManagementClient | models | -| azure.mgmt.databoxedge.aio.DataBoxEdgeManagementClient | models | -| azure.digitaltwins.core.DigitalTwinsClient | publish_telemetry | -| azure.digitaltwins.core.DigitalTwinsClient | publish_component_telemetry | -| azure.digitaltwins.core.DigitalTwinsClient | decommission_model | -| azure.mgmt.digitaltwins.AzureDigitalTwinsManagementClient | models | -| azure.mgmt.digitaltwins.aio.AzureDigitalTwinsManagementClient | models | -| azure.mgmt.edgeorder.EdgeOrderManagementClient | models | -| azure.mgmt.edgeorder.aio.EdgeOrderManagementClient | models | -| azure.eventhub.EventHubConsumerClient | receive | -| azure.eventhub.EventHubConsumerClient | receive_batch | -| azure.eventhub.EventHubProducerClient | flush | -| azure.eventhub._pyamqp.AMQPClient | open | -| azure.eventhub._pyamqp.AMQPClient | auth_complete | -| azure.eventhub._pyamqp.AMQPClient | client_ready | -| azure.eventhub._pyamqp.AMQPClient | do_work | -| azure.eventhub._pyamqp.AMQPClient | mgmt_request | -| azure.eventhub._pyamqp.ReceiveClient | receive_message_batch | -| azure.eventhub._pyamqp.ReceiveClient | receive_messages_iter | -| azure.eventhub._pyamqp.ReceiveClient | settle_messages | -| azure.eventhub._pyamqp.ReceiveClient | settle_messages | -| azure.eventhub._pyamqp.ReceiveClient | settle_messages | -| azure.eventhub._pyamqp.ReceiveClient | settle_messages | -| azure.eventhub._pyamqp.ReceiveClient | settle_messages | -| azure.eventhub._pyamqp.ReceiveClient | settle_messages | -| azure.mgmt.eventhub.EventHubManagementClient | models | -| azure.mgmt.eventhub.aio.EventHubManagementClient | models | -| azure.ai.vision.face.FaceClient | detect_from_url | -| azure.ai.vision.face.FaceClient | detect_from_url | -| azure.ai.vision.face.FaceClient | detect_from_url | -| azure.ai.vision.face.FaceClient | detect_from_url | -| azure.ai.vision.face.FaceClient | detect | -| azure.identity._internal.AadClient | obtain_token_by_authorization_code | -| azure.identity._internal.AadClient | obtain_token_by_client_certificate | -| azure.identity._internal.AadClient | obtain_token_by_client_secret | -| azure.identity._internal.AadClient | obtain_token_by_jwt_assertion | -| azure.identity._internal.AadClient | obtain_token_by_refresh_token | -| azure.identity._internal.AadClient | obtain_token_on_behalf_of | -| azure.identity._internal.ManagedIdentityClient | request_token | -| azure.identity._internal.MsalClient | post | -| azure.mgmt.iothub.IotHubClient | models | -| azure.mgmt.iothub.aio.IotHubClient | models | -| azure.keyvault.certificates.CertificateClient | purge_deleted_certificate | -| azure.keyvault.certificates.CertificateClient | import_certificate | -| azure.keyvault.certificates.CertificateClient | backup_certificate | -| azure.keyvault.certificates.CertificateClient | restore_certificate_backup | -| azure.keyvault.certificates.CertificateClient | merge_certificate | -| azure.keyvault.keys.KeyClient | purge_deleted_key | -| azure.keyvault.keys.KeyClient | backup_key | -| azure.keyvault.keys.KeyClient | restore_key_backup | -| azure.keyvault.keys.KeyClient | import_key | -| azure.keyvault.keys.KeyClient | release_key | -| azure.keyvault.keys.KeyClient | rotate_key | -| azure.keyvault.keys.crypto.CryptographyClient | encrypt | -| azure.keyvault.keys.crypto.CryptographyClient | decrypt | -| azure.keyvault.keys.crypto.CryptographyClient | wrap_key | -| azure.keyvault.keys.crypto.CryptographyClient | unwrap_key | -| azure.keyvault.keys.crypto.CryptographyClient | sign | -| azure.keyvault.keys.crypto.CryptographyClient | verify | -| azure.keyvault.secrets.SecretClient | backup_secret | -| azure.keyvault.secrets.SecretClient | restore_secret_backup | -| azure.keyvault.secrets.SecretClient | purge_deleted_secret | -| azure.mgmt.keyvault.KeyVaultManagementClient | models | -| azure.mgmt.keyvault.aio.KeyVaultManagementClient | models | -| azure.mgmt.kubernetesconfiguration.SourceControlConfigurationClient | models | -| azure.mgmt.kubernetesconfiguration.aio.SourceControlConfigurationClient | models | -| azure.ai.metricsadvisor.MetricsAdvisorAdministrationClient | refresh_data_feed_ingestion | -| azure.ai.ml.identity._internal.ManagedIdentityClient | request_token | -| azure.ai.ml._artifacts.BlobStorageClient | exists | -| azure.ai.ml._artifacts._gen2_storage_helper.py.Gen2StorageClient | exists | -| azure.ai.ml._artifacts.FileStorageClient | exists | -| azure.ai.ml._local_endpoints.DockerClient | logs | -| azure.ai.ml._local_endpoints.vscode_debug.VSCodeClient | invoke_dev_container | -| azure.mgmt.monitor.MonitorManagementClient | models | -| azure.mgmt.monitor.aio.MonitorManagementClient | models | -| azure.mgmt.dns.DnsManagementClient | models | -| azure.mgmt.dns.aio.DnsManagementClient | models | -| azure.ai.personalizer.PersonalizerAdministrationClient | export_model | -| azure.ai.personalizer.PersonalizerAdministrationClient | import_model | -| azure.ai.personalizer.PersonalizerAdministrationClient | reset_model | -| azure.ai.personalizer.PersonalizerAdministrationClient | reset_policy | -| azure.ai.personalizer.PersonalizerAdministrationClient | apply_from_evaluation | -| azure.ai.personalizer.PersonalizerClient | rank | -| azure.ai.personalizer.PersonalizerClient | reward | -| azure.ai.personalizer.PersonalizerClient | activate | -| azure.ai.personalizer.PersonalizerClient | rank_multi_slot | -| azure.ai.personalizer.PersonalizerClient | reward_multi_slot | -| azure.ai.personalizer.PersonalizerClient | activate_multi_slot | -| azure.mgmt.redhatopenshift.AzureRedHatOpenShiftClient | models | -| azure.mgmt.redhatopenshift.aio.AzureRedHatOpenShiftClient | models | -| azure.mixedreality.remoterendering.RemoteRenderingClient | stop_rendering_session | -| azure.mgmt.resourcehealth.ResourceHealthMgmtClient | models | -| azure.mgmt.resourcehealth.aio.ResourceHealthMgmtClient | models | -| azure.mgmt.msi.aio.ManagedServiceIdentityClient | models | -| azure.mgmt.msi.ManagedServiceIdentityClient | models | -| azure.mgmt.resource.changes.ChangesClient | models | -| azure.mgmt.resource.changes.aio.ChangesClient | models | -| azure.mgmt.resource.deploymentscripts.DeploymentScriptsClient | models | -| azure.mgmt.resource.deploymentscripts.aio.DeploymentScriptsClient | models | -| azure.mgmt.resource.deploymentstacks.DeploymentStacksClient | models | -| azure.mgmt.resource.deploymentstacks.aio.DeploymentStacksClient | models | -| azure.mgmt.resource.features.FeatureClient | models | -| azure.mgmt.resource.features.aio.FeatureClient | models | -| azure.mgmt.resource.links.ManagementLinkClient | models | -| azure.mgmt.resource.links.aio.ManagementLinkClient | models | -| azure.mgmt.resource.locks.ManagementLockClient | models | -| azure.mgmt.resource.locks.aio.ManagementLockClient | models | -| azure.mgmt.resource.managedapplications.ApplicationClient | models | -| azure.mgmt.resource.managedapplications.aio.ApplicationClient | models | -| azure.mgmt.resource.policy.PolicyClient | models | -| azure.mgmt.resource.policy.aio.PolicyClient | models | -| azure.mgmt.resource.privatelinks.ResourcePrivateLinkClient | models | -| azure.mgmt.resource.privatelinks.aio.ResourcePrivateLinkClient | models | -| azure.mgmt.resource.resources.ResourceManagementClient | models | -| azure.mgmt.resource.resources.aio.ResourceManagementClient | models | -| azure.mgmt.resource.subscriptions.SubscriptionClient | models | -| azure.mgmt.resource.subscriptions.aio.SubscriptionClient | models | -| azure.mgmt.resource.templatespecs.TemplateSpecsClient | models | -| azure.mgmt.resource.templatespecs.aio.TemplateSpecsClient | models | -| azure.schemaregistry.SchemaRegistryClient | register_schema | -| azure.search.documents.SearchClient | search | -| azure.search.documents.SearchClient | suggest | -| azure.search.documents.SearchClient | autocomplete | -| azure.search.documents.SearchClient | merge_documents | -| azure.search.documents.SearchClient | merge_or_upload_documents | -| azure.search.documents.SearchClient | index_documents | -| azure.search.documents.indexes.SearchIndexerClient | run_indexer | -| azure.search.documents.indexes.SearchIndexerClient | reset_indexer | -| azure.search.documents.indexes.SearchIndexerClient | reset_documents | -| azure.search.documents.indexes.SearchIndexerClient | reset_skills | -| azure.mgmt.servicebus.ServiceBusManagementClient | models | -| azure.mgmt.servicebus.aio.ServiceBusManagementClient | models | -| azure.servicebus._pyamqp.AMQPClient | open | -| azure.servicebus._pyamqp.AMQPClient | auth_complete | -| azure.servicebus._pyamqp.AMQPClient | client_ready | -| azure.servicebus._pyamqp.AMQPClient | do_work | -| azure.servicebus._pyamqp.AMQPClient | mgmt_request | -| azure.servicebus._pyamqp.ReceiveClient | receive_message_batch | -| azure.servicebus._pyamqp.ReceiveClient | receive_messages_iter | -| azure.servicebus._pyamqp.ReceiveClient | settle_messages | -| azure.servicebus._pyamqp.ReceiveClient | settle_messages | -| azure.servicebus._pyamqp.ReceiveClient | settle_messages | -| azure.servicebus._pyamqp.ReceiveClient | settle_messages | -| azure.servicebus._pyamqp.ReceiveClient | settle_messages | -| azure.servicebus._pyamqp.ReceiveClient | settle_messages | -| azure.mgmt.storage.StorageManagementClient | models | -| azure.mgmt.storage.aio.StorageManagementClient | models | -| azure.storage.blob.BlobServiceClient | find_blobs_by_tags | -| azure.storage.blob.BlobServiceClient | undelete_container | -| azure.storage.blob.ContainerClient | acquire_lease | -| azure.storage.blob.ContainerClient | exists | -| azure.storage.blob.ContainerClient | walk_blobs | -| azure.storage.blob.ContainerClient | find_blobs_by_tags | -| azure.storage.blob.BlobLeaseClient | acquire | -| azure.storage.blob.BlobLeaseClient | renew | -| azure.storage.blob.BlobLeaseClient | release | -| azure.storage.blob.BlobLeaseClient | change | -| azure.storage.blob.BlobLeaseClient | break_lease | -| azure.storage.blob.BlobClient | undelete_blob | -| azure.storage.blob.BlobClient | exists | -| azure.storage.blob.BlobClient | start_copy_from_url | -| azure.storage.blob.BlobClient | abort_copy | -| azure.storage.blob.BlobClient | acquire_lease | -| azure.storage.blob.BlobClient | stage_block | -| azure.storage.blob.BlobClient | stage_block_from_url | -| azure.storage.blob.BlobClient | commit_block_list | -| azure.storage.blob.BlobClient | resize_blob | -| azure.storage.blob.BlobClient | seal_append_blob | -| azure.storage.blob.aio.BlobServiceClient | find_blobs_by_tags | -| azure.storage.blob.aio.ContainerClient | walk_blobs | -| azure.storage.blob.aio.ContainerClient | find_blobs_by_tags | -| azure.storage.filedatalake.DataLakeLeaseClient | acquire | -| azure.storage.filedatalake.DataLakeLeaseClient | renew | -| azure.storage.filedatalake.DataLakeLeaseClient | release | -| azure.storage.filedatalake.DataLakeLeaseClient | change | -| azure.storage.filedatalake.DataLakeLeaseClient | break_lease | -| azure.storage.filedatalake.DataLakeFileClient | flush_data | -| azure.storage.filedatalake.DataLakeFileClient | exists | -| azure.storage.filedatalake.DataLakeFileClient | rename_file | -| azure.storage.filedatalake.DataLakeServiceClient | undelete_file_system | -| azure.storage.filedatalake.DataLakeDirectoryClient | exists | -| azure.storage.filedatalake.DataLakeDirectoryClient | rename_directory | -| azure.storage.filedatalake.PathClient | acquire_lease | -| azure.storage.filedatalake.FileSystemClient | acquire_lease | -| azure.storage.filedatalake.FileSystemClient | exists | -| azure.storage.fileshare.ShareLeaseClient | acquire | -| azure.storage.fileshare.ShareLeaseClient | renew | -| azure.storage.fileshare.ShareLeaseClient | release | -| azure.storage.fileshare.ShareLeaseClient | change | -| azure.storage.fileshare.ShareLeaseClient | break_lease | -| azure.storage.fileshare.ShareDirectoryClient | rename_directory | -| azure.storage.fileshare.ShareDirectoryClient | exists | -| azure.storage.fileshare.ShareFileClient | acquire_lease | -| azure.storage.fileshare.ShareFileClient | exists | -| azure.storage.fileshare.ShareFileClient | start_copy_from_url | -| azure.storage.fileshare.ShareFileClient | abort_copy | -| azure.storage.fileshare.ShareFileClient | rename_file | -| azure.storage.fileshare.ShareFileClient | resize_file | -| azure.storage.fileshare.ShareServiceClient | undelete_share | -| azure.storage.fileshare.ShareClient | acquire_lease | -| azure.storage.queue.QueueClient | receive_message | -| azure.storage.queue.QueueClient | receive_messages | -| azure.storage.queue.QueueClient | peek_messages | -| azure.storage.queue.aio.QueueClient | receive_messages | -| azure.synapse.managedprivateendpoints.VnetClient | models | -| azure.synapse.managedprivateendpoints.aio.VnetClient | models | -| azure.data.tables.TableClient | submit_transaction | -| azure.data.tables.TableClient | submit_transaction | -| azure.data.tables.TableClient | submit_transaction | -| azure.ai.textanalytics.TextAnalyticsClient | detect_language | -| azure.ai.textanalytics.TextAnalyticsClient | recognize_entities | -| azure.ai.textanalytics.TextAnalyticsClient | recognize_pii_entities | -| azure.ai.textanalytics.TextAnalyticsClient | recognize_linked_entities | -| azure.ai.textanalytics.TextAnalyticsClient | extract_key_phrases | -| azure.messaging.webpubsubclient.WebPubSubClient | join_group | -| azure.messaging.webpubsubclient.WebPubSubClient | leave_group | -| azure.messaging.webpubsubclient.WebPubSubClient | is_connected | -| azure.messaging.webpubsubclient.WebPubSubClient | open | -| azure.messaging.webpubsubclient.WebPubSubClient | unsubscribe | -| azure.messaging.webpubsubclient.WebPubSubClient | unsubscribe | -| azure.messaging.webpubsubclient.WebPubSubClient | unsubscribe | -| azure.messaging.webpubsubclient.WebPubSubClient | unsubscribe | -| azure.messaging.webpubsubclient.WebPubSubClient | unsubscribe | -| azure.messaging.webpubsubclient.WebPubSubClient | unsubscribe | -| azure.messaging.webpubsubclient.WebPubSubClient | unsubscribe | -| azure.messaging.webpubsubclient.aio.WebPubSubClient | is_connected | +| train_custom_model | azure.cognitiveservices.formrecognizer.form_recognizer_client | +| detect_language | azure.cognitiveservices.language.textanalytics.text_analytics_client | +| entities | azure.cognitiveservices.language.textanalytics.text_analytics_client | +| key_phrases | azure.cognitiveservices.language.textanalytics.text_analytics_client | +| sentiment | azure.cognitiveservices.language.textanalytics.text_analytics_client | +| rank | azure.cognitiveservices.personalizer.personalizer_client | From a835da4430b5c0366b4398466e9871822adaadd5 Mon Sep 17 00:00:00 2001 From: 16234397 <16234397@massey.ac.nz> Date: Mon, 30 Sep 2024 11:59:57 +1300 Subject: [PATCH 25/31] Checker, Tests, & Readme done --- .../azure-pylint-guidelines-checker/README.md | 10 +- .../pylint_guidelines_checker.py | 38 +++--- ...t_hardcode_connection_verify_acceptable.py | 48 +++++++ ...t_hardcode_connection_verify_violation.py} | 0 .../tests/test_pylint_custom_plugins.py | 125 +++++++++++++++++- 5 files changed, 201 insertions(+), 20 deletions(-) create mode 100644 tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/do_not_hardcode_connection_verify_acceptable.py rename tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/{do_no_hardcode_connection_verify_violation.py => do_not_hardcode_connection_verify_violation.py} (100%) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/README.md b/tools/pylint-extensions/azure-pylint-guidelines-checker/README.md index afb92720126..2e4d0a271bc 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/README.md +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/README.md @@ -54,7 +54,7 @@ In the case of a false positive, use the disable command to remove the pylint er | Pylint checker name | How to fix this | How to disable this rule | Link to python guideline | -|----------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------| ------------------------------------------------------------------------------------------------------- | +|----------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------| | client-method-should-not-use-static-method | Use module level functions instead. | # pylint:disable=client-method-should-not-use-static-method | [link](https://azure.github.io/azure-sdk/python_implementation.html#method-signatures) | | missing-client-constructor-parameter-credential | Add a credential parameter to the client constructor. Do not use plural form "credentials". | # pylint:disable=missing-client-constructor-parameter-credential | [link](https://azure.github.io/azure-sdk/python_design.html#client-configuration) | | missing-client-constructor-parameter-kwargs | Add a \*\*kwargs parameter to the client constructor. | # pylint:disable=missing-client-constructor-parameter-kwargs | [link](https://azure.github.io/azure-sdk/python_design.html#client-configuration) | @@ -94,5 +94,9 @@ In the case of a false positive, use the disable command to remove the pylint er | docstring-type-do-not-use-class | Docstring type is formatted incorrectly. Do not use `:class` in docstring type. | pylint:disable=docstring-type-do-not-use-class | [link](https://sphinx-rtd-tutorial.readthedocs.io/en/latest/docstrings.html) | | no-typing-import-in-type-check | Do not import typing under TYPE_CHECKING. | pylint:disable=no-typing-import-in-type-check | No Link. | | do-not-log-raised-errors | Do not log errors at `error` or `warning` level when error is raised in an exception block. | pylint:disable=do-not-log-raised-errors | No Link. | -| do-not-use-legacy-typing | Do not use legacy (<Python 3.8) type hinting comments | pylint:disable=do-not-use-legacy-typing | No Link. -| do-not-import-asyncio | Do not import asyncio directly. | pylint:disable=do-not-import-asyncio | No Link. | \ No newline at end of file +| do-not-use-legacy-typing | Do not use legacy (<Python 3.8) type hinting comments | pylint:disable=do-not-use-legacy-typing | No Link. +| do-not-import-asyncio | Do not import asyncio directly. | pylint:disable=do-not-import-asyncio | No Link. | +| TODO | custom linter check for invalid use of @overload #3229 | | | +| TODO | Custom Linter check for Exception Logging #3227 | | | +| TODO | Address Commented out Pylint Custom Plugin Checkers #3228 | | | +| do-not-hardcode-connection-verify | Do not hardcode a boolean value to connection_verify | pylint:disable=do-not-hardcode-connection-verify | No LInk. | \ No newline at end of file diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index 3243e422070..a5b38d9e56d 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -2884,14 +2884,17 @@ class DoNotHardcodeConnectionVerify(BaseChecker): def visit_call(self, node): """Visit function calls to ensure it isn't used as a parameter""" - for keyword in node.keywords: - if keyword.arg == "connection_verify": - if type(keyword.value.value) == bool: - self.add_message( - msgid=f"do-not-hardcode-connection-verify", - node=keyword, - confidence=None, - ) + try: + for keyword in node.keywords: + if keyword.arg == "connection_verify": + if type(keyword.value.value) == bool: + self.add_message( + msgid=f"do-not-hardcode-connection-verify", + node=keyword, + confidence=None, + ) + except: + pass def visit_assign(self, node): @@ -2927,14 +2930,17 @@ def visit_annassign(self, node): node=node, confidence=None, ) - except: # connection_verify: bool = True - if node.target.name == "connection_verify": - if type(node.value.value) == bool: - self.add_message( - msgid=f"do-not-hardcode-connection-verify", - node=node, - confidence=None, - ) + except: # Picks up connection_verify: bool = True + try: + if node.target.name == "connection_verify": + if type(node.value.value) == bool: + self.add_message( + msgid=f"do-not-hardcode-connection-verify", + node=node, + confidence=None, + ) + except: + pass diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/do_not_hardcode_connection_verify_acceptable.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/do_not_hardcode_connection_verify_acceptable.py new file mode 100644 index 00000000000..3309e740497 --- /dev/null +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/do_not_hardcode_connection_verify_acceptable.py @@ -0,0 +1,48 @@ +class InstanceVariableError: + def __init__(self): + self.connection_verify = None + self.self = self + + +class VariableError: + connection_verify = None + + +class FunctionArgumentsErrors: + def create(connection_verify): + pass + + client = create(connection_verify=None) + + +class FunctionArgumentsInstanceErrors: + def __init__(self): + client = self.create_client_from_credential(connection_verify=None) + + +class ReturnErrorFunctionArgument: + def send(connection_verify): + pass + + def sampleFunction(self): + return self.send(connection_verify=None) + + +class ReturnErrorDict: + def returnDict(self): + + return dict( + connection_verify=None, + ) + +class AnnotatedAssignment: + connection_verify: bool = None + + def __init__(self): + self.connection_verify: bool = None + + + + + + diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/do_no_hardcode_connection_verify_violation.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/do_not_hardcode_connection_verify_violation.py similarity index 100% rename from tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/do_no_hardcode_connection_verify_violation.py rename to tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/do_not_hardcode_connection_verify_violation.py diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py index ca1b73a443c..a020856ce9e 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py @@ -3600,5 +3600,128 @@ def test_extra_nested_branches_exception_logged(self, setup): # [Pylint] custom linter check for invalid use of @overload #3229 # [Pylint] Custom Linter check for Exception Logging #3227 # [Pylint] Address Commented out Pylint Custom Plugin Checkers #3228 -# [Pylint] Add a check for connection_verify hardcoded settings #35355 + + +class TestDoNotHardcodeConnectionVerify(pylint.testutils.CheckerTestCase): + """Test that we are not hard-coding a True or False to connection_verify""" + + CHECKER_CLASS = checker.DoNotHardcodeConnectionVerify + + def test_valid_connection_verify(self): + """Check that valid connection_verify hard coding does not raise warnings""" + file = open( + os.path.join( + TEST_FOLDER, "test_files", "do_not_hardcode_connection_verify_acceptable.py" + ) + ) + node = astroid.parse(file.read()) + file.close() + + nodes = node.body + InstanceVariableError = nodes[0].body[0].body[0] + VariableError = nodes[1].body[0] + FunctionArgumentsErrors = nodes[2].body[1].value + FunctionArgumentsInstanceErrors = nodes[3].body[0].body[0].value + ReturnErrorFunctionArgument = nodes[4].body[1].body[0].value + ReturnErrorDict = nodes[5].body[0].body[0].value + AnnotatedAssignment = nodes[6].body[0] + + with self.assertNoMessages(): + self.checker.visit_assign(InstanceVariableError) + self.checker.visit_assign(VariableError) + self.checker.visit_call(FunctionArgumentsErrors) + self.checker.visit_call(FunctionArgumentsInstanceErrors) + self.checker.visit_call(ReturnErrorFunctionArgument) + self.checker.visit_call(ReturnErrorDict) + self.checker.visit_annassign(AnnotatedAssignment) + + + def test_invalid_connection_verify(self): + """Check that hard-coding connection_verify to a bool raise warnings""" + file = open( + os.path.join( + TEST_FOLDER, "test_files", "do_not_hardcode_connection_verify_violation.py" + ) + ) + node = astroid.parse(file.read()) + file.close() + + nodes = node.body + InstanceVariableError = nodes[0].body[0].body[0] + VariableError = nodes[1].body[0] + FunctionArgumentsErrors = nodes[2].body[1].value + FunctionArgumentsInstanceErrors = nodes[3].body[0].body[0].value + ReturnErrorFunctionArgument = nodes[4].body[1].body[0].value + ReturnErrorDict = nodes[5].body[0].body[0].value + AnnotatedAssignment = nodes[6].body[0] + + with self.assertAddsMessages( + pylint.testutils.MessageTest( + msg_id="do-not-hardcode-connection-verify", + line=3, + node=InstanceVariableError, + col_offset=8, + end_line=3, + end_col_offset=37, + ), + pylint.testutils.MessageTest( + msg_id="do-not-hardcode-connection-verify", + line=8, + node=VariableError, + col_offset=4, + end_line=8, + end_col_offset=28, + ), + pylint.testutils.MessageTest( + msg_id="do-not-hardcode-connection-verify", + line=15, + node=FunctionArgumentsErrors.keywords[0], + col_offset=20, + end_line=15, + end_col_offset=43, + ), + pylint.testutils.MessageTest( + msg_id="do-not-hardcode-connection-verify", + line=20, + node=FunctionArgumentsInstanceErrors.keywords[0], + col_offset=52, + end_line=20, + end_col_offset=75, + ), + pylint.testutils.MessageTest( + msg_id="do-not-hardcode-connection-verify", + line=28, + node=ReturnErrorFunctionArgument.keywords[0], + col_offset=25, + end_line=28, + end_col_offset=47, + ), + pylint.testutils.MessageTest( + msg_id="do-not-hardcode-connection-verify", + line=35, + node=ReturnErrorDict.keywords[0], + col_offset=12, + end_line=35, + end_col_offset=35, + ), + pylint.testutils.MessageTest( + msg_id="do-not-hardcode-connection-verify", + line=39, + node=AnnotatedAssignment, + col_offset=4, + end_line=39, + end_col_offset=34, + ), + ): + + + self.checker.visit_assign(InstanceVariableError) + self.checker.visit_assign(VariableError) + self.checker.visit_call(FunctionArgumentsErrors) + self.checker.visit_call(FunctionArgumentsInstanceErrors) + self.checker.visit_call(ReturnErrorFunctionArgument) + self.checker.visit_call(ReturnErrorDict) + self.checker.visit_annassign(AnnotatedAssignment) + + # [Pylint] Investigate pylint rule around missing dependency #3231 From ae88cee1fe3b988a357bec061b551be07fbcaef3 Mon Sep 17 00:00:00 2001 From: Joshua Bishop <13187637+MJoshuaB@users.noreply.github.com> Date: Wed, 2 Oct 2024 11:24:45 +1300 Subject: [PATCH 26/31] add new prefixes --- .../pylint_guidelines_checker.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index 6d81373404b..d8951b66666 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -274,6 +274,8 @@ class ClientHasApprovedMethodNamePrefix(BaseChecker): "send", "query", "analyze", + "train", # TODO: test this + "detect", ] # TODO: split itno checks for prefixes/suffixes and ignored decorators From cfaa89132de6b89bd2ab7aebf1a27daaa00724a5 Mon Sep 17 00:00:00 2001 From: Joshua Bishop <13187637+MJoshuaB@users.noreply.github.com> Date: Wed, 2 Oct 2024 15:48:31 +1300 Subject: [PATCH 27/31] update unit tests --- .../pylint_guidelines_checker.py | 44 ++- .../client_has_approved_method_name_prefix.py | 169 +++++---- .../tests/test_pylint_custom_plugins.py | 349 ++++++------------ 3 files changed, 249 insertions(+), 313 deletions(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index 7b92700aa74..e909a4a4438 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -238,14 +238,15 @@ class ClientHasApprovedMethodNamePrefix(BaseChecker): name = "client-approved-method-name-prefix" priority = -1 msgs = { - "C5000": ( - "%s", + "C4720": ( + "Client is not using an approved method name prefix. See details:" + " https://azure.github.io/azure-sdk/python_design.html#service-operations", "unapproved-client-method-name-prefix", "All clients should use the preferred verbs for method names.", ), } - ignore_clients = [ + ignore_clients = [ "PipelineClient", "AsyncPipelineClient", "ARMPipelineClient", @@ -266,30 +267,41 @@ class ClientHasApprovedMethodNamePrefix(BaseChecker): "remove", "begin", "upload", - "download", - "close", + "download", # standard verbs + "close", # very common verb "cancel", "clear", "subscribe", "send", "query", - "analyze", - "train", # TODO: test this + "analyze", # common verbs + "train", "detect", + "from", # future proofing ] - # TODO: split itno checks for prefixes/suffixes and ignored decorators + ignored_decorators = [ + "property", + ] def __init__(self, linter=None): super(ClientHasApprovedMethodNamePrefix, self).__init__(linter) self.process_class = None self.namespace = None - def _is_property(self, node): + # def _is_property(self, node): + # if not node.decorators: + # return False + # for decorator in node.decorators.nodes: + # if isinstance(decorator, astroid.nodes.Name) and decorator.name == "property": + # return True + # return False + + def _check_decorators(self, node): if not node.decorators: return False for decorator in node.decorators.nodes: - if isinstance(decorator, astroid.nodes.Name) and decorator.name == "property": + if isinstance(decorator, astroid.nodes.Name) and decorator.name in self.ignored_decorators: return True return False @@ -297,11 +309,6 @@ def visit_module(self, node): self.namespace = node.name def visit_classdef(self, node): - # TODO: ignore classes with leading "_" - # TODO: ignore classes in private namespaces. i.e.: - # - azure.ai.ml.identity._internal.ManagedIdentityClient - # - azure.servicebus._pyamqp.ReceiveClient - if all(( node.name.endswith("Client"), node.name not in self.ignore_clients, @@ -311,14 +318,12 @@ def visit_classdef(self, node): self.process_class = node def visit_functiondef(self, node): - # TODO: ignore "models" if it's namespace starts with "azure.mgmt" - # TODO: order the output list alphabetically by method name if any(( self.process_class is None, # not in a client class node.name.startswith("_"), # private method node.name.endswith("_exists"), # special case - node.name.startswith("from"), # special case - self._is_property(node), # property + # node.name.startswith("from"), # special case + self._check_decorators(node), # property node.parent != self.process_class, # nested method )): return @@ -328,7 +333,6 @@ def visit_functiondef(self, node): if parts[0].lower() not in self.approved_prefixes: self.add_message( msgid="unapproved-client-method-name-prefix", - args=f"{node.name} {self.namespace}", node=node, confidence=None, ) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/client_has_approved_method_name_prefix.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/client_has_approved_method_name_prefix.py index 36f94556327..88d34446060 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/client_has_approved_method_name_prefix.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_files/client_has_approved_method_name_prefix.py @@ -1,129 +1,174 @@ -from azure.core.tracing.decorator import distributed_trace - - # test_ignores_constructor -class SomeClient(): # @ - def __init__(self, **kwargs): # @ +class ConstrClient(): #@ + def __init__(self, **kwargs): #@ pass # test_ignores_private_method -class Some1Client(): # @ - def _private_method(self, **kwargs): # @ +class PrivClient(): #@ + def _private_method(self, **kwargs): #@ pass # test_ignores_if_exists_suffix -class Some2Client(): # @ - def check_if_exists(self, **kwargs): # @ - pass - - -# test_ignores_from_prefix -class Some3Client(): # @ - def from_connection_string(self, **kwargs): # @ +class ExistsClient(): #@ + def check_if_exists(self, **kwargs): #@ pass # test_ignores_approved_prefix_names -class Some4Client(): # @ - def create_configuration(self): # @ +class ApprovedClient(): #@ + def get_noun(self): #@ pass - - def get_thing(self): # @ + + def list_noun(self): #@ pass - - def list_thing(self): # @ + + def create_noun(self): #@ pass - - def upsert_thing(self): # @ + + def upsert_noun(self): #@ pass - - def set_thing(self): # @ + + def set_noun(self): #@ pass - - def update_thing(self): # @ + + def update_noun(self): #@ pass - - def replace_thing(self): # @ + + def replace_noun(self): #@ pass - - def append_thing(self): # @ + + def append_noun(self): #@ pass - - def add_thing(self): # @ + + def add_noun(self): #@ pass - - def delete_thing(self): # @ + + def delete_noun(self): #@ pass - - def remove_thing(self): # @ + + def remove_noun(self): #@ pass - - def begin_thing(self): # @ + + def begin_noun(self): #@ + pass + + def upload_noun(self): #@ + pass + + def download_noun(self): #@ + pass + + def close_noun(self): #@ + pass + + def cancel_noun(self): #@ + pass + + def clear_noun(self): #@ + pass + + def subscribe_noun(self): #@ + pass + + def send_noun(self): #@ + pass + + def query_noun(self): #@ + pass + + def analyze_noun(self): #@ + pass + + def train_noun(self): #@ + pass + + def detect_noun(self): #@ + pass + + def from_noun(self): #@ pass # test_ignores_non_client_with_unapproved_prefix_names -class SomethingElse(): # @ - def download_thing(self, some, **kwargs): # @ +class SomethingElse(): #@ + def download_thing(self, some, **kwargs): #@ pass # test_ignores_nested_function_with_unapproved_prefix_names -class Some5Client(): # @ - def create_configuration(self, **kwargs): # @ - def nested(hello, world): +class NestedClient(): #@ + def create_configuration(self, **kwargs): #@ + def nested(hello, world): #@ pass # test_finds_unapproved_prefix_names -class Some6Client(): # @ - @distributed_trace - def build_configuration(self): # @ +class UnapprovedClient(): #@ + def build_configuration(self): #@ pass - def generate_thing(self): # @ + def generate_thing(self): #@ pass - def make_thing(self): # @ + def make_thing(self): #@ pass - def insert_thing(self): # @ + def insert_thing(self): #@ pass - def put_thing(self): # @ + def put_thing(self): #@ pass - def creates_configuration(self): # @ + def creates_configuration(self): #@ pass - def gets_thing(self): # @ + def gets_thing(self): #@ pass - def lists_thing(self): # @ + def lists_thing(self): #@ pass - def upserts_thing(self): # @ + def upserts_thing(self): #@ pass - def sets_thing(self): # @ + def sets_thing(self): #@ pass - def updates_thing(self): # @ + def updates_thing(self): #@ pass - def replaces_thing(self): # @ + def replaces_thing(self): #@ pass - def appends_thing(self): # @ + def appends_thing(self): #@ pass - def adds_thing(self): # @ + def adds_thing(self): #@ pass - def deletes_thing(self): # @ + def deletes_thing(self): #@ pass - def removes_thing(self): # @ + def removes_thing(self): #@ pass + + +# test_ignores_property +class PropClient(): #@ + @property + def func(self): #@ + pass + + +# test_ignores_private_client +class _PrivateClient(): #@ + def get_thing(self): #@ + pass + + +# test_ignores_private_module +class PrivateModuleClient(): #@ + def get_thing(self): #@ + pass \ No newline at end of file diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py index a64bb757bb7..2b6b3713265 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py @@ -12,6 +12,7 @@ from azure.core import PipelineClient from azure.core.configuration import Configuration import pylint_guidelines_checker as checker +from pylint.testutils import MessageTest TEST_FOLDER = os.path.abspath(os.path.join(__file__, "..")) @@ -302,245 +303,131 @@ def test_guidelines_link_active(self): assert response.http_response.status_code == 200 +def _load_file(filename): + file_path = os.path.join(TEST_FOLDER, "test_files", filename) + with open(file_path, "r") as file: + contents = file.read().split("\n\n\n") # Split by triple newline (2 blank lines) + return [astroid.extract_node(content) for content in contents] + + class TestClientHasApprovedMethodNamePrefix(pylint.testutils.CheckerTestCase): CHECKER_CLASS = checker.ClientHasApprovedMethodNamePrefix @pytest.fixture(scope="class") def setup(self): - file = open( - os.path.join(TEST_FOLDER, "test_files", "client_has_approved_method_name_prefix.py") - ) - node = astroid.parse(file.read()) - file.close() - return node - - def test_ignores_constructor(self, setup): - class_node = setup.body[1] - with self.assertNoMessages(): - self.checker.visit_classdef(class_node) - self.checker.visit_functiondef(function_node) - - def test_ignores_private_method(self, setup): - class_node = setup.body[2] - with self.assertNoMessages(): - self.checker.visit_classdef(class_node) - self.checker.visit_functiondef(function_node) - - def test_ignores_if_exists_suffix(self, setup): - class_node = setup.body[3] - with self.assertNoMessages(): - self.checker.visit_classdef(class_node) - self.checker.visit_functiondef(function_node) - - def test_ignores_from_prefix(self, setup): - class_node = setup.body[4] - with self.assertNoMessages(): - self.checker.visit_classdef(class_node) - self.checker.visit_functiondef(function_node) - - def test_ignores_approved_prefix_names(self, setup): - class_node = setup.body[5] - with self.assertNoMessages(): - self.checker.visit_classdef(class_node) - for node in func_nodes: - self.checker.visit_functiondef(node) - - def test_ignores_non_client_with_unapproved_prefix_names(self, setup): - class_node = setup.body[6] - with self.assertNoMessages(): - self.checker.visit_classdef(class_node) - self.checker.visit_functiondef(function_node) + trees = _load_file("client_has_approved_method_name_prefix.py") + return {tree[0].name:tree for tree in trees} - def test_ignores_nested_function_with_unapproved_prefix_names(self, setup): - class_node = setup.body[7] - with self.assertNoMessages(): - self.checker.visit_classdef(class_node) - self.checker.visit_functiondef(function_node) - self.checker.visit_functiondef(nested_function_node) - - def test_finds_unapproved_prefix_names(self, setup): - class_node = setup.body[8] - func_node_a = setup.body[8].body[0] - func_node_b = setup.body[8].body[1] - func_node_c = setup.body[8].body[2] - func_node_d = setup.body[8].body[3] - func_node_e = setup.body[8].body[4] - func_node_f = setup.body[8].body[5] - func_node_g = setup.body[8].body[6] - func_node_h = setup.body[8].body[7] - func_node_i = setup.body[8].body[8] - func_node_j = setup.body[8].body[9] - func_node_k = setup.body[8].body[10] - func_node_l = setup.body[8].body[11] - func_node_m = setup.body[8].body[12] - func_node_n = setup.body[8].body[13] - func_node_o = setup.body[8].body[14] - func_node_p = setup.body[8].body[15] - with self.assertAddsMessages( - pylint.testutils.MessageTest( - msg_id="unapproved-client-method-name-prefix", - line=83, - node=func_node_a, - col_offset=4, - end_line=83, - end_col_offset=27, - ), - pylint.testutils.MessageTest( - msg_id="unapproved-client-method-name-prefix", - line=86, - node=func_node_b, - col_offset=4, - end_line=86, - end_col_offset=22, - ), - pylint.testutils.MessageTest( - msg_id="unapproved-client-method-name-prefix", - line=89, - node=func_node_c, - col_offset=4, - end_line=89, - end_col_offset=18, - ), - pylint.testutils.MessageTest( - msg_id="unapproved-client-method-name-prefix", - line=92, - node=func_node_d, - col_offset=4, - end_line=92, - end_col_offset=20, - ), - pylint.testutils.MessageTest( - msg_id="unapproved-client-method-name-prefix", - line=95, - node=func_node_e, - col_offset=4, - end_line=95, - end_col_offset=17, - ), - pylint.testutils.MessageTest( - msg_id="unapproved-client-method-name-prefix", - line=98, - node=func_node_f, - col_offset=4, - end_line=98, - end_col_offset=29, - ), - pylint.testutils.MessageTest( - msg_id="unapproved-client-method-name-prefix", - line=101, - node=func_node_g, - col_offset=4, - end_line=101, - end_col_offset=18, - ), - pylint.testutils.MessageTest( - msg_id="unapproved-client-method-name-prefix", - line=104, - node=func_node_h, - col_offset=4, - end_line=104, - end_col_offset=19, - ), - pylint.testutils.MessageTest( - msg_id="unapproved-client-method-name-prefix", - line=107, - node=func_node_i, - col_offset=4, - end_line=107, - end_col_offset=21, - ), - pylint.testutils.MessageTest( - msg_id="unapproved-client-method-name-prefix", - line=110, - node=func_node_j, - col_offset=4, - end_line=110, - end_col_offset=18, - ), - pylint.testutils.MessageTest( - msg_id="unapproved-client-method-name-prefix", - line=113, - node=func_node_k, - col_offset=4, - end_line=113, - end_col_offset=21, - ), - pylint.testutils.MessageTest( - msg_id="unapproved-client-method-name-prefix", - line=116, - node=func_node_l, - col_offset=4, - end_line=116, - end_col_offset=22, - ), - pylint.testutils.MessageTest( - msg_id="unapproved-client-method-name-prefix", - line=119, - node=func_node_m, - col_offset=4, - end_line=119, - end_col_offset=21, - ), - pylint.testutils.MessageTest( - msg_id="unapproved-client-method-name-prefix", - line=122, - node=func_node_n, - col_offset=4, - end_line=122, - end_col_offset=18, - ), - pylint.testutils.MessageTest( - msg_id="unapproved-client-method-name-prefix", - line=125, - node=func_node_o, - col_offset=4, - end_line=125, - end_col_offset=21, - ), + @pytest.fixture(scope="class") + def modules(self): + mods = { + "public":astroid.nodes.Module(name="azure.service.subservice.operations"), + "private":astroid.nodes.Module(name="azure.mgmt._generated.operations"), + } + return mods + + def test_ignores_constructor(self, setup, modules): + mod = modules["public"] + cls, func = setup.get("ConstrClient") + with self.assertNoMessages(): + self.checker.visit_module(mod) + self.checker.visit_classdef(cls) + self.checker.visit_functiondef(func) + self.checker.leave_classdef(cls) + + def test_ignores_private_method(self, setup, modules): + mod = modules["public"] + cls, func = setup.get("PrivClient") + with self.assertNoMessages(): + self.checker.visit_module(mod) + self.checker.visit_classdef(cls) + self.checker.visit_functiondef(func) + self.checker.leave_classdef(cls) + + def test_ignores_if_exists_suffix(self, setup, modules): + mod = modules["public"] + cls, func = setup.get("ExistsClient") + with self.assertNoMessages(): + self.checker.visit_module(mod) + self.checker.visit_classdef(cls) + self.checker.visit_functiondef(func) + self.checker.leave_classdef(cls) + + def test_ignores_approved_prefix_names(self, setup, modules): + mod = modules["public"] + cls, *funcs = setup.get("ApprovedClient") + with self.assertNoMessages(): + self.checker.visit_module(mod) + self.checker.visit_classdef(cls) + for func in funcs: + self.checker.visit_functiondef(func) + self.checker.leave_classdef(cls) + + def test_ignores_non_client_with_unapproved_prefix_names(self, setup, modules): + mod = modules["public"] + cls, func = setup.get("SomethingElse") + with self.assertNoMessages(): + self.checker.visit_module(mod) + self.checker.visit_classdef(cls) + self.checker.visit_functiondef(func) + self.checker.leave_classdef(cls) + + def test_ignores_nested_function_with_unapproved_prefix_names(self, setup, modules): + mod = modules["public"] + cls, func, nested = setup.get("NestedClient") + with self.assertNoMessages(): + self.checker.visit_module(mod) + self.checker.visit_classdef(cls) + self.checker.visit_functiondef(func) + self.checker.visit_functiondef(nested) + self.checker.leave_classdef(cls) + + def test_finds_unapproved_prefix_names(self, setup, modules): + mod = modules["public"] + cls, *funcs = setup.get("UnapprovedClient") + msgs = [ pylint.testutils.MessageTest( msg_id="unapproved-client-method-name-prefix", - line=128, - node=func_node_p, - col_offset=4, - end_line=128, - end_col_offset=21, - ), - ): - self.checker.visit_classdef(class_node) - nodes = [ - func_node_a, - func_node_b, - func_node_c, - func_node_d, - func_node_e, - func_node_f, - func_node_g, - func_node_h, - func_node_i, - func_node_j, - func_node_k, - func_node_l, - func_node_m, - func_node_n, - func_node_o, - func_node_p, - ] - for node in nodes: - self.checker.visit_functiondef(node) - - def test_ignores_property(self): - class_node, property_node = astroid.extract_node( - """ - class SomeClient(): #@ - @property - def thing(self): #@ - pass - """ - ) - - with self.assertNoMessages(): - self.checker.visit_classdef(class_node) - self.checker.visit_functiondef(property_node) + line=func.position.lineno, + node=func, + col_offset=func.position.col_offset, + end_line=func.position.end_lineno, + end_col_offset=func.position.end_col_offset, + ) for func in funcs + ] + with self.assertAddsMessages(*msgs): + self.checker.visit_module(mod) + self.checker.visit_classdef(cls) + for func in funcs: + self.checker.visit_functiondef(func) + self.checker.leave_classdef(cls) + + def test_ignores_property(self, setup, modules): + mod = modules["public"] + cls, func = setup.get("PropClient") + with self.assertNoMessages(): + self.checker.visit_module(mod) + self.checker.visit_classdef(cls) + self.checker.visit_functiondef(func) + self.checker.leave_classdef(cls) + + def test_ignores_private_client(self, setup, modules): + mod = modules["public"] + cls, func = setup.get("_PrivateClient") + with self.assertNoMessages(): + self.checker.visit_module(mod) + self.checker.visit_classdef(cls) + self.checker.visit_functiondef(func) + self.checker.leave_classdef(cls) + + def test_ignores_private_module(self, setup, modules): + mod = modules["private"] + cls, func = setup.get("PrivateModuleClient") + with self.assertNoMessages(): + self.checker.visit_module(mod) + self.checker.visit_classdef(cls) + self.checker.visit_functiondef(func) + self.checker.leave_classdef(cls) def test_guidelines_link_active(self): url = "https://azure.github.io/azure-sdk/python_design.html#service-operations" From a6f341ad4d0628881c5195922358715255e5fbdd Mon Sep 17 00:00:00 2001 From: Joshua Bishop <13187637+MJoshuaB@users.noreply.github.com> Date: Wed, 2 Oct 2024 18:56:51 +1300 Subject: [PATCH 28/31] remove reports --- .../pylintreport.txt | 745 ------------------ .../reportcounts.md | 8 - 2 files changed, 753 deletions(-) delete mode 100644 tools/pylint-extensions/azure-pylint-guidelines-checker/pylintreport.txt delete mode 100644 tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylintreport.txt b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylintreport.txt deleted file mode 100644 index 03213b3c62d..00000000000 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylintreport.txt +++ /dev/null @@ -1,745 +0,0 @@ -************* Module azure.cognitiveservices.formrecognizer.form_recognizer_client -sdk\cognitiveservices\azure-cognitiveservices-formrecognizer\azure\cognitiveservices\formrecognizer\form_recognizer_client.py:75:4: C5000: train_custom_model azure.cognitiveservices.formrecognizer.form_recognizer_client (unapproved-client-method-name-prefix) -************* Module azure.cognitiveservices.language.textanalytics.text_analytics_client -sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:76:4: C5000: detect_language azure.cognitiveservices.language.textanalytics.text_analytics_client (unapproved-client-method-name-prefix) -sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:150:4: C5000: entities azure.cognitiveservices.language.textanalytics.text_analytics_client (unapproved-client-method-name-prefix) -sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:226:4: C5000: key_phrases azure.cognitiveservices.language.textanalytics.text_analytics_client (unapproved-client-method-name-prefix) -sdk\cognitiveservices\azure-cognitiveservices-language-textanalytics\azure\cognitiveservices\language\textanalytics\text_analytics_client.py:302:4: C5000: sentiment azure.cognitiveservices.language.textanalytics.text_analytics_client (unapproved-client-method-name-prefix) -************* Module azure.cognitiveservices.personalizer.personalizer_client -sdk\cognitiveservices\azure-cognitiveservices-personalizer\azure\cognitiveservices\personalizer\personalizer_client.py:80:4: C5000: rank azure.cognitiveservices.personalizer.personalizer_client (unapproved-client-method-name-prefix) - -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 8.95/10, +1.04) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.97/10, +0.03) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.53/10, +0.47) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - ------------------------------------- -Your code has been rated at 10.00/10 - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - ------------------------------------- -Your code has been rated at 10.00/10 - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.29/10, +0.71) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - ------------------------------------- -Your code has been rated at 10.00/10 - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - ------------------------------------- -Your code has been rated at 10.00/10 - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.29/10, +0.71) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - ------------------------------------- -Your code has been rated at 10.00/10 - - ------------------------------------- -Your code has been rated at 10.00/10 - - ------------------------------------- -Your code has been rated at 10.00/10 - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - -------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - - --------------------------------------------------------------------- -Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) - diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md b/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md deleted file mode 100644 index 92e73cbf690..00000000000 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/reportcounts.md +++ /dev/null @@ -1,8 +0,0 @@ -| Method | Namespace | -|---|---| -| train_custom_model | azure.cognitiveservices.formrecognizer.form_recognizer_client | -| detect_language | azure.cognitiveservices.language.textanalytics.text_analytics_client | -| entities | azure.cognitiveservices.language.textanalytics.text_analytics_client | -| key_phrases | azure.cognitiveservices.language.textanalytics.text_analytics_client | -| sentiment | azure.cognitiveservices.language.textanalytics.text_analytics_client | -| rank | azure.cognitiveservices.personalizer.personalizer_client | From 5947f31bdc1bcc6bb578697ce199daf54c6cd374 Mon Sep 17 00:00:00 2001 From: Joshua Bishop <13187637+MJoshuaB@users.noreply.github.com> Date: Wed, 2 Oct 2024 19:00:06 +1300 Subject: [PATCH 29/31] remove commented code --- .../pylint_guidelines_checker.py | 91 ------------------- 1 file changed, 91 deletions(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index e909a4a4438..dc7adb14205 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -152,88 +152,6 @@ def visit_functiondef(self, node): pass -# class ClientHasApprovedMethodNamePrefix(BaseChecker): -# name = "client-approved-method-name-prefix" -# priority = -1 -# msgs = { -# "C4720": ( -# "Client is not using an approved method name prefix. See details:" -# " https://azure.github.io/azure-sdk/python_design.html#service-operations", -# "unapproved-client-method-name-prefix", -# "All clients should use the preferred verbs for method names.", -# ) -# } -# options = ( -# ( -# "ignore-unapproved-client-method-name-prefix", -# { -# "default": False, -# "type": "yn", -# "metavar": "", -# "help": "Allow clients to not use preferred method name prefixes", -# }, -# ), -# ) - -# ignore_clients = [ -# "PipelineClient", -# "AsyncPipelineClient", -# "ARMPipelineClient", -# "AsyncARMPipelineClient", -# ] - -# def __init__(self, linter=None): -# super(ClientHasApprovedMethodNamePrefix, self).__init__(linter) - -# def visit_classdef(self, node): -# """Visits every class in file and checks if it is a client. If it is a client, checks -# that approved method name prefixes are present. - -# :param node: class node -# :type node: ast.ClassDef -# :return: None -# """ -# try: -# if node.name.endswith("Client") and node.name not in self.ignore_clients: -# client_methods = [ -# child for child in node.get_children() if child.is_function -# ] - -# approved_prefixes = [ -# "get", -# "list", -# "create", -# "upsert", -# "set", -# "update", -# "replace", -# "append", -# "add", -# "delete", -# "remove", -# "begin", -# ] -# for idx, method in enumerate(client_methods): -# if ( -# method.name.startswith("__") -# or "_exists" in method.name -# or method.name.startswith("_") -# or method.name.startswith("from") -# ): -# continue -# prefix = method.name.split("_")[0] -# if prefix.lower() not in approved_prefixes: -# self.add_message( -# msgid="unapproved-client-method-name-prefix", -# node=client_methods[idx], -# confidence=None, -# ) -# except AttributeError: -# logger.debug( -# "Pylint custom checker failed to check if client has approved method name prefix." -# ) -# pass - class ClientHasApprovedMethodNamePrefix(BaseChecker): name = "client-approved-method-name-prefix" priority = -1 @@ -288,14 +206,6 @@ def __init__(self, linter=None): super(ClientHasApprovedMethodNamePrefix, self).__init__(linter) self.process_class = None self.namespace = None - - # def _is_property(self, node): - # if not node.decorators: - # return False - # for decorator in node.decorators.nodes: - # if isinstance(decorator, astroid.nodes.Name) and decorator.name == "property": - # return True - # return False def _check_decorators(self, node): if not node.decorators: @@ -322,7 +232,6 @@ def visit_functiondef(self, node): self.process_class is None, # not in a client class node.name.startswith("_"), # private method node.name.endswith("_exists"), # special case - # node.name.startswith("from"), # special case self._check_decorators(node), # property node.parent != self.process_class, # nested method )): From 65e431f621c918def2f80eb9557779a3ce56a599 Mon Sep 17 00:00:00 2001 From: Joshua Bishop <13187637+MJoshuaB@users.noreply.github.com> Date: Wed, 2 Oct 2024 19:10:49 +1300 Subject: [PATCH 30/31] add checker to README --- .../azure-pylint-guidelines-checker/README.md | 6 ++++-- .../pylint_guidelines_checker.py | 8 ++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/README.md b/tools/pylint-extensions/azure-pylint-guidelines-checker/README.md index eaead87d81b..d20349ffa98 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/README.md +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/README.md @@ -95,7 +95,9 @@ In the case of a false positive, use the disable command to remove the pylint er | no-typing-import-in-type-check | Do not import typing under TYPE_CHECKING. | pylint:disable=no-typing-import-in-type-check | No Link. | | do-not-log-raised-errors | Do not log errors at `error` or `warning` level when error is raised in an exception block. | pylint:disable=do-not-log-raised-errors | No Link. | | do-not-use-legacy-typing | Do not use legacy (<Python 3.8) type hinting comments | pylint:disable=do-not-use-legacy-typing | No Link. -| do-not-import-asyncio | Do not import asyncio directly. | pylint:disable=do-not-import-asyncio | No Link. || TODO | custom linter check for invalid use of @overload #3229 | | | +| do-not-import-asyncio | Do not import asyncio directly. | pylint:disable=do-not-import-asyncio | No Link. | +| TODO | custom linter check for invalid use of @overload #3229 | | | | TODO | Custom Linter check for Exception Logging #3227 | | | -| TODO | Address Commented out Pylint Custom Plugin Checkers #3228 | | | +| unapproved-client-method-name-prefix | Clients should use preferred verbs for method names | pylint:disable=unapproved-client-method-name-prefix | [link](https://azure.github.io/azure-sdk/python_design.html#naming) | | TODO | Add a check for connection_verify hardcoded settings #35355 | | | +| TODO | Address Commented out Pylint Custom Plugin Checkers #3228 | | | \ No newline at end of file diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index dc7adb14205..309aedda48a 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -191,11 +191,11 @@ class ClientHasApprovedMethodNamePrefix(BaseChecker): "clear", "subscribe", "send", - "query", - "analyze", # common verbs + "query", # common verbs + "analyze", "train", - "detect", - "from", # future proofing + "detect", # future proofing + "from", # special case ] ignored_decorators = [ From 8cdce20d0c8af73f0b4d1d3ded7a6602297e81f8 Mon Sep 17 00:00:00 2001 From: 16234397 <16234397@massey.ac.nz> Date: Sat, 5 Oct 2024 14:38:21 +1300 Subject: [PATCH 31/31] Tidy Up --- .../azure-pylint-guidelines-checker/README.md | 1 - .../pylint_guidelines_checker.py | 16 ---------------- .../tests/test_pylint_custom_plugins.py | 3 --- 3 files changed, 20 deletions(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/README.md b/tools/pylint-extensions/azure-pylint-guidelines-checker/README.md index aa533f6d6ad..2078996a9d9 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/README.md +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/README.md @@ -97,7 +97,6 @@ In the case of a false positive, use the disable command to remove the pylint er | do-not-log-raised-errors | Do not log errors at `error` or `warning` level when error is raised in an exception block. | pylint:disable=do-not-log-raised-errors | No Link. | | do-not-use-legacy-typing | Do not use legacy (<Python 3.8) type hinting comments | pylint:disable=do-not-use-legacy-typing | No Link. | do-not-import-asyncio | Do not import asyncio directly. | pylint:disable=do-not-import-asyncio | No Link. | -| TODO | custom linter check for invalid use of @overload #3229 | | | | TODO | Custom Linter check for Exception Logging #3227 | | | | TODO | Address Commented out Pylint Custom Plugin Checkers #3228 | | | | do-not-hardcode-connection-verify | Do not hardcode a boolean value to connection_verify | pylint:disable=do-not-hardcode-connection-verify | No LInk. | diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index 8f99af263ab..cd5effa2979 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -2803,12 +2803,6 @@ def visit_import(self, node): ) except: pass -# [Pylint] custom linter check for invalid use of @overload #3229 -# [Pylint] Custom Linter check for Exception Logging #3227 -# [Pylint] Address Commented out Pylint Custom Plugin Checkers #3228 -# [Pylint] Add a check for connection_verify hardcoded settings #35355 -# [Pylint] Refactor test suite for custom pylint checkers to use files instead of docstrings #3233 -# [Pylint] Investigate pylint rule around missing dependency #3231 class InvalidUseOfOverload(BaseChecker): @@ -2938,8 +2932,6 @@ def visit_import(self, node): ) - -# [Pylint] custom linter check for invalid use of @overload #3229 # [Pylint] Custom Linter check for Exception Logging #3227 # [Pylint] Address Commented out Pylint Custom Plugin Checkers #3228 @@ -3019,11 +3011,6 @@ def visit_annassign(self, node): pass - -# [Pylint] Refactor test suite for custom pylint checkers to use files instead of docstrings #3233 -# [Pylint] Investigate pylint rule around missing dependency #3231 - - # if a linter is registered in this function then it will be checked with pylint def register(linter): linter.register_checker(ClientsDoNotUseStaticMethods(linter)) @@ -3060,12 +3047,9 @@ def register(linter): linter.register_checker(InvalidUseOfOverload(linter)) linter.register_checker(DoNotUseLegacyTyping(linter)) linter.register_checker(DoNotLogErrorsEndUpRaising(linter)) - # [Pylint] custom linter check for invalid use of @overload #3229 # [Pylint] Custom Linter check for Exception Logging #3227 # [Pylint] Address Commented out Pylint Custom Plugin Checkers #3228 linter.register_checker(DoNotHardcodeConnectionVerify(linter)) - # [Pylint] Refactor test suite for custom pylint checkers to use files instead of docstrings #3233 - # [Pylint] Investigate pylint rule around missing dependency #3231 # disabled by default, use pylint --enable=check-docstrings if you want to use it linter.register_checker(CheckDocstringParameters(linter)) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py index 8c6bf9a0eff..77eb48f1f47 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py @@ -3694,7 +3694,6 @@ def function(x): #@ with self.assertNoMessages(): self.checker.visit_functiondef(fdef) -# [Pylint] custom linter check for invalid use of @overload #3229 # [Pylint] Custom Linter check for Exception Logging #3227 # [Pylint] Address Commented out Pylint Custom Plugin Checkers #3228 @@ -3821,7 +3820,5 @@ def test_invalid_connection_verify(self): self.checker.visit_annassign(AnnotatedAssignment) -# [Pylint] Add a check for connection_verify hardcoded settings #35355 -# [Pylint] Refactor test suite for custom pylint checkers to use files instead of docstrings #3233