agilicus 1.290.10__py3-none-any.whl → 1.290.11__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.
@@ -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.290.10/python'
80
+ self.user_agent = 'OpenAPI-Generator/1.290.11/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: 2025.06.11\n"\
390
- "SDK Package Version: 1.290.10".\
390
+ "SDK Package Version: 1.290.11".\
391
391
  format(env=sys.platform, pyversion=sys.version)
392
392
 
393
393
  def get_host_settings(self):
@@ -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: 2025.06.11
7
- - Package version: 1.290.10
7
+ - Package version: 1.290.11
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/main.py CHANGED
@@ -8616,17 +8616,15 @@ def list_support_requests(ctx, **kwargs):
8616
8616
  print(table)
8617
8617
 
8618
8618
 
8619
- @cli.command(name="add-support-request")
8620
- @click.argument("org-id", type=str)
8621
- @click.argument("supporting-user-email", type=str)
8619
+ @cli.command(name="create-support-request")
8620
+ @click.option("--org-id", type=str, default=None)
8621
+ @click.option("--supporting-user-email", type=str)
8622
8622
  @click.option("--supporting-user-org-id", type=str)
8623
8623
  @click.option("--expiry", type=click.DateTime(), default=None)
8624
8624
  @click.option("--viewer-only-permissions", default=False, type=bool)
8625
8625
  @click.pass_context
8626
- def add_support_user(
8627
- ctx, org_id, supporting_user_org_id, supporting_user_email, **kwargs
8628
- ):
8629
- result = users.add_support_request(ctx, org_id, supporting_user_email, **kwargs)
8626
+ def create_support_request(ctx, org_id, **kwargs):
8627
+ result = users.create_support_request(ctx, org_id, **kwargs)
8630
8628
  output_entry(ctx, result)
8631
8629
 
8632
8630
 
agilicus/users.py CHANGED
@@ -1211,11 +1211,13 @@ def list_support_requests(ctx, **kwargs):
1211
1211
  return query_results.support_requests
1212
1212
 
1213
1213
 
1214
- def add_support_request(ctx, org_id, supporting_user_email, **kwargs):
1214
+ def create_support_request(ctx, org_id=None, **kwargs):
1215
1215
  apiclient = context.get_apiclient_from_ctx(ctx)
1216
+ token = context.get_token(ctx)
1217
+ if org_id is None:
1218
+ org_id = context.get_org_id(ctx, token)
1216
1219
  spec = agilicus.SupportRequestSpec(
1217
1220
  org_id=org_id,
1218
- supporting_user_email=agilicus.Email(supporting_user_email),
1219
1221
  **input_helpers.strip_none(kwargs),
1220
1222
  )
1221
1223
  model = agilicus.SupportRequest(spec=spec)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: agilicus
3
- Version: 1.290.10
3
+ Version: 1.290.11
4
4
  Summary: Agilicus SDK
5
5
  Home-page: https://www.agilicus.com/
6
6
  License: MIT
@@ -71,9 +71,9 @@ agilicus/agilicus_api/api/users_api.py,sha256=6iBg0yZqBaN5pDA8tMD-TCC4oNLRC5sNK1
71
71
  agilicus/agilicus_api/api/users_api_mock.py,sha256=qhSAgEn7e9JXflf_UQm-6GhWIBfVuthUUcfFDhSyp_o,17502
72
72
  agilicus/agilicus_api/api/whoami_api.py,sha256=xLkmwT8-oC5G7sQkx9wWzShxCOCnD2PytpLK-FCgeRw,7941
73
73
  agilicus/agilicus_api/api/whoami_api_mock.py,sha256=rlvZoWnMCqORMZBg7SOv6d3xp52kELdh6wXcCaIZ93w,346
74
- agilicus/agilicus_api/api_client.py,sha256=ZBWMMi7W23hZV6_Cbc1U9Sy0YpFMCHPzkSSyrLujdxw,38846
74
+ agilicus/agilicus_api/api_client.py,sha256=FrdiuWjTcYbNo6A6PMrVEGNQlyIApSznwt-f5G46w1U,38846
75
75
  agilicus/agilicus_api/apis/__init__.py,sha256=aJZD7x-umdSni6ZBr4XxzpH8pwtU9hA5LlCDxcqa1Q8,2224
76
- agilicus/agilicus_api/configuration.py,sha256=_ZUoR11c9pi1THQKt74c-1y4KomIZPF_1wNWtI9k-nM,18448
76
+ agilicus/agilicus_api/configuration.py,sha256=dWFaEGfU3hRhCdCLhLNnRFdRlkQKgYMMP2HHwxB5JKg,18448
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
@@ -2706,7 +2706,7 @@ agilicus/agilicus_api/test/test_x509_root_certificate.py,sha256=nUa0v-KChxSo_Rh1
2706
2706
  agilicus/agilicus_api/test/test_x509_root_certificate_spec.py,sha256=ao55VZtoutS1KQEcg7PmsLnGLeQdgidUUIMrBt5J4SE,2832
2707
2707
  agilicus/agilicus_api/test/test_x509_root_certificate_status.py,sha256=Wr4EggWQDEleyrO-BwPIA-Wy3aS9KChgzF4NX1EwI7Q,2846
2708
2708
  agilicus/agilicus_api/test/test_xss_settings.py,sha256=pmCwEK6Ja6NmsYocwi3OnGAmhFmq4KYU9kIS3MrrqvY,2746
2709
- agilicus/agilicus_api_README.md,sha256=mnG8EuNXAI3P1NdF_Fy_KBseeK70i4Sd3OxzTF01zNQ,173930
2709
+ agilicus/agilicus_api_README.md,sha256=xQcxxdHcoxuylF3OrGmj_CaM3MPXtiyYfsw7q-72EIc,173930
2710
2710
  agilicus/aliases.ini,sha256=MxqiVo2f2xdUDVF1YDkNW36AIqN8hrYjlTVfraEUZXY,455
2711
2711
  agilicus/amq.py,sha256=yxi-YTbJPVl10s78Hlr1dmrQR63iaSIoROGVILzFPmE,1775
2712
2712
  agilicus/apps.py,sha256=Mdc_pRXyfa-IvIFH7gNbx0Ob64gUHggZyeSyLUDpjMs,54048
@@ -2762,7 +2762,7 @@ agilicus/labels/labels_main.py,sha256=l2z_41X3sMJoSM483LmAzJE6bKKHVAEvrPjfz7QvFg
2762
2762
  agilicus/launchers.py,sha256=r4nctnVtfP-Ho_HXEfAiMaMqJI0u7pbieHSS3Vd0QBE,11361
2763
2763
  agilicus/logs.py,sha256=Y4XVcLctY-2O-Q_CXbJs9sAqu0NknHKSsqilKiDM_A0,804
2764
2764
  agilicus/lookups.py,sha256=MNmNsKpP7Fq_poLAnL9xo_iptFilKM9ziGLyIe8VKaw,669
2765
- agilicus/main.py,sha256=uDYZ4aL3v0zcsKdhfR61F4cOw_cW1Kuc_8XMnb05ffU,291476
2765
+ agilicus/main.py,sha256=vpAQnDes_N9pU_xpnYpkFgzwG4FEJoH9NuYDuiNYhpg,291426
2766
2766
  agilicus/messages/__init__.py,sha256=cVqfaKUndO-AYfppkdFICM5WvYFFB1hRjXihFWmiGPQ,174
2767
2767
  agilicus/messages/messages.py,sha256=b2eO6BaWI9UZTLETcdy1NotyuNlKIJf6CS_TUzehuk4,9175
2768
2768
  agilicus/messages/messages_main.py,sha256=A0xucYwwUZFIuUc0bAyAqVwofErakmyawq5bwhZKcOU,1598
@@ -2806,11 +2806,11 @@ agilicus/tokens.py,sha256=0zckgaZxYF8PFNBhUnV6yrrmVGru3dmh1qSH6YZQhsE,20515
2806
2806
  agilicus/transfers.py,sha256=PYr_fW7dyXNUXzi5Wp5mUjZOvU7MbRzoN-D8Omo-YSQ,1523
2807
2807
  agilicus/trusted_certs/trusted_certs.py,sha256=HCAvYxOA3ooaee2_KbYJd6Yt_dxDEn8hjhy1upVJUYE,7951
2808
2808
  agilicus/trusted_certs/trusted_certs_main.py,sha256=6dHHWXvNIcUa_nA9ptigL4Vibe4nB2wnWFTTJ8AOgXo,5155
2809
- agilicus/users.py,sha256=8TTMzmVzVjrRgE97US753Ag6YtBVAIGV93TXLRNVHZQ,42122
2809
+ agilicus/users.py,sha256=j2nK8q64miyNm-ARZSzQmkUXMRKEttKIKZURx7QJfLg,42144
2810
2810
  agilicus/version.py,sha256=G9OFdL1v_4dLDfk6I6taDNypM5bbO-JHAwilsu9LYgg,23
2811
2811
  agilicus/whoami.py,sha256=kqghtWMgZOd2rhKmfguDwCTm6A3gNS8Kj-S2IBxBtl0,206
2812
- agilicus-1.290.10.dist-info/LICENSE.txt,sha256=Zq4tqiCroC2CVrBB_PWjapRdvpae23nljdiaSkOzUho,1061
2813
- agilicus-1.290.10.dist-info/METADATA,sha256=ia8gJnEESnRuQVdwnta6hpA7hPq9-AZsAW29Mx40tXA,3879
2814
- agilicus-1.290.10.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
2815
- agilicus-1.290.10.dist-info/entry_points.txt,sha256=a66hGozzLkHu0IewFzIMbSAhMTNTddUaA2T3_16Gb_s,51
2816
- agilicus-1.290.10.dist-info/RECORD,,
2812
+ agilicus-1.290.11.dist-info/LICENSE.txt,sha256=Zq4tqiCroC2CVrBB_PWjapRdvpae23nljdiaSkOzUho,1061
2813
+ agilicus-1.290.11.dist-info/METADATA,sha256=9NXXNouH5nMBFYll-YIh61aZQExn2rPQ7AHiIQiWRh4,3879
2814
+ agilicus-1.290.11.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
2815
+ agilicus-1.290.11.dist-info/entry_points.txt,sha256=a66hGozzLkHu0IewFzIMbSAhMTNTddUaA2T3_16Gb_s,51
2816
+ agilicus-1.290.11.dist-info/RECORD,,