agilicus 1.272.0__py3-none-any.whl → 1.273.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.
@@ -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.272.0/python'
80
+ self.user_agent = 'OpenAPI-Generator/1.273.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: 2025.01.16\n"\
390
- "SDK Package Version: 1.272.0".\
390
+ "SDK Package Version: 1.273.0".\
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.01.16
7
- - Package version: 1.272.0
7
+ - Package version: 1.273.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/main.py CHANGED
@@ -715,7 +715,7 @@ def list_auth_audit_records(ctx, **kwargs):
715
715
  @click.option("--organisation", default=None)
716
716
  @click.option("--org-id", default=None)
717
717
  @click.option("--email", default=None)
718
- @click.option("--previous-email", default=None)
718
+ @click.option("--previous-email", default="")
719
719
  @click.option("--limit", type=int, default=None)
720
720
  @click.option(
721
721
  "--status", multiple=True, type=click.Choice(users.STATUS_OPTIONS), default=None
@@ -727,17 +727,17 @@ def list_auth_audit_records(ctx, **kwargs):
727
727
  )
728
728
  @click.option("--has-roles", type=bool, default=None)
729
729
  @click.option("--has-resource-roles", type=bool, default=None)
730
- @click.option("--prefix-email-search", default="")
730
+ @click.option("--prefix-email-search", default=None)
731
731
  @click.option("--first-name", default=None)
732
732
  @click.option("--last-name", default=None)
733
733
  @click.option("--user-id", default=None)
734
734
  @click.option("--search-param", multiple=True, default=None)
735
- @click.option("--allow-partial-match", is_flag=True, default=False)
735
+ @click.option("--allow-partial-match", is_flag=True, default=None)
736
736
  @click.option("--type", multiple=True, default=None)
737
737
  @click.option("--upstream-idp-id", default=None)
738
738
  @click.option("--upstream-user-id", default=None)
739
739
  @click.option("--issuer", default=None)
740
- @click.option("--has-application-permissions", default=False)
740
+ @click.option("--has-application-permissions", default=None)
741
741
  @click.option("--show-columns", type=str, default=None)
742
742
  @click.option("--reset-columns", is_flag=True, default=False)
743
743
  @click.option("--has-resource-or-application-roles", is_flag=True, default=None)
@@ -3653,14 +3653,14 @@ def list_oidc_upstream_providers(ctx, issuer_id=None, **kwargs):
3653
3653
  upstream["icon"],
3654
3654
  upstream["client_id"],
3655
3655
  upstream["client_secret"],
3656
- upstream["issuer_external_host"],
3657
- upstream["username_key"],
3658
- upstream["user_id_key"],
3659
- upstream["email_key"],
3660
- upstream["email_verification_required"],
3661
- upstream["request_user_info"],
3656
+ upstream.get("issuer_external_host"),
3657
+ upstream.get("username_key"),
3658
+ upstream.get("user_id_key"),
3659
+ upstream.get("email_key"),
3660
+ upstream.get("email_verification_required"),
3661
+ upstream.get("request_user_info"),
3662
3662
  upstream.get("auto_create_status", "---"),
3663
- upstream["prompt_mode"],
3663
+ upstream.get("prompt_mode"),
3664
3664
  ]
3665
3665
  )
3666
3666
  print(table)
@@ -7152,6 +7152,7 @@ def override_replace(
7152
7152
  @click.option("--product-id", default=None)
7153
7153
  @click.option("--subscription-reconcile", default=None)
7154
7154
  @click.option("--trial-period", type=int, default=None)
7155
+ @click.option("--dev-mode", is_flag=True, default=None)
7155
7156
  @click.pass_context
7156
7157
  def update_subscription(
7157
7158
  ctx,
@@ -7161,6 +7162,7 @@ def update_subscription(
7161
7162
  remove_feature_id=None,
7162
7163
  product_id=None,
7163
7164
  subscription_reconcile=None,
7165
+ dev_mode=None,
7164
7166
  **kwargs,
7165
7167
  ):
7166
7168
  """Update the min/max overrides in a customer subscription."""
@@ -7190,7 +7192,7 @@ def update_subscription(
7190
7192
 
7191
7193
  bsub.spec.usage_override = usage_override
7192
7194
 
7193
- if subscription_id:
7195
+ if subscription_id is not None:
7194
7196
  bsub.spec.subscription_id = subscription_id
7195
7197
 
7196
7198
  if billing_account_id:
@@ -7211,6 +7213,9 @@ def update_subscription(
7211
7213
  if product_id is not None:
7212
7214
  bsub.spec.product_id = product_id
7213
7215
 
7216
+ if dev_mode is not None:
7217
+ bsub.spec.dev_mode = dev_mode
7218
+
7214
7219
  params = {}
7215
7220
  if subscription_reconcile is not None:
7216
7221
  params["subscription_reconcile"] = subscription_reconcile
agilicus/users.py CHANGED
@@ -78,7 +78,7 @@ def _construct_query(
78
78
 
79
79
  if email:
80
80
  params["email"] = email
81
- if previous_email:
81
+ if previous_email is not None:
82
82
  params["previous_email"] = previous_email
83
83
  if limit:
84
84
  params["limit"] = limit
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: agilicus
3
- Version: 1.272.0
3
+ Version: 1.273.0
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=NfZtuCmi2HHF5jQSJSBfnwRUnzTEtdQpY8
71
71
  agilicus/agilicus_api/api/users_api_mock.py,sha256=wA_xiqL3Pz3KjljKlsmf5NveLZS1FpbaKJHBp7QvarY,15411
72
72
  agilicus/agilicus_api/api/whoami_api.py,sha256=V8dBpYL7XyndtgXYGa7zWmj3xY-XvD4EqPW2ESFG5X8,7941
73
73
  agilicus/agilicus_api/api/whoami_api_mock.py,sha256=rlvZoWnMCqORMZBg7SOv6d3xp52kELdh6wXcCaIZ93w,346
74
- agilicus/agilicus_api/api_client.py,sha256=vcBnu4mIArDy-vDris7Yssh-q2K_o_Q_jdm8rzKnFi4,38845
74
+ agilicus/agilicus_api/api_client.py,sha256=dJErFwBbW5z4pV0vx1H_fmi3m6L95qdY14BQXPU7Ek0,38845
75
75
  agilicus/agilicus_api/apis/__init__.py,sha256=aJZD7x-umdSni6ZBr4XxzpH8pwtU9hA5LlCDxcqa1Q8,2224
76
- agilicus/agilicus_api/configuration.py,sha256=MC4b1WgPGhGWOEllMEkQPeD8FWj10biwm8CK-UJm3M4,18447
76
+ agilicus/agilicus_api/configuration.py,sha256=gQbOatRivvCmk1p6v5EcDvwwu40nJV63rf7RnT_lZ7I,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
@@ -2565,7 +2565,7 @@ agilicus/agilicus_api/test/test_x509_root_certificate.py,sha256=9OH5ubE1KL86VthC
2565
2565
  agilicus/agilicus_api/test/test_x509_root_certificate_spec.py,sha256=EcyxDwJ-4NvdWxZkvus3_zhIZ-NaYBbZEUSW50xCeMQ,2832
2566
2566
  agilicus/agilicus_api/test/test_x509_root_certificate_status.py,sha256=TVT452nhbmG1_rrM0cwGjo2vX0e46PTpTfO2_QHxvaU,2846
2567
2567
  agilicus/agilicus_api/test/test_xss_settings.py,sha256=9254Im_kWNkPnUVksqhB_SVsD-7K_Y0ZOAwnSEYYO5c,2746
2568
- agilicus/agilicus_api_README.md,sha256=T4Cs_bCXw5r6XZrKXLFPFKlF0y3hwoBi5y73AjsGSns,164612
2568
+ agilicus/agilicus_api_README.md,sha256=VDsi9uIdQokzYEp4FKZKmzQj18G8hxxqFpWu5XQ-XEU,164612
2569
2569
  agilicus/aliases.ini,sha256=MxqiVo2f2xdUDVF1YDkNW36AIqN8hrYjlTVfraEUZXY,455
2570
2570
  agilicus/amq.py,sha256=yxi-YTbJPVl10s78Hlr1dmrQR63iaSIoROGVILzFPmE,1775
2571
2571
  agilicus/apps.py,sha256=ZRPqOq9ecFTqaBce5JQW7e1zekoJbhgYKDDsxyWo5BA,53212
@@ -2615,7 +2615,7 @@ agilicus/labels/labels_main.py,sha256=ptJ34mf-iVaf8ezf3RWLcpeP2O0ntezS4tqJ0ks0el
2615
2615
  agilicus/launchers.py,sha256=r4nctnVtfP-Ho_HXEfAiMaMqJI0u7pbieHSS3Vd0QBE,11361
2616
2616
  agilicus/logs.py,sha256=tS8c_sdre1Dncrl59GVGQ0L3d2jtwlVjvIMl3SHJraY,766
2617
2617
  agilicus/lookups.py,sha256=MNmNsKpP7Fq_poLAnL9xo_iptFilKM9ziGLyIe8VKaw,669
2618
- agilicus/main.py,sha256=MhqAg4zDFiZEsfbcXFOtgiGh3feTZMd1rmjf5Zg8iQ0,277422
2618
+ agilicus/main.py,sha256=LcXBFALr40o3E9jKJ9OUvD5w-EjBaJY0ab8WZP5kJP8,277603
2619
2619
  agilicus/messages.py,sha256=Ydm-VhAsK23UnYdstv_HsOybBODfui5ubKc7F8R_dsw,5187
2620
2620
  agilicus/metrics.py,sha256=v4rwpvqDzeNG5GKNoZ7t34X5qUgly5IW2s-kXlS2vQM,2315
2621
2621
  agilicus/orgs.py,sha256=S9v1Hnv_qGcJ90uNC3V692srcXTPv6GIHiTF_z5YC90,15902
@@ -2655,11 +2655,11 @@ agilicus/tokens.py,sha256=mwQyxWjynR3SelPJH6ZwMbqdZy7ZiqA4xVD_crlYt_E,18592
2655
2655
  agilicus/transfers.py,sha256=PYr_fW7dyXNUXzi5Wp5mUjZOvU7MbRzoN-D8Omo-YSQ,1523
2656
2656
  agilicus/trusted_certs/trusted_certs.py,sha256=HCAvYxOA3ooaee2_KbYJd6Yt_dxDEn8hjhy1upVJUYE,7951
2657
2657
  agilicus/trusted_certs/trusted_certs_main.py,sha256=6dHHWXvNIcUa_nA9ptigL4Vibe4nB2wnWFTTJ8AOgXo,5155
2658
- agilicus/users.py,sha256=JT7TIiUOtSFXPOdxmIVFm7ygZTH1FjsIkD9j-vjLuMM,38474
2658
+ agilicus/users.py,sha256=ilYuokRwD7mQjm8C99YnxdNz7NiGZexoxOH3slDEuVw,38486
2659
2659
  agilicus/version.py,sha256=G9OFdL1v_4dLDfk6I6taDNypM5bbO-JHAwilsu9LYgg,23
2660
2660
  agilicus/whoami.py,sha256=kqghtWMgZOd2rhKmfguDwCTm6A3gNS8Kj-S2IBxBtl0,206
2661
- agilicus-1.272.0.dist-info/LICENSE.txt,sha256=Zq4tqiCroC2CVrBB_PWjapRdvpae23nljdiaSkOzUho,1061
2662
- agilicus-1.272.0.dist-info/METADATA,sha256=t9S1mhHeBqdQJNrQj5YP_X-mwK0I5xHVLHWisx4GyeQ,3869
2663
- agilicus-1.272.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
2664
- agilicus-1.272.0.dist-info/entry_points.txt,sha256=a66hGozzLkHu0IewFzIMbSAhMTNTddUaA2T3_16Gb_s,51
2665
- agilicus-1.272.0.dist-info/RECORD,,
2661
+ agilicus-1.273.0.dist-info/LICENSE.txt,sha256=Zq4tqiCroC2CVrBB_PWjapRdvpae23nljdiaSkOzUho,1061
2662
+ agilicus-1.273.0.dist-info/METADATA,sha256=fEdKTMFeL-K2YqHRQI6TqxXHLApwVPdA-2YyJQE7-6I,3869
2663
+ agilicus-1.273.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
2664
+ agilicus-1.273.0.dist-info/entry_points.txt,sha256=a66hGozzLkHu0IewFzIMbSAhMTNTddUaA2T3_16Gb_s,51
2665
+ agilicus-1.273.0.dist-info/RECORD,,