Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
name="ctm-python-client",
packages=find_packages(where="src"),
package_dir={"": "src"},
version="2.3.4",
version="2.3.5",
description="Python Workflows for Control-M",
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down
386 changes: 193 additions & 193 deletions src/aapi/integration_factory/connection_profiles.py

Large diffs are not rendered by default.

470 changes: 235 additions & 235 deletions src/aapi/integration_factory/jobs.py

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/aapi/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -2152,7 +2152,7 @@ class CompleteIn(AAPIObject):
_type: str = attrs.field(init=False, default='Job:SLAManagement', metadata={
'_aapi_repr_': 'Type', '_type_aapi_': 'Job:SLAManagement'})
object_name: str = attrs.field(metadata={'_aapi_name_': True})
run_as_dummy: str = attrs.field(kw_only=True, default=None, metadata={
run_as_dummy: bool = attrs.field(kw_only=True, default=None, metadata={
'_aapi_repr_': 'RunAsDummy'})
service_name: str = attrs.field(metadata={'_aapi_repr_': 'ServiceName'})
service_priority: str = attrs.field(kw_only=True, default=None, metadata={
Expand Down
2 changes: 1 addition & 1 deletion src/ctm_python_client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '2.3.4'
__version__ = '2.3.5'
__author__ = 'BMC Software'
2 changes: 1 addition & 1 deletion src/ctm_python_client/core/comm.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def wrap(*args, **kwargs):
except Exception as e:
errors = [err.get('message', '') + ' ' + err.get('item', '')
for err in json.loads(e.body)['errors']]
return AAPIClientResponse(False, None, errors)
raise RuntimeError(f"AAPI request failed: {', '.join(errors)}")

return wrap

Expand Down
2 changes: 1 addition & 1 deletion src/ctm_python_client/ext/autogen.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

__all__ = ['generate_ai_plugins_classes']

IF_PLUGINS = ['ODF0420241', 'ABY122023', 'ASQ032024', 'OVM012024', 'ADB112022', 'GLU062021', 'ZSY062022', 'ZML022023', 'ATR122022', 'ADP122022', 'ASF012023', 'AAT052023', 'JEN022024', 'GDR052023', 'TER102023', 'TDM052022', 'SFI122022', 'ODS052024', 'ALM012024', 'GDQ112023', 'GDF032022', 'GCC052024', 'ICS032022', 'ABA092022', 'COM032023', 'ODI032024', 'DBX032022', 'DBT042023', 'ZDX112021', 'ACF082023', 'GDM082023', 'ZRM082023', 'AQS012023', 'GDP042022', 'ZLA112022', 'UIP072021', 'ADO112023', 'AAR072022', 'AEM072022', 'AHD062022', 'ANS032024', 'ASM0220223', 'SOP072023', 'ABK042023', 'MFW022023', 'RST062023', 'ZBA042022', 'SNF092022', 'AMM082023', 'AEC082022', 'GBA032023', 'MBI042022', 'GDU102023', 'TDO042024', 'GWF092023', 'MFL022023', 'KBN062023', 'ADY122023', 'NFI042024', 'CMR022024', 'TAB072023', 'GBQ102022', 'ACS042023', 'BOO032022', 'QLC092022', 'ZVM062022', 'BAK092023', 'ZFN032022', 'ADF062021', 'GVM062022', 'GFU012023']
IF_PLUGINS = ['ODF0420241', 'ADO112023', 'GWF092023', 'AMM082023', 'ZML022023', 'ABA092022', 'ASM0220223', 'GBA032023', 'COM032023', 'ZDX112021', 'NFI042024', 'TAB072023', 'SNF092022', 'GDF032022', 'DBT042023', 'OVM012024', 'AHD062022', 'MFL022023', 'GBQ102022', 'ZFN032022', 'ZBA042022', 'UIP072021', 'JEN022024', 'MFW022023', 'ZVM062022', 'ALM012024', 'TDO042024', 'BAK092023', 'ODI032024', 'ADP122022', 'TDM052022', 'AEC082022', 'AAT052023', 'ODS052024', 'MBI042022', 'GDP042022', 'ANS032024', 'CMR022024', 'ASF012023', 'ADF062021', 'TER102023', 'AQS012023', 'GDQ112023', 'GLU062021', 'ZSY062022', 'BOO032022', 'ACS042023', 'ACF082023', 'GFU012023', 'SFI122022', 'GDU102023', 'ADY122023', 'ZLA112022', 'ATR122022', 'GDR052023', 'QLC092022', 'GCC052024', 'AAR072022', 'ABK042023', 'DBX032022', 'KBN062023', 'ICS032022', 'GVM062022', 'ZRM082023', 'RST062023', 'ABY122023', 'AEM072022', 'SOP072023', 'ADB112022', 'GDM082023', 'ASQ032024']


imports_str = '''from aapi import *
Expand Down
2 changes: 1 addition & 1 deletion tests/test_sanity.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ def test_version_author():
import ctm_python_client

assert ctm_python_client.__author__ == 'BMC Software'
assert ctm_python_client.__version__ == '2.3.4'
assert ctm_python_client.__version__ == '2.3.5'