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
Description: "the ID of the containing domain(s), null for public offerings",
60
+
ForceNew: true,
60
61
},
61
62
"network_rate": {
62
63
Type: schema.TypeInt,
63
64
Optional: true,
64
65
Description: "data transfer rate in megabits per second allowed",
66
+
ForceNew: true,
65
67
},
66
68
"network_mode": {
67
69
Type: schema.TypeString,
68
70
Optional: true,
69
71
Description: "Indicates the mode with which the network will operate. Valid option: NATTED or ROUTED",
72
+
ForceNew: true,
70
73
},
71
74
"max_connections": {
72
75
Type: schema.TypeInt,
73
76
Optional: true,
74
77
Description: "maximum number of concurrent connections supported by the network offering",
78
+
ForceNew: true,
75
79
},
76
80
"conserve_mode": {
77
81
Type: schema.TypeBool,
78
82
Optional: true,
79
83
Description: "true if the network offering is IP conserve mode enabled",
84
+
ForceNew: true,
80
85
},
81
86
"enable": {
82
87
Type: schema.TypeBool,
83
88
Optional: true,
84
89
Description: "set to true if the offering is to be enabled during creation. Default is false",
90
+
ForceNew: true,
85
91
},
86
92
"for_vpc": {
87
93
Type: schema.TypeBool,
88
94
Optional: true,
89
95
Description: "true if network offering is meant to be used for VPC, false otherwise.",
96
+
ForceNew: true,
90
97
},
91
98
"for_nsx": {
92
99
Type: schema.TypeBool,
93
100
Optional: true,
94
101
Description: "true if network offering is meant to be used for NSX, false otherwise",
102
+
ForceNew: true,
95
103
},
96
104
"internet_protocol": {
97
105
Type: schema.TypeString,
98
106
Optional: true,
99
107
Description: "The internet protocol of network offering. Options are ipv4 and dualstack. Default is ipv4. dualstack will create a network offering that supports both IPv4 and IPv6",
108
+
ForceNew: true,
100
109
},
101
110
"routing_mode": {
102
111
Type: schema.TypeString,
103
112
Optional: true,
104
113
Description: "the routing mode for the network offering. Supported types are: Static or Dynamic.",
114
+
ForceNew: true,
105
115
},
106
116
"specify_vlan": {
107
117
Type: schema.TypeBool,
108
118
Optional: true,
109
119
Description: "true if network offering supports vlans, false otherwise",
120
+
ForceNew: true,
110
121
},
111
122
"supported_services": {
112
123
Type: schema.TypeSet,
113
124
Elem: &schema.Schema{Type: schema.TypeString},
114
125
Optional: true,
115
126
Description: "the list of supported services",
127
+
ForceNew: true,
116
128
},
117
129
"service_provider_list": {
118
130
Type: schema.TypeMap,
119
131
Optional: true,
120
132
Description: "provider to service mapping. If not specified, the provider for the service will be mapped to the default provider on the physical network",
133
+
ForceNew: true,
121
134
},
122
135
"specify_ip_ranges": {
123
136
Type: schema.TypeBool,
124
137
Optional: true,
125
138
Description: "true if network offering supports specifying ip ranges; defaulted to false if not specified",
139
+
ForceNew: true,
126
140
},
127
141
"specify_as_number": {
128
142
Type: schema.TypeBool,
129
143
Optional: true,
130
144
Description: "true if network offering supports choosing AS number",
0 commit comments