@@ -459,10 +459,10 @@ <h1 class="title">Module <code>client</code></h1>
459
459
headers=headers)
460
460
461
461
def update_auto_access(self,
462
- id: str = None,
463
- next_id: str = None,
464
- payload: dict = None,
465
- headers: dict = None) -> httpx.Response:
462
+ id: str = None,
463
+ next_id: str = None,
464
+ payload: dict = None,
465
+ headers: dict = None) -> httpx.Response:
466
466
''' Moves an existing auto access data structure, specified by id,
467
467
before another one, specified by next_id.
468
468
@@ -1240,7 +1240,57 @@ <h1 class="title">Module <code>client</code></h1>
1240
1240
1241
1241
1242
1242
class ConfigurationApi34(ConfigurationApiInterface):
1243
- ''' Configuration API client in version 3.4 class. '''</ code > </ pre >
1243
+ ''' Configuration API client in version 3.4 class. '''
1244
+
1245
+ # license/organization ID lookup
1246
+
1247
+ def get_organization_id(self,
1248
+ license_id: int = None,
1249
+ params: dict = None,
1250
+ headers: dict = None) -> httpx.Response:
1251
+ ''' Returns organization ID by given license ID.
1252
+
1253
+ Args:
1254
+ license_id (int): License ID to get organization ID for.
1255
+ params (dict): Custom params to be used in request's query string.
1256
+ It overrides all other parameters provided for the method.
1257
+ headers (dict): Custom headers to be used with session headers.
1258
+ They will be merged with session-level values that are set,
1259
+ however, these method-level parameters will not be persisted across requests.
1260
+
1261
+ Returns:
1262
+ httpx.Response: The Response object from `httpx` library,
1263
+ which contains a server’s response to an HTTP request.
1264
+ '''
1265
+ if params is None:
1266
+ params = prepare_payload(locals())
1267
+ return self.session.get(f'{self.api_url}/get_organization_id',
1268
+ params=params,
1269
+ headers=headers)
1270
+
1271
+ def get_license_id(self,
1272
+ organization_id: str = None,
1273
+ params: dict = None,
1274
+ headers: dict = None) -> httpx.Response:
1275
+ ''' Returns license ID by given organization ID.
1276
+
1277
+ Args:
1278
+ organization_id (str): Organization ID to get license ID for.
1279
+ params (dict): Custom params to be used in request's query string.
1280
+ It overrides all other parameters provided for the method.
1281
+ headers (dict): Custom headers to be used with session headers.
1282
+ They will be merged with session-level values that are set,
1283
+ however, these method-level parameters will not be persisted across requests.
1284
+
1285
+ Returns:
1286
+ httpx.Response: The Response object from `httpx` library,
1287
+ which contains a server’s response to an HTTP request.
1288
+ '''
1289
+ if params is None:
1290
+ params = prepare_payload(locals())
1291
+ return self.session.get(f'{self.api_url}/get_license_id',
1292
+ params=params,
1293
+ headers=headers)</ code > </ pre >
1244
1294
</ details >
1245
1295
</ section >
1246
1296
< section >
@@ -1439,12 +1489,169 @@ <h3>Inherited members</h3>
1439
1489
< span > Expand source code</ span >
1440
1490
</ summary >
1441
1491
< pre > < code class ="python "> class ConfigurationApi34(ConfigurationApiInterface):
1442
- ''' Configuration API client in version 3.4 class. '''</ code > </ pre >
1492
+ ''' Configuration API client in version 3.4 class. '''
1493
+
1494
+ # license/organization ID lookup
1495
+
1496
+ def get_organization_id(self,
1497
+ license_id: int = None,
1498
+ params: dict = None,
1499
+ headers: dict = None) -> httpx.Response:
1500
+ ''' Returns organization ID by given license ID.
1501
+
1502
+ Args:
1503
+ license_id (int): License ID to get organization ID for.
1504
+ params (dict): Custom params to be used in request's query string.
1505
+ It overrides all other parameters provided for the method.
1506
+ headers (dict): Custom headers to be used with session headers.
1507
+ They will be merged with session-level values that are set,
1508
+ however, these method-level parameters will not be persisted across requests.
1509
+
1510
+ Returns:
1511
+ httpx.Response: The Response object from `httpx` library,
1512
+ which contains a server’s response to an HTTP request.
1513
+ '''
1514
+ if params is None:
1515
+ params = prepare_payload(locals())
1516
+ return self.session.get(f'{self.api_url}/get_organization_id',
1517
+ params=params,
1518
+ headers=headers)
1519
+
1520
+ def get_license_id(self,
1521
+ organization_id: str = None,
1522
+ params: dict = None,
1523
+ headers: dict = None) -> httpx.Response:
1524
+ ''' Returns license ID by given organization ID.
1525
+
1526
+ Args:
1527
+ organization_id (str): Organization ID to get license ID for.
1528
+ params (dict): Custom params to be used in request's query string.
1529
+ It overrides all other parameters provided for the method.
1530
+ headers (dict): Custom headers to be used with session headers.
1531
+ They will be merged with session-level values that are set,
1532
+ however, these method-level parameters will not be persisted across requests.
1533
+
1534
+ Returns:
1535
+ httpx.Response: The Response object from `httpx` library,
1536
+ which contains a server’s response to an HTTP request.
1537
+ '''
1538
+ if params is None:
1539
+ params = prepare_payload(locals())
1540
+ return self.session.get(f'{self.api_url}/get_license_id',
1541
+ params=params,
1542
+ headers=headers)</ code > </ pre >
1443
1543
</ details >
1444
1544
< h3 > Ancestors</ h3 >
1445
1545
< ul class ="hlist ">
1446
1546
< li > < a title ="client.ConfigurationApiInterface " href ="#client.ConfigurationApiInterface "> ConfigurationApiInterface</ a > </ li >
1447
1547
</ ul >
1548
+ < h3 > Methods</ h3 >
1549
+ < dl >
1550
+ < dt id ="client.ConfigurationApi34.get_license_id "> < code class ="name flex ">
1551
+ < span > def < span class ="ident "> get_license_id</ span > </ span > (< span > self, organization_id: str = None, params: dict = None, headers: dict = None) ‑> httpx.Response</ span >
1552
+ </ code > </ dt >
1553
+ < dd >
1554
+ < div class ="desc "> < p > Returns license ID by given organization ID.</ p >
1555
+ < h2 id ="args "> Args</ h2 >
1556
+ < dl >
1557
+ < dt > < strong > < code > organization_id</ code > </ strong > : < code > str</ code > </ dt >
1558
+ < dd > Organization ID to get license ID for.</ dd >
1559
+ < dt > < strong > < code > params</ code > </ strong > : < code > dict</ code > </ dt >
1560
+ < dd > Custom params to be used in request's query string.
1561
+ It overrides all other parameters provided for the method.</ dd >
1562
+ < dt > < strong > < code > headers</ code > </ strong > : < code > dict</ code > </ dt >
1563
+ < dd > Custom headers to be used with session headers.
1564
+ They will be merged with session-level values that are set,
1565
+ however, these method-level parameters will not be persisted across requests.</ dd >
1566
+ </ dl >
1567
+ < h2 id ="returns "> Returns</ h2 >
1568
+ < dl >
1569
+ < dt > < code > httpx.Response</ code > </ dt >
1570
+ < dd > The Response object from < code > httpx</ code > library,
1571
+ which contains a server’s response to an HTTP request.</ dd >
1572
+ </ dl > </ div >
1573
+ < details class ="source ">
1574
+ < summary >
1575
+ < span > Expand source code</ span >
1576
+ </ summary >
1577
+ < pre > < code class ="python "> def get_license_id(self,
1578
+ organization_id: str = None,
1579
+ params: dict = None,
1580
+ headers: dict = None) -> httpx.Response:
1581
+ ''' Returns license ID by given organization ID.
1582
+
1583
+ Args:
1584
+ organization_id (str): Organization ID to get license ID for.
1585
+ params (dict): Custom params to be used in request's query string.
1586
+ It overrides all other parameters provided for the method.
1587
+ headers (dict): Custom headers to be used with session headers.
1588
+ They will be merged with session-level values that are set,
1589
+ however, these method-level parameters will not be persisted across requests.
1590
+
1591
+ Returns:
1592
+ httpx.Response: The Response object from `httpx` library,
1593
+ which contains a server’s response to an HTTP request.
1594
+ '''
1595
+ if params is None:
1596
+ params = prepare_payload(locals())
1597
+ return self.session.get(f'{self.api_url}/get_license_id',
1598
+ params=params,
1599
+ headers=headers)</ code > </ pre >
1600
+ </ details >
1601
+ </ dd >
1602
+ < dt id ="client.ConfigurationApi34.get_organization_id "> < code class ="name flex ">
1603
+ < span > def < span class ="ident "> get_organization_id</ span > </ span > (< span > self, license_id: int = None, params: dict = None, headers: dict = None) ‑> httpx.Response</ span >
1604
+ </ code > </ dt >
1605
+ < dd >
1606
+ < div class ="desc "> < p > Returns organization ID by given license ID.</ p >
1607
+ < h2 id ="args "> Args</ h2 >
1608
+ < dl >
1609
+ < dt > < strong > < code > license_id</ code > </ strong > : < code > int</ code > </ dt >
1610
+ < dd > License ID to get organization ID for.</ dd >
1611
+ < dt > < strong > < code > params</ code > </ strong > : < code > dict</ code > </ dt >
1612
+ < dd > Custom params to be used in request's query string.
1613
+ It overrides all other parameters provided for the method.</ dd >
1614
+ < dt > < strong > < code > headers</ code > </ strong > : < code > dict</ code > </ dt >
1615
+ < dd > Custom headers to be used with session headers.
1616
+ They will be merged with session-level values that are set,
1617
+ however, these method-level parameters will not be persisted across requests.</ dd >
1618
+ </ dl >
1619
+ < h2 id ="returns "> Returns</ h2 >
1620
+ < dl >
1621
+ < dt > < code > httpx.Response</ code > </ dt >
1622
+ < dd > The Response object from < code > httpx</ code > library,
1623
+ which contains a server’s response to an HTTP request.</ dd >
1624
+ </ dl > </ div >
1625
+ < details class ="source ">
1626
+ < summary >
1627
+ < span > Expand source code</ span >
1628
+ </ summary >
1629
+ < pre > < code class ="python "> def get_organization_id(self,
1630
+ license_id: int = None,
1631
+ params: dict = None,
1632
+ headers: dict = None) -> httpx.Response:
1633
+ ''' Returns organization ID by given license ID.
1634
+
1635
+ Args:
1636
+ license_id (int): License ID to get organization ID for.
1637
+ params (dict): Custom params to be used in request's query string.
1638
+ It overrides all other parameters provided for the method.
1639
+ headers (dict): Custom headers to be used with session headers.
1640
+ They will be merged with session-level values that are set,
1641
+ however, these method-level parameters will not be persisted across requests.
1642
+
1643
+ Returns:
1644
+ httpx.Response: The Response object from `httpx` library,
1645
+ which contains a server’s response to an HTTP request.
1646
+ '''
1647
+ if params is None:
1648
+ params = prepare_payload(locals())
1649
+ return self.session.get(f'{self.api_url}/get_organization_id',
1650
+ params=params,
1651
+ headers=headers)</ code > </ pre >
1652
+ </ details >
1653
+ </ dd >
1654
+ </ dl >
1448
1655
< h3 > Inherited members</ h3 >
1449
1656
< ul class ="hlist ">
1450
1657
< li > < code > < b > < a title ="client.ConfigurationApiInterface " href ="#client.ConfigurationApiInterface "> ConfigurationApiInterface</ a > </ b > </ code > :
@@ -1892,10 +2099,10 @@ <h3>Inherited members</h3>
1892
2099
headers=headers)
1893
2100
1894
2101
def update_auto_access(self,
1895
- id: str = None,
1896
- next_id: str = None,
1897
- payload: dict = None,
1898
- headers: dict = None) -> httpx.Response:
2102
+ id: str = None,
2103
+ next_id: str = None,
2104
+ payload: dict = None,
2105
+ headers: dict = None) -> httpx.Response:
1899
2106
''' Moves an existing auto access data structure, specified by id,
1900
2107
before another one, specified by next_id.
1901
2108
@@ -4840,10 +5047,10 @@ <h2 id="returns">Returns</h2>
4840
5047
< span > Expand source code</ span >
4841
5048
</ summary >
4842
5049
< pre > < code class ="python "> def update_auto_access(self,
4843
- id: str = None,
4844
- next_id: str = None,
4845
- payload: dict = None,
4846
- headers: dict = None) -> httpx.Response:
5050
+ id: str = None,
5051
+ next_id: str = None,
5052
+ payload: dict = None,
5053
+ headers: dict = None) -> httpx.Response:
4847
5054
''' Moves an existing auto access data structure, specified by id,
4848
5055
before another one, specified by next_id.
4849
5056
@@ -5147,6 +5354,10 @@ <h4><code><a title="client.ConfigurationApi33" href="#client.ConfigurationApi33"
5147
5354
</ li >
5148
5355
< li >
5149
5356
< h4 > < code > < a title ="client.ConfigurationApi34 " href ="#client.ConfigurationApi34 "> ConfigurationApi34</ a > </ code > </ h4 >
5357
+ < ul class ="">
5358
+ < li > < code > < a title ="client.ConfigurationApi34.get_license_id " href ="#client.ConfigurationApi34.get_license_id "> get_license_id</ a > </ code > </ li >
5359
+ < li > < code > < a title ="client.ConfigurationApi34.get_organization_id " href ="#client.ConfigurationApi34.get_organization_id "> get_organization_id</ a > </ code > </ li >
5360
+ </ ul >
5150
5361
</ li >
5151
5362
< li >
5152
5363
< h4 > < code > < a title ="client.ConfigurationApiInterface " href ="#client.ConfigurationApiInterface "> ConfigurationApiInterface</ a > </ code > </ h4 >
0 commit comments