Skip to content

Commit 3a37c05

Browse files
committed
Pull request #41: ISGAPPSEC2 35734 licensingapi.get counted feature stats always returns none wrapper
Merge in ISGAPPSEC/cyperf-api-wrapper from bugfix/ISGAPPSEC2-35734-licensingapi.get_counted_feature_stats-always-returns-none to main Squashed commit of the following: commit 908e267837666c2fbc5ec595219d304869ce1e9c Author: iustmitu <iustin.mitu@keysight.com> Date: Fri Sep 26 15:31:03 2025 +0300 removed async-operation-response commit 074dd5261338c53d344ac594f6709585e2563527 Author: iustmitu <iustin.mitu@keysight.com> Date: Fri Sep 26 14:56:28 2025 +0300 removed AsyncOperationResponse commit 0d649c03ee7a398af77a5c7430eb1d0ff9f99dbe Author: iustmitu <iustin.mitu@keysight.com> Date: Thu Sep 25 14:12:34 2025 +0300 regenerated wrapper with mdw's AsyncContext and eula
1 parent fa791a5 commit 3a37c05

18 files changed

Lines changed: 143 additions & 355 deletions

.openapi-generator/FILES

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,6 @@ docs/AppsecConfig.md
397397
docs/ArchiveInfo.md
398398
docs/ArrayV2ElementMetadata.md
399399
docs/AsyncContext.md
400-
docs/AsyncOperationResponse.md
401400
docs/Attack.md
402401
docs/AttackAction.md
403402
docs/AttackObjectivesAndTimeline.md

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,6 @@ Class | Method | HTTP request | Description
416416
- [ArchiveInfo](docs/ArchiveInfo.md)
417417
- [ArrayV2ElementMetadata](docs/ArrayV2ElementMetadata.md)
418418
- [AsyncContext](docs/AsyncContext.md)
419-
- [AsyncOperationResponse](docs/AsyncOperationResponse.md)
420419
- [Attack](docs/Attack.md)
421420
- [AttackAction](docs/AttackAction.md)
422421
- [AttackMetadata](docs/AttackMetadata.md)

cyperf/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@
9393
from cyperf.models.archive_info import ArchiveInfo
9494
from cyperf.models.array_v2_element_metadata import ArrayV2ElementMetadata
9595
from cyperf.models.async_context import AsyncContext
96-
from cyperf.models.async_operation_response import AsyncOperationResponse
9796
from cyperf.models.attack import Attack
9897
from cyperf.models.attack_action import AttackAction
9998
from cyperf.models.attack_metadata import AttackMetadata

cyperf/api/diagnostics_api.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from typing import List, Optional, Union
2222
from typing_extensions import Annotated
2323
from cyperf.models.archive_info import ArchiveInfo
24-
from cyperf.models.async_operation_response import AsyncOperationResponse
24+
from cyperf.models.async_context import AsyncContext
2525
from cyperf.models.diagnostic_component import DiagnosticComponent
2626
from cyperf.models.diagnostic_component_context import DiagnosticComponentContext
2727

@@ -1026,7 +1026,7 @@ def api_v2_diagnostics_operations_export_id_get(
10261026
_content_type: Optional[StrictStr] = None,
10271027
_headers: Optional[Dict[StrictStr, Any]] = None,
10281028
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1029-
) -> AsyncOperationResponse:
1029+
) -> AsyncContext:
10301030
"""api_v2_diagnostics_operations_export_id_get
10311031
10321032
Get the state of an ongoing operation.
@@ -1064,7 +1064,7 @@ def api_v2_diagnostics_operations_export_id_get(
10641064
)
10651065

10661066
_response_types_map: Dict[str, Optional[str]] = {
1067-
'200': "AsyncOperationResponse",
1067+
'200': "AsyncContext",
10681068
'500': None,
10691069
}
10701070
return self.api_client.call_api(
@@ -1090,7 +1090,7 @@ def api_v2_diagnostics_operations_export_id_get_with_http_info(
10901090
_content_type: Optional[StrictStr] = None,
10911091
_headers: Optional[Dict[StrictStr, Any]] = None,
10921092
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1093-
) -> ApiResponse[AsyncOperationResponse]:
1093+
) -> ApiResponse[AsyncContext]:
10941094
"""api_v2_diagnostics_operations_export_id_get
10951095
10961096
Get the state of an ongoing operation.
@@ -1128,7 +1128,7 @@ def api_v2_diagnostics_operations_export_id_get_with_http_info(
11281128
)
11291129

11301130
_response_types_map: Dict[str, Optional[str]] = {
1131-
'200': "AsyncOperationResponse",
1131+
'200': "AsyncContext",
11321132
'500': None,
11331133
}
11341134
return self.api_client.call_api(
@@ -1192,7 +1192,7 @@ def api_v2_diagnostics_operations_export_id_get_without_preload_content(
11921192
)
11931193

11941194
_response_types_map: Dict[str, Optional[str]] = {
1195-
'200': "AsyncOperationResponse",
1195+
'200': "AsyncContext",
11961196
'500': None,
11971197
}
11981198
return self.api_client.call_api(
@@ -1536,7 +1536,7 @@ def api_v2_diagnostics_operations_export_post(
15361536
_content_type: Optional[StrictStr] = None,
15371537
_headers: Optional[Dict[StrictStr, Any]] = None,
15381538
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1539-
) -> AsyncOperationResponse:
1539+
) -> AsyncContext:
15401540
"""api_v2_diagnostics_operations_export_post
15411541
15421542
Start the diagnostic export operation.
@@ -1574,7 +1574,7 @@ def api_v2_diagnostics_operations_export_post(
15741574
)
15751575

15761576
_response_types_map: Dict[str, Optional[str]] = {
1577-
'202': "AsyncOperationResponse",
1577+
'202': "AsyncContext",
15781578
'500': None,
15791579
}
15801580
return self.api_client.call_api(
@@ -1600,7 +1600,7 @@ def api_v2_diagnostics_operations_export_post_with_http_info(
16001600
_content_type: Optional[StrictStr] = None,
16011601
_headers: Optional[Dict[StrictStr, Any]] = None,
16021602
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1603-
) -> ApiResponse[AsyncOperationResponse]:
1603+
) -> ApiResponse[AsyncContext]:
16041604
"""api_v2_diagnostics_operations_export_post
16051605
16061606
Start the diagnostic export operation.
@@ -1638,7 +1638,7 @@ def api_v2_diagnostics_operations_export_post_with_http_info(
16381638
)
16391639

16401640
_response_types_map: Dict[str, Optional[str]] = {
1641-
'202': "AsyncOperationResponse",
1641+
'202': "AsyncContext",
16421642
'500': None,
16431643
}
16441644
return self.api_client.call_api(
@@ -1702,7 +1702,7 @@ def api_v2_diagnostics_operations_export_post_without_preload_content(
17021702
)
17031703

17041704
_response_types_map: Dict[str, Optional[str]] = {
1705-
'202': "AsyncOperationResponse",
1705+
'202': "AsyncContext",
17061706
'500': None,
17071707
}
17081708
return self.api_client.call_api(

0 commit comments

Comments
 (0)