-
Notifications
You must be signed in to change notification settings - Fork 5
/
model_cloud_provider_access_roles.go
78 lines (66 loc) · 2.58 KB
/
model_cloud_provider_access_roles.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
// Code based on the AtlasAPI V2 OpenAPI file
package admin
import (
"encoding/json"
)
// CloudProviderAccessRoles struct for CloudProviderAccessRoles
type CloudProviderAccessRoles struct {
// List that contains the Amazon Web Services (AWS) IAM roles registered and authorized with MongoDB Cloud.
AwsIamRoles *[]CloudProviderAccessAWSIAMRole `json:"awsIamRoles,omitempty"`
}
// NewCloudProviderAccessRoles instantiates a new CloudProviderAccessRoles 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 NewCloudProviderAccessRoles() *CloudProviderAccessRoles {
this := CloudProviderAccessRoles{}
return &this
}
// NewCloudProviderAccessRolesWithDefaults instantiates a new CloudProviderAccessRoles 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 NewCloudProviderAccessRolesWithDefaults() *CloudProviderAccessRoles {
this := CloudProviderAccessRoles{}
return &this
}
// GetAwsIamRoles returns the AwsIamRoles field value if set, zero value otherwise
func (o *CloudProviderAccessRoles) GetAwsIamRoles() []CloudProviderAccessAWSIAMRole {
if o == nil || IsNil(o.AwsIamRoles) {
var ret []CloudProviderAccessAWSIAMRole
return ret
}
return *o.AwsIamRoles
}
// GetAwsIamRolesOk returns a tuple with the AwsIamRoles field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CloudProviderAccessRoles) GetAwsIamRolesOk() (*[]CloudProviderAccessAWSIAMRole, bool) {
if o == nil || IsNil(o.AwsIamRoles) {
return nil, false
}
return o.AwsIamRoles, true
}
// HasAwsIamRoles returns a boolean if a field has been set.
func (o *CloudProviderAccessRoles) HasAwsIamRoles() bool {
if o != nil && !IsNil(o.AwsIamRoles) {
return true
}
return false
}
// SetAwsIamRoles gets a reference to the given []CloudProviderAccessAWSIAMRole and assigns it to the AwsIamRoles field.
func (o *CloudProviderAccessRoles) SetAwsIamRoles(v []CloudProviderAccessAWSIAMRole) {
o.AwsIamRoles = &v
}
func (o CloudProviderAccessRoles) MarshalJSONWithoutReadOnly() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o CloudProviderAccessRoles) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.AwsIamRoles) {
toSerialize["awsIamRoles"] = o.AwsIamRoles
}
return toSerialize, nil
}