From fabd2a4bece5f5ed1aa94150329b5830830d3bfd Mon Sep 17 00:00:00 2001 From: Jason Collins <47123298+jcollins-axway@users.noreply.github.com> Date: Mon, 23 Sep 2024 07:02:48 -0700 Subject: [PATCH] INT - regen resources (#835) --- .../model_traceability_agent_spec_config_sampling.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkg/apic/apiserver/models/management/v1alpha1/model_traceability_agent_spec_config_sampling.go b/pkg/apic/apiserver/models/management/v1alpha1/model_traceability_agent_spec_config_sampling.go index f8bd15c11..e753ce524 100644 --- a/pkg/apic/apiserver/models/management/v1alpha1/model_traceability_agent_spec_config_sampling.go +++ b/pkg/apic/apiserver/models/management/v1alpha1/model_traceability_agent_spec_config_sampling.go @@ -14,6 +14,8 @@ type TraceabilityAgentSpecConfigSampling struct { // The percentage of transactions that the agent will save the full transaction details for. Valid values(decimals included) are 0 to 10 // GENERATE: The following code has been modified after code generation Percentage float64 `json:"percentage"` - // When set to true will send transactional data for every errored transaction for Business and Consumer Insights - OnlyErrors bool `json:"onlyErrors"` + // Property is not used anymore. Set onlyErrors to true will allow the agent to sample only the error transactions for Business and Consumer Insights + AllErrors bool `json:"allErrors,omitempty"` + // Allows the agent to sample only the error transactions for Business and Consumer Insights + OnlyErrors bool `json:"onlyErrors,omitempty"` }