-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add bodyType to Synthetics request (#1743)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com> Co-authored-by: api-clients-generation-pipeline[bot] <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
- Loading branch information
1 parent
e9dfeef
commit dbe6db6
Showing
6 changed files
with
190 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
117 changes: 117 additions & 0 deletions
117
api/datadogV1/model_synthetics_test_request_body_type.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
// Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. | ||
// This product includes software developed at Datadog (https://www.datadoghq.com/). | ||
// Copyright 2019-Present Datadog, Inc. | ||
|
||
package datadogV1 | ||
|
||
import ( | ||
"encoding/json" | ||
"fmt" | ||
) | ||
|
||
// SyntheticsTestRequestBodyType Type of the request body. | ||
type SyntheticsTestRequestBodyType string | ||
|
||
// List of SyntheticsTestRequestBodyType. | ||
const ( | ||
SYNTHETICSTESTREQUESTBODYTYPE_TEXT_PLAIN SyntheticsTestRequestBodyType = "text/plain" | ||
SYNTHETICSTESTREQUESTBODYTYPE_APPLICATION_JSON SyntheticsTestRequestBodyType = "application/json" | ||
SYNTHETICSTESTREQUESTBODYTYPE_TEXT_XML SyntheticsTestRequestBodyType = "text/xml" | ||
SYNTHETICSTESTREQUESTBODYTYPE_TEXT_HTML SyntheticsTestRequestBodyType = "text/html" | ||
SYNTHETICSTESTREQUESTBODYTYPE_APPLICATION_X_WWW_FORM_URLENCODED SyntheticsTestRequestBodyType = "application/x-www-form-urlencoded" | ||
SYNTHETICSTESTREQUESTBODYTYPE_GRAPHQL SyntheticsTestRequestBodyType = "graphql" | ||
) | ||
|
||
var allowedSyntheticsTestRequestBodyTypeEnumValues = []SyntheticsTestRequestBodyType{ | ||
SYNTHETICSTESTREQUESTBODYTYPE_TEXT_PLAIN, | ||
SYNTHETICSTESTREQUESTBODYTYPE_APPLICATION_JSON, | ||
SYNTHETICSTESTREQUESTBODYTYPE_TEXT_XML, | ||
SYNTHETICSTESTREQUESTBODYTYPE_TEXT_HTML, | ||
SYNTHETICSTESTREQUESTBODYTYPE_APPLICATION_X_WWW_FORM_URLENCODED, | ||
SYNTHETICSTESTREQUESTBODYTYPE_GRAPHQL, | ||
} | ||
|
||
// GetAllowedValues reeturns the list of possible values. | ||
func (v *SyntheticsTestRequestBodyType) GetAllowedValues() []SyntheticsTestRequestBodyType { | ||
return allowedSyntheticsTestRequestBodyTypeEnumValues | ||
} | ||
|
||
// UnmarshalJSON deserializes the given payload. | ||
func (v *SyntheticsTestRequestBodyType) UnmarshalJSON(src []byte) error { | ||
var value string | ||
err := json.Unmarshal(src, &value) | ||
if err != nil { | ||
return err | ||
} | ||
*v = SyntheticsTestRequestBodyType(value) | ||
return nil | ||
} | ||
|
||
// NewSyntheticsTestRequestBodyTypeFromValue returns a pointer to a valid SyntheticsTestRequestBodyType | ||
// for the value passed as argument, or an error if the value passed is not allowed by the enum. | ||
func NewSyntheticsTestRequestBodyTypeFromValue(v string) (*SyntheticsTestRequestBodyType, error) { | ||
ev := SyntheticsTestRequestBodyType(v) | ||
if ev.IsValid() { | ||
return &ev, nil | ||
} | ||
return nil, fmt.Errorf("invalid value '%v' for SyntheticsTestRequestBodyType: valid values are %v", v, allowedSyntheticsTestRequestBodyTypeEnumValues) | ||
} | ||
|
||
// IsValid return true if the value is valid for the enum, false otherwise. | ||
func (v SyntheticsTestRequestBodyType) IsValid() bool { | ||
for _, existing := range allowedSyntheticsTestRequestBodyTypeEnumValues { | ||
if existing == v { | ||
return true | ||
} | ||
} | ||
return false | ||
} | ||
|
||
// Ptr returns reference to SyntheticsTestRequestBodyType value. | ||
func (v SyntheticsTestRequestBodyType) Ptr() *SyntheticsTestRequestBodyType { | ||
return &v | ||
} | ||
|
||
// NullableSyntheticsTestRequestBodyType handles when a null is used for SyntheticsTestRequestBodyType. | ||
type NullableSyntheticsTestRequestBodyType struct { | ||
value *SyntheticsTestRequestBodyType | ||
isSet bool | ||
} | ||
|
||
// Get returns the associated value. | ||
func (v NullableSyntheticsTestRequestBodyType) Get() *SyntheticsTestRequestBodyType { | ||
return v.value | ||
} | ||
|
||
// Set changes the value and indicates it's been called. | ||
func (v *NullableSyntheticsTestRequestBodyType) Set(val *SyntheticsTestRequestBodyType) { | ||
v.value = val | ||
v.isSet = true | ||
} | ||
|
||
// IsSet returns whether Set has been called. | ||
func (v NullableSyntheticsTestRequestBodyType) IsSet() bool { | ||
return v.isSet | ||
} | ||
|
||
// Unset sets the value to nil and resets the set flag. | ||
func (v *NullableSyntheticsTestRequestBodyType) Unset() { | ||
v.value = nil | ||
v.isSet = false | ||
} | ||
|
||
// NewNullableSyntheticsTestRequestBodyType initializes the struct as if Set has been called. | ||
func NewNullableSyntheticsTestRequestBodyType(val *SyntheticsTestRequestBodyType) *NullableSyntheticsTestRequestBodyType { | ||
return &NullableSyntheticsTestRequestBodyType{value: val, isSet: true} | ||
} | ||
|
||
// MarshalJSON serializes the associated value. | ||
func (v NullableSyntheticsTestRequestBodyType) MarshalJSON() ([]byte, error) { | ||
return json.Marshal(v.value) | ||
} | ||
|
||
// UnmarshalJSON deserializes the payload and sets the flag as if Set has been called. | ||
func (v *NullableSyntheticsTestRequestBodyType) UnmarshalJSON(src []byte) error { | ||
v.isSet = true | ||
return json.Unmarshal(src, &v.value) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.