forked from ni/nisystemlink-clients-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_product_client.py
186 lines (148 loc) · 6.29 KB
/
_product_client.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
"""Implementation of Product Client"""
from typing import List, Optional
from nisystemlink.clients import core
from nisystemlink.clients.core._uplink._base_client import BaseClient
from nisystemlink.clients.core._uplink._methods import delete, get, post
from uplink import Field, Query, retry, returns
from . import models
@retry(
when=retry.when.status([408, 429, 502, 503, 504]),
stop=retry.stop.after_attempt(5),
on_exception=retry.CONNECTION_ERROR,
)
class ProductClient(BaseClient):
def __init__(self, configuration: Optional[core.HttpConfiguration] = None):
"""Initialize an instance.
Args:
configuration: Defines the web server to connect to and information about
how to connect. If not provided, the
:class:`HttpConfigurationManager <nisystemlink.clients.core.HttpConfigurationManager>`
is used to obtain the configuration.
Raises:
ApiException: if unable to communicate with the Product Service.
"""
if configuration is None:
configuration = core.HttpConfigurationManager.get_configuration()
super().__init__(configuration, base_path="/nitestmonitor/v2/")
@post("products", args=[Field("products")])
def create_products(
self, products: List[models.CreateProductRequest]
) -> models.CreateProductsPartialSuccess:
"""Creates one or more products and returns errors for failed creations.
Args:
products: A list of products to attempt to create.
Returns: A list of created products, products that failed to create, and errors for
failures.
Raises:
ApiException: if unable to communicate with the ``/nitestmonitor`` service of provided invalid
arguments.
"""
...
@get(
"products",
args=[Query("continuationToken"), Query("take"), Query("returnCount")],
)
def get_products_paged(
self,
continuation_token: Optional[str] = None,
take: Optional[int] = None,
return_count: Optional[bool] = None,
) -> models.PagedProducts:
"""Reads a list of products.
Args:
continuation_token: The token used to paginate results.
take: The number of products to get in this request.
return_count: Whether or not to return the total number of products available.
Returns:
A list of products.
Raises:
ApiException: if unable to communicate with the ``/nitestmonitor`` Service
or provided an invalid argument.
"""
...
@get("products/{id}")
def get_product(self, id: str) -> models.Product:
"""Retrieves a single product by id.
Args:
id (str): Unique ID of a products.
Returns:
The single product matching `id`
Raises:
ApiException: if unable to communicate with the ``/nitestmonitor`` Service
or provided an invalid argument.
"""
...
@post("query-products")
def query_products_paged(
self, query: models.QueryProductsRequest
) -> models.PagedProducts:
"""Queries for products that match the filter.
Args:
query : The query contains a DynamicLINQ query string in addition to other details
about how to filter and return the list of products.
Returns:
A paged list of products with a continuation token to get the next page.
Raises:
ApiException: if unable to communicate with the ``/nitestmonitor`` Service or provided invalid
arguments.
"""
...
@returns.json # type: ignore
@post("query-product-values")
def query_product_values(
self, query: models.QueryProductValuesRequest
) -> List[str]:
"""Queries for products that match the query and returns a list of the requested field.
Args:
query : The query for the fields you want.
Returns:
A list of the values of the field you requested.
Raises:
ApiException: if unable to communicate with the ``/nitestmonitor`` Service or provided
invalid arguments.
"""
...
@post("update-products", args=[Field("products"), Field("replace")])
def update_products(
self, products: List[models.UpdateProductRequest], replace: bool = False
) -> models.CreateProductsPartialSuccess:
"""Updates a list of products with optional field replacement.
Args:
`products`: A list of products to update. Products are matched for update by id.
`replace`: Replace the existing fields instead of merging them. Defaults to `False`.
If this is `True`, then `keywords` and `properties` for the product will be
replaced by what is in the `products` provided in this request.
If this is `False`, then the `keywords` and `properties` in this request will
merge with what is already present in the server resource.
Returns: A list of updates products, products that failed to update, and errors for
failures.
Raises:
ApiException: if unable to communicate with the ``/nitestmonitor`` Service
or provided an invalid argument.
"""
...
@delete("products/{id}")
def delete_product(self, id: str) -> None:
"""Deletes a single product by id.
Args:
id (str): Unique ID of a product.
Raises:
ApiException: if unable to communicate with the ``/nitestmonitor`` Service
or provided an invalid argument.
"""
...
@post("delete-products", args=[Field("ids")])
def delete_products(
self, ids: List[str]
) -> Optional[models.DeleteProductsPartialSuccess]:
"""Deletes multiple products.
Args:
ids (List[str]): List of unique IDs of products.
Returns:
A partial success if any products failed to delete, or None if all
products were deleted successfully.
Raises:
ApiException: if unable to communicate with the ``/nitestmonitor`` Service
or provided an invalid argument.
"""
...