Skip to content

Commit 2890876

Browse files
SDK regeneration
1 parent d6407db commit 2890876

445 files changed

Lines changed: 15821 additions & 183 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

reference.md

Lines changed: 137 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6320,7 +6320,7 @@ client = Auth0(
63206320

63216321
client.event_streams.test(
63226322
id="id",
6323-
event_type="group.created",
6323+
event_type="connection.created",
63246324
)
63256325

63266326
```
@@ -6413,7 +6413,7 @@ client.events.subscribe(
64136413
from_="from",
64146414
from_timestamp="from_timestamp",
64156415
event_type=[
6416-
"group.created"
6416+
"connection.created"
64176417
],
64186418
)
64196419

@@ -10294,6 +10294,14 @@ client.organizations.create(
1029410294
<dl>
1029510295
<dd>
1029610296

10297+
**third_party_client_access:** `typing.Optional[OrganizationThirdPartyClientAccessEnum]`
10298+
10299+
</dd>
10300+
</dl>
10301+
10302+
<dl>
10303+
<dd>
10304+
1029710305
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
1029810306

1029910307
</dd>
@@ -10628,6 +10636,14 @@ client.organizations.update(
1062810636
<dl>
1062910637
<dd>
1063010638

10639+
**third_party_client_access:** `typing.Optional[OrganizationThirdPartyClientAccessEnum]`
10640+
10641+
</dd>
10642+
</dl>
10643+
10644+
<dl>
10645+
<dd>
10646+
1063110647
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
1063210648

1063310649
</dd>
@@ -33614,6 +33630,125 @@ client.organizations.members.effective_roles.sources.groups.list(
3361433630
</dl>
3361533631

3361633632

33633+
</dd>
33634+
</dl>
33635+
</details>
33636+
33637+
## Organizations Roles Members
33638+
<details><summary><code>client.organizations.roles.members.<a href="src/auth0.management/organizations/roles/members/client.py">list</a>(...) -> ListOrganizationRoleMembersResponseContent</code></summary>
33639+
<dl>
33640+
<dd>
33641+
33642+
#### 📝 Description
33643+
33644+
<dl>
33645+
<dd>
33646+
33647+
<dl>
33648+
<dd>
33649+
33650+
List the organization members assigned a specific role within the context of an organization.
33651+
</dd>
33652+
</dl>
33653+
</dd>
33654+
</dl>
33655+
33656+
#### 🔌 Usage
33657+
33658+
<dl>
33659+
<dd>
33660+
33661+
<dl>
33662+
<dd>
33663+
33664+
```python
33665+
from auth0.management import Auth0
33666+
from auth0.management.environment import Auth0Environment
33667+
33668+
client = Auth0(
33669+
token="<token>",
33670+
environment=Auth0Environment.DEFAULT,
33671+
)
33672+
33673+
client.organizations.roles.members.list(
33674+
id="id",
33675+
role_id="role_id",
33676+
from_="from",
33677+
take=1,
33678+
fields="fields",
33679+
include_fields=True,
33680+
)
33681+
33682+
```
33683+
</dd>
33684+
</dl>
33685+
</dd>
33686+
</dl>
33687+
33688+
#### ⚙️ Parameters
33689+
33690+
<dl>
33691+
<dd>
33692+
33693+
<dl>
33694+
<dd>
33695+
33696+
**id:** `str` — ID of the organization.
33697+
33698+
</dd>
33699+
</dl>
33700+
33701+
<dl>
33702+
<dd>
33703+
33704+
**role_id:** `str` — ID of the role to retrieve the assigned members for.
33705+
33706+
</dd>
33707+
</dl>
33708+
33709+
<dl>
33710+
<dd>
33711+
33712+
**from:** `typing.Optional[str]` — Optional Id from which to start selection.
33713+
33714+
</dd>
33715+
</dl>
33716+
33717+
<dl>
33718+
<dd>
33719+
33720+
**take:** `typing.Optional[int]` — Number of results per page. Defaults to 50. Values above the maximum permitted size are capped.
33721+
33722+
</dd>
33723+
</dl>
33724+
33725+
<dl>
33726+
<dd>
33727+
33728+
**fields:** `typing.Optional[str]` — Comma-separated list of fields to include or exclude (based on value provided for include_fields) in the result. Leave empty to retrieve all fields.
33729+
33730+
</dd>
33731+
</dl>
33732+
33733+
<dl>
33734+
<dd>
33735+
33736+
**include_fields:** `typing.Optional[bool]` — Whether specified fields are to be included (true) or excluded (false). Defaults to true.
33737+
33738+
</dd>
33739+
</dl>
33740+
33741+
<dl>
33742+
<dd>
33743+
33744+
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
33745+
33746+
</dd>
33747+
</dl>
33748+
</dd>
33749+
</dl>
33750+
33751+
3361733752
</dd>
3361833753
</dl>
3361933754
</details>

0 commit comments

Comments
 (0)