Partially update Test Optimization settings for a specific service identified by repository, service name, and environment.
Only provided fields are updated; setting a field to null is a no-op.
To reset a setting to inherit from the repository level, use the corresponding <setting>_inherit field.
The pr_comments_enabled field is ignored as it cannot be overridden at the service level.
This endpoint requires the test_optimization_settings_write permission.
OAuth apps require the test_optimization_settings_write authorization scope to access this endpoint.
Attributes for updating Test Optimization service settings.
All non-required fields are optional; only provided fields will be updated.
Setting a field to null is a no-op. To reset a setting to inherit from the repository level, use the corresponding <setting>_inherit field.
auto_test_retries_enabled
boolean
Whether Auto Test Retries are enabled for this service. Setting to null is a no-op; use auto_test_retries_enabled_inherit to reset to repository-level inheritance.
auto_test_retries_enabled_inherit
boolean
When true, resets the Auto Test Retries setting to inherit from the repository level.
code_coverage_enabled
boolean
Whether Code Coverage is enabled for this service. Setting to null is a no-op; use code_coverage_enabled_inherit to reset to repository-level inheritance.
code_coverage_enabled_inherit
boolean
When true, resets the Code Coverage setting to inherit from the repository level.
early_flake_detection_enabled
boolean
Whether Early Flake Detection is enabled for this service. Setting to null is a no-op; use early_flake_detection_enabled_inherit to reset to repository-level inheritance.
early_flake_detection_enabled_inherit
boolean
When true, resets the Early Flake Detection setting to inherit from the repository level.
env
string
The environment name. If omitted, defaults to none.
failed_test_replay_enabled
boolean
Whether Failed Test Replay is enabled for this service. Setting to null is a no-op; use failed_test_replay_enabled_inherit to reset to repository-level inheritance.
failed_test_replay_enabled_inherit
boolean
When true, resets the Failed Test Replay setting to inherit from the repository level.
pr_comments_enabled
boolean
This field is ignored. PR Comments cannot be overridden at the service level.
repository_id [required]
string
The repository identifier.
service_name [required]
string
The service name.
test_impact_analysis_enabled
boolean
Whether Test Impact Analysis is enabled for this service. Setting to null is a no-op; use test_impact_analysis_enabled_inherit to reset to repository-level inheritance.
test_impact_analysis_enabled_inherit
boolean
When true, resets the Test Impact Analysis setting to inherit from the repository level.
type [required]
enum
JSON:API type for update service settings request.
The value must always be test_optimization_update_service_settings_request.
Allowed enum values: test_optimization_update_service_settings_request
Response object containing Test Optimization service settings.
Expand All
항목
유형
설명
data
object
Data object for Test Optimization service settings response.
attributes
object
Attributes for Test Optimization service settings.
auto_test_retries_enabled
boolean
Whether Auto Test Retries are enabled for this service.
auto_test_retries_enabled_is_overridden
boolean
Whether the Auto Test Retries setting is overridden at the service level.
code_coverage_enabled
boolean
Whether Code Coverage is enabled for this service.
code_coverage_enabled_is_overridden
boolean
Whether the Code Coverage setting is overridden at the service level.
early_flake_detection_enabled
boolean
Whether Early Flake Detection is enabled for this service.
early_flake_detection_enabled_is_overridden
boolean
Whether the Early Flake Detection setting is overridden at the service level.
env
string
The environment name.
failed_test_replay_enabled
boolean
Whether Failed Test Replay is enabled for this service.
failed_test_replay_enabled_is_overridden
boolean
Whether the Failed Test Replay setting is overridden at the service level.
pr_comments_enabled
boolean
Whether PR Comments are enabled. This value reflects the repository-level setting and cannot be overridden at the service level.
repository_id
string
The repository identifier.
service_name
string
The service name.
test_impact_analysis_enabled
boolean
Whether Test Impact Analysis is enabled for this service.
test_impact_analysis_enabled_is_overridden
boolean
Whether the Test Impact Analysis setting is overridden at the service level.
id
string
Unique identifier for the service settings.
type
enum
JSON:API type for service settings response.
The value must always be test_optimization_service_settings.
Allowed enum values: test_optimization_service_settings
"""
Update Test Optimization service settings returns "OK" response
"""fromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v2.api.test_optimization_apiimportTestOptimizationApifromdatadog_api_client.v2.model.test_optimization_update_service_settings_requestimport(TestOptimizationUpdateServiceSettingsRequest,)fromdatadog_api_client.v2.model.test_optimization_update_service_settings_request_attributesimport(TestOptimizationUpdateServiceSettingsRequestAttributes,)fromdatadog_api_client.v2.model.test_optimization_update_service_settings_request_dataimport(TestOptimizationUpdateServiceSettingsRequestData,)fromdatadog_api_client.v2.model.test_optimization_update_service_settings_request_data_typeimport(TestOptimizationUpdateServiceSettingsRequestDataType,)body=TestOptimizationUpdateServiceSettingsRequest(data=TestOptimizationUpdateServiceSettingsRequestData(attributes=TestOptimizationUpdateServiceSettingsRequestAttributes(auto_test_retries_enabled=False,auto_test_retries_enabled_inherit=False,code_coverage_enabled=False,code_coverage_enabled_inherit=False,early_flake_detection_enabled=False,early_flake_detection_enabled_inherit=False,env="prod",failed_test_replay_enabled=False,failed_test_replay_enabled_inherit=False,pr_comments_enabled=False,repository_id="github.com/datadog/shopist",service_name="shopist",test_impact_analysis_enabled=True,test_impact_analysis_enabled_inherit=True,),type=TestOptimizationUpdateServiceSettingsRequestDataType.TEST_OPTIMIZATION_UPDATE_SERVICE_SETTINGS_REQUEST,),)configuration=Configuration()withApiClient(configuration)asapi_client:api_instance=TestOptimizationApi(api_client)response=api_instance.update_test_optimization_service_settings(body=body)print(response)
# Update Test Optimization service settings returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V2::TestOptimizationAPI.newbody=DatadogAPIClient::V2::TestOptimizationUpdateServiceSettingsRequest.new({data:DatadogAPIClient::V2::TestOptimizationUpdateServiceSettingsRequestData.new({attributes:DatadogAPIClient::V2::TestOptimizationUpdateServiceSettingsRequestAttributes.new({auto_test_retries_enabled:false,auto_test_retries_enabled_inherit:false,code_coverage_enabled:false,code_coverage_enabled_inherit:false,early_flake_detection_enabled:false,early_flake_detection_enabled_inherit:false,env:"prod",failed_test_replay_enabled:false,failed_test_replay_enabled_inherit:false,pr_comments_enabled:false,repository_id:"github.com/datadog/shopist",service_name:"shopist",test_impact_analysis_enabled:true,test_impact_analysis_enabled_inherit:true,}),type:DatadogAPIClient::V2::TestOptimizationUpdateServiceSettingsRequestDataType::TEST_OPTIMIZATION_UPDATE_SERVICE_SETTINGS_REQUEST,}),})papi_instance.update_test_optimization_service_settings(body)
// Update Test Optimization service settings returns "OK" responsepackagemainimport("context""encoding/json""fmt""os""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV2")funcmain(){body:=datadogV2.TestOptimizationUpdateServiceSettingsRequest{Data:datadogV2.TestOptimizationUpdateServiceSettingsRequestData{Attributes:datadogV2.TestOptimizationUpdateServiceSettingsRequestAttributes{AutoTestRetriesEnabled:datadog.PtrBool(false),AutoTestRetriesEnabledInherit:datadog.PtrBool(false),CodeCoverageEnabled:datadog.PtrBool(false),CodeCoverageEnabledInherit:datadog.PtrBool(false),EarlyFlakeDetectionEnabled:datadog.PtrBool(false),EarlyFlakeDetectionEnabledInherit:datadog.PtrBool(false),Env:datadog.PtrString("prod"),FailedTestReplayEnabled:datadog.PtrBool(false),FailedTestReplayEnabledInherit:datadog.PtrBool(false),PrCommentsEnabled:datadog.PtrBool(false),RepositoryId:"github.com/datadog/shopist",ServiceName:"shopist",TestImpactAnalysisEnabled:datadog.PtrBool(true),TestImpactAnalysisEnabledInherit:datadog.PtrBool(true),},Type:datadogV2.TESTOPTIMIZATIONUPDATESERVICESETTINGSREQUESTDATATYPE_TEST_OPTIMIZATION_UPDATE_SERVICE_SETTINGS_REQUEST,},}ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV2.NewTestOptimizationApi(apiClient)resp,r,err:=api.UpdateTestOptimizationServiceSettings(ctx,body)iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `TestOptimizationApi.UpdateTestOptimizationServiceSettings`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `TestOptimizationApi.UpdateTestOptimizationServiceSettings`:\n%s\n",responseContent)}
// Update Test Optimization service settings returns "OK" response
usedatadog_api_client::datadog;usedatadog_api_client::datadogV2::api_test_optimization::TestOptimizationAPI;usedatadog_api_client::datadogV2::model::TestOptimizationUpdateServiceSettingsRequest;usedatadog_api_client::datadogV2::model::TestOptimizationUpdateServiceSettingsRequestAttributes;usedatadog_api_client::datadogV2::model::TestOptimizationUpdateServiceSettingsRequestData;usedatadog_api_client::datadogV2::model::TestOptimizationUpdateServiceSettingsRequestDataType;#[tokio::main]asyncfnmain(){letbody=TestOptimizationUpdateServiceSettingsRequest::new(TestOptimizationUpdateServiceSettingsRequestData::new(TestOptimizationUpdateServiceSettingsRequestAttributes::new("github.com/datadog/shopist".to_string(),"shopist".to_string(),).auto_test_retries_enabled(false).auto_test_retries_enabled_inherit(false).code_coverage_enabled(false).code_coverage_enabled_inherit(false).early_flake_detection_enabled(false).early_flake_detection_enabled_inherit(false).env("prod".to_string()).failed_test_replay_enabled(false).failed_test_replay_enabled_inherit(false).pr_comments_enabled(false).test_impact_analysis_enabled(true).test_impact_analysis_enabled_inherit(true),TestOptimizationUpdateServiceSettingsRequestDataType::TEST_OPTIMIZATION_UPDATE_SERVICE_SETTINGS_REQUEST,),);letconfiguration=datadog::Configuration::new();letapi=TestOptimizationAPI::with_config(configuration);letresp=api.update_test_optimization_service_settings(body).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comap2.datadoghq.comuk1.datadoghq.comddog-gov.comus2.ddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Update Test Optimization service settings returns "OK" response
*/import{client,v2}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv2.TestOptimizationApi(configuration);constparams: v2.TestOptimizationApiUpdateTestOptimizationServiceSettingsRequest={body:{data:{attributes:{autoTestRetriesEnabled: false,autoTestRetriesEnabledInherit: false,codeCoverageEnabled: false,codeCoverageEnabledInherit: false,earlyFlakeDetectionEnabled: false,earlyFlakeDetectionEnabledInherit: false,env:"prod",failedTestReplayEnabled: false,failedTestReplayEnabledInherit: false,prCommentsEnabled: false,repositoryId:"github.com/datadog/shopist",serviceName:"shopist",testImpactAnalysisEnabled: true,testImpactAnalysisEnabledInherit: true,},type:"test_optimization_update_service_settings_request",},},};apiInstance.updateTestOptimizationServiceSettings(params).then((data: v2.TestOptimizationServiceSettingsResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));