## Description
<!-- **Please link some issue here describing what you are trying to achieve.**
In case there is no issue present for your PR, please consider creating one.
At least please give us some description what you are trying to achieve and why your change is needed. -->
relates to #1234
## Checklist
- [ ] Issue was linked above
- [ ] Code format was applied: `make fmt`
- [ ] Examples were added / adjusted (see `examples/` directory)
- [x] Docs are up-to-date: `make generate-docs` (will be checked by CI)
- [ ] Unit tests got implemented or updated
- [ ] Acceptance tests got implemented or updated (see e.g. [here](f5f99d1709/stackit/internal/services/dns/dns_acc_test.go))
- [x] Unit tests are passing: `make test` (will be checked by CI)
- [x] No linter issues: `make lint` (will be checked by CI)
Reviewed-on: #4
Reviewed-by: Andre_Harms <andre.harms@stackit.cloud>
Co-authored-by: Marcel S. Henselin <marcel.henselin@stackit.cloud>
Co-committed-by: Marcel S. Henselin <marcel.henselin@stackit.cloud>
127 lines
3.5 KiB
Go
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)
|
|
}
|