agilicus 1.196.0__py3-none-any.whl → 1.196.1__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -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.196.0/python'
80
+ self.user_agent = 'OpenAPI-Generator/1.196.1/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: 2023.03.30\n"\
390
- "SDK Package Version: 1.196.0".\
390
+ "SDK Package Version: 1.196.1".\
391
391
  format(env=sys.platform, pyversion=sys.version)
392
392
 
393
393
  def get_host_settings(self):
@@ -24,6 +24,10 @@ Name | Type | Description | Notes
24
24
  **token_basic_auth_no_password** | **int** | The number of times a request was made with basic auth and the password was missing. |
25
25
  **token_basic_auth_cached_success** | **int** | The number of times a request was made with basic auth and the successful result was returned from the cache. |
26
26
  **token_basic_auth_cached_failed** | **int** | The number of times a request was made with basic auth and the failed result was returned from the cache. |
27
+ **token_bearer_not_agilicus** | **int** | The number of times a request was made with a bearer token that was determined to not originate from Agilicus. If the bearer token is not from Agilicus, the system will attempt to retreive the token from the cookie if available. |
28
+ **token_from_cookie** | **int** | The number of times a token introspect retrieved the token from the cookie, rather than the authorization bearer. |
29
+ **token_from_bearer** | **int** | The number of times a token introspect retrieved the token from the authorization bearer, rather than from the cookie. |
30
+ **token_from_api_key** | **int** | The number of times a token introspect retrieved the token from an api key via the basic authorization header. |
27
31
  **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]
28
32
 
29
33
  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -116,6 +116,18 @@ class AgentConnectorAuthzStats(ModelNormal):
116
116
  ('token_basic_auth_cached_failed',): {
117
117
  'inclusive_minimum': 0,
118
118
  },
119
+ ('token_bearer_not_agilicus',): {
120
+ 'inclusive_minimum': 0,
121
+ },
122
+ ('token_from_cookie',): {
123
+ 'inclusive_minimum': 0,
124
+ },
125
+ ('token_from_bearer',): {
126
+ 'inclusive_minimum': 0,
127
+ },
128
+ ('token_from_api_key',): {
129
+ 'inclusive_minimum': 0,
130
+ },
119
131
  }
120
132
 
121
133
  @property
@@ -270,6 +282,38 @@ class AgentConnectorAuthzStats(ModelNormal):
270
282
  def token_basic_auth_cached_failed(self, new_value):
271
283
  self.token_basic_auth_cached_failed = new_value
272
284
 
285
+ @property
286
+ def token_bearer_not_agilicus(self):
287
+ return self.get("token_bearer_not_agilicus")
288
+
289
+ @token_bearer_not_agilicus.setter
290
+ def token_bearer_not_agilicus(self, new_value):
291
+ self.token_bearer_not_agilicus = new_value
292
+
293
+ @property
294
+ def token_from_cookie(self):
295
+ return self.get("token_from_cookie")
296
+
297
+ @token_from_cookie.setter
298
+ def token_from_cookie(self, new_value):
299
+ self.token_from_cookie = new_value
300
+
301
+ @property
302
+ def token_from_bearer(self):
303
+ return self.get("token_from_bearer")
304
+
305
+ @token_from_bearer.setter
306
+ def token_from_bearer(self, new_value):
307
+ self.token_from_bearer = new_value
308
+
309
+ @property
310
+ def token_from_api_key(self):
311
+ return self.get("token_from_api_key")
312
+
313
+ @token_from_api_key.setter
314
+ def token_from_api_key(self, new_value):
315
+ self.token_from_api_key = new_value
316
+
273
317
  @cached_property
274
318
  def additional_properties_type():
275
319
  """
@@ -310,6 +354,10 @@ class AgentConnectorAuthzStats(ModelNormal):
310
354
  'token_basic_auth_no_password': (int,), # noqa: E501
311
355
  'token_basic_auth_cached_success': (int,), # noqa: E501
312
356
  'token_basic_auth_cached_failed': (int,), # noqa: E501
357
+ 'token_bearer_not_agilicus': (int,), # noqa: E501
358
+ 'token_from_cookie': (int,), # noqa: E501
359
+ 'token_from_bearer': (int,), # noqa: E501
360
+ 'token_from_api_key': (int,), # noqa: E501
313
361
  }
314
362
 
315
363
  @cached_property
@@ -338,6 +386,10 @@ class AgentConnectorAuthzStats(ModelNormal):
338
386
  'token_basic_auth_no_password': 'token_basic_auth_no_password', # noqa: E501
339
387
  'token_basic_auth_cached_success': 'token_basic_auth_cached_success', # noqa: E501
340
388
  'token_basic_auth_cached_failed': 'token_basic_auth_cached_failed', # noqa: E501
389
+ 'token_bearer_not_agilicus': 'token_bearer_not_agilicus', # noqa: E501
390
+ 'token_from_cookie': 'token_from_cookie', # noqa: E501
391
+ 'token_from_bearer': 'token_from_bearer', # noqa: E501
392
+ 'token_from_api_key': 'token_from_api_key', # noqa: E501
341
393
  }
342
394
 
343
395
  read_only_vars = {
@@ -347,7 +399,7 @@ class AgentConnectorAuthzStats(ModelNormal):
347
399
 
348
400
  @classmethod
349
401
  @convert_js_args_to_python_args
350
- def _from_openapi_data(cls, allowed, allowed_app_handled, denied, token_cached_failed, token_cached_success, token_parse_failed, token_static_token, token_bad_jti, token_lookup_success, token_lookup_notfound, token_lookup_badrequest, token_lookup_4xx_other, token_lookup_error, token_lookup_revoked, token_basic_auth_decode_fail, token_basic_auth_too_long, token_basic_auth_no_password, token_basic_auth_cached_success, token_basic_auth_cached_failed, *args, **kwargs): # noqa: E501
402
+ def _from_openapi_data(cls, allowed, allowed_app_handled, denied, token_cached_failed, token_cached_success, token_parse_failed, token_static_token, token_bad_jti, token_lookup_success, token_lookup_notfound, token_lookup_badrequest, token_lookup_4xx_other, token_lookup_error, token_lookup_revoked, token_basic_auth_decode_fail, token_basic_auth_too_long, token_basic_auth_no_password, token_basic_auth_cached_success, token_basic_auth_cached_failed, token_bearer_not_agilicus, token_from_cookie, token_from_bearer, token_from_api_key, *args, **kwargs): # noqa: E501
351
403
  """AgentConnectorAuthzStats - a model defined in OpenAPI
352
404
 
353
405
  Args:
@@ -370,6 +422,10 @@ class AgentConnectorAuthzStats(ModelNormal):
370
422
  token_basic_auth_no_password (int): The number of times a request was made with basic auth and the password was missing.
371
423
  token_basic_auth_cached_success (int): The number of times a request was made with basic auth and the successful result was returned from the cache.
372
424
  token_basic_auth_cached_failed (int): The number of times a request was made with basic auth and the failed result was returned from the cache.
425
+ token_bearer_not_agilicus (int): The number of times a request was made with a bearer token that was determined to not originate from Agilicus. If the bearer token is not from Agilicus, the system will attempt to retreive the token from the cookie if available.
426
+ token_from_cookie (int): The number of times a token introspect retrieved the token from the cookie, rather than the authorization bearer.
427
+ token_from_bearer (int): The number of times a token introspect retrieved the token from the authorization bearer, rather than from the cookie.
428
+ token_from_api_key (int): The number of times a token introspect retrieved the token from an api key via the basic authorization header.
373
429
 
374
430
  Keyword Args:
375
431
  _check_type (bool): if True, values for parameters in openapi_types
@@ -448,6 +504,10 @@ class AgentConnectorAuthzStats(ModelNormal):
448
504
  self.token_basic_auth_no_password = token_basic_auth_no_password
449
505
  self.token_basic_auth_cached_success = token_basic_auth_cached_success
450
506
  self.token_basic_auth_cached_failed = token_basic_auth_cached_failed
507
+ self.token_bearer_not_agilicus = token_bearer_not_agilicus
508
+ self.token_from_cookie = token_from_cookie
509
+ self.token_from_bearer = token_from_bearer
510
+ self.token_from_api_key = token_from_api_key
451
511
  for var_name, var_value in kwargs.items():
452
512
  if var_name not in self.attribute_map and \
453
513
  self._configuration is not None and \
@@ -471,7 +531,7 @@ class AgentConnectorAuthzStats(ModelNormal):
471
531
  ])
472
532
 
473
533
  @convert_js_args_to_python_args
474
- def __init__(self, allowed, allowed_app_handled, denied, token_cached_failed, token_cached_success, token_parse_failed, token_static_token, token_bad_jti, token_lookup_success, token_lookup_notfound, token_lookup_badrequest, token_lookup_4xx_other, token_lookup_error, token_lookup_revoked, token_basic_auth_decode_fail, token_basic_auth_too_long, token_basic_auth_no_password, token_basic_auth_cached_success, token_basic_auth_cached_failed, *args, **kwargs): # noqa: E501
534
+ def __init__(self, allowed, allowed_app_handled, denied, token_cached_failed, token_cached_success, token_parse_failed, token_static_token, token_bad_jti, token_lookup_success, token_lookup_notfound, token_lookup_badrequest, token_lookup_4xx_other, token_lookup_error, token_lookup_revoked, token_basic_auth_decode_fail, token_basic_auth_too_long, token_basic_auth_no_password, token_basic_auth_cached_success, token_basic_auth_cached_failed, token_bearer_not_agilicus, token_from_cookie, token_from_bearer, token_from_api_key, *args, **kwargs): # noqa: E501
475
535
  """AgentConnectorAuthzStats - a model defined in OpenAPI
476
536
 
477
537
  Args:
@@ -494,6 +554,10 @@ class AgentConnectorAuthzStats(ModelNormal):
494
554
  token_basic_auth_no_password (int): The number of times a request was made with basic auth and the password was missing.
495
555
  token_basic_auth_cached_success (int): The number of times a request was made with basic auth and the successful result was returned from the cache.
496
556
  token_basic_auth_cached_failed (int): The number of times a request was made with basic auth and the failed result was returned from the cache.
557
+ token_bearer_not_agilicus (int): The number of times a request was made with a bearer token that was determined to not originate from Agilicus. If the bearer token is not from Agilicus, the system will attempt to retreive the token from the cookie if available.
558
+ token_from_cookie (int): The number of times a token introspect retrieved the token from the cookie, rather than the authorization bearer.
559
+ token_from_bearer (int): The number of times a token introspect retrieved the token from the authorization bearer, rather than from the cookie.
560
+ token_from_api_key (int): The number of times a token introspect retrieved the token from an api key via the basic authorization header.
497
561
 
498
562
  Keyword Args:
499
563
  _check_type (bool): if True, values for parameters in openapi_types
@@ -570,6 +634,10 @@ class AgentConnectorAuthzStats(ModelNormal):
570
634
  self.token_basic_auth_no_password = token_basic_auth_no_password
571
635
  self.token_basic_auth_cached_success = token_basic_auth_cached_success
572
636
  self.token_basic_auth_cached_failed = token_basic_auth_cached_failed
637
+ self.token_bearer_not_agilicus = token_bearer_not_agilicus
638
+ self.token_from_cookie = token_from_cookie
639
+ self.token_from_bearer = token_from_bearer
640
+ self.token_from_api_key = token_from_api_key
573
641
  for var_name, var_value in kwargs.items():
574
642
  if var_name not in self.attribute_map and \
575
643
  self._configuration is not None and \
@@ -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: 2023.03.30
7
- - Package version: 1.196.0
7
+ - Package version: 1.196.1
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/connectors.py CHANGED
@@ -83,6 +83,19 @@ def get(ctx, connector_id, **kwargs):
83
83
  return apiclient.connectors_api.get_connector(connector_id, **params)
84
84
 
85
85
 
86
+ def get_instance(ctx, connector_id, connector_instance_id, **kwargs):
87
+ token = context.get_token(ctx)
88
+ apiclient = context.get_apiclient(ctx, token)
89
+ org_id = get_org_from_input_or_ctx(ctx, **kwargs)
90
+
91
+ params = kwargs
92
+ params["org_id"] = org_id
93
+ input_helpers.update_if_not_none(params, kwargs)
94
+ return apiclient.connectors_api.get_instance(
95
+ connector_id, connector_instance_id, **params
96
+ )
97
+
98
+
86
99
  def query_agents(ctx, column_format=None, filter_not_has_version=None, **kwargs):
87
100
  token = context.get_token(ctx)
88
101
  apiclient = context.get_apiclient(ctx, token)
@@ -224,7 +237,7 @@ def _get_oper_status_change(record, key):
224
237
  )
225
238
 
226
239
 
227
- def _get_stats(record):
240
+ def _get_stats(record, key=None):
228
241
  status = record.get("status")
229
242
  if not status:
230
243
  return
agilicus/main.py CHANGED
@@ -5060,6 +5060,20 @@ def list_agent_connectors_instances(
5060
5060
  print(table)
5061
5061
 
5062
5062
 
5063
+ @cli.command(name="show-connector-instance")
5064
+ @click.argument("connector-id")
5065
+ @click.argument("connector-instance-id")
5066
+ @click.option("--org-id", default=None)
5067
+ @click.pass_context
5068
+ def show_connector_instance(
5069
+ ctx,
5070
+ *args,
5071
+ **kwargs,
5072
+ ):
5073
+ result = connectors.get_instance(ctx, **kwargs)
5074
+ output_entry(ctx, result.to_dict())
5075
+
5076
+
5063
5077
  @cli.command(name="add-agent-connector")
5064
5078
  @click.argument("name")
5065
5079
  @click.option("--org-id", default=None)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: agilicus
3
- Version: 1.196.0
3
+ Version: 1.196.1
4
4
  Summary: Agilicus SDK
5
5
  Home-page: https://www.agilicus.com/
6
6
  License: MIT
@@ -56,9 +56,9 @@ agilicus/agilicus_api/api/users_api.py,sha256=3qFhbNLVtIHZpmVZ0qz53tK3S7ckyBqn19
56
56
  agilicus/agilicus_api/api/users_api_mock.py,sha256=wA_xiqL3Pz3KjljKlsmf5NveLZS1FpbaKJHBp7QvarY,15411
57
57
  agilicus/agilicus_api/api/whoami_api.py,sha256=ONhOlzNesNi91dk8pCIrQ8FluW8OYwMYLvhtpBLGM3Y,7941
58
58
  agilicus/agilicus_api/api/whoami_api_mock.py,sha256=rlvZoWnMCqORMZBg7SOv6d3xp52kELdh6wXcCaIZ93w,346
59
- agilicus/agilicus_api/api_client.py,sha256=jvH0RqfckDDtPgYCm7B4T39iaOM6yN-t-UnvoFhC2ZU,38845
59
+ agilicus/agilicus_api/api_client.py,sha256=KRe52GBql1xTNtBp9-YCQHBb79MpO3xS-TpGRkLD-2I,38845
60
60
  agilicus/agilicus_api/apis/__init__.py,sha256=RgE6ZpAhdJQlmXXP-1vt7yX_BF3wQ6M_GoYYIriEjeQ,1823
61
- agilicus/agilicus_api/configuration.py,sha256=UNHMrtdcV2lzq8d_biMMo0nEpRb3zzk7VVYXh1aOPkA,18447
61
+ agilicus/agilicus_api/configuration.py,sha256=NfOlCe51XHF0lf2-VEnQehQpzAZ9kHvQfregzpqGu_Q,18447
62
62
  agilicus/agilicus_api/docs/APIKey.md,sha256=4cKuz4_l9HcEDnUrLwYbEnn9C2WoDayrjfrY1Ixgaf4,1747
63
63
  agilicus/agilicus_api/docs/APIKeyIntrospect.md,sha256=nJ-zkuFm3JMbWFDYYN_vYyQk1snGBtBvIxtCQxamhAU,1019
64
64
  agilicus/agilicus_api/docs/APIKeyIntrospectAuthorizationInfo.md,sha256=7RApOOLjvWQs5sw2jb25g7i3Kta1BiEY-s8VRXfppH8,725
@@ -70,7 +70,7 @@ agilicus/agilicus_api/docs/AccessRequests.md,sha256=D-vxgYMqeQKpYzATNSa2qn7Isek-
70
70
  agilicus/agilicus_api/docs/AccessRequestsStatus.md,sha256=dS0BWGNThHEy73ROWfRmerh6N43LxWhsLJ6gp8EYSoo,723
71
71
  agilicus/agilicus_api/docs/AddGroupMemberRequest.md,sha256=6-2x7gPgSnNLBxsGYwSrtCEEEhxQgAKHcFxXQINbTGc,842
72
72
  agilicus/agilicus_api/docs/AgentConnector.md,sha256=LO6GfXqgCofgZVdjtB1tImJnwvEu_w1KLtIMuhGEKnE,1057
73
- agilicus/agilicus_api/docs/AgentConnectorAuthzStats.md,sha256=pkM6EVJ9jqbpN1tkrNvogvvq2HzSWUTHnx4OhXGQ5QQ,2946
73
+ agilicus/agilicus_api/docs/AgentConnectorAuthzStats.md,sha256=vs8Z5u2ZHRadnL7ZpsF1SZiIa28FLvXo3q6dMBOwn3c,3680
74
74
  agilicus/agilicus_api/docs/AgentConnectorCloudRouting.md,sha256=4qFeYEfHd-l_m_CLcopNmKqxktYrMT5U0n0rcU2-b_A,1008
75
75
  agilicus/agilicus_api/docs/AgentConnectorConnectionInfo.md,sha256=Z6Vn-0P0kfACeSwZ4D1WPh923cgqvQu67w37nuAGw_s,3704
76
76
  agilicus/agilicus_api/docs/AgentConnectorInfo.md,sha256=FwhDcVU2eIXlyF3CXzyOcnGF1jF8KKE0ECmam2QG_UY,2426
@@ -694,7 +694,7 @@ agilicus/agilicus_api/model/access_requests.py,sha256=VfYqG2fgqvb49gBIpPzvapD6KL
694
694
  agilicus/agilicus_api/model/access_requests_status.py,sha256=fVz0f5kzWzIRJ4-dLW47uVqkvFLw6XER-WSEmmKkKz8,14171
695
695
  agilicus/agilicus_api/model/add_group_member_request.py,sha256=IH8ZhSjDszxoF5k7giQ-Zrzkto0ByZl5y6KxGGL0m1I,14963
696
696
  agilicus/agilicus_api/model/agent_connector.py,sha256=QF2xxXJpg18gpG1jElTuHM7OLqLRres150w9aUYjgR4,14583
697
- agilicus/agilicus_api/model/agent_connector_authz_stats.py,sha256=R06oYBS304ImTask3_ZcaqwzrGSkalK4M4T0WsPWpNw,29156
697
+ agilicus/agilicus_api/model/agent_connector_authz_stats.py,sha256=YIHOwIFyZSY_G4TzxM3xpTdKF8duv1cl7gsgV7Gx7vM,32955
698
698
  agilicus/agilicus_api/model/agent_connector_cloud_routing.py,sha256=XSwmyiIejJz1mkOOi9euaJANFesxYHkgq4hr0OGtAWw,14673
699
699
  agilicus/agilicus_api/model/agent_connector_connection_info.py,sha256=R_RDBIiJGJc0PNfMvzVzmB4FpZZK063MW1_GXSsqBlY,27008
700
700
  agilicus/agilicus_api/model/agent_connector_info.py,sha256=s6h9iEduv0VQtSIn3VUp1xOdSZJmQOTIrKq09X42pYk,22315
@@ -1927,7 +1927,7 @@ agilicus/agilicus_api/test/test_x509_root_certificate.py,sha256=Yl8PFx9K2nQ4Lto_
1927
1927
  agilicus/agilicus_api/test/test_x509_root_certificate_spec.py,sha256=RWk49vSSxpSCA3Sq67x6S5WQmDoQfuay00VoXnRVe4I,2832
1928
1928
  agilicus/agilicus_api/test/test_x509_root_certificate_status.py,sha256=ANmPJKPCRk-SexjY_o9jRyatvSVwFjH_xAtUIXDw2Ow,2846
1929
1929
  agilicus/agilicus_api/test/test_xss_settings.py,sha256=jvnKeVUDigciatbdvm-228cdv-RTMuucAb1JVVl8H58,2746
1930
- agilicus/agilicus_api_README.md,sha256=7pFgLkCIh6r2j8GBX4A2xjjXzIGweO1k6tDnvz5J0Eg,124361
1930
+ agilicus/agilicus_api_README.md,sha256=7aCF0KZTRMArQ-uD_j14OA8nZMklCVbGzclG5-yTmR0,124361
1931
1931
  agilicus/aliases.ini,sha256=MxqiVo2f2xdUDVF1YDkNW36AIqN8hrYjlTVfraEUZXY,455
1932
1932
  agilicus/amq.py,sha256=yxi-YTbJPVl10s78Hlr1dmrQR63iaSIoROGVILzFPmE,1775
1933
1933
  agilicus/apps.py,sha256=PDB3IiAKH9uAbCsYB_NE2SUKnr5jHgZlQYqPK942HWE,47385
@@ -1939,7 +1939,7 @@ agilicus/certificate.py,sha256=iXC4iT3EGISyEezrvMgfic_lSCx2_JMSWevTLyGekR8,2739
1939
1939
  agilicus/challenges.py,sha256=v4r_JrBpxJGRgZvk3pJvMNxhWKvpZajgphIWOC45hE8,6453
1940
1940
  agilicus/click_extension.py,sha256=uE57TjMqJxO9VFPBJO5-bTo9UrQiHPjIdI_iwKSaw6Q,224
1941
1941
  agilicus/client_secrets.json,sha256=eyPFVzziH48RuwWl66cfi0JE4jpmoec0Vo_F2TzYOeI,414
1942
- agilicus/connectors.py,sha256=fyc42CS2EnOGToc3dtnLEdhe7P9ivX_Iz4TqcfjWNeA,25505
1942
+ agilicus/connectors.py,sha256=IC5Ugly6QWy7euMwlxib6FLtWoyRKElMqGbVb2j_9y4,25940
1943
1943
  agilicus/context.py,sha256=b_fc77IgpqWJ0h0We8HknVwzDf3nRfKhBGCmCoErXX4,6810
1944
1944
  agilicus/credentials.py,sha256=F3yPAwoMcziP1OLmzeJ8jIz1W-91-HXu4zcymyMp1E4,4730
1945
1945
  agilicus/csr.py,sha256=hqmxZCEK8Jy_Pn92SQN8A9q7Uh-vAiVzo9alL8-mw1Y,3392
@@ -1964,7 +1964,7 @@ agilicus/keyring_storage.py,sha256=tQEfDPW27xEdjPIBnjAyZOAG3wHlk3KQ2DSKYr4B5fM,2
1964
1964
  agilicus/launchers.py,sha256=ji3uhu-xPVlnWnkwhZVw19HntQVE7Up5IMiaLfNpvJg,9223
1965
1965
  agilicus/logs.py,sha256=tS8c_sdre1Dncrl59GVGQ0L3d2jtwlVjvIMl3SHJraY,766
1966
1966
  agilicus/lookups.py,sha256=MNmNsKpP7Fq_poLAnL9xo_iptFilKM9ziGLyIe8VKaw,669
1967
- agilicus/main.py,sha256=C_BvwCOYpfli_uLmGuEf0lz9IBUxkFofxlYeEuwhdC8,243605
1967
+ agilicus/main.py,sha256=u7azwYJdJPciHu0tNYU2fRSdRt3Y9lCLxmWz09QuzjE,243943
1968
1968
  agilicus/messages.py,sha256=WflrK1dPJaYP15WGnVk4XGnlDw2q-EFnUXNOSWAnziE,4490
1969
1969
  agilicus/metrics.py,sha256=9l0T7ea4Gvcj7A1C4uC4mv6v26_S8HKnmIuxJjq3mQw,1424
1970
1970
  agilicus/orgs.py,sha256=S6yix0QfiU27w1X7CRURCkDG4ZftMDvw4H_Uy4DAT4s,11938
@@ -1989,8 +1989,8 @@ agilicus/transfers.py,sha256=PYr_fW7dyXNUXzi5Wp5mUjZOvU7MbRzoN-D8Omo-YSQ,1523
1989
1989
  agilicus/users.py,sha256=hesoqAgoFDZNEL-6NzGM3O-Dzr7PhyxHEcMEA3S0nJU,37955
1990
1990
  agilicus/version.py,sha256=G9OFdL1v_4dLDfk6I6taDNypM5bbO-JHAwilsu9LYgg,23
1991
1991
  agilicus/whoami.py,sha256=kqghtWMgZOd2rhKmfguDwCTm6A3gNS8Kj-S2IBxBtl0,206
1992
- agilicus-1.196.0.dist-info/LICENSE.txt,sha256=Zq4tqiCroC2CVrBB_PWjapRdvpae23nljdiaSkOzUho,1061
1993
- agilicus-1.196.0.dist-info/METADATA,sha256=vs9xu--LxabbsgjxT7XQTynQdtoysJnIJMMnXBPmeRo,3714
1994
- agilicus-1.196.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
1995
- agilicus-1.196.0.dist-info/entry_points.txt,sha256=a66hGozzLkHu0IewFzIMbSAhMTNTddUaA2T3_16Gb_s,51
1996
- agilicus-1.196.0.dist-info/RECORD,,
1992
+ agilicus-1.196.1.dist-info/LICENSE.txt,sha256=Zq4tqiCroC2CVrBB_PWjapRdvpae23nljdiaSkOzUho,1061
1993
+ agilicus-1.196.1.dist-info/METADATA,sha256=H810w1Jj9NM9DFm7kJhdrznjfvTLc1i-zrd-IHtLY5k,3714
1994
+ agilicus-1.196.1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
1995
+ agilicus-1.196.1.dist-info/entry_points.txt,sha256=a66hGozzLkHu0IewFzIMbSAhMTNTddUaA2T3_16Gb_s,51
1996
+ agilicus-1.196.1.dist-info/RECORD,,