@@ -83,7 +83,6 @@ def create(
8383 self ,
8484 * ,
8585 input_context : InputContextParam ,
86- is_public : bool ,
8786 name : str ,
8887 scoring_contract : ScoringContractParam ,
8988 environment_parameters : Optional [ScenarioEnvironmentParam ] | NotGiven = NOT_GIVEN ,
@@ -104,8 +103,6 @@ def create(
104103 Args:
105104 input_context: The input context for the Scenario.
106105
107- is_public: Whether this scenario is public.
108-
109106 name: Name of the scenario.
110107
111108 scoring_contract: The scoring contract for the Scenario.
@@ -133,7 +130,6 @@ def create(
133130 body = maybe_transform (
134131 {
135132 "input_context" : input_context ,
136- "is_public" : is_public ,
137133 "name" : name ,
138134 "scoring_contract" : scoring_contract ,
139135 "environment_parameters" : environment_parameters ,
@@ -190,7 +186,6 @@ def update(
190186 id : str ,
191187 * ,
192188 input_context : InputContextParam ,
193- is_public : bool ,
194189 name : str ,
195190 scoring_contract : ScoringContractParam ,
196191 environment_parameters : Optional [ScenarioEnvironmentParam ] | NotGiven = NOT_GIVEN ,
@@ -211,8 +206,6 @@ def update(
211206 Args:
212207 input_context: The input context for the Scenario.
213208
214- is_public: Whether this scenario is public.
215-
216209 name: Name of the scenario.
217210
218211 scoring_contract: The scoring contract for the Scenario.
@@ -242,7 +235,6 @@ def update(
242235 body = maybe_transform (
243236 {
244237 "input_context" : input_context ,
245- "is_public" : is_public ,
246238 "name" : name ,
247239 "scoring_contract" : scoring_contract ,
248240 "environment_parameters" : environment_parameters ,
@@ -514,7 +506,6 @@ async def create(
514506 self ,
515507 * ,
516508 input_context : InputContextParam ,
517- is_public : bool ,
518509 name : str ,
519510 scoring_contract : ScoringContractParam ,
520511 environment_parameters : Optional [ScenarioEnvironmentParam ] | NotGiven = NOT_GIVEN ,
@@ -535,8 +526,6 @@ async def create(
535526 Args:
536527 input_context: The input context for the Scenario.
537528
538- is_public: Whether this scenario is public.
539-
540529 name: Name of the scenario.
541530
542531 scoring_contract: The scoring contract for the Scenario.
@@ -564,7 +553,6 @@ async def create(
564553 body = await async_maybe_transform (
565554 {
566555 "input_context" : input_context ,
567- "is_public" : is_public ,
568556 "name" : name ,
569557 "scoring_contract" : scoring_contract ,
570558 "environment_parameters" : environment_parameters ,
@@ -621,7 +609,6 @@ async def update(
621609 id : str ,
622610 * ,
623611 input_context : InputContextParam ,
624- is_public : bool ,
625612 name : str ,
626613 scoring_contract : ScoringContractParam ,
627614 environment_parameters : Optional [ScenarioEnvironmentParam ] | NotGiven = NOT_GIVEN ,
@@ -642,8 +629,6 @@ async def update(
642629 Args:
643630 input_context: The input context for the Scenario.
644631
645- is_public: Whether this scenario is public.
646-
647632 name: Name of the scenario.
648633
649634 scoring_contract: The scoring contract for the Scenario.
@@ -673,7 +658,6 @@ async def update(
673658 body = await async_maybe_transform (
674659 {
675660 "input_context" : input_context ,
676- "is_public" : is_public ,
677661 "name" : name ,
678662 "scoring_contract" : scoring_contract ,
679663 "environment_parameters" : environment_parameters ,
0 commit comments