agilicus 1.244.3__py3-none-any.whl → 1.245.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2364,6 +2364,7 @@ class RulesApi(object):
2364
2364
  org_id (str): Organisation Unique identifier. [optional]
2365
2365
  label (str): Filters based on whether or not the items in the collection have the given label. . [optional]
2366
2366
  get_rulesets (bool): When querying a bundle, return all rulesets associated with bundle . [optional]
2367
+ standalone_ruleset_bundles_etag (str): The entity tag (etag) for a list of bundles. If the returned etag matches the requested etag, then no data is returned, along with status code 304. . [optional]
2367
2368
  _return_http_data_only (bool): response data without head status
2368
2369
  code and headers. Default is True.
2369
2370
  _preload_content (bool): if False, the urllib3.HTTPResponse object
@@ -2430,6 +2431,7 @@ class RulesApi(object):
2430
2431
  'org_id',
2431
2432
  'label',
2432
2433
  'get_rulesets',
2434
+ 'standalone_ruleset_bundles_etag',
2433
2435
  ],
2434
2436
  'required': [],
2435
2437
  'nullable': [
@@ -2463,6 +2465,8 @@ class RulesApi(object):
2463
2465
  (str,),
2464
2466
  'get_rulesets':
2465
2467
  (bool,),
2468
+ 'standalone_ruleset_bundles_etag':
2469
+ (str,),
2466
2470
  },
2467
2471
  'attribute_map': {
2468
2472
  'limit': 'limit',
@@ -2471,6 +2475,7 @@ class RulesApi(object):
2471
2475
  'org_id': 'org_id',
2472
2476
  'label': 'label',
2473
2477
  'get_rulesets': 'get_rulesets',
2478
+ 'standalone_ruleset_bundles_etag': 'standalone_ruleset_bundles_etag',
2474
2479
  },
2475
2480
  'location_map': {
2476
2481
  'limit': 'query',
@@ -2479,6 +2484,7 @@ class RulesApi(object):
2479
2484
  'org_id': 'query',
2480
2485
  'label': 'query',
2481
2486
  'get_rulesets': 'query',
2487
+ 'standalone_ruleset_bundles_etag': 'query',
2482
2488
  },
2483
2489
  'collection_format_map': {
2484
2490
  }
@@ -77,7 +77,7 @@ class ApiClient(object):
77
77
  self.default_headers[header_name] = header_value
78
78
  self.cookie = cookie
79
79
  # Set default User-Agent.
80
- self.user_agent = 'OpenAPI-Generator/1.244.3/python'
80
+ self.user_agent = 'OpenAPI-Generator/1.245.0/python'
81
81
 
82
82
  def __enter__(self):
83
83
  return self
@@ -387,7 +387,7 @@ class Configuration(object):
387
387
  "OS: {env}\n"\
388
388
  "Python Version: {pyversion}\n"\
389
389
  "Version of the API: 2024.03.19\n"\
390
- "SDK Package Version: 1.244.3".\
390
+ "SDK Package Version: 1.245.0".\
391
391
  format(env=sys.platform, pyversion=sys.version)
392
392
 
393
393
  def get_host_settings(self):
@@ -7,6 +7,8 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **standalone_ruleset_bundles** | [**[StandaloneRulesetBundle]**](StandaloneRulesetBundle.md) | List of StandaloneRulesetBundle |
9
9
  **limit** | **int** | Limit on the number of rows in the response |
10
+ **page_at_id** | **str** | The id to request in the pagination query to get the next page. | [optional]
11
+ **standalone_ruleset_bundles_etag** | **str** | The entity tag (etag) associated with standalone_ruleset_bundles. | [optional]
10
12
  **any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
11
13
 
12
14
  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -2101,12 +2101,13 @@ with agilicus_api.ApiClient(configuration) as api_client:
2101
2101
  org_id = "1234" # str | Organisation Unique identifier (optional)
2102
2102
  label = "label-1" # str | Filters based on whether or not the items in the collection have the given label. (optional)
2103
2103
  get_rulesets = True # bool | When querying a bundle, return all rulesets associated with bundle (optional)
2104
+ standalone_ruleset_bundles_etag = "asdflkjasf" # str | The entity tag (etag) for a list of bundles. If the returned etag matches the requested etag, then no data is returned, along with status code 304. (optional)
2104
2105
 
2105
2106
  # example passing only required values which don't have defaults set
2106
2107
  # and optional values
2107
2108
  try:
2108
2109
  # List all standalone ruleset bundles
2109
- api_response = api_instance.list_standalone_ruleset_bundles(limit=limit, name=name, page_at_id=page_at_id, org_id=org_id, label=label, get_rulesets=get_rulesets)
2110
+ api_response = api_instance.list_standalone_ruleset_bundles(limit=limit, name=name, page_at_id=page_at_id, org_id=org_id, label=label, get_rulesets=get_rulesets, standalone_ruleset_bundles_etag=standalone_ruleset_bundles_etag)
2110
2111
  pprint(api_response)
2111
2112
  except agilicus_api.ApiException as e:
2112
2113
  print("Exception when calling RulesApi->list_standalone_ruleset_bundles: %s\n" % e)
@@ -2123,6 +2124,7 @@ Name | Type | Description | Notes
2123
2124
  **org_id** | **str**| Organisation Unique identifier | [optional]
2124
2125
  **label** | **str**| Filters based on whether or not the items in the collection have the given label. | [optional]
2125
2126
  **get_rulesets** | **bool**| When querying a bundle, return all rulesets associated with bundle | [optional]
2127
+ **standalone_ruleset_bundles_etag** | **str**| The entity tag (etag) for a list of bundles. If the returned etag matches the requested etag, then no data is returned, along with status code 304. | [optional]
2126
2128
 
2127
2129
  ### Return type
2128
2130
 
@@ -2142,6 +2144,7 @@ Name | Type | Description | Notes
2142
2144
  | Status code | Description | Response headers |
2143
2145
  |-------------|-------------|------------------|
2144
2146
  **200** | Query succeeded | - |
2147
+ **304** | Response not modified | - |
2145
2148
 
2146
2149
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
2147
2150
 
@@ -81,6 +81,22 @@ class ListStandaloneRulesetBundlesResponse(ModelNormal):
81
81
  def limit(self, new_value):
82
82
  self.limit = new_value
83
83
 
84
+ @property
85
+ def page_at_id(self):
86
+ return self.get("page_at_id")
87
+
88
+ @page_at_id.setter
89
+ def page_at_id(self, new_value):
90
+ self.page_at_id = new_value
91
+
92
+ @property
93
+ def standalone_ruleset_bundles_etag(self):
94
+ return self.get("standalone_ruleset_bundles_etag")
95
+
96
+ @standalone_ruleset_bundles_etag.setter
97
+ def standalone_ruleset_bundles_etag(self, new_value):
98
+ self.standalone_ruleset_bundles_etag = new_value
99
+
84
100
  @cached_property
85
101
  def additional_properties_type():
86
102
  """
@@ -106,6 +122,8 @@ class ListStandaloneRulesetBundlesResponse(ModelNormal):
106
122
  return {
107
123
  'standalone_ruleset_bundles': ([StandaloneRulesetBundle],), # noqa: E501
108
124
  'limit': (int,), # noqa: E501
125
+ 'page_at_id': (str,), # noqa: E501
126
+ 'standalone_ruleset_bundles_etag': (str,), # noqa: E501
109
127
  }
110
128
 
111
129
  @cached_property
@@ -117,6 +135,8 @@ class ListStandaloneRulesetBundlesResponse(ModelNormal):
117
135
  attribute_map = {
118
136
  'standalone_ruleset_bundles': 'standalone_ruleset_bundles', # noqa: E501
119
137
  'limit': 'limit', # noqa: E501
138
+ 'page_at_id': 'page_at_id', # noqa: E501
139
+ 'standalone_ruleset_bundles_etag': 'standalone_ruleset_bundles_etag', # noqa: E501
120
140
  }
121
141
 
122
142
  read_only_vars = {
@@ -164,6 +184,8 @@ class ListStandaloneRulesetBundlesResponse(ModelNormal):
164
184
  Animal class but this time we won't travel
165
185
  through its discriminator because we passed in
166
186
  _visited_composed_classes = (Animal,)
187
+ page_at_id (str): The id to request in the pagination query to get the next page.. [optional] # noqa: E501
188
+ standalone_ruleset_bundles_etag (str): The entity tag (etag) associated with standalone_ruleset_bundles.. [optional] # noqa: E501
167
189
  """
168
190
 
169
191
  _check_type = kwargs.pop('_check_type', True)
@@ -254,6 +276,8 @@ class ListStandaloneRulesetBundlesResponse(ModelNormal):
254
276
  Animal class but this time we won't travel
255
277
  through its discriminator because we passed in
256
278
  _visited_composed_classes = (Animal,)
279
+ page_at_id (str): The id to request in the pagination query to get the next page.. [optional] # noqa: E501
280
+ standalone_ruleset_bundles_etag (str): The entity tag (etag) associated with standalone_ruleset_bundles.. [optional] # noqa: E501
257
281
  """
258
282
 
259
283
  _check_type = kwargs.pop('_check_type', True)
@@ -4,7 +4,7 @@ Agilicus is API-first. Modern software is controlled by other software, is open,
4
4
  The `agilicus_api` package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
5
5
 
6
6
  - API version: 2024.03.19
7
- - Package version: 1.244.3
7
+ - Package version: 1.245.0
8
8
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
9
9
  For more information, please visit [https://www.agilicus.com/api](https://www.agilicus.com/api)
10
10
 
agilicus/rules/rules.py CHANGED
@@ -630,7 +630,7 @@ def list_bundles(ctx, **kwargs):
630
630
  kwargs = strip_none(kwargs)
631
631
  return apiclient.rules_api.list_standalone_ruleset_bundles(
632
632
  **kwargs,
633
- ).standalone_ruleset_bundles
633
+ )
634
634
 
635
635
 
636
636
  def get_bundle(ctx, bundle_id, **kwargs):
@@ -1,6 +1,7 @@
1
1
  import click
2
2
  import click_extension
3
3
 
4
+ from .. import context
4
5
  from . import rules
5
6
  from ..output.table import output_entry
6
7
 
@@ -268,10 +269,17 @@ def cli_command_delete_rulesets_bundle(ctx, bundle_id, **kwargs):
268
269
 
269
270
  @click.command(name="list-standalone-ruleset-bundles")
270
271
  @click.option("--org-id", default=None)
272
+ @click.option("--page-at-id", default=None)
273
+ @click.option("--get-rulesets", is_flag=True, default=None)
274
+ @click.option("--standalone-ruleset-bundles-etag", default=None)
275
+ @click.option("--limit", default=None, type=int)
271
276
  @click.pass_context
272
277
  def cli_command_list_rulesets_bundle(ctx, **kwargs):
273
278
  results = rules.list_bundles(ctx, **kwargs)
274
- print(rules.format_bundles(ctx, results))
279
+ if context.output_console(ctx):
280
+ print(rules.format_bundles(ctx, results.standalone_ruleset_bundles))
281
+ return
282
+ output_entry(ctx, results.to_dict())
275
283
 
276
284
 
277
285
  @click.command(name="get-standalone-ruleset-bundle")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: agilicus
3
- Version: 1.244.3
3
+ Version: 1.245.0
4
4
  Summary: Agilicus SDK
5
5
  Home-page: https://www.agilicus.com/
6
6
  License: MIT
@@ -57,7 +57,7 @@ agilicus/agilicus_api/api/regions_api.py,sha256=4R1gOgDBn0V7hMJj5MygnZ-yRx7rm_gw
57
57
  agilicus/agilicus_api/api/regions_api_mock.py,sha256=cBnoAURuccE36TePbYeOVgJzfJmoFu7EWpxvr6alryg,1596
58
58
  agilicus/agilicus_api/api/resources_api.py,sha256=hfIe0qmk8pAIuU-in6U7MnHoQqEjRSppplGnU5KlWOA,44716
59
59
  agilicus/agilicus_api/api/resources_api_mock.py,sha256=06pIiRJdLjnDWKVQrTnIamp5pF1X-G4VPz_PzdUG5N0,2070
60
- agilicus/agilicus_api/api/rules_api.py,sha256=PkeY-wt6XHJGCsCG2wdkROXrjJPdrCPNDF3R0yl-ifY,130378
60
+ agilicus/agilicus_api/api/rules_api.py,sha256=QZTsG-y2Y6dVnJ4aTO54wAuXWZ08CR3O16BcXJzXXtM,130910
61
61
  agilicus/agilicus_api/api/rules_api_mock.py,sha256=BJcQzQC4A6ZcWh4lq3KqcTGvNO9X6qerWEH0z2i0vMs,7475
62
62
  agilicus/agilicus_api/api/tokens_api.py,sha256=151rL7BLBz5mmdNIIAjiMCivDhpSLrN8Qp8oBhh0waw,173574
63
63
  agilicus/agilicus_api/api/tokens_api_mock.py,sha256=S7kDLZpQ8wCVM0OMlFn8OGk4GcQxrDHThaT3DkUfY-4,9714
@@ -67,9 +67,9 @@ agilicus/agilicus_api/api/users_api.py,sha256=zLwPF_gsWfKZeSmDL3dnJOcp66DlQolvwq
67
67
  agilicus/agilicus_api/api/users_api_mock.py,sha256=wA_xiqL3Pz3KjljKlsmf5NveLZS1FpbaKJHBp7QvarY,15411
68
68
  agilicus/agilicus_api/api/whoami_api.py,sha256=Xnn2HjfIbO7FoNQZ_q3UbOTuC6YoPNw1IiSLqYDPu2g,7941
69
69
  agilicus/agilicus_api/api/whoami_api_mock.py,sha256=rlvZoWnMCqORMZBg7SOv6d3xp52kELdh6wXcCaIZ93w,346
70
- agilicus/agilicus_api/api_client.py,sha256=7E-MzDg8kFezht9AQ_Np_rDXtgYI9vM4T7tB3lGu7K4,38845
70
+ agilicus/agilicus_api/api_client.py,sha256=dbcb-TsCvbyxB-5lyRAnijSs0C70SCblnokHc9qut30,38845
71
71
  agilicus/agilicus_api/apis/__init__.py,sha256=m_hg6OJsEsMp6mZ1mn9OlaTflLjrU3Jc-jvYD9gi_PA,2092
72
- agilicus/agilicus_api/configuration.py,sha256=m5aQybYAl17CVB9rIJMvrmb4xV-gaSHaoqVvqDju_Jg,18447
72
+ agilicus/agilicus_api/configuration.py,sha256=-dMQT6vSYm-xNwvcT2pPcFNicBLYUCDfMkXtc7v1SPs,18447
73
73
  agilicus/agilicus_api/docs/APIKey.md,sha256=4cKuz4_l9HcEDnUrLwYbEnn9C2WoDayrjfrY1Ixgaf4,1747
74
74
  agilicus/agilicus_api/docs/APIKeyIntrospect.md,sha256=nJ-zkuFm3JMbWFDYYN_vYyQk1snGBtBvIxtCQxamhAU,1019
75
75
  agilicus/agilicus_api/docs/APIKeyIntrospectAuthorizationInfo.md,sha256=7RApOOLjvWQs5sw2jb25g7i3Kta1BiEY-s8VRXfppH8,725
@@ -487,7 +487,7 @@ agilicus/agilicus_api/docs/ListServiceForwardersResponse.md,sha256=uGIZRJcW1WZAo
487
487
  agilicus/agilicus_api/docs/ListSessionsResponse.md,sha256=lW7z2xBTrcWDg0se_DVGxEznjRaZZm76gL2GeQtJRDk,1433
488
488
  agilicus/agilicus_api/docs/ListStandaloneRuleTreesResponse.md,sha256=GipviHaK1UZWwHG47yK6sadh0ekpa2sPK0Z2gF-MeLg,839
489
489
  agilicus/agilicus_api/docs/ListStandaloneRulesResponse.md,sha256=aXZ1t1x8GfYbuBbo32fyyLvshtLt6rT7JBHzeX4Vfls,814
490
- agilicus/agilicus_api/docs/ListStandaloneRulesetBundlesResponse.md,sha256=3x-Cj_Rq2NPHDsr_1suhODYyWecdXeAMkamLapWjmNM,732
490
+ agilicus/agilicus_api/docs/ListStandaloneRulesetBundlesResponse.md,sha256=3mUkELKJf7QRpOD7KUlISrVcBchF_XcL2KvRyZUZcmo,965
491
491
  agilicus/agilicus_api/docs/ListStandaloneRulesetLabelsResponse.md,sha256=lRg1-qPUUp4S27iPd6BYcDg2fElg6lWjAk2hIlkackM,726
492
492
  agilicus/agilicus_api/docs/ListStandaloneRulesetsResponse.md,sha256=1qC7omQdlz4v6wyrQvzS0ti-nm64_HEUaRBiT0haCZg,836
493
493
  agilicus/agilicus_api/docs/ListTOTPEnrollmentResponse.md,sha256=gCMl-Wti-OhTn5lLyzMt6xoRx0I5TVryKEZ8-iIbZek,681
@@ -694,7 +694,7 @@ agilicus/agilicus_api/docs/RuleSetComponent.md,sha256=xk2mA069dsggG4uRSKRAYpv45-
694
694
  agilicus/agilicus_api/docs/RuleSetNode.md,sha256=rEktF4HJeKwH52-TkKMwgkOAH1GsyLuRL-gcnfIrc3o,883
695
695
  agilicus/agilicus_api/docs/RuleSpec.md,sha256=cmKB_ksUIuW6okLMS5g3tdGiJwrMtM4-8sxfJXgoOLM,968
696
696
  agilicus/agilicus_api/docs/RuleV2.md,sha256=WKcttrVbzFUtZqqIrS0olNtVPMwytfk6ZxJkP-93cY8,943
697
- agilicus/agilicus_api/docs/RulesApi.md,sha256=OTngB76WjeB2D6mZD6SQ3Txx_tBtqwPvgyuwmQPDbzA,135577
697
+ agilicus/agilicus_api/docs/RulesApi.md,sha256=75PZo5R9JHEarjVes_WzZmRgsJA4b1-EjKEYLDSUVM4,136111
698
698
  agilicus/agilicus_api/docs/RulesConfig.md,sha256=1InJwa3YSCzYVwLBObH-27ysP0I2J0qgeU86cPvv6W4,1952
699
699
  agilicus/agilicus_api/docs/RuntimeStatus.md,sha256=TEypz-SIg1oy2YZcuYyMjzTW10OJi87-BBTyBQMuxyw,3687
700
700
  agilicus/agilicus_api/docs/SSHResource.md,sha256=ZFTmdXWOfrXr71MEbS8_uoXql3vMr8qrEp6jS-OPXxI,990
@@ -1256,7 +1256,7 @@ agilicus/agilicus_api/model/list_sessions_response.py,sha256=5VAFqQYH9zmEWaMBpG7
1256
1256
  agilicus/agilicus_api/model/list_ssh_resources_response.py,sha256=Xtb3u-yXDUA57O7QsRiJ67K_lKt8BnXbJcqTEhsXtGg,14637
1257
1257
  agilicus/agilicus_api/model/list_standalone_rule_trees_response.py,sha256=xe6kiMhi6Z5SH8amrp9zsqwn7fmxBNOCDxVFR1-Lqxk,14912
1258
1258
  agilicus/agilicus_api/model/list_standalone_rules_response.py,sha256=S_SPj7Gec-HZeC8o8dK3eRf85vfaTWDGqhJ5Ss8aUw4,14783
1259
- agilicus/agilicus_api/model/list_standalone_ruleset_bundles_response.py,sha256=1xjHONPhsvQKMNXEsk-DTla9uz6JyXRBfol2Ipusz3c,14500
1259
+ agilicus/agilicus_api/model/list_standalone_ruleset_bundles_response.py,sha256=0dCc1YMxPXRYKA0vw24JD2uY08-118vJvafOTE1jKIE,15738
1260
1260
  agilicus/agilicus_api/model/list_standalone_ruleset_labels_response.py,sha256=z--SLdBXFPvMXZJfe0rMP3ZVoLB7Ti4TudrQLbtM-wU,14472
1261
1261
  agilicus/agilicus_api/model/list_standalone_rulesets_response.py,sha256=IGcC4dpoEpCfpoSRf1L116VIguowbcAkfkvsBDiNSeo,14867
1262
1262
  agilicus/agilicus_api/model/list_tokens_response.py,sha256=Q80Srg2aA5Pab8W7PZPkE84W4DR5pQUcLzuuHKpufi4,13918
@@ -2398,7 +2398,7 @@ agilicus/agilicus_api/test/test_x509_root_certificate.py,sha256=AqH9tZ825V2RHtNc
2398
2398
  agilicus/agilicus_api/test/test_x509_root_certificate_spec.py,sha256=8PCPuXVkHrLCXqnaOJm64WGuSnpqIL0zj1AVQSBgf9U,2832
2399
2399
  agilicus/agilicus_api/test/test_x509_root_certificate_status.py,sha256=s8Ups8bxho__nuXR86gwXAtBlAjrmZqA1-YkJwmmCEg,2846
2400
2400
  agilicus/agilicus_api/test/test_xss_settings.py,sha256=kj4qWEH4k8kQWZ4Zb-S6mEvK1e18dN7kPowJ5uyqFE4,2746
2401
- agilicus/agilicus_api_README.md,sha256=t8CeEepwUB1S0al4VJjjpY4DUTLa8b9R9ZVWmy2DK60,154557
2401
+ agilicus/agilicus_api_README.md,sha256=fp493wyGmiT1roLLrA3GjHCZF9eMuNbvWXadT4fzI1I,154557
2402
2402
  agilicus/aliases.ini,sha256=MxqiVo2f2xdUDVF1YDkNW36AIqN8hrYjlTVfraEUZXY,455
2403
2403
  agilicus/amq.py,sha256=yxi-YTbJPVl10s78Hlr1dmrQR63iaSIoROGVILzFPmE,1775
2404
2404
  agilicus/apps.py,sha256=8k_tGraPUVKJURksZwKR8eNGW-4CSPv54FYcApQ3Ly8,50857
@@ -2468,8 +2468,8 @@ agilicus/regions.py,sha256=21SzUJ9_hC8DiWLSLJ-vtSb1tWLhlcPXH9JhmXD_ypU,3343
2468
2468
  agilicus/resource_helpers.py,sha256=fyfqAxjfnIth1KlHNALlLtYYXIZzlWEJmSZNLdj2JV0,380
2469
2469
  agilicus/resources.py,sha256=nlH4cezzfaiq4M7BK7iwXFUYF3kG9_Su6sFEEXX6I2M,10163
2470
2470
  agilicus/response.py,sha256=tI2-dAJwhBuuDplSsouuMmCmKHSwR_Mx71af8tgsuYo,468
2471
- agilicus/rules/rules.py,sha256=6axCkTlOa9_5e9rQNjo99VScKjUZwbrhbHQwbuhmMks,20019
2472
- agilicus/rules/rules_main.py,sha256=bfad7Nm4L9YFG071ZwjHhGyXCULFBGNPtu0_islAGDc,10386
2471
+ agilicus/rules/rules.py,sha256=pES0ElnxjYtJwRc_QvmaUpR-Cz4cwww-1dbcTe6LWJc,19992
2472
+ agilicus/rules/rules_main.py,sha256=hHyeY0WzFT2l1AQlA1C1PJQLuaEAgRhSbIUALHIyaa8,10750
2473
2473
  agilicus/scopes.py,sha256=OgPUksJSOSaJ3XcHPP8WJQ3e_p8B9wVmRXr-oZDfZP0,1344
2474
2474
  agilicus/service_configuration.py,sha256=WlsvTKA_bkle1PthJK0S96lpPK7GNr-BWWp8a_-MgtM,490
2475
2475
  agilicus/service_token.py,sha256=YDVFeBe9Yv0qYvfUenwnpGHuj2x1J06YUe5A_C8L6L4,7162
@@ -2484,8 +2484,8 @@ agilicus/trusted_certs/trusted_certs_main.py,sha256=6dHHWXvNIcUa_nA9ptigL4Vibe4n
2484
2484
  agilicus/users.py,sha256=cBqZwqNz_9lcEJuFL5YTUFpbN56kL0-maBlM29KWWrQ,38728
2485
2485
  agilicus/version.py,sha256=G9OFdL1v_4dLDfk6I6taDNypM5bbO-JHAwilsu9LYgg,23
2486
2486
  agilicus/whoami.py,sha256=kqghtWMgZOd2rhKmfguDwCTm6A3gNS8Kj-S2IBxBtl0,206
2487
- agilicus-1.244.3.dist-info/LICENSE.txt,sha256=Zq4tqiCroC2CVrBB_PWjapRdvpae23nljdiaSkOzUho,1061
2488
- agilicus-1.244.3.dist-info/METADATA,sha256=z55fzhbI-5AjMGQ2hV8d36FYbHqWsyQME6kr9j6nyUk,3822
2489
- agilicus-1.244.3.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
2490
- agilicus-1.244.3.dist-info/entry_points.txt,sha256=a66hGozzLkHu0IewFzIMbSAhMTNTddUaA2T3_16Gb_s,51
2491
- agilicus-1.244.3.dist-info/RECORD,,
2487
+ agilicus-1.245.0.dist-info/LICENSE.txt,sha256=Zq4tqiCroC2CVrBB_PWjapRdvpae23nljdiaSkOzUho,1061
2488
+ agilicus-1.245.0.dist-info/METADATA,sha256=sS-sA0q1EHaBJ_5mHwJ80HkkCZrw3wC2c4WYhbAGXck,3822
2489
+ agilicus-1.245.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
2490
+ agilicus-1.245.0.dist-info/entry_points.txt,sha256=a66hGozzLkHu0IewFzIMbSAhMTNTddUaA2T3_16Gb_s,51
2491
+ agilicus-1.245.0.dist-info/RECORD,,