You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: admin/model_cluster_ip_addresses.go
+72Lines changed: 72 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,12 @@ type ClusterIPAddresses struct {
7
7
// Human-readable label that identifies the cluster.
8
8
// Read only field.
9
9
ClusterName*string`json:"clusterName,omitempty"`
10
+
// List of future inbound IP addresses associated with the cluster. If your network allows outbound HTTP requests only to specific IP addresses, you must allow access to the following IP addresses so that your application can connect to your Atlas cluster.
// List of future outbound IP addresses associated with the cluster. If your network allows inbound HTTP requests only from specific IP addresses, you must allow access from the following IP addresses so that your Atlas cluster can communicate with your webhooks and KMS.
// List of inbound IP addresses associated with the cluster. If your network allows outbound HTTP requests only to specific IP addresses, you must allow access to the following IP addresses so that your application can connect to your Atlas cluster.
11
17
// Read only field.
12
18
Inbound*[]string`json:"inbound,omitempty"`
@@ -65,6 +71,72 @@ func (o *ClusterIPAddresses) SetClusterName(v string) {
65
71
o.ClusterName=&v
66
72
}
67
73
74
+
// GetFutureInbound returns the FutureInbound field value if set, zero value otherwise
**ClusterName** | Pointer to **string** | Human-readable label that identifies the cluster. | [optional][readonly]
8
+
**FutureInbound** | Pointer to **[]string** | List of future inbound IP addresses associated with the cluster. If your network allows outbound HTTP requests only to specific IP addresses, you must allow access to the following IP addresses so that your application can connect to your Atlas cluster. | [optional][readonly]
9
+
**FutureOutbound** | Pointer to **[]string** | List of future outbound IP addresses associated with the cluster. If your network allows inbound HTTP requests only from specific IP addresses, you must allow access from the following IP addresses so that your Atlas cluster can communicate with your webhooks and KMS. | [optional][readonly]
8
10
**Inbound** | Pointer to **[]string** | List of inbound IP addresses associated with the cluster. If your network allows outbound HTTP requests only to specific IP addresses, you must allow access to the following IP addresses so that your application can connect to your Atlas cluster. | [optional][readonly]
9
11
**Outbound** | Pointer to **[]string** | List of outbound IP addresses associated with the cluster. If your network allows inbound HTTP requests only from specific IP addresses, you must allow access from the following IP addresses so that your Atlas cluster can communicate with your webhooks and KMS. | [optional][readonly]
10
12
@@ -51,6 +53,54 @@ SetClusterName sets ClusterName field to given value.
51
53
`func (o *ClusterIPAddresses) HasClusterName() bool`
52
54
53
55
HasClusterName returns a boolean if a field has been set.
56
+
### GetFutureInbound
57
+
58
+
`func (o *ClusterIPAddresses) GetFutureInbound() []string`
59
+
60
+
GetFutureInbound returns the FutureInbound field if non-nil, zero value otherwise.
61
+
62
+
### GetFutureInboundOk
63
+
64
+
`func (o *ClusterIPAddresses) GetFutureInboundOk() (*[]string, bool)`
65
+
66
+
GetFutureInboundOk returns a tuple with the FutureInbound field if it's non-nil, zero value otherwise
67
+
and a boolean to check if the value has been set.
68
+
69
+
### SetFutureInbound
70
+
71
+
`func (o *ClusterIPAddresses) SetFutureInbound(v []string)`
72
+
73
+
SetFutureInbound sets FutureInbound field to given value.
74
+
75
+
### HasFutureInbound
76
+
77
+
`func (o *ClusterIPAddresses) HasFutureInbound() bool`
78
+
79
+
HasFutureInbound returns a boolean if a field has been set.
80
+
### GetFutureOutbound
81
+
82
+
`func (o *ClusterIPAddresses) GetFutureOutbound() []string`
83
+
84
+
GetFutureOutbound returns the FutureOutbound field if non-nil, zero value otherwise.
85
+
86
+
### GetFutureOutboundOk
87
+
88
+
`func (o *ClusterIPAddresses) GetFutureOutboundOk() (*[]string, bool)`
89
+
90
+
GetFutureOutboundOk returns a tuple with the FutureOutbound field if it's non-nil, zero value otherwise
91
+
and a boolean to check if the value has been set.
92
+
93
+
### SetFutureOutbound
94
+
95
+
`func (o *ClusterIPAddresses) SetFutureOutbound(v []string)`
96
+
97
+
SetFutureOutbound sets FutureOutbound field to given value.
98
+
99
+
### HasFutureOutbound
100
+
101
+
`func (o *ClusterIPAddresses) HasFutureOutbound() bool`
102
+
103
+
HasFutureOutbound returns a boolean if a field has been set.
54
104
### GetInbound
55
105
56
106
`func (o *ClusterIPAddresses) GetInbound() []string`
0 commit comments