agilicus 1.236.4__py3-none-any.whl → 1.236.5__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.
- agilicus/agilicus_api/api_client.py +1 -1
- agilicus/agilicus_api/configuration.py +1 -1
- agilicus/agilicus_api_README.md +1 -1
- agilicus/apps.py +7 -0
- agilicus/main.py +1 -0
- {agilicus-1.236.4.dist-info → agilicus-1.236.5.dist-info}/METADATA +1 -1
- {agilicus-1.236.4.dist-info → agilicus-1.236.5.dist-info}/RECORD +10 -10
- {agilicus-1.236.4.dist-info → agilicus-1.236.5.dist-info}/LICENSE.txt +0 -0
- {agilicus-1.236.4.dist-info → agilicus-1.236.5.dist-info}/WHEEL +0 -0
- {agilicus-1.236.4.dist-info → agilicus-1.236.5.dist-info}/entry_points.txt +0 -0
@@ -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.236.
|
80
|
+
self.user_agent = 'OpenAPI-Generator/1.236.5/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.01.12\n"\
|
390
|
-
"SDK Package Version: 1.236.
|
390
|
+
"SDK Package Version: 1.236.5".\
|
391
391
|
format(env=sys.platform, pyversion=sys.version)
|
392
392
|
|
393
393
|
def get_host_settings(self):
|
agilicus/agilicus_api_README.md
CHANGED
@@ -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.01.12
|
7
|
-
- Package version: 1.236.
|
7
|
+
- Package version: 1.236.5
|
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/apps.py
CHANGED
@@ -452,6 +452,7 @@ def get_env(ctx, application, env_name, org_id=None, **kwargs):
|
|
452
452
|
|
453
453
|
def update_application_configs(
|
454
454
|
config,
|
455
|
+
additional_include_user_context_headers=None,
|
455
456
|
security_http_cors_allow_resource_origins=None,
|
456
457
|
security_http_cors_enabled=None,
|
457
458
|
security_http_cors_allow_origins=None,
|
@@ -470,6 +471,7 @@ def update_application_configs(
|
|
470
471
|
oidc_config_auth_redirect_subpath=None,
|
471
472
|
**kwargs,
|
472
473
|
):
|
474
|
+
additional_context = config.setdefault("additional_context", {})
|
473
475
|
security = config.setdefault("security", {})
|
474
476
|
http = security.setdefault("http", {})
|
475
477
|
cors = http.setdefault("cors", {})
|
@@ -477,6 +479,11 @@ def update_application_configs(
|
|
477
479
|
auth = oidc_config.setdefault("auth", {})
|
478
480
|
authentication_config = config.setdefault("authentication_config", {})
|
479
481
|
|
482
|
+
if additional_include_user_context_headers is not None:
|
483
|
+
additional_context[
|
484
|
+
"include_user_context_headers"
|
485
|
+
] = additional_include_user_context_headers
|
486
|
+
|
480
487
|
if security_http_cors_allow_resource_origins is not None:
|
481
488
|
cors["allow_resource_origins"] = security_http_cors_allow_resource_origins
|
482
489
|
|
agilicus/main.py
CHANGED
@@ -7326,6 +7326,7 @@ def watch_issuers(ctx, **kwargs):
|
|
7326
7326
|
@click.argument("app")
|
7327
7327
|
@click.argument("env_name")
|
7328
7328
|
@click.option("--org-id", default=None)
|
7329
|
+
@click.option("--additional-include-user-context-headers", type=bool, default=None)
|
7329
7330
|
@click.option("--security-http-cors-allow-resource-origins", type=bool)
|
7330
7331
|
@click.option("--security-http-cors-enabled", type=bool)
|
7331
7332
|
@click.option(
|
@@ -67,9 +67,9 @@ agilicus/agilicus_api/api/users_api.py,sha256=Sq1Oa-W05yuQnOr_0mUt9LHvvKzFVqoWMQ
|
|
67
67
|
agilicus/agilicus_api/api/users_api_mock.py,sha256=wA_xiqL3Pz3KjljKlsmf5NveLZS1FpbaKJHBp7QvarY,15411
|
68
68
|
agilicus/agilicus_api/api/whoami_api.py,sha256=rvZYrxgrt5kOUPxbHiDIDiYm80wkungmQtqbOaPmQeo,7941
|
69
69
|
agilicus/agilicus_api/api/whoami_api_mock.py,sha256=rlvZoWnMCqORMZBg7SOv6d3xp52kELdh6wXcCaIZ93w,346
|
70
|
-
agilicus/agilicus_api/api_client.py,sha256=
|
70
|
+
agilicus/agilicus_api/api_client.py,sha256=dCCYxsy2rUwQ3SeHZPDmQ4c9DTfDwgk5xPe4W7w5nWI,38845
|
71
71
|
agilicus/agilicus_api/apis/__init__.py,sha256=m_hg6OJsEsMp6mZ1mn9OlaTflLjrU3Jc-jvYD9gi_PA,2092
|
72
|
-
agilicus/agilicus_api/configuration.py,sha256=
|
72
|
+
agilicus/agilicus_api/configuration.py,sha256=brzknjsUhHsRQ89dgsvhRMUNAwEkUhoWerczATk7MQI,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
|
@@ -2341,10 +2341,10 @@ agilicus/agilicus_api/test/test_x509_root_certificate.py,sha256=Vuwc3HsVLFlked3K
|
|
2341
2341
|
agilicus/agilicus_api/test/test_x509_root_certificate_spec.py,sha256=EunFjuM2d0_g28w4pXiMxn-bmtpRXM_UdsUcF-D7UaQ,2832
|
2342
2342
|
agilicus/agilicus_api/test/test_x509_root_certificate_status.py,sha256=I-qY0sBG-slQHwn94GKtV3yR5buhl3B7j6r8-ZhZLdw,2846
|
2343
2343
|
agilicus/agilicus_api/test/test_xss_settings.py,sha256=K8DUsR_3c2JxqlMymviv1vyuhBzk8qgE-SP7bYwKLKQ,2746
|
2344
|
-
agilicus/agilicus_api_README.md,sha256=
|
2344
|
+
agilicus/agilicus_api_README.md,sha256=AyqhUyL3gP5hIcVkvhtTJc-3ceGic0D7-SC5wC0AGUg,150254
|
2345
2345
|
agilicus/aliases.ini,sha256=MxqiVo2f2xdUDVF1YDkNW36AIqN8hrYjlTVfraEUZXY,455
|
2346
2346
|
agilicus/amq.py,sha256=yxi-YTbJPVl10s78Hlr1dmrQR63iaSIoROGVILzFPmE,1775
|
2347
|
-
agilicus/apps.py,sha256=
|
2347
|
+
agilicus/apps.py,sha256=P8Ak1c9Zlr_RFLR1s3WevxoyIPY8fd9BNmV-M-LoRRk,49060
|
2348
2348
|
agilicus/audit_destinations.py,sha256=lJ1VbSt8CtOhnFYnRkgZw-WLZ_RS5K90cqOKSJvn3kA,6884
|
2349
2349
|
agilicus/audits.py,sha256=UKE00xJPkLpx-N08CN-VyDmPYStdPmjmtofJO72bVH8,3521
|
2350
2350
|
agilicus/billing.py,sha256=jPyw1HGZ-555neoDEiq08k4JxmBT9K3Qhu2AIOBfggo,22311
|
@@ -2388,7 +2388,7 @@ agilicus/labels/labels_main.py,sha256=aXRNRT1CPiUc0x1Gh_VoCmzrbROzsC5e9ycrwPNT0q
|
|
2388
2388
|
agilicus/launchers.py,sha256=Yy59dzHMCz9ZSs_mMjVGaTw3vdNX58WsmIfX56by69U,11077
|
2389
2389
|
agilicus/logs.py,sha256=tS8c_sdre1Dncrl59GVGQ0L3d2jtwlVjvIMl3SHJraY,766
|
2390
2390
|
agilicus/lookups.py,sha256=MNmNsKpP7Fq_poLAnL9xo_iptFilKM9ziGLyIe8VKaw,669
|
2391
|
-
agilicus/main.py,sha256=
|
2391
|
+
agilicus/main.py,sha256=VG50j31p1VDNFBCj2tjS1OM9MD9HHagCUy3ZPoJ1QMA,257019
|
2392
2392
|
agilicus/messages.py,sha256=Ydm-VhAsK23UnYdstv_HsOybBODfui5ubKc7F8R_dsw,5187
|
2393
2393
|
agilicus/metrics.py,sha256=9l0T7ea4Gvcj7A1C4uC4mv6v26_S8HKnmIuxJjq3mQw,1424
|
2394
2394
|
agilicus/orgs.py,sha256=hrKmF8RI4H1htQNWPiwFOzy2EPBLdgNpV4c9CMxYSiM,12701
|
@@ -2425,8 +2425,8 @@ agilicus/trusted_certs/trusted_certs_main.py,sha256=6dHHWXvNIcUa_nA9ptigL4Vibe4n
|
|
2425
2425
|
agilicus/users.py,sha256=5VthbPUIBzoufqd_Spw2QyR_dw7AxQyV9x2d-6LgvLI,39255
|
2426
2426
|
agilicus/version.py,sha256=G9OFdL1v_4dLDfk6I6taDNypM5bbO-JHAwilsu9LYgg,23
|
2427
2427
|
agilicus/whoami.py,sha256=kqghtWMgZOd2rhKmfguDwCTm6A3gNS8Kj-S2IBxBtl0,206
|
2428
|
-
agilicus-1.236.
|
2429
|
-
agilicus-1.236.
|
2430
|
-
agilicus-1.236.
|
2431
|
-
agilicus-1.236.
|
2432
|
-
agilicus-1.236.
|
2428
|
+
agilicus-1.236.5.dist-info/LICENSE.txt,sha256=Zq4tqiCroC2CVrBB_PWjapRdvpae23nljdiaSkOzUho,1061
|
2429
|
+
agilicus-1.236.5.dist-info/METADATA,sha256=mIO1V0jQf_M-Ltr4jUy9nOlvd2QcSCGBmw7-ej49gvw,3742
|
2430
|
+
agilicus-1.236.5.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
2431
|
+
agilicus-1.236.5.dist-info/entry_points.txt,sha256=a66hGozzLkHu0IewFzIMbSAhMTNTddUaA2T3_16Gb_s,51
|
2432
|
+
agilicus-1.236.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|