agilicus 1.256.7__py3-none-any.whl → 1.256.9__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (31) hide show
  1. agilicus/.openapi-generator/FILES +9 -0
  2. agilicus/agilicus_api/__init__.py +3 -0
  3. agilicus/agilicus_api/api/billing_api.py +146 -0
  4. agilicus/agilicus_api/api/billing_api_mock.py +7 -0
  5. agilicus/agilicus_api/api/organisations_api.py +130 -0
  6. agilicus/agilicus_api/api/organisations_api_mock.py +7 -0
  7. agilicus/agilicus_api/api_client.py +1 -1
  8. agilicus/agilicus_api/configuration.py +1 -1
  9. agilicus/agilicus_api/docs/BillingApi.md +92 -0
  10. agilicus/agilicus_api/docs/BillingCheckoutSession.md +14 -0
  11. agilicus/agilicus_api/docs/CreateBillingCheckoutSession.md +16 -0
  12. agilicus/agilicus_api/docs/ListBillingCheckoutSessions.md +14 -0
  13. agilicus/agilicus_api/docs/OrganisationsApi.md +94 -0
  14. agilicus/agilicus_api/model/billing_checkout_session.py +284 -0
  15. agilicus/agilicus_api/model/create_billing_checkout_session.py +305 -0
  16. agilicus/agilicus_api/model/list_billing_checkout_sessions.py +287 -0
  17. agilicus/agilicus_api/models/__init__.py +3 -0
  18. agilicus/agilicus_api/test/test_billing_api.py +7 -0
  19. agilicus/agilicus_api/test/test_billing_checkout_session.py +36 -0
  20. agilicus/agilicus_api/test/test_create_billing_checkout_session.py +36 -0
  21. agilicus/agilicus_api/test/test_list_billing_checkout_sessions.py +38 -0
  22. agilicus/agilicus_api/test/test_organisations_api.py +7 -0
  23. agilicus/agilicus_api_README.md +6 -1
  24. agilicus/billing.py +28 -0
  25. agilicus/main.py +41 -1
  26. agilicus/orgs.py +21 -0
  27. {agilicus-1.256.7.dist-info → agilicus-1.256.9.dist-info}/METADATA +1 -1
  28. {agilicus-1.256.7.dist-info → agilicus-1.256.9.dist-info}/RECORD +31 -22
  29. {agilicus-1.256.7.dist-info → agilicus-1.256.9.dist-info}/LICENSE.txt +0 -0
  30. {agilicus-1.256.7.dist-info → agilicus-1.256.9.dist-info}/WHEEL +0 -0
  31. {agilicus-1.256.7.dist-info → agilicus-1.256.9.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,36 @@
1
+ """
2
+ Agilicus API
3
+
4
+ Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
5
+
6
+ The version of the OpenAPI document: 2024.05.09
7
+ Contact: dev@agilicus.com
8
+ Generated by: https://openapi-generator.tech
9
+ """
10
+
11
+
12
+ import sys
13
+ import unittest
14
+
15
+ import agilicus_api
16
+ from agilicus_api.model.create_billing_checkout_session import CreateBillingCheckoutSession
17
+
18
+
19
+ class TestCreateBillingCheckoutSession(unittest.TestCase):
20
+ """CreateBillingCheckoutSession unit test stubs"""
21
+
22
+ def setUp(self):
23
+ pass
24
+
25
+ def tearDown(self):
26
+ pass
27
+
28
+ def testCreateBillingCheckoutSession(self):
29
+ """Test CreateBillingCheckoutSession"""
30
+ # FIXME: construct object with mandatory attributes with example values
31
+ # model = CreateBillingCheckoutSession() # noqa: E501
32
+ pass
33
+
34
+
35
+ if __name__ == '__main__':
36
+ unittest.main()
@@ -0,0 +1,38 @@
1
+ """
2
+ Agilicus API
3
+
4
+ Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). # noqa: E501
5
+
6
+ The version of the OpenAPI document: 2024.05.09
7
+ Contact: dev@agilicus.com
8
+ Generated by: https://openapi-generator.tech
9
+ """
10
+
11
+
12
+ import sys
13
+ import unittest
14
+
15
+ import agilicus_api
16
+ from agilicus_api.model.billing_checkout_session import BillingCheckoutSession
17
+ globals()['BillingCheckoutSession'] = BillingCheckoutSession
18
+ from agilicus_api.model.list_billing_checkout_sessions import ListBillingCheckoutSessions
19
+
20
+
21
+ class TestListBillingCheckoutSessions(unittest.TestCase):
22
+ """ListBillingCheckoutSessions unit test stubs"""
23
+
24
+ def setUp(self):
25
+ pass
26
+
27
+ def tearDown(self):
28
+ pass
29
+
30
+ def testListBillingCheckoutSessions(self):
31
+ """Test ListBillingCheckoutSessions"""
32
+ # FIXME: construct object with mandatory attributes with example values
33
+ # model = ListBillingCheckoutSessions() # noqa: E501
34
+ pass
35
+
36
+
37
+ if __name__ == '__main__':
38
+ unittest.main()
@@ -38,6 +38,13 @@ class TestOrganisationsApi(unittest.TestCase):
38
38
  """
39
39
  pass
40
40
 
41
+ def test_create_checkout_session(self):
42
+ """Test case for create_checkout_session
43
+
44
+ Create a session checkout # noqa: E501
45
+ """
46
+ pass
47
+
41
48
  def test_create_org(self):
42
49
  """Test case for create_org
43
50
 
@@ -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.05.09
7
- - Package version: 1.256.7
7
+ - Package version: 1.256.9
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
 
@@ -369,6 +369,7 @@ Class | Method | HTTP request | Description
369
369
  *BillingApi* | [**get_subscription_balance_transactions**](agilicus_api/docs/BillingApi.md#get_subscription_balance_transactions) | **GET** /v1/billing_subscriptions/{billing_subscription_id}/balance_transactions | Get the subscription balance transactions
370
370
  *BillingApi* | [**get_usage_records**](agilicus_api/docs/BillingApi.md#get_usage_records) | **GET** /v1/billing_accounts/{billing_account_id}/usage_records | Get all subscription usage records
371
371
  *BillingApi* | [**list_billing_accounts**](agilicus_api/docs/BillingApi.md#list_billing_accounts) | **GET** /v1/billing_accounts | Get all billing accounts
372
+ *BillingApi* | [**list_checkout_sessions**](agilicus_api/docs/BillingApi.md#list_checkout_sessions) | **GET** /v1/billing_accounts/{billing_account_id}/checkout | list checkout sessions
372
373
  *BillingApi* | [**list_features**](agilicus_api/docs/BillingApi.md#list_features) | **GET** /v1/features | Get all features
373
374
  *BillingApi* | [**list_products**](agilicus_api/docs/BillingApi.md#list_products) | **GET** /v1/products | Get all products
374
375
  *BillingApi* | [**list_subscription_features**](agilicus_api/docs/BillingApi.md#list_subscription_features) | **GET** /v1/billing_subscriptions/{billing_subscription_id}/features | Get all subscription features
@@ -601,6 +602,7 @@ Class | Method | HTTP request | Description
601
602
  *MetricsApi* | [**list_top_users**](agilicus_api/docs/MetricsApi.md#list_top_users) | **GET** /v1/metrics/{org_id}/top_users | View top users
602
603
  *OrganisationsApi* | [**create_billing_portal_link**](agilicus_api/docs/OrganisationsApi.md#create_billing_portal_link) | **POST** /v1/orgs/{org_id}/billing_portal_links | Create a link to the billing portal
603
604
  *OrganisationsApi* | [**create_blocking_upgrade_orgs_task**](agilicus_api/docs/OrganisationsApi.md#create_blocking_upgrade_orgs_task) | **POST** /v1/orgs/upgrade | utility to upgrade organisations
605
+ *OrganisationsApi* | [**create_checkout_session**](agilicus_api/docs/OrganisationsApi.md#create_checkout_session) | **POST** /v1/orgs/{org_id}/billing_checkout | Create a session checkout
604
606
  *OrganisationsApi* | [**create_org**](agilicus_api/docs/OrganisationsApi.md#create_org) | **POST** /v1/orgs | Create an organisation
605
607
  *OrganisationsApi* | [**create_reconcile_org_default_policy**](agilicus_api/docs/OrganisationsApi.md#create_reconcile_org_default_policy) | **POST** /v1/orgs/reconcile_org_default_policy | Reconciles one or more org's default policies
606
608
  *OrganisationsApi* | [**create_sub_org**](agilicus_api/docs/OrganisationsApi.md#create_sub_org) | **POST** /v1/orgs/{org_id}/orgs | Create a sub organisation
@@ -899,6 +901,7 @@ Class | Method | HTTP request | Description
899
901
  - [BillingAccountSpec](agilicus_api/docs/BillingAccountSpec.md)
900
902
  - [BillingAccountStatus](agilicus_api/docs/BillingAccountStatus.md)
901
903
  - [BillingBalanceTransaction](agilicus_api/docs/BillingBalanceTransaction.md)
904
+ - [BillingCheckoutSession](agilicus_api/docs/BillingCheckoutSession.md)
902
905
  - [BillingCustomer](agilicus_api/docs/BillingCustomer.md)
903
906
  - [BillingOrg](agilicus_api/docs/BillingOrg.md)
904
907
  - [BillingOrgSubscription](agilicus_api/docs/BillingOrgSubscription.md)
@@ -973,6 +976,7 @@ Class | Method | HTTP request | Description
973
976
  - [ConnectorSystemStats](agilicus_api/docs/ConnectorSystemStats.md)
974
977
  - [ConnectorUpstreamStatsPublish](agilicus_api/docs/ConnectorUpstreamStatsPublish.md)
975
978
  - [ContentTypeOptionsSettings](agilicus_api/docs/ContentTypeOptionsSettings.md)
979
+ - [CreateBillingCheckoutSession](agilicus_api/docs/CreateBillingCheckoutSession.md)
976
980
  - [CreateBillingUsageRecords](agilicus_api/docs/CreateBillingUsageRecords.md)
977
981
  - [CreateSessionAndTokenRequest](agilicus_api/docs/CreateSessionAndTokenRequest.md)
978
982
  - [CreateSessionAndTokenResponse](agilicus_api/docs/CreateSessionAndTokenResponse.md)
@@ -1135,6 +1139,7 @@ Class | Method | HTTP request | Description
1135
1139
  - [ListAuthenticationDocumentResponse](agilicus_api/docs/ListAuthenticationDocumentResponse.md)
1136
1140
  - [ListBillingAccountsResponse](agilicus_api/docs/ListBillingAccountsResponse.md)
1137
1141
  - [ListBillingBalanceTransactions](agilicus_api/docs/ListBillingBalanceTransactions.md)
1142
+ - [ListBillingCheckoutSessions](agilicus_api/docs/ListBillingCheckoutSessions.md)
1138
1143
  - [ListBillingOrgSubscriptionsResponse](agilicus_api/docs/ListBillingOrgSubscriptionsResponse.md)
1139
1144
  - [ListBillingUsageRecordsResponse](agilicus_api/docs/ListBillingUsageRecordsResponse.md)
1140
1145
  - [ListCatalogueEntriesResponse](agilicus_api/docs/ListCatalogueEntriesResponse.md)
agilicus/billing.py CHANGED
@@ -701,3 +701,31 @@ def list_subscription_features(ctx, billing_subscription_id, **kwargs):
701
701
  return client.billing_api.list_subscription_features(
702
702
  billing_subscription_id, **kwargs
703
703
  ).features
704
+
705
+
706
+ def create_billing_checkout_session(
707
+ ctx, ui_mode=None, return_url=None, success_url=None, custom_text=None, **kwargs
708
+ ):
709
+ client = get_apiclient_from_ctx(ctx)
710
+ org_id = get_org_from_input_or_ctx(ctx, **kwargs)
711
+ createSession = agilicus.CreateBillingCheckoutSession()
712
+ if ui_mode:
713
+ createSession.ui_mode = ui_mode
714
+
715
+ if return_url:
716
+ createSession.return_url = return_url
717
+
718
+ if success_url:
719
+ createSession.success_url = success_url
720
+
721
+ if custom_text:
722
+ createSession.custom_text = custom_text
723
+ return client.org_api.create_checkout_session(
724
+ org_id, create_billing_checkout_session=createSession
725
+ )
726
+
727
+
728
+ def list_billing_checkout_sessions(ctx, billing_account_id, **kwargs):
729
+ client = get_apiclient_from_ctx(ctx)
730
+ pop_item_if_none(kwargs)
731
+ return client.billing_api.list_checkout_sessions(billing_account_id, **kwargs)
agilicus/main.py CHANGED
@@ -1013,7 +1013,8 @@ def list_useful_orgs_(ctx, **kwargs):
1013
1013
  @click.option("--list-children", default=True, type=bool)
1014
1014
  @click.option("--enabled", default=None, type=bool)
1015
1015
  @click.option("--page-at-id", default=None)
1016
- @click.option("--organisation", default=None)
1016
+ @click.option("--suborg-updated", default=False, type=bool)
1017
+ @click.option("--get-system-options", default=False)
1017
1018
  @click.option(
1018
1019
  "--page-size",
1019
1020
  type=int,
@@ -1051,6 +1052,7 @@ def reconcile_sub_org_issuer(ctx, **kwargs):
1051
1052
 
1052
1053
  @cli.command(name="show-org")
1053
1054
  @click.argument("org-id", default=None, required=False)
1055
+ @click.option("--get-system-options", default=False)
1054
1056
  @click.pass_context
1055
1057
  def show_org(ctx, org_id, **kwargs):
1056
1058
  output_entry(ctx, orgs.get(ctx, org_id, **kwargs))
@@ -1153,6 +1155,23 @@ def remove_feature(ctx, feature, **kwargs):
1153
1155
  output_entry(ctx, result)
1154
1156
 
1155
1157
 
1158
+ @cli.command(name="update-system-options")
1159
+ @click.argument("org-id")
1160
+ @click.option("--allowed-domains", multiple=True)
1161
+ @click.pass_context
1162
+ def update_system_options(ctx, org_id, **kwargs):
1163
+ result = orgs.replace_system_options(ctx, org_id, **kwargs)
1164
+ output_entry(ctx, result)
1165
+
1166
+
1167
+ @cli.command(name="get-system-options")
1168
+ @click.argument("org-id")
1169
+ @click.pass_context
1170
+ def get_system_options(ctx, org_id):
1171
+ result = orgs.get_system_options(ctx, org_id)
1172
+ output_entry(ctx, result)
1173
+
1174
+
1156
1175
  @cli.command(name="add-org")
1157
1176
  @click.argument("organisation")
1158
1177
  @click.argument("issuer")
@@ -7079,6 +7098,27 @@ def list_subscription_features(ctx, **kwargs):
7079
7098
  print(format_features(ctx, results))
7080
7099
 
7081
7100
 
7101
+ @cli.command(name="create-billing-checkout-session")
7102
+ @click.option("--org-id", default=None)
7103
+ @click.option("--ui-mode", default=None)
7104
+ @click.option("--return-url", default=None)
7105
+ @click.option("--success-url", default=None)
7106
+ @click.option("--custom-text", default=None)
7107
+ @click.pass_context
7108
+ def create_billing_checkout_session(ctx, *args, **kwargs):
7109
+ result = billing.create_billing_checkout_session(ctx, *args, **kwargs)
7110
+ output_entry(ctx, result.to_dict())
7111
+
7112
+
7113
+ @cli.command(name="list-billing-checkout-sessions")
7114
+ @click.argument("billing-account-id", default=None)
7115
+ @click.option("--checkout-session-status", default=None)
7116
+ @click.pass_context
7117
+ def list_billing_checkout_sessions(ctx, *args, **kwargs):
7118
+ result = billing.list_billing_checkout_sessions(ctx, *args, **kwargs)
7119
+ output_entry(ctx, result.to_dict())
7120
+
7121
+
7082
7122
  @cli.command(name="show-launcher")
7083
7123
  @click.argument("id")
7084
7124
  @click.option("--org-id", default=None)
agilicus/orgs.py CHANGED
@@ -322,6 +322,27 @@ def delete(ctx, org_id):
322
322
  return json.loads(resp.text)
323
323
 
324
324
 
325
+ def get_system_options(ctx, org_id=None):
326
+ token = context.get_token(ctx)
327
+ if not org_id:
328
+ org_id = context.get_org_id(ctx, token)
329
+
330
+ apiclient = context.get_apiclient_from_ctx(ctx)
331
+ return apiclient.org_api.get_system_options(org_id).to_dict()
332
+
333
+
334
+ def replace_system_options(ctx, org_id, allowed_domains):
335
+ apiclient = context.get_apiclient(ctx)
336
+ system_options = get_system_options(ctx, org_id)
337
+
338
+ if allowed_domains is not None:
339
+ system_options["allowed_domains"] = allowed_domains
340
+
341
+ return apiclient.org_api.replace_system_options(
342
+ org_id=org_id, organisation_system_options=system_options
343
+ ).to_dict()
344
+
345
+
325
346
  def find_feature(features, feature_name):
326
347
  for feature in features:
327
348
  if feature.feature == feature_name:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: agilicus
3
- Version: 1.256.7
3
+ Version: 1.256.9
4
4
  Summary: Agilicus SDK
5
5
  Home-page: https://www.agilicus.com/
6
6
  License: MIT
@@ -1,11 +1,11 @@
1
1
  agilicus/.gitignore,sha256=TyHq6BCuVrFiqgUb1QAayLxWcBseKwEOoKJTQb_-iW8,5
2
- agilicus/.openapi-generator/FILES,sha256=CDio1S05oLYWN5q8dQlL2ZOFfzH9IIh-q5gfi8V0NP4,111350
2
+ agilicus/.openapi-generator/FILES,sha256=Xs1wdXOdepfU9ao_RdwzCiBPUZA0itbbLBddbDQSSrc,111813
3
3
  agilicus/.openapi-generator/VERSION,sha256=LXsIFraL1muXBEww1sZWaewc9ji87Ih3gIa04Z37RYM,14
4
4
  agilicus/.openapi-generator-ignore,sha256=pu2PTide7pJtJ-DFLzDy0cTYQJRlrB-8RRH3zGLeUds,1040
5
5
  agilicus/__init__.py,sha256=AqC7DwkeKW_DniiaZfh5nbDeDQ4E_lW3frheyfmH8Mc,3207
6
6
  agilicus/access.py,sha256=UEHHhE3cCaCjxXQDjhKxQAoUEMWandygN0d-yEIIf8A,5457
7
7
  agilicus/admin.py,sha256=oQNL_k0dyI_y4oxWtmHsEnavpesiLP0EL_cKC4ABN_4,9922
8
- agilicus/agilicus_api/__init__.py,sha256=YU0ID7TLl6wVohrVLiaP3IDchuqzOoAClKieyWm9sw8,63132
8
+ agilicus/agilicus_api/__init__.py,sha256=wDhAK5Dm6zq2XX6H0cyote6ERdQXDKLDY5_ygOq_fag,63393
9
9
  agilicus/agilicus_api/api/__init__.py,sha256=wX02QuCPW9YclBXGwbfv5NVh213HdW_jWBUyZg6ouHo,228
10
10
  agilicus/agilicus_api/api/application_services_api.py,sha256=54j1SiWVxZmncc8c2oH2x027CP0bdt4BMOO2DvT2hYU,177624
11
11
  agilicus/agilicus_api/api/application_services_api_mock.py,sha256=JsXisS6gwo-kq3vBsTlzHHFbhgzdp6fYVRhParpI2X8,10010
@@ -13,8 +13,8 @@ agilicus/agilicus_api/api/applications_api.py,sha256=SyZVJf0wuQMxeixZNsMTEK_HA97
13
13
  agilicus/agilicus_api/api/applications_api_mock.py,sha256=HGhKnPu0kJVv9qGXB22Q2jMvqbLsY4sim7EGOKqim-4,10014
14
14
  agilicus/agilicus_api/api/audits_api.py,sha256=tjTQ2VWAe-wnAcbdi_f5-p1XzdpgBe0-Fbp_DsrFssM,54456
15
15
  agilicus/agilicus_api/api/audits_api_mock.py,sha256=rD5AvqygMpR7N8FHegueyiF7L6fWypmHZvFCIo1iyBQ,2416
16
- agilicus/agilicus_api/api/billing_api.py,sha256=OBIUqxdJErg6jfNYc85h4NCpXTdv_QZYIy0HyOpmPYI,186428
17
- agilicus/agilicus_api/api/billing_api_mock.py,sha256=YQdQDWB07YZVrsfeS4BfPyX_DHO8EWt5Wv7rw9dAyO0,10243
16
+ agilicus/agilicus_api/api/billing_api.py,sha256=GO9qzTWxwkGpsS_3Bq2Ipt-GXsjn81xRbhKyakdJpg0,192469
17
+ agilicus/agilicus_api/api/billing_api_mock.py,sha256=o-NeAp9CxmE2cpauosbYx76Pk3Bb_pQZ-VzjLN4bL3Q,10542
18
18
  agilicus/agilicus_api/api/catalogues_api.py,sha256=SfB7-kajefJwCVqhL6StyCjFQv3YmMrECIF-mP7ZSiE,59542
19
19
  agilicus/agilicus_api/api/catalogues_api_mock.py,sha256=ErB6jFzwVdpeMtf9bEvX48T6vYnBBcx8RUuEZ2Zz1NM,3286
20
20
  agilicus/agilicus_api/api/certificates_api.py,sha256=z8V3-RXWJi7EEQ3dnVzD85uVMei7PBOSEg3H3lBZhl8,60368
@@ -47,8 +47,8 @@ agilicus/agilicus_api/api/messages_api.py,sha256=JrQmfbLLisf-Z2rXljiA45qrQWSSwq_
47
47
  agilicus/agilicus_api/api/messages_api_mock.py,sha256=35cBk577sq1Wv_mQVdUYQqXVnTIN6IBEa2V_oW0LpsE,4138
48
48
  agilicus/agilicus_api/api/metrics_api.py,sha256=88ltmTN6MwZv2NHAM3kLdx-ZS7WoARGnPoFOwAM9_tY,21384
49
49
  agilicus/agilicus_api/api/metrics_api_mock.py,sha256=Y-STdFeQXVL5JGfF_Gta0S3ibDkz9aaJdISFW4Gve_M,631
50
- agilicus/agilicus_api/api/organisations_api.py,sha256=MiHv17hnQGsVdylu-KStSS6C29z004uOssDPLH_NsVE,112421
51
- agilicus/agilicus_api/api/organisations_api_mock.py,sha256=XNSMPtCC3jmi4HZgmG1Hdh3QWpydFD8NnNoQeQrpAM0,6228
50
+ agilicus/agilicus_api/api/organisations_api.py,sha256=BL5kGp-5WR4uf_A_DCJrUbLYphGSkylX5bWAtbEBx6M,117618
51
+ agilicus/agilicus_api/api/organisations_api_mock.py,sha256=FCpbvG9TZ7soD8WJJNBsecxmeRFh_qTVGtH5Ch6nCQs,6537
52
52
  agilicus/agilicus_api/api/permissions_api.py,sha256=bIn-06YK5AEwi6qijAx7Md5JD22BiN82LTuTF1RSIF4,83192
53
53
  agilicus/agilicus_api/api/permissions_api_mock.py,sha256=7RFgTzwcOZJCLuzDb-mKMjAXdQsU6zPUJoqF6Q53zcs,4738
54
54
  agilicus/agilicus_api/api/policy_api.py,sha256=zdR7Nk0lqgtbsAZeIiUW-nqPqBdYEyNkrlNO-HmYoh4,17765
@@ -71,9 +71,9 @@ agilicus/agilicus_api/api/users_api.py,sha256=b2RPVEHcDTMMepm2ns3viUaz07Ssfy7XU5
71
71
  agilicus/agilicus_api/api/users_api_mock.py,sha256=wA_xiqL3Pz3KjljKlsmf5NveLZS1FpbaKJHBp7QvarY,15411
72
72
  agilicus/agilicus_api/api/whoami_api.py,sha256=9C0-iX0n4sWlpD1RHsDWWDcARFjY90uOFjdWggRZytw,7941
73
73
  agilicus/agilicus_api/api/whoami_api_mock.py,sha256=rlvZoWnMCqORMZBg7SOv6d3xp52kELdh6wXcCaIZ93w,346
74
- agilicus/agilicus_api/api_client.py,sha256=zpfh5-NpBIyET_-pIT7lzgs-Kv_ctqU3mlnE20ybtwE,38845
74
+ agilicus/agilicus_api/api_client.py,sha256=fGzwTr44MjksEhSwF1L2tHRPGS_aCWHvVFEd8tn2KyM,38845
75
75
  agilicus/agilicus_api/apis/__init__.py,sha256=aJZD7x-umdSni6ZBr4XxzpH8pwtU9hA5LlCDxcqa1Q8,2224
76
- agilicus/agilicus_api/configuration.py,sha256=qPE4d6I1o0VS9jSyNIOM2EMUc-_Gp74N_1DsAxPnH6Y,18447
76
+ agilicus/agilicus_api/configuration.py,sha256=5dWvsYfogLTEBHVoje4JOS_FpwruTKsl1oRftxKbb3Q,18447
77
77
  agilicus/agilicus_api/docs/APIKey.md,sha256=4cKuz4_l9HcEDnUrLwYbEnn9C2WoDayrjfrY1Ixgaf4,1747
78
78
  agilicus/agilicus_api/docs/APIKeyIntrospect.md,sha256=nJ-zkuFm3JMbWFDYYN_vYyQk1snGBtBvIxtCQxamhAU,1019
79
79
  agilicus/agilicus_api/docs/APIKeyIntrospectAuthorizationInfo.md,sha256=7RApOOLjvWQs5sw2jb25g7i3Kta1BiEY-s8VRXfppH8,725
@@ -183,8 +183,9 @@ agilicus/agilicus_api/docs/BaseUpstreams.md,sha256=enQC0HHar27EcfyetoaqEhE2pSZ6g
183
183
  agilicus/agilicus_api/docs/BillingAccount.md,sha256=r0q0Uy6acjBGWnbuz7X-OY32r2xvn0r7wndh8sByw7o,746
184
184
  agilicus/agilicus_api/docs/BillingAccountSpec.md,sha256=8yOmzsXOf1MhYs3uGMi3WKKUvDFSWui0wSYMzOUImZg,906
185
185
  agilicus/agilicus_api/docs/BillingAccountStatus.md,sha256=fyRCN4Xj9TK-Uggk5QQKth8omzJ9P_5KCsiBGSw3PBE,1295
186
- agilicus/agilicus_api/docs/BillingApi.md,sha256=dqH3ZRFOdu6cC2o503iQ1B6-0yZ848feQwPe28cX0fs,169631
186
+ agilicus/agilicus_api/docs/BillingApi.md,sha256=r8-8yp4XAHYAyj0yaaI0p1uJUkoT1ik5NXbOhn_YuTU,173360
187
187
  agilicus/agilicus_api/docs/BillingBalanceTransaction.md,sha256=aXfjtJLKvQzMOQeo3FVAc7V-oaxUGoA4L-DM5udk9ZE,1077
188
+ agilicus/agilicus_api/docs/BillingCheckoutSession.md,sha256=wFA6ahc8Fdb513ubyzZEU46SHvwpUEo-79QHajxQHiM,622
188
189
  agilicus/agilicus_api/docs/BillingCustomer.md,sha256=EuBrw7enULi1QxEF_sdTb--_7hLQNROVonxlJPWsJvo,2249
189
190
  agilicus/agilicus_api/docs/BillingOrg.md,sha256=F2BY7B0amNJqSKx3oG6qKp-fkCrEGqWuCEu0VWcSmbU,758
190
191
  agilicus/agilicus_api/docs/BillingOrgSubscription.md,sha256=Da8SuWVpMigJElT9QTJTPVIqfXtzDrOlvEDYI3DwTvk,807
@@ -263,6 +264,7 @@ agilicus/agilicus_api/docs/ConnectorSystemStats.md,sha256=J5tI-N4q9-0Jg8xS3Ru3FP
263
264
  agilicus/agilicus_api/docs/ConnectorUpstreamStatsPublish.md,sha256=D1QtiQXtodbA0VH-hu6tpRbzDFgKNXvYpaiSblcBBjY,1288
264
265
  agilicus/agilicus_api/docs/ConnectorsApi.md,sha256=wbQc2AgPV3BW13QIppYX0hWiPrX8uyNNz-YjYtPJv18,190178
265
266
  agilicus/agilicus_api/docs/ContentTypeOptionsSettings.md,sha256=igN8Xm2pXUO2mQ_sj1WB_ha56dznFbt5lfPVru5ZRpY,1445
267
+ agilicus/agilicus_api/docs/CreateBillingCheckoutSession.md,sha256=37hRhfRSusUuqre49CIQzNy7oakeVJoPSdKYeq6olLo,767
266
268
  agilicus/agilicus_api/docs/CreateBillingUsageRecords.md,sha256=bGNJhMO3cENhfHer1LiEbBjJgo-_0P12uWKG6CXFoeY,896
267
269
  agilicus/agilicus_api/docs/CreateSessionAndTokenRequest.md,sha256=DROsLvkxtxogSvAgWfIWj3rCZMLbpLKprVdaM1HhC48,673
268
270
  agilicus/agilicus_api/docs/CreateSessionAndTokenResponse.md,sha256=HMKqVgxNJGy2GYhd6lsMmMFpeCN9Uf9t34hZh8fCVuI,655
@@ -434,6 +436,7 @@ agilicus/agilicus_api/docs/ListAuthAuditsResponse.md,sha256=5-7Px1a9yPLaV9S1JUW_
434
436
  agilicus/agilicus_api/docs/ListAuthenticationDocumentResponse.md,sha256=aIc3Ml6AfCp1CgmDwj0ISa5BeVl3g3HJwfIOhBjy5Us,745
435
437
  agilicus/agilicus_api/docs/ListBillingAccountsResponse.md,sha256=4aMySbSJl-C9GjxoTpHtPdTpHimiTOBjB4ZWSIsiG6U,946
436
438
  agilicus/agilicus_api/docs/ListBillingBalanceTransactions.md,sha256=S3IRLXiBxdvqzMkz8lGHpfwFRhYgbXMNCWi9kICAPAQ,808
439
+ agilicus/agilicus_api/docs/ListBillingCheckoutSessions.md,sha256=9t_SP_aThvlTJ-YexNIFcEBBgL0WgsbBu5VCXms21L0,793
437
440
  agilicus/agilicus_api/docs/ListBillingOrgSubscriptionsResponse.md,sha256=rEdtdUHcEQj-O7sGhBjk8MOh5yo2oVeKyKMblkzIEx4,993
438
441
  agilicus/agilicus_api/docs/ListBillingUsageRecordsResponse.md,sha256=yCfRyaXILoZmTtQMMV0PzsE59dBSN5_07-RkXfGMYOQ,717
439
442
  agilicus/agilicus_api/docs/ListCatalogueEntriesResponse.md,sha256=4ZAynkvZw7GwYcQdqQuuMeBhlK_pG5pxMhVS_aQAhCw,731
@@ -628,7 +631,7 @@ agilicus/agilicus_api/docs/OrganisationStateSelector.md,sha256=LBCz_b5IRQjLbYAMH
628
631
  agilicus/agilicus_api/docs/OrganisationStateStatus.md,sha256=VogxUQYw7v7FfSGOSxusI_JNZTMS4uCuhQXaIciou-Y,2416
629
632
  agilicus/agilicus_api/docs/OrganisationStatus.md,sha256=eroaWsPNstUMwz7bSNldfQLhy9WWIqv0NklMDyGfEAM,970
630
633
  agilicus/agilicus_api/docs/OrganisationSystemOptions.md,sha256=St36yyQmtFeUuo3Fbez82dSicLH0TEZM6W4R2zvaa7c,1002
631
- agilicus/agilicus_api/docs/OrganisationsApi.md,sha256=72hz5fWkUcjP3dgivbbtgSgr-hUwOoA8QapzKEslOXs,68596
634
+ agilicus/agilicus_api/docs/OrganisationsApi.md,sha256=RdHuExCOoFQWSB-btBFMr0P8eXAVmnt5ameHRRw_wOI,72118
632
635
  agilicus/agilicus_api/docs/PerInstanceUpstreamStats.md,sha256=0iAg47VqrUIntLgysoRRYQNrYdU7zw5tYYXZk8SHkRA,1043
633
636
  agilicus/agilicus_api/docs/PermissionsApi.md,sha256=tPgw5VBvIwaHq7Xa-r1a5fUZ9sf679XVvWGCEL093xM,47220
634
637
  agilicus/agilicus_api/docs/PermittedCrossDomainPoliciesSettings.md,sha256=ciGHGQSsMVNQcpkjOLB0ilvfzBhaZeA4yFX24BbvnCw,1342
@@ -994,6 +997,7 @@ agilicus/agilicus_api/model/billing_account.py,sha256=tibAATGuUtg0ZLyswGbFCHm2xG
994
997
  agilicus/agilicus_api/model/billing_account_spec.py,sha256=noxiqKg2GIqnupEznMX4BfpQQ3MGh_ma4LxNW6kNvag,14629
995
998
  agilicus/agilicus_api/model/billing_account_status.py,sha256=9uPWHP030cI8LWpJatzYQ3O0g350QmKm6G91WwQIyDg,16880
996
999
  agilicus/agilicus_api/model/billing_balance_transaction.py,sha256=7Eb8PUQGP5SW15snZUklyIQwKnADyiYdZDgYXN4me6w,14673
1000
+ agilicus/agilicus_api/model/billing_checkout_session.py,sha256=vzJ-aqsmniAPQe22eHxc2sYxIMzhhDu2wdAxAQY71fM,13770
997
1001
  agilicus/agilicus_api/model/billing_customer.py,sha256=X3rmQtnjqgYXcHNWQwJk8NC1qa4Bn3kZ7NXDqPnxqjo,19796
998
1002
  agilicus/agilicus_api/model/billing_org.py,sha256=eBpZpajhzQ3oGrOQypO3EVQt_E5xwxnPnr8xOY2_g4Y,13985
999
1003
  agilicus/agilicus_api/model/billing_org_subscription.py,sha256=bSGFqp_iU5FoTK3kwyG_9fEGq6zrsEnJdvcSkNXYDCs,14679
@@ -1065,6 +1069,7 @@ agilicus/agilicus_api/model/connector_upstream_stats_publish.py,sha256=wr7zlXjIT
1065
1069
  agilicus/agilicus_api/model/content_type_options_settings.py,sha256=moIEeZHWRiNyp693rn2XW3oiO1ICln30Z43s4dqvjgk,15556
1066
1070
  agilicus/agilicus_api/model/cors_origin.py,sha256=RD2_3bnRFq6DzrmAaG99mFZ4MJa2Zzo0-QbVpXUuhEQ,13572
1067
1071
  agilicus/agilicus_api/model/cors_settings.py,sha256=lRZV8AJWwILM3ZIn2lGNCXzjcgkSa2gKCTDiJx-Wbe0,22534
1072
+ agilicus/agilicus_api/model/create_billing_checkout_session.py,sha256=guK4oGjs210u6zUYzZ4Z3xFqtg7wJQAnkvPmvuZ7i34,14690
1068
1073
  agilicus/agilicus_api/model/create_billing_usage_records.py,sha256=vVhTmuuE_sL7dH61E_mGGGH6j_9HWfbFHc4_CxyVdzI,14467
1069
1074
  agilicus/agilicus_api/model/create_session_and_token_request.py,sha256=FPWpJxjiHTCCjuRXF63svNZo5yW7W5TBgZdrbNkk6pM,14317
1070
1075
  agilicus/agilicus_api/model/create_session_and_token_response.py,sha256=bDE4srYBSK5pugEmC1hquoO-IQsef4SpP4ifb6GsH6s,13931
@@ -1230,6 +1235,7 @@ agilicus/agilicus_api/model/list_auth_audits_response.py,sha256=r-UnfMR_7N3YBdXF
1230
1235
  agilicus/agilicus_api/model/list_authentication_document_response.py,sha256=_x7AvEfg90RF77FMhwDKE2eP5atp3SKfRWSqXOJKEmg,14478
1231
1236
  agilicus/agilicus_api/model/list_billing_accounts_response.py,sha256=Dycg1efp_Cd8c5MvtuLMVduLQHsojQNPCvmKy3lDKU8,15271
1232
1237
  agilicus/agilicus_api/model/list_billing_balance_transactions.py,sha256=TGrRttuRoc4_0PhCkHKR_8HhE1Gprot7FBvwiRp24LI,14265
1238
+ agilicus/agilicus_api/model/list_billing_checkout_sessions.py,sha256=fWNpMB5CXSB9ord_eHKL0aWaDIWpHM8qhIGkjDH7z3U,14231
1233
1239
  agilicus/agilicus_api/model/list_billing_org_subscriptions_response.py,sha256=UHq6M3ErX3eNkL2U9V8EjQf2QqsolglKd6nM1XBPYtA,15420
1234
1240
  agilicus/agilicus_api/model/list_billing_usage_records_response.py,sha256=RNWdHLDsjjE3owsCWspT7nnbJGJQYQFANWxKwcZN6fU,14187
1235
1241
  agilicus/agilicus_api/model/list_catalogue_entries_response.py,sha256=cDFqjxatQm71fTKHNxuMnvM2aA9KEIzCd9cTKDffpSY,14249
@@ -1667,7 +1673,7 @@ agilicus/agilicus_api/model/x509_root_certificate_spec.py,sha256=EINXM_b_Fa87gJ9
1667
1673
  agilicus/agilicus_api/model/x509_root_certificate_status.py,sha256=Unvr-q7bXztaJqobPdQ78kO9aZXALNBog2uSyfp43Qc,13995
1668
1674
  agilicus/agilicus_api/model/xss_settings.py,sha256=OQWFxcEA-dwUeRxdBuhDuLKeOWigwGubuAZk3bBfIQQ,15489
1669
1675
  agilicus/agilicus_api/model_utils.py,sha256=tgikDMaTgICdlEiOiqfMFnlPBcoQ5mLWqiH0180OaOA,83992
1670
- agilicus/agilicus_api/models/__init__.py,sha256=gvcOJ9dfIOfmZ6KO-C8K6IOTzh6S7EFA3_SQCamBtwM,58995
1676
+ agilicus/agilicus_api/models/__init__.py,sha256=cnWpvPjtptlOHxsO2GjBWFxyGBQDSQtCgIrSIHLdtmo,59256
1671
1677
  agilicus/agilicus_api/rest.py,sha256=llsPDcUGWICDULAwS94YZ-PmSXpBxAaHO-LFyPH_JQU,14510
1672
1678
  agilicus/agilicus_api/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1673
1679
  agilicus/agilicus_api/test/test_access_requests.py,sha256=iLDZRbhk1vT3lu3E8obZV2nTBdqGtYpdYcsbQjCabwI,3024
@@ -1779,8 +1785,9 @@ agilicus/agilicus_api/test/test_base_upstreams.py,sha256=PvKW_2iffmQc4FRtU-seymG
1779
1785
  agilicus/agilicus_api/test/test_billing_account.py,sha256=qYuDP991fMYjILDeeLG77bVYsgTANY8R91L0AAhTtq4,3131
1780
1786
  agilicus/agilicus_api/test/test_billing_account_spec.py,sha256=wiGsXdxGGtMifg00DVs-8hrGShjiVH3MzFASWQPWte4,2796
1781
1787
  agilicus/agilicus_api/test/test_billing_account_status.py,sha256=pAMYS_VBFmJGXMknnt0r92Jh1XaGQ0h1J8xAkO_QcWo,3471
1782
- agilicus/agilicus_api/test/test_billing_api.py,sha256=zKKVbgDB3GUc_Mf41bDDPLqbjucWZW1PgGSc3ycg6Dg,8362
1788
+ agilicus/agilicus_api/test/test_billing_api.py,sha256=ijPRbdoPq84Zl0SxK7qzOnAu-v_yYe_OTalgrHM5yCc,8525
1783
1789
  agilicus/agilicus_api/test/test_billing_balance_transaction.py,sha256=LCLNysnZm6ep3XbBcuc73Z32QDthpd-NQ4yT4ZTAnKs,2845
1790
+ agilicus/agilicus_api/test/test_billing_checkout_session.py,sha256=b6OOBAWkg9IPl_sW2sKfER9i00L7l1EX1Z7q1Cyy7kg,2824
1784
1791
  agilicus/agilicus_api/test/test_billing_customer.py,sha256=Ak1pzojgMiQR2yCl5a2ymqbXeroO1yI8aWxQfaC8Nlw,2774
1785
1792
  agilicus/agilicus_api/test/test_billing_org.py,sha256=ycgMh9ENjoYVYgm7XjjMmRsmm6d1AHpwNiXWTZMcUUI,2739
1786
1793
  agilicus/agilicus_api/test/test_billing_org_subscription.py,sha256=SzuoZjPph3il_oM0XvPjLFNe4IXhYi0ndKIKwxwYJq4,3254
@@ -1856,6 +1863,7 @@ agilicus/agilicus_api/test/test_connectors_api.py,sha256=zBk52f450jDV06N9c_Qvw43
1856
1863
  agilicus/agilicus_api/test/test_content_type_options_settings.py,sha256=-aBsfmKq2g0JucMPDQqBqt-zdmQsQPAoQH6HcEQMXA8,2853
1857
1864
  agilicus/agilicus_api/test/test_cors_origin.py,sha256=druHjx0xYhgfIiITDAq4aXW_e1cI6dtR-zXRuNqHxwU,2739
1858
1865
  agilicus/agilicus_api/test/test_cors_settings.py,sha256=naWpJfb_ABMwwEiXDyj5TWmxVuhKrKMlVopHvIq7E0I,2844
1866
+ agilicus/agilicus_api/test/test_create_billing_checkout_session.py,sha256=Id7LzjOHoSemGyxDfEPZERab5ogwsCPoPrbR24pKvcM,2867
1859
1867
  agilicus/agilicus_api/test/test_create_billing_usage_records.py,sha256=4sgGTv78GW2i4iumOLMH2Pw02MHirDoZB_Ld_e_OIBc,2970
1860
1868
  agilicus/agilicus_api/test/test_create_session_and_token_request.py,sha256=MzkDcKkl_zxLThBs6NMe5skesYK2PUGRIgl8MoApLuY,3070
1861
1869
  agilicus/agilicus_api/test/test_create_session_and_token_response.py,sha256=SaJUHhd21_Ehhb5H8bF9CaeFlY0XS_vJ1hveqbi0L5o,3036
@@ -2030,6 +2038,7 @@ agilicus/agilicus_api/test/test_list_auth_audits_response.py,sha256=AY0xXESLYPQV
2030
2038
  agilicus/agilicus_api/test/test_list_authentication_document_response.py,sha256=yfRlELKBLpVGbGUR8LdSEZEqxwQEaoaUZXfn1veWsj0,3048
2031
2039
  agilicus/agilicus_api/test/test_list_billing_accounts_response.py,sha256=8Q3kq1-25g_oxoLMvS1eP3uF_4h4TA6C5G1G4MxEAS8,2967
2032
2040
  agilicus/agilicus_api/test/test_list_billing_balance_transactions.py,sha256=4lU0irTFtWqlt4lxMxXPyuVv467rvw9jF8QM1sDKTcs,3033
2041
+ agilicus/agilicus_api/test/test_list_billing_checkout_sessions.py,sha256=RLLwXkohdteiHUDjZZM4Nl4N6-VRAB6F3r881kqlu_0,3000
2033
2042
  agilicus/agilicus_api/test/test_list_billing_org_subscriptions_response.py,sha256=ATVXymW5VPPnyFm3OR0a31a3YI1KjMo9nSMlH1OohJQ,3057
2034
2043
  agilicus/agilicus_api/test/test_list_billing_usage_records_response.py,sha256=GPvnbqjdIJ9mdGjciYRZfqM4uDTQS7OgGigoR42iEp0,3017
2035
2044
  agilicus/agilicus_api/test/test_list_catalogue_entries_response.py,sha256=gwYa2075hFTHYig-FjGr5QG-eXFqjQr35LG9dCtdQpQ,2974
@@ -2224,7 +2233,7 @@ agilicus/agilicus_api/test/test_organisation_state_selector.py,sha256=b0OAJ0ZvoO
2224
2233
  agilicus/agilicus_api/test/test_organisation_state_status.py,sha256=RFQ29I4qOF8xs44WfUXmBCtMnJodmoXFw5I7DRxoTXg,2831
2225
2234
  agilicus/agilicus_api/test/test_organisation_status.py,sha256=s0Koy-Mvqet-jg1mnf7E7zb3dwkncj7DVH5Okupyi78,3086
2226
2235
  agilicus/agilicus_api/test/test_organisation_system_options.py,sha256=EGM0-oDipRCpcDXkbs2t5rTTQ6DLKATnFhHmTQHWUZA,2845
2227
- agilicus/agilicus_api/test/test_organisations_api.py,sha256=H38mFTUW9JT3dGTxC0b7Hq0nzFS4S-B6nolm9_biKlc,6181
2236
+ agilicus/agilicus_api/test/test_organisations_api.py,sha256=nwNnaa3bZgrJtvp-JY407s6tpOrO3m2gXrUTEsZ0HU4,6349
2228
2237
  agilicus/agilicus_api/test/test_per_instance_upstream_stats.py,sha256=FOoOFr0Ys9a-1hwIWN99Ov0neRBTLWq6maiPjx5TsHU,3008
2229
2238
  agilicus/agilicus_api/test/test_permissions_api.py,sha256=QkUp7DwXcit0XvWTg7fmb3-d-QShQb_D4EgFXws0ZwA,5186
2230
2239
  agilicus/agilicus_api/test/test_permitted_cross_domain_policies_settings.py,sha256=GN7586kJIiNzBc80TlDZTQDGtet2DzRrvZXCwVg7tF0,2924
@@ -2481,13 +2490,13 @@ agilicus/agilicus_api/test/test_x509_root_certificate.py,sha256=qQsfg13-4vp6IddI
2481
2490
  agilicus/agilicus_api/test/test_x509_root_certificate_spec.py,sha256=9wWllirEPH1CuceQBSgVxW-TBQaPaZ3xuPc3jDMjg1I,2832
2482
2491
  agilicus/agilicus_api/test/test_x509_root_certificate_status.py,sha256=COIYEeedyzr928jTCqkmFegB6L8fBfIBjh2c3AgP7to,2846
2483
2492
  agilicus/agilicus_api/test/test_xss_settings.py,sha256=jewRl1k4ciHhxlv06Thi2ESci6sm0bVHaseA8orsQA8,2746
2484
- agilicus/agilicus_api_README.md,sha256=KiCJkPUAzZ2kxyTeX7nPj9ZTtsACTYNuDUlH3MCET7A,159245
2493
+ agilicus/agilicus_api_README.md,sha256=TgDHsBCic_gPH3nIZ3RqeCLzGEjG6bCp103nHYeKwsA,159860
2485
2494
  agilicus/aliases.ini,sha256=MxqiVo2f2xdUDVF1YDkNW36AIqN8hrYjlTVfraEUZXY,455
2486
2495
  agilicus/amq.py,sha256=yxi-YTbJPVl10s78Hlr1dmrQR63iaSIoROGVILzFPmE,1775
2487
2496
  agilicus/apps.py,sha256=cq_EDY49XLg4y3kxET_whzA0mOXVGinlo0rA9GLQDxM,51082
2488
2497
  agilicus/audit_destinations.py,sha256=lJ1VbSt8CtOhnFYnRkgZw-WLZ_RS5K90cqOKSJvn3kA,6884
2489
2498
  agilicus/audits.py,sha256=UKE00xJPkLpx-N08CN-VyDmPYStdPmjmtofJO72bVH8,3521
2490
- agilicus/billing.py,sha256=_XKZX84TrH6lDTrYbj7OMlbqzF6ZQNfKnZ_8-LXRZA0,24079
2499
+ agilicus/billing.py,sha256=xi4Hw-39StnTxC2tjwW8gB_VVaSwW11VyjScNqmYDJk,24966
2491
2500
  agilicus/catalogues.py,sha256=K8pcc-GLXzSXxvPauNNxIBN4fBVi1jTp57eAv_XmGqA,3218
2492
2501
  agilicus/certificate.py,sha256=iXC4iT3EGISyEezrvMgfic_lSCx2_JMSWevTLyGekR8,2739
2493
2502
  agilicus/challenges.py,sha256=Ig9888pHGMigBxI_e8m2T_HZiqbU6TxsBXT2EKZoIUY,6968
@@ -2531,10 +2540,10 @@ agilicus/labels/labels_main.py,sha256=ptJ34mf-iVaf8ezf3RWLcpeP2O0ntezS4tqJ0ks0el
2531
2540
  agilicus/launchers.py,sha256=XRW8cO_S7HHs-Cc6_baol9AOOsuGlMto7bLcsKYk6qA,11199
2532
2541
  agilicus/logs.py,sha256=tS8c_sdre1Dncrl59GVGQ0L3d2jtwlVjvIMl3SHJraY,766
2533
2542
  agilicus/lookups.py,sha256=MNmNsKpP7Fq_poLAnL9xo_iptFilKM9ziGLyIe8VKaw,669
2534
- agilicus/main.py,sha256=a4hMEkKtiPp_x-gAGowYLLnF_-XTc09LHVYJQ1esQTo,266375
2543
+ agilicus/main.py,sha256=C-Xjt3WJz0_znUym53nyV_s6YeZNt4BwTboQDSm8dWc,267804
2535
2544
  agilicus/messages.py,sha256=Ydm-VhAsK23UnYdstv_HsOybBODfui5ubKc7F8R_dsw,5187
2536
2545
  agilicus/metrics.py,sha256=v4rwpvqDzeNG5GKNoZ7t34X5qUgly5IW2s-kXlS2vQM,2315
2537
- agilicus/orgs.py,sha256=H_QdlUwIqZhBXt6mi8EblwkbzaUbsmYbUcwwgFO7-co,13473
2546
+ agilicus/orgs.py,sha256=SPDKJPjZQfqdbNXTIc2Ae5gktEio5Llvs0Bqvh4wFP0,14127
2538
2547
  agilicus/output/__init__.py,sha256=UKZbHS4t15vazJuN46FN-3HHqkxMXU0p3df2VcsSLcY,110
2539
2548
  agilicus/output/column_builder.py,sha256=TWo4t8ygaTUv7qjD_moDroD1bKzzyTIao0FmLy5gs4o,4284
2540
2549
  agilicus/output/console.py,sha256=xBURxlA7H1kmQ7zIKuifs_aQJq1cvmCJ5CtQVSo3_Ns,400
@@ -2572,8 +2581,8 @@ agilicus/trusted_certs/trusted_certs_main.py,sha256=6dHHWXvNIcUa_nA9ptigL4Vibe4n
2572
2581
  agilicus/users.py,sha256=JT7TIiUOtSFXPOdxmIVFm7ygZTH1FjsIkD9j-vjLuMM,38474
2573
2582
  agilicus/version.py,sha256=G9OFdL1v_4dLDfk6I6taDNypM5bbO-JHAwilsu9LYgg,23
2574
2583
  agilicus/whoami.py,sha256=kqghtWMgZOd2rhKmfguDwCTm6A3gNS8Kj-S2IBxBtl0,206
2575
- agilicus-1.256.7.dist-info/LICENSE.txt,sha256=Zq4tqiCroC2CVrBB_PWjapRdvpae23nljdiaSkOzUho,1061
2576
- agilicus-1.256.7.dist-info/METADATA,sha256=UmD6dCGE0TkSRKPrBMEgrU9tyfPJF2543sYc8mzgaDM,3822
2577
- agilicus-1.256.7.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
2578
- agilicus-1.256.7.dist-info/entry_points.txt,sha256=a66hGozzLkHu0IewFzIMbSAhMTNTddUaA2T3_16Gb_s,51
2579
- agilicus-1.256.7.dist-info/RECORD,,
2584
+ agilicus-1.256.9.dist-info/LICENSE.txt,sha256=Zq4tqiCroC2CVrBB_PWjapRdvpae23nljdiaSkOzUho,1061
2585
+ agilicus-1.256.9.dist-info/METADATA,sha256=_qsCUJmKo5v00Okl1x_KrtvnG4bd1QsLiiJGhLRxNpY,3822
2586
+ agilicus-1.256.9.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
2587
+ agilicus-1.256.9.dist-info/entry_points.txt,sha256=a66hGozzLkHu0IewFzIMbSAhMTNTddUaA2T3_16Gb_s,51
2588
+ agilicus-1.256.9.dist-info/RECORD,,