class Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceConfigOverride
A representation of a configuration override.
Attributes
api_proxy[RW]
ID of the API proxy that will have its trace configuration overridden. Corresponds to the JSON property `apiProxy` @return [String]
name[RW]
ID of the trace configuration override specified as a system-generated UUID. Corresponds to the JSON property `name` @return [String]
sampling_config[RW]
TraceSamplingConfig represents the detail settings of distributed tracing. Only the fields that are defined in the distributed trace configuration can be overridden using the distribute trace configuration override APIs. Corresponds to the JSON property `samplingConfig` @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceSamplingConfig]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 7256 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/apigee_v1/classes.rb, line 7261 def update!(**args) @api_proxy = args[:api_proxy] if args.key?(:api_proxy) @name = args[:name] if args.key?(:name) @sampling_config = args[:sampling_config] if args.key?(:sampling_config) end