| Name | Type | Description | Notes |
|---|---|---|---|
| Enabled | Pointer to bool | Whether retry on failure is enabled | [optional] |
| InitialInterval | Pointer to string | Initial interval between retries. Duration string (e.g. "30s", "1m"). Used as initial_interval in Otel collector. | [optional] |
| MaxElapsedTime | Pointer to string | Maximum elapsed time for all retries. Duration string (e.g. "60m", "1800m"). Used as max_elapsed_time in Otel collector. | [optional] |
| MaxInterval | Pointer to string | Maximum interval between retries. Duration string (e.g. "10m", "1800m"). Used as max_interval in Otel collector. | [optional] |
func NewExporterRetryConfig() *ExporterRetryConfig
NewExporterRetryConfig instantiates a new ExporterRetryConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewExporterRetryConfigWithDefaults() *ExporterRetryConfig
NewExporterRetryConfigWithDefaults instantiates a new ExporterRetryConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *ExporterRetryConfig) GetEnabled() bool
GetEnabled returns the Enabled field if non-nil, zero value otherwise.
func (o *ExporterRetryConfig) GetEnabledOk() (*bool, bool)
GetEnabledOk returns a tuple with the Enabled field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ExporterRetryConfig) SetEnabled(v bool)
SetEnabled sets Enabled field to given value.
func (o *ExporterRetryConfig) HasEnabled() bool
HasEnabled returns a boolean if a field has been set.
func (o *ExporterRetryConfig) GetInitialInterval() string
GetInitialInterval returns the InitialInterval field if non-nil, zero value otherwise.
func (o *ExporterRetryConfig) GetInitialIntervalOk() (*string, bool)
GetInitialIntervalOk returns a tuple with the InitialInterval field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ExporterRetryConfig) SetInitialInterval(v string)
SetInitialInterval sets InitialInterval field to given value.
func (o *ExporterRetryConfig) HasInitialInterval() bool
HasInitialInterval returns a boolean if a field has been set.
func (o *ExporterRetryConfig) GetMaxElapsedTime() string
GetMaxElapsedTime returns the MaxElapsedTime field if non-nil, zero value otherwise.
func (o *ExporterRetryConfig) GetMaxElapsedTimeOk() (*string, bool)
GetMaxElapsedTimeOk returns a tuple with the MaxElapsedTime field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ExporterRetryConfig) SetMaxElapsedTime(v string)
SetMaxElapsedTime sets MaxElapsedTime field to given value.
func (o *ExporterRetryConfig) HasMaxElapsedTime() bool
HasMaxElapsedTime returns a boolean if a field has been set.
func (o *ExporterRetryConfig) GetMaxInterval() string
GetMaxInterval returns the MaxInterval field if non-nil, zero value otherwise.
func (o *ExporterRetryConfig) GetMaxIntervalOk() (*string, bool)
GetMaxIntervalOk returns a tuple with the MaxInterval field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ExporterRetryConfig) SetMaxInterval(v string)
SetMaxInterval sets MaxInterval field to given value.
func (o *ExporterRetryConfig) HasMaxInterval() bool
HasMaxInterval returns a boolean if a field has been set.