@@ -71,7 +71,7 @@ def create(
7171 name : str ,
7272 metadata : Optional [Dict [str , str ]] | NotGiven = NOT_GIVEN ,
7373 required_environment_variables : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
74- required_secrets : List [str ] | NotGiven = NOT_GIVEN ,
74+ required_secret_names : List [str ] | NotGiven = NOT_GIVEN ,
7575 scenario_ids : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
7676 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
7777 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -92,9 +92,9 @@ def create(
9292 required_environment_variables: Environment variables required to run the benchmark. If any required variables
9393 are not supplied, the benchmark will fail to start
9494
95- required_secrets : Secrets required to run the benchmark with (user secret name will be mapped to
96- benchmark required secret name). If any of these secrets are not provided or the
97- mapping is incorrect, the benchmark will fail to start.
95+ required_secret_names : Secrets required to run the benchmark with (environment variable name will be
96+ mapped to the your user secret by name). If any of these secrets are not
97+ provided or the mapping is incorrect, the benchmark will fail to start.
9898
9999 scenario_ids: The Scenario IDs that make up the Benchmark.
100100
@@ -115,7 +115,7 @@ def create(
115115 "name" : name ,
116116 "metadata" : metadata ,
117117 "required_environment_variables" : required_environment_variables ,
118- "required_secrets " : required_secrets ,
118+ "required_secret_names " : required_secret_names ,
119119 "scenario_ids" : scenario_ids ,
120120 },
121121 benchmark_create_params .BenchmarkCreateParams ,
@@ -170,7 +170,7 @@ def update(
170170 name : str ,
171171 metadata : Optional [Dict [str , str ]] | NotGiven = NOT_GIVEN ,
172172 required_environment_variables : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
173- required_secrets : List [str ] | NotGiven = NOT_GIVEN ,
173+ required_secret_names : List [str ] | NotGiven = NOT_GIVEN ,
174174 scenario_ids : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
175175 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
176176 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -191,9 +191,9 @@ def update(
191191 required_environment_variables: Environment variables required to run the benchmark. If any required variables
192192 are not supplied, the benchmark will fail to start
193193
194- required_secrets : Secrets required to run the benchmark with (user secret name will be mapped to
195- benchmark required secret name). If any of these secrets are not provided or the
196- mapping is incorrect, the benchmark will fail to start.
194+ required_secret_names : Secrets required to run the benchmark with (environment variable name will be
195+ mapped to the your user secret by name). If any of these secrets are not
196+ provided or the mapping is incorrect, the benchmark will fail to start.
197197
198198 scenario_ids: The Scenario IDs that make up the Benchmark.
199199
@@ -216,7 +216,7 @@ def update(
216216 "name" : name ,
217217 "metadata" : metadata ,
218218 "required_environment_variables" : required_environment_variables ,
219- "required_secrets " : required_secrets ,
219+ "required_secret_names " : required_secret_names ,
220220 "scenario_ids" : scenario_ids ,
221221 },
222222 benchmark_update_params .BenchmarkUpdateParams ,
@@ -463,7 +463,7 @@ async def create(
463463 name : str ,
464464 metadata : Optional [Dict [str , str ]] | NotGiven = NOT_GIVEN ,
465465 required_environment_variables : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
466- required_secrets : List [str ] | NotGiven = NOT_GIVEN ,
466+ required_secret_names : List [str ] | NotGiven = NOT_GIVEN ,
467467 scenario_ids : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
468468 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
469469 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -484,9 +484,9 @@ async def create(
484484 required_environment_variables: Environment variables required to run the benchmark. If any required variables
485485 are not supplied, the benchmark will fail to start
486486
487- required_secrets : Secrets required to run the benchmark with (user secret name will be mapped to
488- benchmark required secret name). If any of these secrets are not provided or the
489- mapping is incorrect, the benchmark will fail to start.
487+ required_secret_names : Secrets required to run the benchmark with (environment variable name will be
488+ mapped to the your user secret by name). If any of these secrets are not
489+ provided or the mapping is incorrect, the benchmark will fail to start.
490490
491491 scenario_ids: The Scenario IDs that make up the Benchmark.
492492
@@ -507,7 +507,7 @@ async def create(
507507 "name" : name ,
508508 "metadata" : metadata ,
509509 "required_environment_variables" : required_environment_variables ,
510- "required_secrets " : required_secrets ,
510+ "required_secret_names " : required_secret_names ,
511511 "scenario_ids" : scenario_ids ,
512512 },
513513 benchmark_create_params .BenchmarkCreateParams ,
@@ -562,7 +562,7 @@ async def update(
562562 name : str ,
563563 metadata : Optional [Dict [str , str ]] | NotGiven = NOT_GIVEN ,
564564 required_environment_variables : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
565- required_secrets : List [str ] | NotGiven = NOT_GIVEN ,
565+ required_secret_names : List [str ] | NotGiven = NOT_GIVEN ,
566566 scenario_ids : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
567567 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
568568 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -583,9 +583,9 @@ async def update(
583583 required_environment_variables: Environment variables required to run the benchmark. If any required variables
584584 are not supplied, the benchmark will fail to start
585585
586- required_secrets : Secrets required to run the benchmark with (user secret name will be mapped to
587- benchmark required secret name). If any of these secrets are not provided or the
588- mapping is incorrect, the benchmark will fail to start.
586+ required_secret_names : Secrets required to run the benchmark with (environment variable name will be
587+ mapped to the your user secret by name). If any of these secrets are not
588+ provided or the mapping is incorrect, the benchmark will fail to start.
589589
590590 scenario_ids: The Scenario IDs that make up the Benchmark.
591591
@@ -608,7 +608,7 @@ async def update(
608608 "name" : name ,
609609 "metadata" : metadata ,
610610 "required_environment_variables" : required_environment_variables ,
611- "required_secrets " : required_secrets ,
611+ "required_secret_names " : required_secret_names ,
612612 "scenario_ids" : scenario_ids ,
613613 },
614614 benchmark_update_params .BenchmarkUpdateParams ,
0 commit comments