-
Notifications
You must be signed in to change notification settings - Fork 5
/
model_trigger_ingestion_pipeline_request.go
106 lines (90 loc) · 3.58 KB
/
model_trigger_ingestion_pipeline_request.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// Code based on the AtlasAPI V2 OpenAPI file
package admin
import (
"encoding/json"
)
// TriggerIngestionPipelineRequest struct for TriggerIngestionPipelineRequest
type TriggerIngestionPipelineRequest struct {
DatasetRetentionPolicy *DatasetRetentionPolicy `json:"datasetRetentionPolicy,omitempty"`
// Unique 24-hexadecimal character string that identifies the snapshot.
// Write only field.
SnapshotId string `json:"snapshotId"`
}
// NewTriggerIngestionPipelineRequest instantiates a new TriggerIngestionPipelineRequest 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 NewTriggerIngestionPipelineRequest(snapshotId string) *TriggerIngestionPipelineRequest {
this := TriggerIngestionPipelineRequest{}
this.SnapshotId = snapshotId
return &this
}
// NewTriggerIngestionPipelineRequestWithDefaults instantiates a new TriggerIngestionPipelineRequest 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 NewTriggerIngestionPipelineRequestWithDefaults() *TriggerIngestionPipelineRequest {
this := TriggerIngestionPipelineRequest{}
return &this
}
// GetDatasetRetentionPolicy returns the DatasetRetentionPolicy field value if set, zero value otherwise
func (o *TriggerIngestionPipelineRequest) GetDatasetRetentionPolicy() DatasetRetentionPolicy {
if o == nil || IsNil(o.DatasetRetentionPolicy) {
var ret DatasetRetentionPolicy
return ret
}
return *o.DatasetRetentionPolicy
}
// GetDatasetRetentionPolicyOk returns a tuple with the DatasetRetentionPolicy field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *TriggerIngestionPipelineRequest) GetDatasetRetentionPolicyOk() (*DatasetRetentionPolicy, bool) {
if o == nil || IsNil(o.DatasetRetentionPolicy) {
return nil, false
}
return o.DatasetRetentionPolicy, true
}
// HasDatasetRetentionPolicy returns a boolean if a field has been set.
func (o *TriggerIngestionPipelineRequest) HasDatasetRetentionPolicy() bool {
if o != nil && !IsNil(o.DatasetRetentionPolicy) {
return true
}
return false
}
// SetDatasetRetentionPolicy gets a reference to the given DatasetRetentionPolicy and assigns it to the DatasetRetentionPolicy field.
func (o *TriggerIngestionPipelineRequest) SetDatasetRetentionPolicy(v DatasetRetentionPolicy) {
o.DatasetRetentionPolicy = &v
}
// GetSnapshotId returns the SnapshotId field value
func (o *TriggerIngestionPipelineRequest) GetSnapshotId() string {
if o == nil {
var ret string
return ret
}
return o.SnapshotId
}
// GetSnapshotIdOk returns a tuple with the SnapshotId field value
// and a boolean to check if the value has been set.
func (o *TriggerIngestionPipelineRequest) GetSnapshotIdOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.SnapshotId, true
}
// SetSnapshotId sets field value
func (o *TriggerIngestionPipelineRequest) SetSnapshotId(v string) {
o.SnapshotId = v
}
func (o TriggerIngestionPipelineRequest) MarshalJSONWithoutReadOnly() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o TriggerIngestionPipelineRequest) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.DatasetRetentionPolicy) {
toSerialize["datasetRetentionPolicy"] = o.DatasetRetentionPolicy
}
toSerialize["snapshotId"] = o.SnapshotId
return toSerialize, nil
}