terraform-provider-stackitp.../pkg/cdnbeta/model_waf_status_rule_block.go
2026-01-21 09:07:29 +01:00

127 lines
3.5 KiB
Go

/*
CDN API
API used to create and manage your CDN distributions.
API version: 1beta2.0.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package cdnbeta
import (
"encoding/json"
)
// checks if the WafStatusRuleBlock type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &WafStatusRuleBlock{}
/*
types and functions for id
*/
// isNotNullableString
type WafStatusRuleBlockGetIdAttributeType = *string
func getWafStatusRuleBlockGetIdAttributeTypeOk(arg WafStatusRuleBlockGetIdAttributeType) (ret WafStatusRuleBlockGetIdRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setWafStatusRuleBlockGetIdAttributeType(arg *WafStatusRuleBlockGetIdAttributeType, val WafStatusRuleBlockGetIdRetType) {
*arg = &val
}
type WafStatusRuleBlockGetIdArgType = string
type WafStatusRuleBlockGetIdRetType = string
// WafStatusRuleBlock struct for WafStatusRuleBlock
type WafStatusRuleBlock struct {
// Specifies the Id of the Rule.
// REQUIRED
Id WafStatusRuleBlockGetIdAttributeType `json:"id" required:"true"`
}
type _WafStatusRuleBlock WafStatusRuleBlock
// NewWafStatusRuleBlock instantiates a new WafStatusRuleBlock 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 NewWafStatusRuleBlock(id WafStatusRuleBlockGetIdArgType) *WafStatusRuleBlock {
this := WafStatusRuleBlock{}
setWafStatusRuleBlockGetIdAttributeType(&this.Id, id)
return &this
}
// NewWafStatusRuleBlockWithDefaults instantiates a new WafStatusRuleBlock 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 NewWafStatusRuleBlockWithDefaults() *WafStatusRuleBlock {
this := WafStatusRuleBlock{}
return &this
}
// GetId returns the Id field value
func (o *WafStatusRuleBlock) GetId() (ret WafStatusRuleBlockGetIdRetType) {
ret, _ = o.GetIdOk()
return ret
}
// GetIdOk returns a tuple with the Id field value
// and a boolean to check if the value has been set.
func (o *WafStatusRuleBlock) GetIdOk() (ret WafStatusRuleBlockGetIdRetType, ok bool) {
return getWafStatusRuleBlockGetIdAttributeTypeOk(o.Id)
}
// SetId sets field value
func (o *WafStatusRuleBlock) SetId(v WafStatusRuleBlockGetIdRetType) {
setWafStatusRuleBlockGetIdAttributeType(&o.Id, v)
}
func (o WafStatusRuleBlock) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if val, ok := getWafStatusRuleBlockGetIdAttributeTypeOk(o.Id); ok {
toSerialize["Id"] = val
}
return toSerialize, nil
}
type NullableWafStatusRuleBlock struct {
value *WafStatusRuleBlock
isSet bool
}
func (v NullableWafStatusRuleBlock) Get() *WafStatusRuleBlock {
return v.value
}
func (v *NullableWafStatusRuleBlock) Set(val *WafStatusRuleBlock) {
v.value = val
v.isSet = true
}
func (v NullableWafStatusRuleBlock) IsSet() bool {
return v.isSet
}
func (v *NullableWafStatusRuleBlock) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableWafStatusRuleBlock(val *WafStatusRuleBlock) *NullableWafStatusRuleBlock {
return &NullableWafStatusRuleBlock{value: val, isSet: true}
}
func (v NullableWafStatusRuleBlock) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableWafStatusRuleBlock) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}