-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add metric_namespace_configs to GCP v2 API (#2763)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
- Loading branch information
1 parent
d4ad11b
commit 65eb36d
Showing
5 changed files
with
216 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
// 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 datadogV2 | ||
|
||
import ( | ||
"github.com/DataDog/datadog-api-client-go/v2/api/datadog" | ||
) | ||
|
||
// GCPMetricNamespaceConfig Configuration for a GCP metric namespace. | ||
type GCPMetricNamespaceConfig struct { | ||
// When disabled, Datadog does not collect metrics that are related to this GCP metric namespace. | ||
Disabled *bool `json:"disabled,omitempty"` | ||
// The id of the GCP metric namespace. | ||
Id *string `json:"id,omitempty"` | ||
// UnparsedObject contains the raw value of the object if there was an error when deserializing into the struct | ||
UnparsedObject map[string]interface{} `json:"-"` | ||
AdditionalProperties map[string]interface{} `json:"-"` | ||
} | ||
|
||
// NewGCPMetricNamespaceConfig instantiates a new GCPMetricNamespaceConfig 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 NewGCPMetricNamespaceConfig() *GCPMetricNamespaceConfig { | ||
this := GCPMetricNamespaceConfig{} | ||
var disabled bool = false | ||
this.Disabled = &disabled | ||
return &this | ||
} | ||
|
||
// NewGCPMetricNamespaceConfigWithDefaults instantiates a new GCPMetricNamespaceConfig 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 NewGCPMetricNamespaceConfigWithDefaults() *GCPMetricNamespaceConfig { | ||
this := GCPMetricNamespaceConfig{} | ||
var disabled bool = false | ||
this.Disabled = &disabled | ||
return &this | ||
} | ||
|
||
// GetDisabled returns the Disabled field value if set, zero value otherwise. | ||
func (o *GCPMetricNamespaceConfig) GetDisabled() bool { | ||
if o == nil || o.Disabled == nil { | ||
var ret bool | ||
return ret | ||
} | ||
return *o.Disabled | ||
} | ||
|
||
// GetDisabledOk returns a tuple with the Disabled field value if set, nil otherwise | ||
// and a boolean to check if the value has been set. | ||
func (o *GCPMetricNamespaceConfig) GetDisabledOk() (*bool, bool) { | ||
if o == nil || o.Disabled == nil { | ||
return nil, false | ||
} | ||
return o.Disabled, true | ||
} | ||
|
||
// HasDisabled returns a boolean if a field has been set. | ||
func (o *GCPMetricNamespaceConfig) HasDisabled() bool { | ||
return o != nil && o.Disabled != nil | ||
} | ||
|
||
// SetDisabled gets a reference to the given bool and assigns it to the Disabled field. | ||
func (o *GCPMetricNamespaceConfig) SetDisabled(v bool) { | ||
o.Disabled = &v | ||
} | ||
|
||
// GetId returns the Id field value if set, zero value otherwise. | ||
func (o *GCPMetricNamespaceConfig) GetId() string { | ||
if o == nil || o.Id == nil { | ||
var ret string | ||
return ret | ||
} | ||
return *o.Id | ||
} | ||
|
||
// GetIdOk returns a tuple with the Id field value if set, nil otherwise | ||
// and a boolean to check if the value has been set. | ||
func (o *GCPMetricNamespaceConfig) GetIdOk() (*string, bool) { | ||
if o == nil || o.Id == nil { | ||
return nil, false | ||
} | ||
return o.Id, true | ||
} | ||
|
||
// HasId returns a boolean if a field has been set. | ||
func (o *GCPMetricNamespaceConfig) HasId() bool { | ||
return o != nil && o.Id != nil | ||
} | ||
|
||
// SetId gets a reference to the given string and assigns it to the Id field. | ||
func (o *GCPMetricNamespaceConfig) SetId(v string) { | ||
o.Id = &v | ||
} | ||
|
||
// MarshalJSON serializes the struct using spec logic. | ||
func (o GCPMetricNamespaceConfig) MarshalJSON() ([]byte, error) { | ||
toSerialize := map[string]interface{}{} | ||
if o.UnparsedObject != nil { | ||
return datadog.Marshal(o.UnparsedObject) | ||
} | ||
if o.Disabled != nil { | ||
toSerialize["disabled"] = o.Disabled | ||
} | ||
if o.Id != nil { | ||
toSerialize["id"] = o.Id | ||
} | ||
|
||
for key, value := range o.AdditionalProperties { | ||
toSerialize[key] = value | ||
} | ||
return datadog.Marshal(toSerialize) | ||
} | ||
|
||
// UnmarshalJSON deserializes the given payload. | ||
func (o *GCPMetricNamespaceConfig) UnmarshalJSON(bytes []byte) (err error) { | ||
all := struct { | ||
Disabled *bool `json:"disabled,omitempty"` | ||
Id *string `json:"id,omitempty"` | ||
}{} | ||
if err = datadog.Unmarshal(bytes, &all); err != nil { | ||
return datadog.Unmarshal(bytes, &o.UnparsedObject) | ||
} | ||
additionalProperties := make(map[string]interface{}) | ||
if err = datadog.Unmarshal(bytes, &additionalProperties); err == nil { | ||
datadog.DeleteKeys(additionalProperties, &[]string{"disabled", "id"}) | ||
} else { | ||
return err | ||
} | ||
o.Disabled = all.Disabled | ||
o.Id = all.Id | ||
|
||
if len(additionalProperties) > 0 { | ||
o.AdditionalProperties = additionalProperties | ||
} | ||
|
||
return nil | ||
} |
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