@@ -3684,6 +3684,190 @@ client.project_entity.get_project_entity(
36843684</dl >
36853685
36863686
3687+ </dd >
3688+ </dl >
3689+ </details >
3690+
3691+ <details ><summary ><code >client.project_entity.<a href =" src/sayari/project_entity/client.py " >add_project_entity_matches</a >(...)</code ></summary >
3692+ <dl >
3693+ <dd >
3694+
3695+ #### 📝 Description
3696+
3697+ <dl >
3698+ <dd >
3699+
3700+ <dl >
3701+ <dd >
3702+
3703+ Adds matches to a project entity.
3704+ </dd >
3705+ </dl >
3706+ </dd >
3707+ </dl >
3708+
3709+ #### 🔌 Usage
3710+
3711+ <dl >
3712+ <dd >
3713+
3714+ <dl >
3715+ <dd >
3716+
3717+ ``` python
3718+ from sayari import Sayari
3719+ from sayari.project_entity import UpdateProjectEntityMatchesBody
3720+
3721+ client = Sayari(
3722+ client_id = " YOUR_CLIENT_ID" ,
3723+ client_secret = " YOUR_CLIENT_SECRET" ,
3724+ )
3725+ client.project_entity.add_project_entity_matches(
3726+ project_id = " project_id" ,
3727+ project_entity_id = " project_entity_id" ,
3728+ request = UpdateProjectEntityMatchesBody(
3729+ entity_ids = [" entity_ids" , " entity_ids" ],
3730+ ),
3731+ )
3732+
3733+ ```
3734+ </dd >
3735+ </dl >
3736+ </dd >
3737+ </dl >
3738+
3739+ #### ⚙️ Parameters
3740+
3741+ <dl >
3742+ <dd >
3743+
3744+ <dl >
3745+ <dd >
3746+
3747+ ** project_id:** ` str `
3748+
3749+ </dd >
3750+ </dl >
3751+
3752+ <dl >
3753+ <dd >
3754+
3755+ ** project_entity_id:** ` str `
3756+
3757+ </dd >
3758+ </dl >
3759+
3760+ <dl >
3761+ <dd >
3762+
3763+ ** request:** ` UpdateProjectEntityMatchesBody `
3764+
3765+ </dd >
3766+ </dl >
3767+
3768+ <dl >
3769+ <dd >
3770+
3771+ ** request_options:** ` typing.Optional[RequestOptions] ` — Request-specific configuration.
3772+
3773+ </dd >
3774+ </dl >
3775+ </dd >
3776+ </dl >
3777+
3778+
3779+ </dd >
3780+ </dl >
3781+ </details >
3782+
3783+ <details ><summary ><code >client.project_entity.<a href =" src/sayari/project_entity/client.py " >replace_project_entity_matches</a >(...)</code ></summary >
3784+ <dl >
3785+ <dd >
3786+
3787+ #### 📝 Description
3788+
3789+ <dl >
3790+ <dd >
3791+
3792+ <dl >
3793+ <dd >
3794+
3795+ Replace matches in a project entity.
3796+ </dd >
3797+ </dl >
3798+ </dd >
3799+ </dl >
3800+
3801+ #### 🔌 Usage
3802+
3803+ <dl >
3804+ <dd >
3805+
3806+ <dl >
3807+ <dd >
3808+
3809+ ``` python
3810+ from sayari import Sayari
3811+ from sayari.project_entity import UpdateProjectEntityMatchesBody
3812+
3813+ client = Sayari(
3814+ client_id = " YOUR_CLIENT_ID" ,
3815+ client_secret = " YOUR_CLIENT_SECRET" ,
3816+ )
3817+ client.project_entity.replace_project_entity_matches(
3818+ project_id = " project_id" ,
3819+ project_entity_id = " project_entity_id" ,
3820+ request = UpdateProjectEntityMatchesBody(
3821+ entity_ids = [" entity_ids" , " entity_ids" ],
3822+ ),
3823+ )
3824+
3825+ ```
3826+ </dd >
3827+ </dl >
3828+ </dd >
3829+ </dl >
3830+
3831+ #### ⚙️ Parameters
3832+
3833+ <dl >
3834+ <dd >
3835+
3836+ <dl >
3837+ <dd >
3838+
3839+ ** project_id:** ` str `
3840+
3841+ </dd >
3842+ </dl >
3843+
3844+ <dl >
3845+ <dd >
3846+
3847+ ** project_entity_id:** ` str `
3848+
3849+ </dd >
3850+ </dl >
3851+
3852+ <dl >
3853+ <dd >
3854+
3855+ ** request:** ` UpdateProjectEntityMatchesBody `
3856+
3857+ </dd >
3858+ </dl >
3859+
3860+ <dl >
3861+ <dd >
3862+
3863+ ** request_options:** ` typing.Optional[RequestOptions] ` — Request-specific configuration.
3864+
3865+ </dd >
3866+ </dl >
3867+ </dd >
3868+ </dl >
3869+
3870+
36873871</dd >
36883872</dl >
36893873</details >
@@ -5016,6 +5200,7 @@ client = Sayari(
50165200client.project.create_project(
50175201 request = CreateProjectRequest(
50185202 label = " My First Project" ,
5203+ type = " network" ,
50195204 share = ProjectShareOnCreate(
50205205 org = " admin" ,
50215206 ),
@@ -5140,6 +5325,14 @@ client.project.get_projects(
51405325<dl >
51415326<dd >
51425327
5328+ ** type:** ` typing.Optional[ProjectType] ` — Which project types to return
5329+
5330+ </dd >
5331+ </dl >
5332+
5333+ <dl >
5334+ <dd >
5335+
51435336** request_options:** ` typing.Optional[RequestOptions] ` — Request-specific configuration.
51445337
51455338</dd >
0 commit comments