github.com/Axway/agent-sdk@v1.1.101/pkg/apic/apiserver/models/management/v1alpha1/model_traceability_agent_spec_config.go (about)

     1  /*
     2   * API Server specification.
     3   *
     4   * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
     5   *
     6   * API version: SNAPSHOT
     7   * Generated by: OpenAPI Generator (https://openapi-generator.tech)
     8   */
     9  
    10  package management
    11  
    12  // GENERATE: The following code has been modified after code generation
    13  import apiv1 "github.com/Axway/agent-sdk/pkg/apic/apiserver/models/api/v1"
    14  
    15  // TraceabilityAgentSpecConfig Represents the traceability agent config (management.v1alpha1.TraceabilityAgent)
    16  type TraceabilityAgentSpecConfig struct {
    17  	// Name of the team that owns the catalog item created by agent. If not provided, the default team will be used.
    18  	OwningTeam string `json:"owningTeam,omitempty"`
    19  	// Configures the agent to include request and response headers in captured traffic. Defaults to true
    20  	ProcessHeaders bool                                 `json:"processHeaders,omitempty"`
    21  	Redaction      TraceabilityAgentSpecConfigRedaction `json:"redaction,omitempty"`
    22  	// GENERATE: The following code has been modified after code generation
    23  	//
    24  	//	Sampling       TraceabilityAgentSpecConfigSampling  `json:"sampling,omitempty"`
    25  	Sampling *TraceabilityAgentSpecConfigSampling `json:"sampling,omitempty"`
    26  	// GENERATE: The following code has been modified after code generation
    27  	Owner *apiv1.Owner `json:"owner,omitempty"`
    28  }