Name | Type | Description | Notes |
---|---|---|---|
ClientId | Pointer to string | Log configuration's client ID | [optional] |
DurationMinutes | int32 | Duration in minutes for log configuration to remain in effect before resetting to defaults | |
Expiration | Pointer to time.Time | Expiration date-time of the log configuration request | [optional] |
RootLevel | StandardLevel | ||
LogLevels | Pointer to map[string]StandardLevel | Mapping of identifiers to Standard Log Level values | [optional] |
func NewClientLogConfiguration(durationMinutes int32, rootLevel StandardLevel, ) *ClientLogConfiguration
NewClientLogConfiguration instantiates a new ClientLogConfiguration 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 NewClientLogConfigurationWithDefaults() *ClientLogConfiguration
NewClientLogConfigurationWithDefaults instantiates a new ClientLogConfiguration 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 *ClientLogConfiguration) GetClientId() string
GetClientId returns the ClientId field if non-nil, zero value otherwise.
func (o *ClientLogConfiguration) GetClientIdOk() (*string, bool)
GetClientIdOk returns a tuple with the ClientId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ClientLogConfiguration) SetClientId(v string)
SetClientId sets ClientId field to given value.
func (o *ClientLogConfiguration) HasClientId() bool
HasClientId returns a boolean if a field has been set.
func (o *ClientLogConfiguration) GetDurationMinutes() int32
GetDurationMinutes returns the DurationMinutes field if non-nil, zero value otherwise.
func (o *ClientLogConfiguration) GetDurationMinutesOk() (*int32, bool)
GetDurationMinutesOk returns a tuple with the DurationMinutes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ClientLogConfiguration) SetDurationMinutes(v int32)
SetDurationMinutes sets DurationMinutes field to given value.
func (o *ClientLogConfiguration) GetExpiration() time.Time
GetExpiration returns the Expiration field if non-nil, zero value otherwise.
func (o *ClientLogConfiguration) GetExpirationOk() (*time.Time, bool)
GetExpirationOk returns a tuple with the Expiration field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ClientLogConfiguration) SetExpiration(v time.Time)
SetExpiration sets Expiration field to given value.
func (o *ClientLogConfiguration) HasExpiration() bool
HasExpiration returns a boolean if a field has been set.
func (o *ClientLogConfiguration) GetRootLevel() StandardLevel
GetRootLevel returns the RootLevel field if non-nil, zero value otherwise.
func (o *ClientLogConfiguration) GetRootLevelOk() (*StandardLevel, bool)
GetRootLevelOk returns a tuple with the RootLevel field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ClientLogConfiguration) SetRootLevel(v StandardLevel)
SetRootLevel sets RootLevel field to given value.
func (o *ClientLogConfiguration) GetLogLevels() map[string]StandardLevel
GetLogLevels returns the LogLevels field if non-nil, zero value otherwise.
func (o *ClientLogConfiguration) GetLogLevelsOk() (*map[string]StandardLevel, bool)
GetLogLevelsOk returns a tuple with the LogLevels field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ClientLogConfiguration) SetLogLevels(v map[string]StandardLevel)
SetLogLevels sets LogLevels field to given value.
func (o *ClientLogConfiguration) HasLogLevels() bool
HasLogLevels returns a boolean if a field has been set.