Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
175 changes: 145 additions & 30 deletions .fern/replay.lock

Large diffs are not rendered by default.

158 changes: 155 additions & 3 deletions reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -1827,7 +1827,7 @@ For more information, read [Applications in Auth0](https://www.auth0.com/docs/ge
`jwt_configuration.lifetime_in_seconds`, `jwt_configuration.secret_encoded`,
`jwt_configuration.scopes`, `jwt_configuration.alg`, `api_type`,
`logo_uri`, `allowed_clients`, `owners`, `custom_login_page`,
`custom_login_page_off`, `sso`, `addons`, `form_template`,
`custom_login_page_on`, `sso`, `addons`, `form_template`,
`custom_login_page_codeview`, `resource_servers`, `client_metadata`,
`mobile`, `mobile.android`, `mobile.ios`, `allowed_logout_urls`,
`token_endpoint_auth_method`, `is_first_party`, `oidc_conformant`,
Expand Down Expand Up @@ -2695,7 +2695,7 @@ For more information, read [Applications in Auth0](https://www.auth0.com/docs/ge
`jwt_configuration.lifetime_in_seconds`, `jwt_configuration.secret_encoded`,
`jwt_configuration.scopes`, `jwt_configuration.alg`, `api_type`,
`logo_uri`, `allowed_clients`, `owners`, `custom_login_page`,
`custom_login_page_off`, `sso`, `addons`, `form_template`,
`custom_login_page_on`, `sso`, `addons`, `form_template`,
`custom_login_page_codeview`, `resource_servers`, `client_metadata`,
`mobile`, `mobile.android`, `mobile.ios`, `allowed_logout_urls`,
`token_endpoint_auth_method`, `is_first_party`, `oidc_conformant`,
Expand Down Expand Up @@ -3651,6 +3651,14 @@ client.connection_profiles.create(
<dl>
<dd>

**cross_app_access_resource_app:** `typing.Optional[ConnectionProfileCrossAppAccessResourceApp]`

</dd>
</dl>

<dl>
<dd>

**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.

</dd>
Expand Down Expand Up @@ -4054,6 +4062,14 @@ client.connection_profiles.update(
<dl>
<dd>

**cross_app_access_resource_app:** `typing.Optional[ConnectionProfileCrossAppAccessResourceApp]`

</dd>
</dl>

<dl>
<dd>

**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.

</dd>
Expand Down Expand Up @@ -4564,7 +4580,7 @@ client.connections.delete(

Update details for a specific [connection](https://auth0.com/docs/authenticate/identity-providers), including option properties for identity provider configuration.

**Note**: If you use the `options` parameter, the entire `options` object is overridden. To avoid partial data or other issues, ensure all parameters are present when using this option.
**Note**: If you use the `options` parameter, the entire `options` object is overridden. To avoid partial data or other issues, ensure all parameters are present when using this option. If any options are unspecified, the default will be used, even if it differs from the existing value.
</dd>
</dl>
</dd>
Expand Down Expand Up @@ -30778,6 +30794,69 @@ client.keys.encryption.create_public_wrapping_key(
</details>

## Keys NetworkAcls
<details><summary><code>client.keys.network_acls.<a href="src/auth0.management/keys/network_acls/client.py">list</a>() -> GetAllKeysNetworkAclsResponseContent</code></summary>
<dl>
<dd>

#### 📝 Description

<dl>
<dd>

<dl>
<dd>

Retrieve all keys used to verify HTTP Message Signatures on Network ACL rules, ordered by creation time descending.
</dd>
</dl>
</dd>
</dl>

#### 🔌 Usage

<dl>
<dd>

<dl>
<dd>

```python
from auth0.management import Auth0
from auth0.management.environment import Auth0Environment

client = Auth0(
token="<token>",
environment=Auth0Environment.DEFAULT,
)

client.keys.network_acls.list()

```
</dd>
</dl>
</dd>
</dl>

#### ⚙️ Parameters

<dl>
<dd>

<dl>
<dd>

**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.

</dd>
</dl>
</dd>
</dl>


</dd>
</dl>
</details>

<details><summary><code>client.keys.network_acls.<a href="src/auth0.management/keys/network_acls/client.py">create</a>(...) -> CreateKeysNetworkAclsResponseContent</code></summary>
<dl>
<dd>
Expand Down Expand Up @@ -30865,6 +30944,79 @@ client.keys.network_acls.create(
</dl>


</dd>
</dl>
</details>

<details><summary><code>client.keys.network_acls.<a href="src/auth0.management/keys/network_acls/client.py">get</a>(...) -> NetworkAclKey</code></summary>
<dl>
<dd>

#### 📝 Description

<dl>
<dd>

<dl>
<dd>

Retrieve a specific key used to verify HTTP Message Signatures on Network ACL rules.
</dd>
</dl>
</dd>
</dl>

#### 🔌 Usage

<dl>
<dd>

<dl>
<dd>

```python
from auth0.management import Auth0
from auth0.management.environment import Auth0Environment

client = Auth0(
token="<token>",
environment=Auth0Environment.DEFAULT,
)

client.keys.network_acls.get(
id="id",
)

```
</dd>
</dl>
</dd>
</dl>

#### ⚙️ Parameters

<dl>
<dd>

<dl>
<dd>

**id:** `str` — ID of the Network ACL Key to retrieve.

</dd>
</dl>

<dl>
<dd>

**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.

</dd>
</dl>
</dd>
</dl>


</dd>
</dl>
</details>
Expand Down
Loading
Loading