agilicus 1.242.2__py3-none-any.whl → 1.242.4__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- agilicus/agilicus_api/api_client.py +1 -1
- agilicus/agilicus_api/configuration.py +1 -1
- agilicus/agilicus_api/docs/StandaloneRulesetInBundle.md +2 -2
- agilicus/agilicus_api/model/standalone_ruleset_in_bundle.py +3 -3
- agilicus/agilicus_api_README.md +1 -1
- agilicus/apps.py +1 -1
- agilicus/main.py +1 -0
- {agilicus-1.242.2.dist-info → agilicus-1.242.4.dist-info}/METADATA +1 -1
- {agilicus-1.242.2.dist-info → agilicus-1.242.4.dist-info}/RECORD +12 -12
- {agilicus-1.242.2.dist-info → agilicus-1.242.4.dist-info}/LICENSE.txt +0 -0
- {agilicus-1.242.2.dist-info → agilicus-1.242.4.dist-info}/WHEEL +0 -0
- {agilicus-1.242.2.dist-info → agilicus-1.242.4.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.242.
|
80
|
+
self.user_agent = 'OpenAPI-Generator/1.242.4/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.03.06\n"\
|
390
|
-
"SDK Package Version: 1.242.
|
390
|
+
"SDK Package Version: 1.242.4".\
|
391
391
|
format(env=sys.platform, pyversion=sys.version)
|
392
392
|
|
393
393
|
def get_host_settings(self):
|
@@ -1,11 +1,11 @@
|
|
1
1
|
# StandaloneRulesetInBundle
|
2
2
|
|
3
|
-
A container object describing how a StandaloneRuleset is included in a bundle. The priority describes the priority at which the ruleset was ultimately included.
|
3
|
+
A container object describing how a StandaloneRuleset is included in a bundle. The priority describes the priority at which the ruleset was ultimately included. A null priority is treated as the lowest possible priority.
|
4
4
|
|
5
5
|
## Properties
|
6
6
|
Name | Type | Description | Notes
|
7
7
|
------------ | ------------- | ------------- | -------------
|
8
|
-
**priority** | **int** | The priority of a rule. Lower numbers are lower priority. The engine evaluates rules in order of highest priority to lowest. |
|
8
|
+
**priority** | **int, none_type** | The priority of a rule. Lower numbers are lower priority. The engine evaluates rules in order of highest priority to lowest. |
|
9
9
|
**standalone_ruleset** | [**StandaloneRuleset**](StandaloneRuleset.md) | |
|
10
10
|
**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]
|
11
11
|
|
@@ -104,7 +104,7 @@ class StandaloneRulesetInBundle(ModelNormal):
|
|
104
104
|
"""
|
105
105
|
lazy_import()
|
106
106
|
return {
|
107
|
-
'priority': (int,), # noqa: E501
|
107
|
+
'priority': (int, none_type,), # noqa: E501
|
108
108
|
'standalone_ruleset': (StandaloneRuleset,), # noqa: E501
|
109
109
|
}
|
110
110
|
|
@@ -130,7 +130,7 @@ class StandaloneRulesetInBundle(ModelNormal):
|
|
130
130
|
"""StandaloneRulesetInBundle - a model defined in OpenAPI
|
131
131
|
|
132
132
|
Args:
|
133
|
-
priority (int): The priority of a rule. Lower numbers are lower priority. The engine evaluates rules in order of highest priority to lowest.
|
133
|
+
priority (int, none_type): The priority of a rule. Lower numbers are lower priority. The engine evaluates rules in order of highest priority to lowest.
|
134
134
|
standalone_ruleset (StandaloneRuleset):
|
135
135
|
|
136
136
|
Keyword Args:
|
@@ -220,7 +220,7 @@ class StandaloneRulesetInBundle(ModelNormal):
|
|
220
220
|
"""StandaloneRulesetInBundle - a model defined in OpenAPI
|
221
221
|
|
222
222
|
Args:
|
223
|
-
priority (int): The priority of a rule. Lower numbers are lower priority. The engine evaluates rules in order of highest priority to lowest.
|
223
|
+
priority (int, none_type): The priority of a rule. Lower numbers are lower priority. The engine evaluates rules in order of highest priority to lowest.
|
224
224
|
standalone_ruleset (StandaloneRuleset):
|
225
225
|
|
226
226
|
Keyword Args:
|
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.03.06
|
7
|
-
- Package version: 1.242.
|
7
|
+
- Package version: 1.242.4
|
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
@@ -584,7 +584,7 @@ def update_application_configs(
|
|
584
584
|
if oidc_config_recursive_replace is not None:
|
585
585
|
domain_mapping_config = oidc_config.setdefault("domain_mapping", {})
|
586
586
|
domain_mapping_config[
|
587
|
-
"
|
587
|
+
"use_recursive_replacement_system"
|
588
588
|
] = oidc_config_recursive_replace
|
589
589
|
|
590
590
|
if authentication_config_application_handles_authentication is not None:
|
agilicus/main.py
CHANGED
@@ -7381,6 +7381,7 @@ def watch_issuers(ctx, **kwargs):
|
|
7381
7381
|
@click.option("--oidc-config-auth-issuer", default=None)
|
7382
7382
|
@click.option("--oidc-config-auth-redirect-after-signin-path", default=None)
|
7383
7383
|
@click.option("--oidc-config-auth-redirect-subpath", default=None)
|
7384
|
+
@click.option("--oidc_config_recursive_replace", default=None, type=bool)
|
7384
7385
|
@click.option("--authentication-config-application-handles-authentication", type=bool)
|
7385
7386
|
@click.option(
|
7386
7387
|
"--authentication-config-upstream-ntlm-passthrough", type=bool, default=None
|
@@ -67,9 +67,9 @@ agilicus/agilicus_api/api/users_api.py,sha256=s0Z1N9pzEnW0f5JYgwZaFWt_LO6cTvENGw
|
|
67
67
|
agilicus/agilicus_api/api/users_api_mock.py,sha256=wA_xiqL3Pz3KjljKlsmf5NveLZS1FpbaKJHBp7QvarY,15411
|
68
68
|
agilicus/agilicus_api/api/whoami_api.py,sha256=NjPeYn-F-3m3TLl0VF3E_riEp2qw696FIsbFh1BGiH0,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=AH4tq0qlVWmJRBSHrNUUBnt9wlks-1eO3iT8rfx_fcg,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=pgVz-zxx2KPEGpwvgffBEOLWdqX_LDU_OS4PpuKbfeY,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
|
@@ -743,7 +743,7 @@ agilicus/agilicus_api/docs/StandaloneRulesetBundleLabel.md,sha256=u7jmRb9W3as0wG
|
|
743
743
|
agilicus/agilicus_api/docs/StandaloneRulesetBundleName.md,sha256=Buik6b3fy7sWojHJc1D9Wnwthrd4i3PzyAOyL8TXfZo,612
|
744
744
|
agilicus/agilicus_api/docs/StandaloneRulesetBundleSpec.md,sha256=epMgNDDa5FutHJxVgrmawxF7xPhN2QQMkc-qVVRxlsE,963
|
745
745
|
agilicus/agilicus_api/docs/StandaloneRulesetBundleStatus.md,sha256=QYV8d8YFyhdtB0rJip0FvbFVF3-Lbo0rqijzW8iFtPs,774
|
746
|
-
agilicus/agilicus_api/docs/StandaloneRulesetInBundle.md,sha256=
|
746
|
+
agilicus/agilicus_api/docs/StandaloneRulesetInBundle.md,sha256=se-oD9MVrLjW2sAhoDmqtBBLvTFpqX3JWruhrMeP96Y,937
|
747
747
|
agilicus/agilicus_api/docs/StandaloneRulesetLabel.md,sha256=TdcpT-7PUmeJJ3zqh2PmWXhucYjJ9RZoo-dXseLo4Ks,801
|
748
748
|
agilicus/agilicus_api/docs/StandaloneRulesetLabelName.md,sha256=CD_R7fSUKujHU5W_oOfTlnkrPiJSGuMbespKp_sX5Y4,619
|
749
749
|
agilicus/agilicus_api/docs/StandaloneRulesetLabelSpec.md,sha256=7nSzOEFi8GNlzjH2Q9sXUVsIuny1ZGaH5CSDEJbPNtE,599
|
@@ -1500,7 +1500,7 @@ agilicus/agilicus_api/model/standalone_ruleset_bundle_label.py,sha256=C8FV9HjHl3
|
|
1500
1500
|
agilicus/agilicus_api/model/standalone_ruleset_bundle_name.py,sha256=z05_Cj2MGXYgRCuqfV3poQoFNomu8hIuCBFp3X4rfkw,14067
|
1501
1501
|
agilicus/agilicus_api/model/standalone_ruleset_bundle_spec.py,sha256=woxc1sbFUe660Xhr13E4Ap3s0-ltcpgNHrQun7gUMxk,14728
|
1502
1502
|
agilicus/agilicus_api/model/standalone_ruleset_bundle_status.py,sha256=01SJFsI5mHhju99nZIcDw74u92tefP8KvGRdZVLWF8c,14460
|
1503
|
-
agilicus/agilicus_api/model/standalone_ruleset_in_bundle.py,sha256=
|
1503
|
+
agilicus/agilicus_api/model/standalone_ruleset_in_bundle.py,sha256=_FxskXhlLpQif9hpYzVzryfnY9fGONDkin-oxxgqa1g,14471
|
1504
1504
|
agilicus/agilicus_api/model/standalone_ruleset_label.py,sha256=mI9cID4Ibr6CI6Zj-NYX3lPtawmPGOAYDefCNwJ9rdg,14678
|
1505
1505
|
agilicus/agilicus_api/model/standalone_ruleset_label_name.py,sha256=5fkPVdrtAteOmxhjS6pS7uh4LXBIZCqmIwBuYeDpuP4,14080
|
1506
1506
|
agilicus/agilicus_api/model/standalone_ruleset_label_spec.py,sha256=fI_4hUk4QEVWGmLwXb66yQhEennP-iY71ZhwMqE66kU,14034
|
@@ -2389,10 +2389,10 @@ agilicus/agilicus_api/test/test_x509_root_certificate.py,sha256=dwiT5gGyrfgYvQ3J
|
|
2389
2389
|
agilicus/agilicus_api/test/test_x509_root_certificate_spec.py,sha256=gQqLrYI5ulH1MtjXnyasiZ6j_CXwuUSDQEsMS2dezkc,2832
|
2390
2390
|
agilicus/agilicus_api/test/test_x509_root_certificate_status.py,sha256=8hP-8epbf2HPpqncDlx6I4NUqDXktbLm4LQMqZs98Jk,2846
|
2391
2391
|
agilicus/agilicus_api/test/test_xss_settings.py,sha256=9-iQNVSuiGROWbYzrJtk2bocEyM-_U8yhRccfb0ZUBY,2746
|
2392
|
-
agilicus/agilicus_api_README.md,sha256=
|
2392
|
+
agilicus/agilicus_api_README.md,sha256=bd7ZTfHL3Pb2VIFnPUZFycTaDPwpBJ4V9GpRSuZgUQ8,153988
|
2393
2393
|
agilicus/aliases.ini,sha256=MxqiVo2f2xdUDVF1YDkNW36AIqN8hrYjlTVfraEUZXY,455
|
2394
2394
|
agilicus/amq.py,sha256=yxi-YTbJPVl10s78Hlr1dmrQR63iaSIoROGVILzFPmE,1775
|
2395
|
-
agilicus/apps.py,sha256=
|
2395
|
+
agilicus/apps.py,sha256=vQcpLnzrRF2PnBXbMx9ayH1X7N6z3iQD2Jw-5jK9KJE,50657
|
2396
2396
|
agilicus/audit_destinations.py,sha256=lJ1VbSt8CtOhnFYnRkgZw-WLZ_RS5K90cqOKSJvn3kA,6884
|
2397
2397
|
agilicus/audits.py,sha256=UKE00xJPkLpx-N08CN-VyDmPYStdPmjmtofJO72bVH8,3521
|
2398
2398
|
agilicus/billing.py,sha256=_XKZX84TrH6lDTrYbj7OMlbqzF6ZQNfKnZ_8-LXRZA0,24079
|
@@ -2438,7 +2438,7 @@ agilicus/labels/labels_main.py,sha256=i3HA1ZuMG6N28mwmlhAMt4N95RNpm4eDS3EVRChjRu
|
|
2438
2438
|
agilicus/launchers.py,sha256=XRW8cO_S7HHs-Cc6_baol9AOOsuGlMto7bLcsKYk6qA,11199
|
2439
2439
|
agilicus/logs.py,sha256=tS8c_sdre1Dncrl59GVGQ0L3d2jtwlVjvIMl3SHJraY,766
|
2440
2440
|
agilicus/lookups.py,sha256=MNmNsKpP7Fq_poLAnL9xo_iptFilKM9ziGLyIe8VKaw,669
|
2441
|
-
agilicus/main.py,sha256=
|
2441
|
+
agilicus/main.py,sha256=WgXC9UcKRA04Zxc-Gc1biMQQXIh9HC9r4xJOCvwmMqk,261241
|
2442
2442
|
agilicus/messages.py,sha256=Ydm-VhAsK23UnYdstv_HsOybBODfui5ubKc7F8R_dsw,5187
|
2443
2443
|
agilicus/metrics.py,sha256=v4rwpvqDzeNG5GKNoZ7t34X5qUgly5IW2s-kXlS2vQM,2315
|
2444
2444
|
agilicus/orgs.py,sha256=rwTuumHWz0_QPqWNdDPPdAJRGTTNUxVw7bBkxU5a8n8,12874
|
@@ -2475,8 +2475,8 @@ agilicus/trusted_certs/trusted_certs_main.py,sha256=6dHHWXvNIcUa_nA9ptigL4Vibe4n
|
|
2475
2475
|
agilicus/users.py,sha256=cBqZwqNz_9lcEJuFL5YTUFpbN56kL0-maBlM29KWWrQ,38728
|
2476
2476
|
agilicus/version.py,sha256=G9OFdL1v_4dLDfk6I6taDNypM5bbO-JHAwilsu9LYgg,23
|
2477
2477
|
agilicus/whoami.py,sha256=kqghtWMgZOd2rhKmfguDwCTm6A3gNS8Kj-S2IBxBtl0,206
|
2478
|
-
agilicus-1.242.
|
2479
|
-
agilicus-1.242.
|
2480
|
-
agilicus-1.242.
|
2481
|
-
agilicus-1.242.
|
2482
|
-
agilicus-1.242.
|
2478
|
+
agilicus-1.242.4.dist-info/LICENSE.txt,sha256=Zq4tqiCroC2CVrBB_PWjapRdvpae23nljdiaSkOzUho,1061
|
2479
|
+
agilicus-1.242.4.dist-info/METADATA,sha256=YQsPxmziYfLMH3GLXL2OrAiYgAD9JlkzXXF_d0OKma4,3782
|
2480
|
+
agilicus-1.242.4.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
2481
|
+
agilicus-1.242.4.dist-info/entry_points.txt,sha256=a66hGozzLkHu0IewFzIMbSAhMTNTddUaA2T3_16Gb_s,51
|
2482
|
+
agilicus-1.242.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|