File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22
3- from typing import Optional
3+ from typing import List , Optional
44from typing_extensions import Literal
55
66from .target import Target
77from .._models import BaseModel
88from .analysis import Analysis
9+ from .recommendation import Recommendation
910from .recommendation_result import RecommendationResult
1011
1112__all__ = ["ConfigRegistryResponse" ]
@@ -23,6 +24,12 @@ class ConfigRegistryResponse(BaseModel):
2324
2425 target : Target
2526
27+ working_configurations : List [Recommendation ]
28+ """
29+ Working configurations for the target, ordered with the recommended
30+ configuration first.
31+ """
32+
2633 guidance : Optional [str ] = None
2734 """Short advisory markdown to facilitate navigating this target.
2835
Original file line number Diff line number Diff line change 11# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22
3- from typing import Optional
3+ from typing import List , Optional
44
55from .target import Target
66from .._models import BaseModel
7+ from .recommendation import Recommendation
78from .recommendation_result import RecommendationResult
89
910__all__ = ["LookupResponse" ]
@@ -15,6 +16,12 @@ class LookupResponse(BaseModel):
1516
1617 target : Target
1718
19+ working_configurations : List [Recommendation ]
20+ """
21+ Working configurations for the target, ordered with the recommended
22+ configuration first.
23+ """
24+
1825 guidance : Optional [str ] = None
1926 """Short advisory markdown to facilitate navigating this target.
2027
You can’t perform that action at this time.
0 commit comments